diff --git a/cicd_utils/ridgeplot_examples/_base.py b/cicd_utils/ridgeplot_examples/_base.py index e490915..1b57f51 100644 --- a/cicd_utils/ridgeplot_examples/_base.py +++ b/cicd_utils/ridgeplot_examples/_base.py @@ -50,7 +50,7 @@ def round_nested_seq( raise TypeError(f"Unsupported sequence type: {type(seq)}") -def round_fig_data(fig: go.Figure, sig_figs: int) -> go.Figure: +def round_fig_data(fig: go.Figure, sig_figs: int) -> None: """Round the float values in the data of a Plotly figure.""" data_attrs = {"x": round_seq, "y": round_seq, "customdata": round_nested_seq} for i in range(len(fig.data)): @@ -61,7 +61,6 @@ def round_fig_data(fig: go.Figure, sig_figs: int) -> go.Figure: continue rounded_attr = round_fn(attr_val, sig_figs) setattr(fig.data[i], attr, rounded_attr) - return fig @dataclass @@ -71,8 +70,20 @@ class Example: def __post_init__(self) -> None: self.fig = self.figure_factory() # pyright: ignore[reportUninitializedInstanceVariable] + round_fig_data(self.fig, sig_figs=8) - def to_html(self, path: Path, minify_html: bool) -> None: + def to_json(self) -> str: + return f"{self.fig.to_json()}\n" + + def write_json(self, path: Path) -> None: + # We'll round the float values in the JSON to a fixed number of + # significant figures to make the regression tests more robust. + if not path.exists(): + path.mkdir(parents=True) + out_path = path / f"{self.plot_id}.json" + out_path.write_text(self.to_json(), "utf-8") + + def write_html(self, path: Path, minify_html: bool) -> None: fig = deepcopy(self.fig) if fig.layout.height is None: @@ -114,7 +125,7 @@ def to_html(self, path: Path, minify_html: bool) -> None: out_path = path / f"{self.plot_id}.html" out_path.write_text(html_str, "utf-8") - def to_webp(self, path: Path) -> None: + def write_webp(self, path: Path) -> None: fig = deepcopy(self.fig) fig = tighten_margins(fig, px=40) if not path.exists(): @@ -129,7 +140,7 @@ def to_webp(self, path: Path) -> None: engine="kaleido", ) - def to_jpeg(self, path: Path) -> None: + def write_jpeg(self, path: Path) -> None: fig = deepcopy(self.fig) fig = tighten_margins(fig, px=40) if not path.exists(): @@ -143,13 +154,3 @@ def to_jpeg(self, path: Path) -> None: scale=1, engine="kaleido", ) - - def to_json(self, path: Path, sig_figs: int) -> None: - # We'll round the float values in the JSON to a fixed number of - # significant figures to make the regression tests more robust. - round_fig_data(self.fig, sig_figs=sig_figs) - if not path.exists(): - path.mkdir(parents=True) - out_path = path / f"{self.plot_id}.json" - json_txt = f"{self.fig.to_json()}\n" - out_path.write_text(json_txt, "utf-8") diff --git a/docs/conf.py b/docs/conf.py index c29e9ac..f04187c 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -400,8 +400,8 @@ def compile_all_plotly_charts() -> None: path_charts = PATH_DOCS / "_static/charts" print(f"Writing image artifacts to {path_charts}...") for example in ALL_EXAMPLES: - example.to_html(path_charts, minify_html=True) - example.to_webp(path_charts) + example.write_html(path_charts, minify_html=True) + example.write_webp(path_charts) # Fix the end-of-file markers in the generated HTML files from pre_commit_hooks.end_of_file_fixer import main as end_of_file_fixer diff --git a/docs/reference/changelog.md b/docs/reference/changelog.md index b022052..873e2e3 100644 --- a/docs/reference/changelog.md +++ b/docs/reference/changelog.md @@ -5,7 +5,9 @@ This document outlines the list of changes to ridgeplot between each release. Fo Unreleased changes ------------------ -- ... +### Internal + +- Fix regression tests for Plotly 6.0+ by updating the JSON test artifacts ({gh-pr}`313`) --- diff --git a/tests/cicd_utils/test_ridgeplot_examples.py b/tests/cicd_utils/test_ridgeplot_examples.py index 0f75a49..b16f05d 100644 --- a/tests/cicd_utils/test_ridgeplot_examples.py +++ b/tests/cicd_utils/test_ridgeplot_examples.py @@ -48,7 +48,7 @@ def test_round_fig_data() -> None: ) ] ) - fig_rounded = round_fig_data(fig, 5) - assert fig_rounded.data[0].x == (123460, 123.46, 0.12346) - assert fig_rounded.data[0].y == (123460, 123.46, 0.12346) - assert fig_rounded.data[0].customdata == ([123460], [123.46], [0.12346]) + round_fig_data(fig, 5) + assert fig.data[0].x == (123460, 123.46, 0.12346) + assert fig.data[0].y == (123460, 123.46, 0.12346) + assert fig.data[0].customdata == ([123460], [123.46], [0.12346]) diff --git a/tests/e2e/artifacts/basic.json b/tests/e2e/artifacts/basic.json index f98c548..b699b36 100644 --- a/tests/e2e/artifacts/basic.json +++ b/tests/e2e/artifacts/basic.json @@ -1 +1 @@ -{"data":[{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[2.0354712,2.0472515,2.0590318,2.0708122,2.0825925,2.0943729,2.1061532,2.1179336,2.1297139,2.1414943,2.1532746,2.1650549,2.1768353,2.1886156,2.200396,2.2121763,2.2239567,2.235737,2.2475173,2.2592977,2.271078,2.2828584,2.2946387,2.3064191,2.3181994,2.3299797,2.3417601,2.3535404,2.3653208,2.3771011,2.3888815,2.4006618,2.4124421,2.4242225,2.4360028,2.4477832,2.4595635,2.4713439,2.4831242,2.4949046,2.5066849,2.5184652,2.5302456,2.5420259,2.5538063,2.5655866,2.577367,2.5891473,2.6009276,2.612708,2.6244883,2.6362687,2.648049,2.6598294,2.6716097,2.68339,2.6951704,2.7069507,2.7187311,2.7305114,2.7422918,2.7540721,2.7658524,2.7776328,2.7894131,2.8011935,2.8129738,2.8247542,2.8365345,2.8483148,2.8600952,2.8718755,2.8836559,2.8954362,2.9072166,2.9189969,2.9307773,2.9425576,2.9543379,2.9661183,2.9778986,2.989679,3.0014593,3.0132397,3.02502,3.0368003,3.0485807,3.060361,3.0721414,3.0839217,3.0957021,3.1074824,3.1192627,3.1310431,3.1428234,3.1546038,3.1663841,3.1781645,3.1899448,3.2017251,3.2135055,3.2252858,3.2370662,3.2488465,3.2606269,3.2724072,3.2841876,3.2959679,3.3077482,3.3195286,3.3313089,3.3430893,3.3548696,3.36665,3.3784303,3.3902106,3.401991,3.4137713,3.4255517,3.437332,3.4491124,3.4608927,3.472673,3.4844534,3.4962337,3.5080141,3.5197944,3.5315748,3.5433551,3.5551354,3.5669158,3.5786961,3.5904765,3.6022568,3.6140372,3.6258175,3.6375979,3.6493782,3.6611585,3.6729389,3.6847192,3.6964996,3.7082799,3.7200603,3.7318406,3.7436209,3.7554013,3.7671816,3.778962,3.7907423,3.8025227,3.814303,3.8260833,3.8378637,3.849644,3.8614244,3.8732047,3.8849851,3.8967654,3.9085457,3.9203261,3.9321064,3.9438868,3.9556671,3.9674475,3.9792278,3.9910081,4.0027885,4.0145688,4.0263492,4.0381295,4.0499099,4.0616902,4.0734706,4.0852509,4.0970312,4.1088116,4.1205919,4.1323723,4.1441526,4.155933,4.1677133,4.1794936,4.191274,4.2030543,4.2148347,4.226615,4.2383954,4.2501757,4.261956,4.2737364,4.2855167,4.2972971,4.3090774,4.3208578,4.3326381,4.3444184,4.3561988,4.3679791,4.3797595,4.3915398,4.4033202,4.4151005,4.4268809,4.4386612,4.4504415,4.4622219,4.4740022,4.4857826,4.4975629,4.5093433,4.5211236,4.5329039,4.5446843,4.5564646,4.568245,4.5800253,4.5918057,4.603586,4.6153663,4.6271467,4.638927,4.6507074,4.6624877,4.6742681,4.6860484,4.6978287,4.7096091,4.7213894,4.7331698,4.7449501,4.7567305,4.7685108,4.7802911,4.7920715,4.8038518,4.8156322,4.8274125,4.8391929,4.8509732,4.8627536,4.8745339,4.8863142,4.8980946,4.9098749,4.9216553,4.9334356,4.945216,4.9569963,4.9687766,4.980557,4.9923373,5.0041177,5.015898,5.0276784,5.0394587,5.051239,5.0630194,5.0747997,5.0865801,5.0983604,5.1101408,5.1219211,5.1337014,5.1454818,5.1572621,5.1690425,5.1808228,5.1926032,5.2043835,5.2161639,5.2279442,5.2397245,5.2515049,5.2632852,5.2750656,5.2868459,5.2986263,5.3104066,5.3221869,5.3339673,5.3457476,5.357528,5.3693083,5.3810887,5.392869,5.4046493,5.4164297,5.42821,5.4399904,5.4517707,5.4635511,5.4753314,5.4871117,5.4988921,5.5106724,5.5224528,5.5342331,5.5460135,5.5577938,5.5695742,5.5813545,5.5931348,5.6049152,5.6166955,5.6284759,5.6402562,5.6520366,5.6638169,5.6755972,5.6873776,5.6991579,5.7109383,5.7227186,5.734499,5.7462793,5.7580596,5.76984,5.7816203,5.7934007,5.805181,5.8169614,5.8287417,5.840522,5.8523024,5.8640827,5.8758631,5.8876434,5.8994238,5.9112041,5.9229844,5.9347648,5.9465451,5.9583255,5.9701058,5.9818862,5.9936665,6.0054469,6.0172272,6.0290075,6.0407879,6.0525682,6.0643486,6.0761289,6.0879093,6.0996896,6.1114699,6.1232503,6.1350306,6.146811,6.1585913,6.1703717,6.182152,6.1939323,6.2057127,6.217493,6.2292734,6.2410537,6.2528341,6.2646144,6.2763947,6.2881751,6.2999554,6.3117358,6.3235161,6.3352965,6.3470768,6.3588572,6.3706375,6.3824178,6.3941982,6.4059785,6.4177589,6.4295392,6.4413196,6.4530999,6.4648802,6.4766606,6.4884409,6.5002213,6.5120016,6.523782,6.5355623,6.5473426,6.559123,6.5709033,6.5826837,6.594464,6.6062444,6.6180247,6.629805,6.6415854,6.6533657,6.6651461,6.6769264,6.6887068,6.7004871,6.7122674,6.7240478,6.7358281,6.7476085,6.7593888,6.7711692,6.7829495,6.7947299,6.8065102,6.8182905,6.8300709,6.8418512,6.8536316,6.8654119,6.8771923,6.8889726,6.9007529,6.9125333,6.9243136,6.936094,6.9478743,6.9596547,6.971435,6.9832153,6.9949957,7.006776,7.0185564,7.0303367,7.0421171,7.0538974,7.0656777,7.0774581,7.0892384,7.1010188,7.1127991,7.1245795,7.1363598,7.1481402,7.1599205,7.1717008,7.1834812,7.1952615,7.2070419,7.2188222,7.2306026,7.2423829,7.2541632,7.2659436,7.2777239,7.2895043,7.3012846,7.313065,7.3248453,7.3366256,7.348406,7.3601863,7.3719667,7.383747,7.3955274,7.4073077,7.419088,7.4308684,7.4426487,7.4544291,7.4662094,7.4779898,7.4897701,7.5015505,7.5133308,7.5251111,7.5368915,7.5486718,7.5604522,7.5722325,7.5840129,7.5957932,7.6075735,7.6193539,7.6311342,7.6429146,7.6546949,7.6664753,7.6782556,7.6900359,7.7018163,7.7135966,7.725377,7.7371573,7.7489377,7.760718,7.7724983,7.7842787,7.796059,7.8078394,7.8196197,7.8314001,7.8431804,7.8549607,7.8667411,7.8785214,7.8903018,7.9020821,7.9138625],"y":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"zorder":0,"type":"scatter"},{"customdata":[[0.0044821864],[0.0046542885],[0.0048332863],[0.0050196155],[0.0052137235],[0.0054160674],[0.0056271107],[0.0058473203],[0.0060771639],[0.0063171061],[0.0065676055],[0.0068291112],[0.0071020595],[0.0073868703],[0.0076839443],[0.0079936594],[0.008316368],[0.0086523938],[0.0090020299],[0.0093655359],[0.0097431359],[0.010135017],[0.010541328],[0.010962179],[0.011397639],[0.011847737],[0.012312462],[0.012791765],[0.013285557],[0.013793713],[0.014316074],[0.014852446],[0.015402608],[0.01596631],[0.016543278],[0.01713322],[0.017735826],[0.018350776],[0.018977739],[0.019616385],[0.020266382],[0.020927407],[0.021599146],[0.022281302],[0.022973599],[0.023675784],[0.024387637],[0.025108969],[0.025839631],[0.026579518],[0.027328568],[0.028086771],[0.028854169],[0.02963086],[0.030417],[0.031212803],[0.032018548],[0.032834573],[0.033661282],[0.034499142],[0.035348682],[0.036210495],[0.037085233],[0.037973608],[0.038876389],[0.039794398],[0.040728508],[0.041679639],[0.04264875],[0.043636839],[0.044644936],[0.045674096],[0.046725393],[0.047799913],[0.048898751],[0.050022997],[0.051173735],[0.052352033],[0.053558932],[0.054795444],[0.056062541],[0.05736115],[0.058692139],[0.06005632],[0.061454434],[0.062887147],[0.064355045],[0.065858631],[0.067398313],[0.068974407],[0.070587131],[0.072236601],[0.073922834],[0.07564574],[0.077405131],[0.079200713],[0.081032096],[0.08289879],[0.084800214],[0.086735697],[0.088704487],[0.090705752],[0.092738592],[0.094802045],[0.096895091],[0.099016668],[0.10116567],[0.10334098],[0.10554143],[0.10776586],[0.11001313],[0.11228206],[0.11457152],[0.11688038],[0.11920757],[0.12155203],[0.12391275],[0.12628875],[0.12867914],[0.13108305],[0.13349966],[0.13592824],[0.13836808],[0.14081854],[0.14327903],[0.145749],[0.14822796],[0.15071544],[0.153211],[0.15571423],[0.15822475],[0.16074217],[0.16326612],[0.16579619],[0.16833198],[0.17087307],[0.17341898],[0.17596922],[0.17852324],[0.18108043],[0.18364012],[0.18620159],[0.18876405],[0.19132663],[0.1938884],[0.19644835],[0.19900541],[0.20155846],[0.20410629],[0.20664765],[0.20918127],[0.2117058],[0.2142199],[0.21672221],[0.21921135],[0.22168598],[0.22414477],[0.22658645],[0.2290098],[0.23141368],[0.23379703],[0.23615891],[0.23849851],[0.24081514],[0.24310828],[0.24537756],[0.2476228],[0.24984399],[0.25204132],[0.25421519],[0.25636617],[0.25849508],[0.26060291],[0.26269085],[0.2647603],[0.26681281],[0.26885014],[0.27087417],[0.27288695],[0.27489064],[0.27688748],[0.27887982],[0.28087002],[0.28286049],[0.28485362],[0.28685179],[0.28885728],[0.2908723],[0.29289892],[0.29493908],[0.29699451],[0.29906676],[0.30115713],[0.30326666],[0.30539612],[0.30754599],[0.30971644],[0.31190732],[0.31411814],[0.3163481],[0.31859604],[0.32086051],[0.3231397],[0.32543154],[0.32773362],[0.3300433],[0.33235766],[0.33467359],[0.33698777],[0.33929673],[0.34159686],[0.34388448],[0.34615586],[0.34840726],[0.35063496],[0.35283531],[0.35500478],[0.35713996],[0.35923763],[0.3612948],[0.36330869],[0.36527681],[0.36719695],[0.36906722],[0.37088606],[0.37265222],[0.37436483],[0.37602335],[0.37762756],[0.3791776],[0.38067391],[0.38211723],[0.38350858],[0.38484921],[0.38614061],[0.38738445],[0.38858252],[0.38973674],[0.39084908],[0.39192154],[0.39295608],[0.3939546],[0.3949189],[0.3958506],[0.39675113],[0.39762172],[0.39846328],[0.39927646],[0.40006155],[0.40081852],[0.40154695],[0.40224602],[0.40291455],[0.40355093],[0.40415318],[0.40471893],[0.40524542],[0.40572954],[0.40616787],[0.40655665],[0.40689189],[0.40716934],[0.40738457],[0.407533],[0.40760993],[0.40761065],[0.40753039],[0.40736447],[0.40710828],[0.40675736],[0.40630746],[0.40575453],[0.40509484],[0.40432496],[0.40344184],[0.40244279],[0.40132559],[0.40008842],[0.39872996],[0.39724935],[0.39564624],[0.39392074],[0.3920735],[0.39010561],[0.38801868],[0.38581475],[0.38349632],[0.38106629],[0.37852796],[0.375885],[0.37314138],[0.3703014],[0.36736957],[0.36435066],[0.36124958],[0.35807141],[0.3548213],[0.3515045],[0.34812626],[0.34469183],[0.34120643],[0.33767521],[0.3341032],[0.33049534],[0.32685642],[0.32319106],[0.31950373],[0.31579869],[0.31208003],[0.30835162],[0.30461715],[0.30088011],[0.29714376],[0.29341123],[0.28968541],[0.28596905],[0.28226473],[0.27857487],[0.27490177],[0.27124759],[0.26761437],[0.26400407],[0.26041855],[0.25685959],[0.25332892],[0.24982819],[0.24635901],[0.24292296],[0.23952157],[0.23615633],[0.23282871],[0.22954013],[0.22629199],[0.22308565],[0.21992242],[0.21680356],[0.21373029],[0.21070376],[0.20772502],[0.20479509],[0.20191486],[0.19908513],[0.19630661],[0.19357986],[0.19090533],[0.18828334],[0.18571405],[0.1831975],[0.18073355],[0.17832192],[0.17596216],[0.17365367],[0.17139568],[0.16918728],[0.1670274],[0.16491482],[0.16284816],[0.16082595],[0.15884656],[0.15690826],[0.15500922],[0.15314751],[0.15132112],[0.14952799],[0.14776601],[0.14603303],[0.14432687],[0.14264535],[0.14098632],[0.13934761],[0.13772713],[0.13612281],[0.13453265],[0.13295473],[0.1313872],[0.12982831],[0.12827642],[0.12672998],[0.12518757],[0.12364789],[0.12210976],[0.12057213],[0.11903408],[0.11749481],[0.11595366],[0.11441009],[0.11286368],[0.11131415],[0.10976132],[0.10820511],[0.10664558],[0.10508284],[0.10351714],[0.10194879],[0.10037816],[0.098805736],[0.097232019],[0.095657589],[0.094083063],[0.0925091],[0.090936387],[0.089365638],[0.08779758],[0.086232956],[0.084672513],[0.083116997],[0.081567151],[0.080023711],[0.078487399],[0.076958922],[0.075438974],[0.073928224],[0.072427326],[0.07093691],[0.069457585],[0.067989937],[0.066534533],[0.065091917],[0.063662616],[0.062247135],[0.060845964],[0.059459574],[0.058088424],[0.056732959],[0.05539361],[0.054070797],[0.052764933],[0.051476418],[0.050205647],[0.048953003],[0.047718863],[0.046503598],[0.045307567],[0.044131122],[0.042974605],[0.041838347],[0.040722667],[0.039627869],[0.038554246],[0.037502068],[0.036471591],[0.035463049],[0.034476652],[0.033512586],[0.032571012],[0.031652062],[0.030755837],[0.029882408],[0.029031813],[0.028204055],[0.027399104],[0.026616892],[0.025857317],[0.025120241],[0.024405486],[0.023712841],[0.02304206],[0.022392859],[0.021764923],[0.021157901],[0.020571413],[0.020005046],[0.019458363],[0.018930895],[0.01842215],[0.017931615],[0.017458753],[0.017003009],[0.016563811],[0.016140572],[0.015732693],[0.015339564],[0.014960567],[0.014595076],[0.014242462],[0.013902093],[0.013573339],[0.013255568],[0.012948154],[0.012650477],[0.012361923],[0.012081889],[0.01180978],[0.011545019],[0.011287039],[0.011035292],[0.010789248],[0.010548397],[0.01031225],[0.01008034],[0.0098522264],[0.0096274936],[0.0094057527],[0.0091866434],[0.0089698345],[0.0087550252],[0.0085419453],[0.0083303563],[0.0081200514],[0.0079108561]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"rgb(176.39181, 42.77388, 143.16959)"],[0.07098879319017543,"#bd3786"],[0.2567910345534781,"#d8576b"],[0.44259327591510866,"#ed7953"],[0.628395517276739,"#fb9f3a"],[0.8141977586383695,"#fdca26"],[1.0,"rgb(240, 249, 33)"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Trace 1","x":[2.0354712,2.0472515,2.0590318,2.0708122,2.0825925,2.0943729,2.1061532,2.1179336,2.1297139,2.1414943,2.1532746,2.1650549,2.1768353,2.1886156,2.200396,2.2121763,2.2239567,2.235737,2.2475173,2.2592977,2.271078,2.2828584,2.2946387,2.3064191,2.3181994,2.3299797,2.3417601,2.3535404,2.3653208,2.3771011,2.3888815,2.4006618,2.4124421,2.4242225,2.4360028,2.4477832,2.4595635,2.4713439,2.4831242,2.4949046,2.5066849,2.5184652,2.5302456,2.5420259,2.5538063,2.5655866,2.577367,2.5891473,2.6009276,2.612708,2.6244883,2.6362687,2.648049,2.6598294,2.6716097,2.68339,2.6951704,2.7069507,2.7187311,2.7305114,2.7422918,2.7540721,2.7658524,2.7776328,2.7894131,2.8011935,2.8129738,2.8247542,2.8365345,2.8483148,2.8600952,2.8718755,2.8836559,2.8954362,2.9072166,2.9189969,2.9307773,2.9425576,2.9543379,2.9661183,2.9778986,2.989679,3.0014593,3.0132397,3.02502,3.0368003,3.0485807,3.060361,3.0721414,3.0839217,3.0957021,3.1074824,3.1192627,3.1310431,3.1428234,3.1546038,3.1663841,3.1781645,3.1899448,3.2017251,3.2135055,3.2252858,3.2370662,3.2488465,3.2606269,3.2724072,3.2841876,3.2959679,3.3077482,3.3195286,3.3313089,3.3430893,3.3548696,3.36665,3.3784303,3.3902106,3.401991,3.4137713,3.4255517,3.437332,3.4491124,3.4608927,3.472673,3.4844534,3.4962337,3.5080141,3.5197944,3.5315748,3.5433551,3.5551354,3.5669158,3.5786961,3.5904765,3.6022568,3.6140372,3.6258175,3.6375979,3.6493782,3.6611585,3.6729389,3.6847192,3.6964996,3.7082799,3.7200603,3.7318406,3.7436209,3.7554013,3.7671816,3.778962,3.7907423,3.8025227,3.814303,3.8260833,3.8378637,3.849644,3.8614244,3.8732047,3.8849851,3.8967654,3.9085457,3.9203261,3.9321064,3.9438868,3.9556671,3.9674475,3.9792278,3.9910081,4.0027885,4.0145688,4.0263492,4.0381295,4.0499099,4.0616902,4.0734706,4.0852509,4.0970312,4.1088116,4.1205919,4.1323723,4.1441526,4.155933,4.1677133,4.1794936,4.191274,4.2030543,4.2148347,4.226615,4.2383954,4.2501757,4.261956,4.2737364,4.2855167,4.2972971,4.3090774,4.3208578,4.3326381,4.3444184,4.3561988,4.3679791,4.3797595,4.3915398,4.4033202,4.4151005,4.4268809,4.4386612,4.4504415,4.4622219,4.4740022,4.4857826,4.4975629,4.5093433,4.5211236,4.5329039,4.5446843,4.5564646,4.568245,4.5800253,4.5918057,4.603586,4.6153663,4.6271467,4.638927,4.6507074,4.6624877,4.6742681,4.6860484,4.6978287,4.7096091,4.7213894,4.7331698,4.7449501,4.7567305,4.7685108,4.7802911,4.7920715,4.8038518,4.8156322,4.8274125,4.8391929,4.8509732,4.8627536,4.8745339,4.8863142,4.8980946,4.9098749,4.9216553,4.9334356,4.945216,4.9569963,4.9687766,4.980557,4.9923373,5.0041177,5.015898,5.0276784,5.0394587,5.051239,5.0630194,5.0747997,5.0865801,5.0983604,5.1101408,5.1219211,5.1337014,5.1454818,5.1572621,5.1690425,5.1808228,5.1926032,5.2043835,5.2161639,5.2279442,5.2397245,5.2515049,5.2632852,5.2750656,5.2868459,5.2986263,5.3104066,5.3221869,5.3339673,5.3457476,5.357528,5.3693083,5.3810887,5.392869,5.4046493,5.4164297,5.42821,5.4399904,5.4517707,5.4635511,5.4753314,5.4871117,5.4988921,5.5106724,5.5224528,5.5342331,5.5460135,5.5577938,5.5695742,5.5813545,5.5931348,5.6049152,5.6166955,5.6284759,5.6402562,5.6520366,5.6638169,5.6755972,5.6873776,5.6991579,5.7109383,5.7227186,5.734499,5.7462793,5.7580596,5.76984,5.7816203,5.7934007,5.805181,5.8169614,5.8287417,5.840522,5.8523024,5.8640827,5.8758631,5.8876434,5.8994238,5.9112041,5.9229844,5.9347648,5.9465451,5.9583255,5.9701058,5.9818862,5.9936665,6.0054469,6.0172272,6.0290075,6.0407879,6.0525682,6.0643486,6.0761289,6.0879093,6.0996896,6.1114699,6.1232503,6.1350306,6.146811,6.1585913,6.1703717,6.182152,6.1939323,6.2057127,6.217493,6.2292734,6.2410537,6.2528341,6.2646144,6.2763947,6.2881751,6.2999554,6.3117358,6.3235161,6.3352965,6.3470768,6.3588572,6.3706375,6.3824178,6.3941982,6.4059785,6.4177589,6.4295392,6.4413196,6.4530999,6.4648802,6.4766606,6.4884409,6.5002213,6.5120016,6.523782,6.5355623,6.5473426,6.559123,6.5709033,6.5826837,6.594464,6.6062444,6.6180247,6.629805,6.6415854,6.6533657,6.6651461,6.6769264,6.6887068,6.7004871,6.7122674,6.7240478,6.7358281,6.7476085,6.7593888,6.7711692,6.7829495,6.7947299,6.8065102,6.8182905,6.8300709,6.8418512,6.8536316,6.8654119,6.8771923,6.8889726,6.9007529,6.9125333,6.9243136,6.936094,6.9478743,6.9596547,6.971435,6.9832153,6.9949957,7.006776,7.0185564,7.0303367,7.0421171,7.0538974,7.0656777,7.0774581,7.0892384,7.1010188,7.1127991,7.1245795,7.1363598,7.1481402,7.1599205,7.1717008,7.1834812,7.1952615,7.2070419,7.2188222,7.2306026,7.2423829,7.2541632,7.2659436,7.2777239,7.2895043,7.3012846,7.313065,7.3248453,7.3366256,7.348406,7.3601863,7.3719667,7.383747,7.3955274,7.4073077,7.419088,7.4308684,7.4426487,7.4544291,7.4662094,7.4779898,7.4897701,7.5015505,7.5133308,7.5251111,7.5368915,7.5486718,7.5604522,7.5722325,7.5840129,7.5957932,7.6075735,7.6193539,7.6311342,7.6429146,7.6546949,7.6664753,7.6782556,7.6900359,7.7018163,7.7135966,7.725377,7.7371573,7.7489377,7.760718,7.7724983,7.7842787,7.796059,7.8078394,7.8196197,7.8314001,7.8431804,7.8549607,7.8667411,7.8785214,7.8903018,7.9020821,7.9138625],"y":[0.0044821864,0.0046542885,0.0048332863,0.0050196155,0.0052137235,0.0054160674,0.0056271107,0.0058473203,0.0060771639,0.0063171061,0.0065676055,0.0068291112,0.0071020595,0.0073868703,0.0076839443,0.0079936594,0.008316368,0.0086523938,0.0090020299,0.0093655359,0.0097431359,0.010135017,0.010541328,0.010962179,0.011397639,0.011847737,0.012312462,0.012791765,0.013285557,0.013793713,0.014316074,0.014852446,0.015402608,0.01596631,0.016543278,0.01713322,0.017735826,0.018350776,0.018977739,0.019616385,0.020266382,0.020927407,0.021599146,0.022281302,0.022973599,0.023675784,0.024387637,0.025108969,0.025839631,0.026579518,0.027328568,0.028086771,0.028854169,0.02963086,0.030417,0.031212803,0.032018548,0.032834573,0.033661282,0.034499142,0.035348682,0.036210495,0.037085233,0.037973608,0.038876389,0.039794398,0.040728508,0.041679639,0.04264875,0.043636839,0.044644936,0.045674096,0.046725393,0.047799913,0.048898751,0.050022997,0.051173735,0.052352033,0.053558932,0.054795444,0.056062541,0.05736115,0.058692139,0.06005632,0.061454434,0.062887147,0.064355045,0.065858631,0.067398313,0.068974407,0.070587131,0.072236601,0.073922834,0.07564574,0.077405131,0.079200713,0.081032096,0.08289879,0.084800214,0.086735697,0.088704487,0.090705752,0.092738592,0.094802045,0.096895091,0.099016668,0.10116567,0.10334098,0.10554143,0.10776586,0.11001313,0.11228206,0.11457152,0.11688038,0.11920757,0.12155203,0.12391275,0.12628875,0.12867914,0.13108305,0.13349966,0.13592824,0.13836808,0.14081854,0.14327903,0.145749,0.14822796,0.15071544,0.153211,0.15571423,0.15822475,0.16074217,0.16326612,0.16579619,0.16833198,0.17087307,0.17341898,0.17596922,0.17852324,0.18108043,0.18364012,0.18620159,0.18876405,0.19132663,0.1938884,0.19644835,0.19900541,0.20155846,0.20410629,0.20664765,0.20918127,0.2117058,0.2142199,0.21672221,0.21921135,0.22168598,0.22414477,0.22658645,0.2290098,0.23141368,0.23379703,0.23615891,0.23849851,0.24081514,0.24310828,0.24537756,0.2476228,0.24984399,0.25204132,0.25421519,0.25636617,0.25849508,0.26060291,0.26269085,0.2647603,0.26681281,0.26885014,0.27087417,0.27288695,0.27489064,0.27688748,0.27887982,0.28087002,0.28286049,0.28485362,0.28685179,0.28885728,0.2908723,0.29289892,0.29493908,0.29699451,0.29906676,0.30115713,0.30326666,0.30539612,0.30754599,0.30971644,0.31190732,0.31411814,0.3163481,0.31859604,0.32086051,0.3231397,0.32543154,0.32773362,0.3300433,0.33235766,0.33467359,0.33698777,0.33929673,0.34159686,0.34388448,0.34615586,0.34840726,0.35063496,0.35283531,0.35500478,0.35713996,0.35923763,0.3612948,0.36330869,0.36527681,0.36719695,0.36906722,0.37088606,0.37265222,0.37436483,0.37602335,0.37762756,0.3791776,0.38067391,0.38211723,0.38350858,0.38484921,0.38614061,0.38738445,0.38858252,0.38973674,0.39084908,0.39192154,0.39295608,0.3939546,0.3949189,0.3958506,0.39675113,0.39762172,0.39846328,0.39927646,0.40006155,0.40081852,0.40154695,0.40224602,0.40291455,0.40355093,0.40415318,0.40471893,0.40524542,0.40572954,0.40616787,0.40655665,0.40689189,0.40716934,0.40738457,0.407533,0.40760993,0.40761065,0.40753039,0.40736447,0.40710828,0.40675736,0.40630746,0.40575453,0.40509484,0.40432496,0.40344184,0.40244279,0.40132559,0.40008842,0.39872996,0.39724935,0.39564624,0.39392074,0.3920735,0.39010561,0.38801868,0.38581475,0.38349632,0.38106629,0.37852796,0.375885,0.37314138,0.3703014,0.36736957,0.36435066,0.36124958,0.35807141,0.3548213,0.3515045,0.34812626,0.34469183,0.34120643,0.33767521,0.3341032,0.33049534,0.32685642,0.32319106,0.31950373,0.31579869,0.31208003,0.30835162,0.30461715,0.30088011,0.29714376,0.29341123,0.28968541,0.28596905,0.28226473,0.27857487,0.27490177,0.27124759,0.26761437,0.26400407,0.26041855,0.25685959,0.25332892,0.24982819,0.24635901,0.24292296,0.23952157,0.23615633,0.23282871,0.22954013,0.22629199,0.22308565,0.21992242,0.21680356,0.21373029,0.21070376,0.20772502,0.20479509,0.20191486,0.19908513,0.19630661,0.19357986,0.19090533,0.18828334,0.18571405,0.1831975,0.18073355,0.17832192,0.17596216,0.17365367,0.17139568,0.16918728,0.1670274,0.16491482,0.16284816,0.16082595,0.15884656,0.15690826,0.15500922,0.15314751,0.15132112,0.14952799,0.14776601,0.14603303,0.14432687,0.14264535,0.14098632,0.13934761,0.13772713,0.13612281,0.13453265,0.13295473,0.1313872,0.12982831,0.12827642,0.12672998,0.12518757,0.12364789,0.12210976,0.12057213,0.11903408,0.11749481,0.11595366,0.11441009,0.11286368,0.11131415,0.10976132,0.10820511,0.10664558,0.10508284,0.10351714,0.10194879,0.10037816,0.098805736,0.097232019,0.095657589,0.094083063,0.0925091,0.090936387,0.089365638,0.08779758,0.086232956,0.084672513,0.083116997,0.081567151,0.080023711,0.078487399,0.076958922,0.075438974,0.073928224,0.072427326,0.07093691,0.069457585,0.067989937,0.066534533,0.065091917,0.063662616,0.062247135,0.060845964,0.059459574,0.058088424,0.056732959,0.05539361,0.054070797,0.052764933,0.051476418,0.050205647,0.048953003,0.047718863,0.046503598,0.045307567,0.044131122,0.042974605,0.041838347,0.040722667,0.039627869,0.038554246,0.037502068,0.036471591,0.035463049,0.034476652,0.033512586,0.032571012,0.031652062,0.030755837,0.029882408,0.029031813,0.028204055,0.027399104,0.026616892,0.025857317,0.025120241,0.024405486,0.023712841,0.02304206,0.022392859,0.021764923,0.021157901,0.020571413,0.020005046,0.019458363,0.018930895,0.01842215,0.017931615,0.017458753,0.017003009,0.016563811,0.016140572,0.015732693,0.015339564,0.014960567,0.014595076,0.014242462,0.013902093,0.013573339,0.013255568,0.012948154,0.012650477,0.012361923,0.012081889,0.01180978,0.011545019,0.011287039,0.011035292,0.010789248,0.010548397,0.01031225,0.01008034,0.0098522264,0.0096274936,0.0094057527,0.0091866434,0.0089698345,0.0087550252,0.0085419453,0.0083303563,0.0081200514,0.0079108561],"zorder":0,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[0.51825384,0.53193574,0.54561764,0.55929953,0.57298143,0.58666333,0.60034522,0.61402712,0.62770902,0.64139091,0.65507281,0.66875471,0.6824366,0.6961185,0.7098004,0.72348229,0.73716419,0.75084609,0.76452798,0.77820988,0.79189178,0.80557367,0.81925557,0.83293747,0.84661936,0.86030126,0.87398316,0.88766506,0.90134695,0.91502885,0.92871075,0.94239264,0.95607454,0.96975644,0.98343833,0.99712023,1.0108021,1.024484,1.0381659,1.0518478,1.0655297,1.0792116,1.0928935,1.1065754,1.1202573,1.1339392,1.1476211,1.161303,1.1749849,1.1886668,1.2023487,1.2160306,1.2297125,1.2433944,1.2570763,1.2707582,1.2844401,1.298122,1.3118039,1.3254858,1.3391676,1.3528495,1.3665314,1.3802133,1.3938952,1.4075771,1.421259,1.4349409,1.4486228,1.4623047,1.4759866,1.4896685,1.5033504,1.5170323,1.5307142,1.5443961,1.558078,1.5717599,1.5854418,1.5991237,1.6128056,1.6264875,1.6401694,1.6538513,1.6675332,1.6812151,1.694897,1.7085789,1.7222608,1.7359427,1.7496246,1.7633065,1.7769883,1.7906702,1.8043521,1.818034,1.8317159,1.8453978,1.8590797,1.8727616,1.8864435,1.9001254,1.9138073,1.9274892,1.9411711,1.954853,1.9685349,1.9822168,1.9958987,2.0095806,2.0232625,2.0369444,2.0506263,2.0643082,2.0779901,2.091672,2.1053539,2.1190358,2.1327177,2.1463996,2.1600815,2.1737634,2.1874453,2.2011271,2.214809,2.2284909,2.2421728,2.2558547,2.2695366,2.2832185,2.2969004,2.3105823,2.3242642,2.3379461,2.351628,2.3653099,2.3789918,2.3926737,2.4063556,2.4200375,2.4337194,2.4474013,2.4610832,2.4747651,2.488447,2.5021289,2.5158108,2.5294927,2.5431746,2.5568565,2.5705384,2.5842203,2.5979022,2.6115841,2.6252659,2.6389478,2.6526297,2.6663116,2.6799935,2.6936754,2.7073573,2.7210392,2.7347211,2.748403,2.7620849,2.7757668,2.7894487,2.8031306,2.8168125,2.8304944,2.8441763,2.8578582,2.8715401,2.885222,2.8989039,2.9125858,2.9262677,2.9399496,2.9536315,2.9673134,2.9809953,2.9946772,3.0083591,3.022041,3.0357229,3.0494047,3.0630866,3.0767685,3.0904504,3.1041323,3.1178142,3.1314961,3.145178,3.1588599,3.1725418,3.1862237,3.1999056,3.2135875,3.2272694,3.2409513,3.2546332,3.2683151,3.281997,3.2956789,3.3093608,3.3230427,3.3367246,3.3504065,3.3640884,3.3777703,3.3914522,3.4051341,3.418816,3.4324979,3.4461798,3.4598617,3.4735436,3.4872254,3.5009073,3.5145892,3.5282711,3.541953,3.5556349,3.5693168,3.5829987,3.5966806,3.6103625,3.6240444,3.6377263,3.6514082,3.6650901,3.678772,3.6924539,3.7061358,3.7198177,3.7334996,3.7471815,3.7608634,3.7745453,3.7882272,3.8019091,3.815591,3.8292729,3.8429548,3.8566367,3.8703186,3.8840005,3.8976824,3.9113642,3.9250461,3.938728,3.9524099,3.9660918,3.9797737,3.9934556,4.0071375,4.0208194,4.0345013,4.0481832,4.0618651,4.075547,4.0892289,4.1029108,4.1165927,4.1302746,4.1439565,4.1576384,4.1713203,4.1850022,4.1986841,4.212366,4.2260479,4.2397298,4.2534117,4.2670936,4.2807755,4.2944574,4.3081393,4.3218212,4.335503,4.3491849,4.3628668,4.3765487,4.3902306,4.4039125,4.4175944,4.4312763,4.4449582,4.4586401,4.472322,4.4860039,4.4996858,4.5133677,4.5270496,4.5407315,4.5544134,4.5680953,4.5817772,4.5954591,4.609141,4.6228229,4.6365048,4.6501867,4.6638686,4.6775505,4.6912324,4.7049143,4.7185962,4.7322781,4.74596,4.7596419,4.7733237,4.7870056,4.8006875,4.8143694,4.8280513,4.8417332,4.8554151,4.869097,4.8827789,4.8964608,4.9101427,4.9238246,4.9375065,4.9511884,4.9648703,4.9785522,4.9922341,5.005916,5.0195979,5.0332798,5.0469617,5.0606436,5.0743255,5.0880074,5.1016893,5.1153712,5.1290531,5.142735,5.1564169,5.1700988,5.1837807,5.1974625,5.2111444,5.2248263,5.2385082,5.2521901,5.265872,5.2795539,5.2932358,5.3069177,5.3205996,5.3342815,5.3479634,5.3616453,5.3753272,5.3890091,5.402691,5.4163729,5.4300548,5.4437367,5.4574186,5.4711005,5.4847824,5.4984643,5.5121462,5.5258281,5.53951,5.5531919,5.5668738,5.5805557,5.5942376,5.6079195,5.6216013,5.6352832,5.6489651,5.662647,5.6763289,5.6900108,5.7036927,5.7173746,5.7310565,5.7447384,5.7584203,5.7721022,5.7857841,5.799466,5.8131479,5.8268298,5.8405117,5.8541936,5.8678755,5.8815574,5.8952393,5.9089212,5.9226031,5.936285,5.9499669,5.9636488,5.9773307,5.9910126,6.0046945,6.0183764,6.0320583,6.0457401,6.059422,6.0731039,6.0867858,6.1004677,6.1141496,6.1278315,6.1415134,6.1551953,6.1688772,6.1825591,6.196241,6.2099229,6.2236048,6.2372867,6.2509686,6.2646505,6.2783324,6.2920143,6.3056962,6.3193781,6.33306,6.3467419,6.3604238,6.3741057,6.3877876,6.4014695,6.4151514,6.4288333,6.4425152,6.4561971,6.469879,6.4835608,6.4972427,6.5109246,6.5246065,6.5382884,6.5519703,6.5656522,6.5793341,6.593016,6.6066979,6.6203798,6.6340617,6.6477436,6.6614255,6.6751074,6.6887893,6.7024712,6.7161531,6.729835,6.7435169,6.7571988,6.7708807,6.7845626,6.7982445,6.8119264,6.8256083,6.8392902,6.8529721,6.866654,6.8803359,6.8940178,6.9076996,6.9213815,6.9350634,6.9487453,6.9624272,6.9761091,6.989791,7.0034729,7.0171548,7.0308367,7.0445186,7.0582005,7.0718824,7.0855643,7.0992462,7.1129281,7.12661,7.1402919,7.1539738,7.1676557,7.1813376,7.1950195,7.2087014,7.2223833,7.2360652,7.2497471,7.263429,7.2771109,7.2907928,7.3044747,7.3181566,7.3318384,7.3455203],"y":[-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374],"zorder":1,"type":"scatter"},{"customdata":[[0.0025084175],[0.0025175469],[0.0025221562],[0.0025224549],[0.0025187052],[0.0025112204],[0.0025003628],[0.0024865415],[0.0024702091],[0.0024518579],[0.0024320167],[0.0024112458],[0.0023901329],[0.0023692881],[0.0023493391],[0.0023309263],[0.0023146976],[0.0023013041],[0.0022913949],[0.002285613],[0.0022845909],[0.0022889475],[0.0022992837],[0.0023161806],[0.0023401963],[0.0023718645],[0.0024116929],[0.0024601623],[0.0025177267],[0.0025848129],[0.0026618216],[0.0027491286],[0.0028470858],[0.0029560237],[0.0030762534],[0.0032080686],[0.0033517491],[0.0035075623],[0.0036757671],[0.0038566156],[0.0040503561],[0.0042572356],[0.0044775011],[0.0047114022],[0.0049591917],[0.0052211271],[0.0054974704],[0.0057884885],[0.0060944522],[0.0064156354],[0.0067523127],[0.007104758],[0.0074732409],[0.0078580242],[0.0082593595],[0.0086774839],[0.0091126152],[0.0095649479],[0.010034648],[0.010521848],[0.011026645],[0.011549092],[0.012089197],[0.012646919],[0.013222162],[0.013814776],[0.014424552],[0.015051223],[0.015694461],[0.016353879],[0.017029032],[0.017719418],[0.018424483],[0.019143621],[0.019876185],[0.020621485],[0.021378802],[0.022147391],[0.022926487],[0.02371532],[0.024513118],[0.025319116],[0.026132571],[0.026952767],[0.027779022],[0.028610705],[0.029447237],[0.030288102],[0.031132858],[0.031981138],[0.032832658],[0.033687225],[0.034544737],[0.035405187],[0.036268666],[0.037135361],[0.038005556],[0.038879628],[0.039758046],[0.040641367],[0.041530225],[0.042425334],[0.043327473],[0.044237482],[0.045156251],[0.046084715],[0.047023843],[0.04797463],[0.048938085],[0.049915227],[0.050907075],[0.051914641],[0.052938922],[0.053980897],[0.055041519],[0.056121717],[0.057222386],[0.058344393],[0.059488574],[0.060655733],[0.061846651],[0.063062083],[0.064302768],[0.06556943],[0.06686279],[0.068183567],[0.069532491],[0.070910309],[0.072317791],[0.07375574],[0.075225001],[0.076726464],[0.07826107],[0.079829822],[0.081433782],[0.083074074],[0.084751888],[0.086468476],[0.088225148],[0.090023268],[0.091864245],[0.093749521],[0.095680562],[0.097658842],[0.099685821],[0.10176293],[0.10389155],[0.10607299],[0.10830844],[0.11059898],[0.11294553],[0.11534881],[0.11780934],[0.12032739],[0.12290294],[0.1255357],[0.12822501],[0.13096989],[0.13376896],[0.13662045],[0.13952219],[0.14247156],[0.14546554],[0.14850065],[0.151573],[0.15467828],[0.15781176],[0.16096834],[0.16414258],[0.16732869],[0.17052063],[0.17371211],[0.17689667],[0.18006773],[0.18321864],[0.18634277],[0.18943356],[0.19248461],[0.19548973],[0.19844306],[0.20133906],[0.2041727],[0.20693942],[0.20963526],[0.21225691],[0.21480176],[0.21726794],[0.21965438],[0.22196083],[0.2241879],[0.22633706],[0.22841064],[0.23041182],[0.23234466],[0.234214],[0.23602547],[0.23778542],[0.23950091],[0.24117954],[0.24282951],[0.24445941],[0.24607823],[0.24769521],[0.24931976],[0.25096138],[0.25262952],[0.25433351],[0.25608246],[0.25788514],[0.25974991],[0.26168462],[0.26369655],[0.26579228],[0.2679777],[0.27025787],[0.27263703],[0.27511854],[0.27770483],[0.28039741],[0.28319682],[0.28610268],[0.28911363],[0.29222742],[0.29544086],[0.29874992],[0.30214972],[0.30563462],[0.30919822],[0.31283347],[0.31653271],[0.32028773],[0.32408983],[0.32792993],[0.3317986],[0.33568616],[0.33958272],[0.34347829],[0.34736282],[0.35122626],[0.35505866],[0.3588502],[0.36259125],[0.36627244],[0.36988471],[0.37341931],[0.37686792],[0.38022263],[0.38347598],[0.38662102],[0.38965129],[0.39256087],[0.39534439],[0.39799705],[0.40051459],[0.40289335],[0.4051302],[0.4072226],[0.40916854],[0.41096655],[0.41261567],[0.41411545],[0.41546588],[0.41666741],[0.41772088],[0.4186275],[0.41938882],[0.42000666],[0.42048309],[0.42082039],[0.42102101],[0.42108748],[0.42102244],[0.42082851],[0.42050835],[0.42006453],[0.41949954],[0.41881577],[0.41801544],[0.41710062],[0.41607319],[0.41493481],[0.41368696],[0.41233091],[0.41086771],[0.40929826],[0.40762323],[0.40584318],[0.40395854],[0.40196961],[0.39987667],[0.39767994],[0.39537969],[0.39297621],[0.3904699],[0.38786131],[0.38515114],[0.38234034],[0.37943007],[0.37642182],[0.37331734],[0.37011877],[0.36682855],[0.36344954],[0.35998493],[0.35643833],[0.3528137],[0.34911538],[0.34534805],[0.34151673],[0.33762677],[0.33368378],[0.32969362],[0.32566238],[0.32159631],[0.31750182],[0.31338539],[0.30925357],[0.30511292],[0.30096995],[0.29683112],[0.29270276],[0.28859105],[0.28450197],[0.28044128],[0.2764145],[0.27242682],[0.26848317],[0.26458809],[0.2607458],[0.25696013],[0.25323453],[0.24957204],[0.24597531],[0.24244658],[0.23898765],[0.23559994],[0.23228446],[0.2290418],[0.22587216],[0.22277537],[0.21975087],[0.21679777],[0.2139148],[0.2111004],[0.20835268],[0.20566949],[0.20304839],[0.20048672],[0.19798159],[0.19552993],[0.19312849],[0.1907739],[0.18846265],[0.18619118],[0.18395583],[0.18175294],[0.17957885],[0.17742989],[0.17530246],[0.17319305],[0.17109821],[0.16901464],[0.16693917],[0.1648688],[0.16280068],[0.1607322],[0.15866091],[0.1565846],[0.15450128],[0.15240919],[0.15030681],[0.14819284],[0.14606622],[0.14392612],[0.14177193],[0.13960326],[0.13741991],[0.13522189],[0.13300938],[0.13078275],[0.1285425],[0.12628928],[0.12402389],[0.12174723],[0.11946029],[0.11716418],[0.11486008],[0.11254924],[0.11023297],[0.10791264],[0.10558967],[0.10326554],[0.10094176],[0.098619863],[0.096301457],[0.093988168],[0.091681663],[0.089383652],[0.087095881],[0.084820139],[0.082558252],[0.080312085],[0.078083542],[0.075874561],[0.073687107],[0.071523176],[0.069384779],[0.067273937],[0.065192676],[0.06314301],[0.061126932],[0.0591464],[0.057203325],[0.055299553],[0.053436851],[0.051616893],[0.04984124],[0.048111331],[0.046428463],[0.044793779],[0.043208258],[0.041672698],[0.040187714],[0.038753723],[0.037370945],[0.036039395],[0.034758885],[0.033529024],[0.032349221],[0.031218693],[0.030136474],[0.029101421],[0.028112232],[0.027167457],[0.026265514],[0.025404706],[0.024583244],[0.023799256],[0.023050819],[0.022335967],[0.021652719],[0.020999092],[0.020373124],[0.01977289],[0.019196518],[0.018642203],[0.018108222],[0.017592945],[0.017094846],[0.016612509],[0.016144637],[0.015690052],[0.015247701],[0.014816655],[0.014396108],[0.013985374],[0.013583882],[0.01319117],[0.012806879],[0.012430745],[0.012062587],[0.011702303],[0.011349855],[0.011005262],[0.010668585],[0.010339923],[0.0100194],[0.0097071524],[0.0094033248],[0.0091080584],[0.0088214838],[0.0085437141],[0.0082748387],[0.0080149174],[0.0077639768],[0.0075220064],[0.0072889559],[0.0070647339],[0.0068492071],[0.0066422002],[0.006443497],[0.0062528421],[0.0060699431],[0.0058944737],[0.0057260771],[0.00556437],[0.0054089466],[0.005259384],[0.0051152461],[0.0049760893],[0.0048414671],[0.0047109351],[0.0045840561],[0.0044604047],[0.0043395714],[0.0042211673],[0.0041048277],[0.0039902151],[0.0038770226],[0.0037649761]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"rgb(123.61036, 6.034, 165.71182)"],[0.12337279419884005,"#9c179e"],[0.28335164944387603,"#bd3786"],[0.44333050469035185,"#d8576b"],[0.6033093599353879,"#ed7953"],[0.7632882151804238,"#fb9f3a"],[0.9232670704254599,"#fdca26"],[1.0,"rgb(246.76463, 224.54328, 35.60178)"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Trace 2","x":[0.51825384,0.53193574,0.54561764,0.55929953,0.57298143,0.58666333,0.60034522,0.61402712,0.62770902,0.64139091,0.65507281,0.66875471,0.6824366,0.6961185,0.7098004,0.72348229,0.73716419,0.75084609,0.76452798,0.77820988,0.79189178,0.80557367,0.81925557,0.83293747,0.84661936,0.86030126,0.87398316,0.88766506,0.90134695,0.91502885,0.92871075,0.94239264,0.95607454,0.96975644,0.98343833,0.99712023,1.0108021,1.024484,1.0381659,1.0518478,1.0655297,1.0792116,1.0928935,1.1065754,1.1202573,1.1339392,1.1476211,1.161303,1.1749849,1.1886668,1.2023487,1.2160306,1.2297125,1.2433944,1.2570763,1.2707582,1.2844401,1.298122,1.3118039,1.3254858,1.3391676,1.3528495,1.3665314,1.3802133,1.3938952,1.4075771,1.421259,1.4349409,1.4486228,1.4623047,1.4759866,1.4896685,1.5033504,1.5170323,1.5307142,1.5443961,1.558078,1.5717599,1.5854418,1.5991237,1.6128056,1.6264875,1.6401694,1.6538513,1.6675332,1.6812151,1.694897,1.7085789,1.7222608,1.7359427,1.7496246,1.7633065,1.7769883,1.7906702,1.8043521,1.818034,1.8317159,1.8453978,1.8590797,1.8727616,1.8864435,1.9001254,1.9138073,1.9274892,1.9411711,1.954853,1.9685349,1.9822168,1.9958987,2.0095806,2.0232625,2.0369444,2.0506263,2.0643082,2.0779901,2.091672,2.1053539,2.1190358,2.1327177,2.1463996,2.1600815,2.1737634,2.1874453,2.2011271,2.214809,2.2284909,2.2421728,2.2558547,2.2695366,2.2832185,2.2969004,2.3105823,2.3242642,2.3379461,2.351628,2.3653099,2.3789918,2.3926737,2.4063556,2.4200375,2.4337194,2.4474013,2.4610832,2.4747651,2.488447,2.5021289,2.5158108,2.5294927,2.5431746,2.5568565,2.5705384,2.5842203,2.5979022,2.6115841,2.6252659,2.6389478,2.6526297,2.6663116,2.6799935,2.6936754,2.7073573,2.7210392,2.7347211,2.748403,2.7620849,2.7757668,2.7894487,2.8031306,2.8168125,2.8304944,2.8441763,2.8578582,2.8715401,2.885222,2.8989039,2.9125858,2.9262677,2.9399496,2.9536315,2.9673134,2.9809953,2.9946772,3.0083591,3.022041,3.0357229,3.0494047,3.0630866,3.0767685,3.0904504,3.1041323,3.1178142,3.1314961,3.145178,3.1588599,3.1725418,3.1862237,3.1999056,3.2135875,3.2272694,3.2409513,3.2546332,3.2683151,3.281997,3.2956789,3.3093608,3.3230427,3.3367246,3.3504065,3.3640884,3.3777703,3.3914522,3.4051341,3.418816,3.4324979,3.4461798,3.4598617,3.4735436,3.4872254,3.5009073,3.5145892,3.5282711,3.541953,3.5556349,3.5693168,3.5829987,3.5966806,3.6103625,3.6240444,3.6377263,3.6514082,3.6650901,3.678772,3.6924539,3.7061358,3.7198177,3.7334996,3.7471815,3.7608634,3.7745453,3.7882272,3.8019091,3.815591,3.8292729,3.8429548,3.8566367,3.8703186,3.8840005,3.8976824,3.9113642,3.9250461,3.938728,3.9524099,3.9660918,3.9797737,3.9934556,4.0071375,4.0208194,4.0345013,4.0481832,4.0618651,4.075547,4.0892289,4.1029108,4.1165927,4.1302746,4.1439565,4.1576384,4.1713203,4.1850022,4.1986841,4.212366,4.2260479,4.2397298,4.2534117,4.2670936,4.2807755,4.2944574,4.3081393,4.3218212,4.335503,4.3491849,4.3628668,4.3765487,4.3902306,4.4039125,4.4175944,4.4312763,4.4449582,4.4586401,4.472322,4.4860039,4.4996858,4.5133677,4.5270496,4.5407315,4.5544134,4.5680953,4.5817772,4.5954591,4.609141,4.6228229,4.6365048,4.6501867,4.6638686,4.6775505,4.6912324,4.7049143,4.7185962,4.7322781,4.74596,4.7596419,4.7733237,4.7870056,4.8006875,4.8143694,4.8280513,4.8417332,4.8554151,4.869097,4.8827789,4.8964608,4.9101427,4.9238246,4.9375065,4.9511884,4.9648703,4.9785522,4.9922341,5.005916,5.0195979,5.0332798,5.0469617,5.0606436,5.0743255,5.0880074,5.1016893,5.1153712,5.1290531,5.142735,5.1564169,5.1700988,5.1837807,5.1974625,5.2111444,5.2248263,5.2385082,5.2521901,5.265872,5.2795539,5.2932358,5.3069177,5.3205996,5.3342815,5.3479634,5.3616453,5.3753272,5.3890091,5.402691,5.4163729,5.4300548,5.4437367,5.4574186,5.4711005,5.4847824,5.4984643,5.5121462,5.5258281,5.53951,5.5531919,5.5668738,5.5805557,5.5942376,5.6079195,5.6216013,5.6352832,5.6489651,5.662647,5.6763289,5.6900108,5.7036927,5.7173746,5.7310565,5.7447384,5.7584203,5.7721022,5.7857841,5.799466,5.8131479,5.8268298,5.8405117,5.8541936,5.8678755,5.8815574,5.8952393,5.9089212,5.9226031,5.936285,5.9499669,5.9636488,5.9773307,5.9910126,6.0046945,6.0183764,6.0320583,6.0457401,6.059422,6.0731039,6.0867858,6.1004677,6.1141496,6.1278315,6.1415134,6.1551953,6.1688772,6.1825591,6.196241,6.2099229,6.2236048,6.2372867,6.2509686,6.2646505,6.2783324,6.2920143,6.3056962,6.3193781,6.33306,6.3467419,6.3604238,6.3741057,6.3877876,6.4014695,6.4151514,6.4288333,6.4425152,6.4561971,6.469879,6.4835608,6.4972427,6.5109246,6.5246065,6.5382884,6.5519703,6.5656522,6.5793341,6.593016,6.6066979,6.6203798,6.6340617,6.6477436,6.6614255,6.6751074,6.6887893,6.7024712,6.7161531,6.729835,6.7435169,6.7571988,6.7708807,6.7845626,6.7982445,6.8119264,6.8256083,6.8392902,6.8529721,6.866654,6.8803359,6.8940178,6.9076996,6.9213815,6.9350634,6.9487453,6.9624272,6.9761091,6.989791,7.0034729,7.0171548,7.0308367,7.0445186,7.0582005,7.0718824,7.0855643,7.0992462,7.1129281,7.12661,7.1402919,7.1539738,7.1676557,7.1813376,7.1950195,7.2087014,7.2223833,7.2360652,7.2497471,7.263429,7.2771109,7.2907928,7.3044747,7.3181566,7.3318384,7.3455203],"y":[-0.20803532,-0.2080262,-0.20802159,-0.20802129,-0.20802504,-0.20803252,-0.20804338,-0.2080572,-0.20807353,-0.20809188,-0.20811173,-0.2081325,-0.20815361,-0.20817445,-0.2081944,-0.20821282,-0.20822904,-0.20824244,-0.20825235,-0.20825813,-0.20825915,-0.20825479,-0.20824446,-0.20822756,-0.20820355,-0.20817188,-0.20813205,-0.20808358,-0.20802602,-0.20795893,-0.20788192,-0.20779461,-0.20769666,-0.20758772,-0.20746749,-0.20733567,-0.20719199,-0.20703618,-0.20686797,-0.20668713,-0.20649339,-0.20628651,-0.20606624,-0.20583234,-0.20558455,-0.20532261,-0.20504627,-0.20475525,-0.20444929,-0.20412811,-0.20379143,-0.20343898,-0.2030705,-0.20268572,-0.20228438,-0.20186626,-0.20143113,-0.20097879,-0.20050909,-0.20002189,-0.1995171,-0.19899465,-0.19845454,-0.19789682,-0.19732158,-0.19672897,-0.19611919,-0.19549252,-0.19484928,-0.19418986,-0.19351471,-0.19282432,-0.19211926,-0.19140012,-0.19066756,-0.18992226,-0.18916494,-0.18839635,-0.18761725,-0.18682842,-0.18603062,-0.18522463,-0.18441117,-0.18359098,-0.18276472,-0.18193304,-0.18109651,-0.18025564,-0.17941088,-0.1785626,-0.17771108,-0.17685652,-0.17599901,-0.17513855,-0.17427508,-0.17340838,-0.17253819,-0.17166411,-0.1707857,-0.16990238,-0.16901352,-0.16811841,-0.16721627,-0.16630626,-0.16538749,-0.16445903,-0.1635199,-0.16256911,-0.16160566,-0.16062852,-0.15963667,-0.1586291,-0.15760482,-0.15656285,-0.15550222,-0.15442203,-0.15332136,-0.15219935,-0.15105517,-0.14988801,-0.14869709,-0.14748166,-0.14624097,-0.14497431,-0.14368095,-0.14236018,-0.14101125,-0.13963343,-0.13822595,-0.136788,-0.13531874,-0.13381728,-0.13228267,-0.13071392,-0.12910996,-0.12746967,-0.12579185,-0.12407527,-0.12231859,-0.12052047,-0.1186795,-0.11679422,-0.11486318,-0.1128849,-0.11085792,-0.10878081,-0.10665219,-0.10447075,-0.1022353,-0.099944759,-0.097598212,-0.09519493,-0.0927344,-0.090216353,-0.087640797,-0.085008042,-0.082318728,-0.07957385,-0.07677478,-0.073923287,-0.071021552,-0.068072179,-0.065078203,-0.062043092,-0.058970742,-0.055865466,-0.052731986,-0.0495754,-0.046401163,-0.043215049,-0.04002311,-0.036831629,-0.033647068,-0.030476012,-0.027325102,-0.024200974,-0.021110182,-0.018059133,-0.015054007,-0.012100686,-0.0092046773,-0.0063710413,-0.0036043219,-0.00090847914,0.001713172,0.0042580181,0.0067241961,0.0091106351,0.011417089,0.013644162,0.015793319,0.017866894,0.019868082,0.021800917,0.023670255,0.025481723,0.027241683,0.028957164,0.030635802,0.032285765,0.033915667,0.035534485,0.037151463,0.038776017,0.040417634,0.042085773,0.043789766,0.045538714,0.047341394,0.049206165,0.051140882,0.053152807,0.055248543,0.057433957,0.059714128,0.062093291,0.064574799,0.06716109,0.069853667,0.072653081,0.075558936,0.078569889,0.081683673,0.084897116,0.088206175,0.09160598,0.095090876,0.098654479,0.10228973,0.10598897,0.10974398,0.11354609,0.11738619,0.12125486,0.12514242,0.12903898,0.13293455,0.13681908,0.14068252,0.14451492,0.14830646,0.15204751,0.1557287,0.15934096,0.16287557,0.16632418,0.16967889,0.17293224,0.17607728,0.17910754,0.18201712,0.18480065,0.18745331,0.18997085,0.19234961,0.19458646,0.19667886,0.1986248,0.2004228,0.20207193,0.2035717,0.20492214,0.20612367,0.20717714,0.20808376,0.20884508,0.20946291,0.20993935,0.21027665,0.21047727,0.21054374,0.21047869,0.21028477,0.20996461,0.20952079,0.2089558,0.20827203,0.2074717,0.20655688,0.20552944,0.20439106,0.20314322,0.20178716,0.20032397,0.19875451,0.19707949,0.19529944,0.19341479,0.19142587,0.18933293,0.1871362,0.18483595,0.18243247,0.17992616,0.17731757,0.1746074,0.1717966,0.16888633,0.16587808,0.1627736,0.15957502,0.15628481,0.15290579,0.14944119,0.14589459,0.14226996,0.13857164,0.13480431,0.13097299,0.12708303,0.12314004,0.11914988,0.11511864,0.11105257,0.10695808,0.10284165,0.098709831,0.094569178,0.090426212,0.086287382,0.08215902,0.078047306,0.073958226,0.069897541,0.065870755,0.061883082,0.057939424,0.054044346,0.050202055,0.046416385,0.042690783,0.039028297,0.03543157,0.031902833,0.028443908,0.025056203,0.021740719,0.018498055,0.015328417,0.012231626,0.0092071317,0.0062540258,0.0033710591,0.00055665775,-0.0021910575,-0.0048742506,-0.0074953491,-0.010057021,-0.01256215,-0.015013812,-0.017415249,-0.019769844,-0.022081089,-0.024352566,-0.026587913,-0.028790798,-0.030964896,-0.033113856,-0.03524128,-0.037350695,-0.039445532,-0.041529101,-0.043604569,-0.045674945,-0.047743057,-0.049811543,-0.051882835,-0.053959144,-0.056042463,-0.05813455,-0.060236933,-0.062350903,-0.064477521,-0.066617619,-0.068771807,-0.070940481,-0.073123831,-0.075321852,-0.077534358,-0.079760994,-0.082001246,-0.084254459,-0.086519849,-0.088796515,-0.09108345,-0.093379558,-0.095683659,-0.097994503,-0.10031077,-0.1026311,-0.10495407,-0.1072782,-0.10960199,-0.11192388,-0.11424228,-0.11655557,-0.11886208,-0.12116009,-0.12344786,-0.1257236,-0.12798549,-0.13023166,-0.1324602,-0.13466918,-0.13685663,-0.13902057,-0.14115896,-0.1432698,-0.14535107,-0.14740073,-0.14941681,-0.15139734,-0.15334042,-0.15524419,-0.15710689,-0.15892685,-0.1607025,-0.16243241,-0.16411528,-0.16574996,-0.16733548,-0.16887104,-0.17035603,-0.17179002,-0.1731728,-0.17450435,-0.17578486,-0.17701472,-0.17819452,-0.17932505,-0.18040727,-0.18144232,-0.18243151,-0.18337628,-0.18427823,-0.18513904,-0.1859605,-0.18674449,-0.18749292,-0.18820777,-0.18889102,-0.18954465,-0.19017062,-0.19077085,-0.19134722,-0.19190154,-0.19243552,-0.1929508,-0.1934489,-0.19393123,-0.19439911,-0.19485369,-0.19529604,-0.19572709,-0.19614763,-0.19655837,-0.19695986,-0.19735257,-0.19773686,-0.198113,-0.19848115,-0.19884144,-0.19919389,-0.19953848,-0.19987516,-0.20020382,-0.20052434,-0.20083659,-0.20114042,-0.20143568,-0.20172226,-0.20200003,-0.2022689,-0.20252882,-0.20277977,-0.20302174,-0.20325479,-0.20347901,-0.20369453,-0.20390154,-0.20410025,-0.2042909,-0.2044738,-0.20464927,-0.20481766,-0.20497937,-0.2051348,-0.20528436,-0.2054285,-0.20556765,-0.20570227,-0.20583281,-0.20595969,-0.20608334,-0.20620417,-0.20632257,-0.20643891,-0.20655353,-0.20666672,-0.20677877],"zorder":1,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[0.37771451,0.38947776,0.40124102,0.41300427,0.42476752,0.43653078,0.44829403,0.46005728,0.47182054,0.48358379,0.49534704,0.5071103,0.51887355,0.5306368,0.54240006,0.55416331,0.56592656,0.57768982,0.58945307,0.60121632,0.61297958,0.62474283,0.63650608,0.64826934,0.66003259,0.67179585,0.6835591,0.69532235,0.70708561,0.71884886,0.73061211,0.74237537,0.75413862,0.76590187,0.77766513,0.78942838,0.80119163,0.81295489,0.82471814,0.83648139,0.84824465,0.8600079,0.87177115,0.88353441,0.89529766,0.90706091,0.91882417,0.93058742,0.94235067,0.95411393,0.96587718,0.97764044,0.98940369,1.0011669,1.0129302,1.0246934,1.0364567,1.04822,1.0599832,1.0717465,1.0835097,1.095273,1.1070362,1.1187995,1.1305627,1.142326,1.1540892,1.1658525,1.1776157,1.189379,1.2011423,1.2129055,1.2246688,1.236432,1.2481953,1.2599585,1.2717218,1.283485,1.2952483,1.3070115,1.3187748,1.330538,1.3423013,1.3540645,1.3658278,1.3775911,1.3893543,1.4011176,1.4128808,1.4246441,1.4364073,1.4481706,1.4599338,1.4716971,1.4834603,1.4952236,1.5069868,1.5187501,1.5305133,1.5422766,1.5540399,1.5658031,1.5775664,1.5893296,1.6010929,1.6128561,1.6246194,1.6363826,1.6481459,1.6599091,1.6716724,1.6834356,1.6951989,1.7069621,1.7187254,1.7304887,1.7422519,1.7540152,1.7657784,1.7775417,1.7893049,1.8010682,1.8128314,1.8245947,1.8363579,1.8481212,1.8598844,1.8716477,1.883411,1.8951742,1.9069375,1.9187007,1.930464,1.9422272,1.9539905,1.9657537,1.977517,1.9892802,2.0010435,2.0128067,2.02457,2.0363332,2.0480965,2.0598598,2.071623,2.0833863,2.0951495,2.1069128,2.118676,2.1304393,2.1422025,2.1539658,2.165729,2.1774923,2.1892555,2.2010188,2.212782,2.2245453,2.2363086,2.2480718,2.2598351,2.2715983,2.2833616,2.2951248,2.3068881,2.3186513,2.3304146,2.3421778,2.3539411,2.3657043,2.3774676,2.3892308,2.4009941,2.4127574,2.4245206,2.4362839,2.4480471,2.4598104,2.4715736,2.4833369,2.4951001,2.5068634,2.5186266,2.5303899,2.5421531,2.5539164,2.5656797,2.5774429,2.5892062,2.6009694,2.6127327,2.6244959,2.6362592,2.6480224,2.6597857,2.6715489,2.6833122,2.6950754,2.7068387,2.7186019,2.7303652,2.7421285,2.7538917,2.765655,2.7774182,2.7891815,2.8009447,2.812708,2.8244712,2.8362345,2.8479977,2.859761,2.8715242,2.8832875,2.8950507,2.906814,2.9185773,2.9303405,2.9421038,2.953867,2.9656303,2.9773935,2.9891568,3.00092,3.0126833,3.0244465,3.0362098,3.047973,3.0597363,3.0714995,3.0832628,3.0950261,3.1067893,3.1185526,3.1303158,3.1420791,3.1538423,3.1656056,3.1773688,3.1891321,3.2008953,3.2126586,3.2244218,3.2361851,3.2479484,3.2597116,3.2714749,3.2832381,3.2950014,3.3067646,3.3185279,3.3302911,3.3420544,3.3538176,3.3655809,3.3773441,3.3891074,3.4008706,3.4126339,3.4243972,3.4361604,3.4479237,3.4596869,3.4714502,3.4832134,3.4949767,3.5067399,3.5185032,3.5302664,3.5420297,3.5537929,3.5655562,3.5773194,3.5890827,3.600846,3.6126092,3.6243725,3.6361357,3.647899,3.6596622,3.6714255,3.6831887,3.694952,3.7067152,3.7184785,3.7302417,3.742005,3.7537682,3.7655315,3.7772948,3.789058,3.8008213,3.8125845,3.8243478,3.836111,3.8478743,3.8596375,3.8714008,3.883164,3.8949273,3.9066905,3.9184538,3.9302171,3.9419803,3.9537436,3.9655068,3.9772701,3.9890333,4.0007966,4.0125598,4.0243231,4.0360863,4.0478496,4.0596128,4.0713761,4.0831393,4.0949026,4.1066659,4.1184291,4.1301924,4.1419556,4.1537189,4.1654821,4.1772454,4.1890086,4.2007719,4.2125351,4.2242984,4.2360616,4.2478249,4.2595881,4.2713514,4.2831147,4.2948779,4.3066412,4.3184044,4.3301677,4.3419309,4.3536942,4.3654574,4.3772207,4.3889839,4.4007472,4.4125104,4.4242737,4.436037,4.4478002,4.4595635,4.4713267,4.48309,4.4948532,4.5066165,4.5183797,4.530143,4.5419062,4.5536695,4.5654327,4.577196,4.5889592,4.6007225,4.6124858,4.624249,4.6360123,4.6477755,4.6595388,4.671302,4.6830653,4.6948285,4.7065918,4.718355,4.7301183,4.7418815,4.7536448,4.765408,4.7771713,4.7889346,4.8006978,4.8124611,4.8242243,4.8359876,4.8477508,4.8595141,4.8712773,4.8830406,4.8948038,4.9065671,4.9183303,4.9300936,4.9418568,4.9536201,4.9653834,4.9771466,4.9889099,5.0006731,5.0124364,5.0241996,5.0359629,5.0477261,5.0594894,5.0712526,5.0830159,5.0947791,5.1065424,5.1183057,5.1300689,5.1418322,5.1535954,5.1653587,5.1771219,5.1888852,5.2006484,5.2124117,5.2241749,5.2359382,5.2477014,5.2594647,5.2712279,5.2829912,5.2947545,5.3065177,5.318281,5.3300442,5.3418075,5.3535707,5.365334,5.3770972,5.3888605,5.4006237,5.412387,5.4241502,5.4359135,5.4476767,5.45944,5.4712033,5.4829665,5.4947298,5.506493,5.5182563,5.5300195,5.5417828,5.553546,5.5653093,5.5770725,5.5888358,5.600599,5.6123623,5.6241255,5.6358888,5.6476521,5.6594153,5.6711786,5.6829418,5.6947051,5.7064683,5.7182316,5.7299948,5.7417581,5.7535213,5.7652846,5.7770478,5.7888111,5.8005744,5.8123376,5.8241009,5.8358641,5.8476274,5.8593906,5.8711539,5.8829171,5.8946804,5.9064436,5.9182069,5.9299701,5.9417334,5.9534966,5.9652599,5.9770232,5.9887864,6.0005497,6.0123129,6.0240762,6.0358394,6.0476027,6.0593659,6.0711292,6.0828924,6.0946557,6.1064189,6.1181822,6.1299454,6.1417087,6.153472,6.1652352,6.1769985,6.1887617,6.200525,6.2122882,6.2240515,6.2358147,6.247578],"y":[-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748],"zorder":2,"type":"scatter"},{"customdata":[[0.012388439],[0.012814048],[0.013245414],[0.013682525],[0.014125394],[0.014574055],[0.015028569],[0.01548902],[0.015955513],[0.016428177],[0.016907158],[0.017392623],[0.017884751],[0.018383739],[0.01888979],[0.019403117],[0.019923937],[0.020452469],[0.02098893],[0.021533531],[0.022086475],[0.022647954],[0.023218147],[0.023797215],[0.024385298],[0.024982518],[0.025588973],[0.026204735],[0.026829854],[0.027464352],[0.028108229],[0.02876146],[0.029423997],[0.030095772],[0.0307767],[0.03146668],[0.032165603],[0.03287335],[0.033589803],[0.034314846],[0.035048372],[0.035790289],[0.036540527],[0.037299039],[0.038065816],[0.038840885],[0.039624319],[0.040416244],[0.041216842],[0.042026357],[0.042845099],[0.043673451],[0.044511868],[0.045360883],[0.04622111],[0.047093239],[0.047978044],[0.048876376],[0.049789163],[0.05071741],[0.051662189],[0.052624641],[0.053605965],[0.054607412],[0.05563028],[0.0566759],[0.057745633],[0.058840855],[0.059962945],[0.061113279],[0.062293214],[0.063504076],[0.064747148],[0.066023658],[0.067334767],[0.068681553],[0.070065004],[0.071486001],[0.072945313],[0.074443578],[0.075981303],[0.077558847],[0.079176418],[0.080834062],[0.082531661],[0.084268927],[0.086045398],[0.087860436],[0.089713226],[0.091602778],[0.093527928],[0.095487342],[0.097479517],[0.099502792],[0.10155535],[0.10363524],[0.10574036],[0.1078685],[0.11001731],[0.11218437],[0.11436716],[0.11656308],[0.11876947],[0.12098364],[0.12320286],[0.12542439],[0.12764548],[0.12986343],[0.13207554],[0.13427918],[0.13647178],[0.13865085],[0.140814],[0.14295893],[0.14508349],[0.14718565],[0.14926353],[0.15131541],[0.15333975],[0.15533516],[0.15730047],[0.1592347],[0.16113704],[0.16300693],[0.16484399],[0.16664807],[0.16841925],[0.17015779],[0.1718642],[0.1735392],[0.17518372],[0.17679891],[0.1783861],[0.17994686],[0.18148292],[0.18299622],[0.18448887],[0.18596313],[0.18742144],[0.18886638],[0.19030064],[0.19172705],[0.19314854],[0.19456813],[0.19598888],[0.19741394],[0.19884649],[0.20028971],[0.20174679],[0.20322091],[0.20471519],[0.2062327],[0.20777644],[0.2093493],[0.21095406],[0.21259336],[0.21426968],[0.21598534],[0.21774246],[0.21954294],[0.22138849],[0.22328055],[0.22522033],[0.22720877],[0.22924654],[0.23133404],[0.23347136],[0.23565832],[0.23789444],[0.24017894],[0.24251076],[0.24488853],[0.24731063],[0.24977513],[0.25227985],[0.25482236],[0.25739997],[0.2600098],[0.26264874],[0.26531349],[0.2680006],[0.27070646],[0.27342735],[0.27615944],[0.27889884],[0.2816416],[0.28438375],[0.28712132],[0.28985038],[0.29256702],[0.29526743],[0.29794787],[0.30060475],[0.30323458],[0.30583405],[0.30839999],[0.31092945],[0.31341966],[0.31586804],[0.31827226],[0.32063017],[0.32293988],[0.32519971],[0.32740821],[0.32956414],[0.3316665],[0.33371449],[0.33570752],[0.3376452],[0.3395273],[0.34135379],[0.3431248],[0.34484059],[0.34650156],[0.34810823],[0.34966122],[0.35116123],[0.35260906],[0.35400554],[0.35535155],[0.35664802],[0.35789587],[0.35909606],[0.36024952],[0.36135718],[0.36241994],[0.36343867],[0.3644142],[0.36534733],[0.36623878],[0.36708925],[0.36789936],[0.36866966],[0.36940067],[0.37009283],[0.37074649],[0.37136196],[0.37193949],[0.37247924],[0.3729813],[0.37344573],[0.37387248],[0.37426147],[0.37461252],[0.37492543],[0.37519989],[0.37543556],[0.37563202],[0.3757888],[0.37590536],[0.37598112],[0.37601541],[0.37600755],[0.37595676],[0.37586224],[0.37572313],[0.37553853],[0.3753075],[0.37502907],[0.37470224],[0.37432597],[0.37389923],[0.37342096],[0.37289012],[0.37230565],[0.37166653],[0.37097177],[0.37022039],[0.3694115],[0.36854422],[0.36761778],[0.36663148],[0.36558469],[0.36447691],[0.36330773],[0.36207688],[0.36078421],[0.3594297],[0.3580135],[0.35653587],[0.35499727],[0.3533983],[0.35173972],[0.35002246],[0.34824761],[0.34641642],[0.3445303],[0.34259081],[0.34059968],[0.33855875],[0.33647],[0.33433555],[0.33215762],[0.32993851],[0.32768065],[0.3253865],[0.3230586],[0.32069954],[0.31831192],[0.31589837],[0.31346151],[0.31100394],[0.30852825],[0.30603694],[0.3035325],[0.30101731],[0.29849368],[0.29596382],[0.29342982],[0.29089366],[0.28835719],[0.28582213],[0.28329004],[0.28076234],[0.27824033],[0.2757251],[0.27321762],[0.2707187],[0.268229],[0.26574901],[0.26327908],[0.26081942],[0.2583701],[0.25593104],[0.25350206],[0.25108284],[0.24867297],[0.24627191],[0.24387907],[0.24149375],[0.23911518],[0.23674256],[0.234375],[0.23201161],[0.22965147],[0.22729362],[0.22493712],[0.22258103],[0.22022444],[0.21786646],[0.21550622],[0.21314293],[0.21077585],[0.20840427],[0.2060276],[0.2036453],[0.20125693],[0.19886211],[0.19646061],[0.19405225],[0.19163697],[0.18921481],[0.18678594],[0.1843506],[0.18190916],[0.17946208],[0.17700995],[0.17455344],[0.17209332],[0.16963045],[0.1671658],[0.1647004],[0.16223537],[0.15977191],[0.15731128],[0.15485478],[0.15240379],[0.14995972],[0.14752402],[0.14509815],[0.14268361],[0.1402819],[0.13789454],[0.13552301],[0.13316881],[0.13083341],[0.12851823],[0.1262247],[0.12395417],[0.12170795],[0.1194873],[0.11729344],[0.11512749],[0.11299053],[0.11088356],[0.1088075],[0.10676321],[0.10475146],[0.10277293],[0.10082823],[0.098917906],[0.09704239],[0.095202053],[0.093397184],[0.09162799],[0.089894606],[0.088197089],[0.086535425],[0.08490953],[0.083319251],[0.081764374],[0.08024462],[0.078759652],[0.077309079],[0.075892453],[0.07450928],[0.073159016],[0.071841073],[0.07055482],[0.069299589],[0.068074672],[0.066879329],[0.065712786],[0.06457424],[0.063462858],[0.062377784],[0.061318137],[0.060283014],[0.059271493],[0.058282636],[0.057315488],[0.056369084],[0.055442447],[0.054534595],[0.05364454],[0.052771293],[0.051913868],[0.051071282],[0.050242564],[0.049426752],[0.048622903],[0.047830092],[0.047047421],[0.046274019],[0.045509047],[0.044751704],[0.044001229],[0.043256906],[0.042518068],[0.041784099],[0.041054439],[0.040328587],[0.039606101],[0.038886604],[0.038169783],[0.037455391],[0.036743248],[0.036033239],[0.035325316],[0.034619499],[0.033915867],[0.033214562],[0.032515784],[0.03181979],[0.031126883],[0.030437418],[0.029751788],[0.029070422],[0.028393783],[0.027722356],[0.027056646],[0.02639717],[0.025744452],[0.025099016],[0.024461381],[0.023832054],[0.023211524],[0.022600258],[0.021998696],[0.021407244],[0.020826273],[0.020256116],[0.01969706],[0.01914935],[0.018613183],[0.018088707],[0.017576023],[0.017075185],[0.016586195],[0.016109014],[0.015643553],[0.015189684],[0.014747237],[0.014316008],[0.013895757],[0.013486216],[0.01308709],[0.012698063],[0.012318804],[0.011948964],[0.011588191],[0.011236123],[0.010892401],[0.010556669],[0.010228575],[0.0099077815],[0.009593961],[0.0092868039],[0.008986019],[0.0086913356]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"rgb(118.20608, 3.20319, 166.99855)"],[0.16743801324085608,"#9c179e"],[0.35351019105629805,"#bd3786"],[0.5395823688734148,"#d8576b"],[0.7256545466888569,"#ed7953"],[0.9117267245042988,"#fb9f3a"],[1.0,"rgb(251.94881, 179.39935, 48.51193)"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Trace 3","x":[0.37771451,0.38947776,0.40124102,0.41300427,0.42476752,0.43653078,0.44829403,0.46005728,0.47182054,0.48358379,0.49534704,0.5071103,0.51887355,0.5306368,0.54240006,0.55416331,0.56592656,0.57768982,0.58945307,0.60121632,0.61297958,0.62474283,0.63650608,0.64826934,0.66003259,0.67179585,0.6835591,0.69532235,0.70708561,0.71884886,0.73061211,0.74237537,0.75413862,0.76590187,0.77766513,0.78942838,0.80119163,0.81295489,0.82471814,0.83648139,0.84824465,0.8600079,0.87177115,0.88353441,0.89529766,0.90706091,0.91882417,0.93058742,0.94235067,0.95411393,0.96587718,0.97764044,0.98940369,1.0011669,1.0129302,1.0246934,1.0364567,1.04822,1.0599832,1.0717465,1.0835097,1.095273,1.1070362,1.1187995,1.1305627,1.142326,1.1540892,1.1658525,1.1776157,1.189379,1.2011423,1.2129055,1.2246688,1.236432,1.2481953,1.2599585,1.2717218,1.283485,1.2952483,1.3070115,1.3187748,1.330538,1.3423013,1.3540645,1.3658278,1.3775911,1.3893543,1.4011176,1.4128808,1.4246441,1.4364073,1.4481706,1.4599338,1.4716971,1.4834603,1.4952236,1.5069868,1.5187501,1.5305133,1.5422766,1.5540399,1.5658031,1.5775664,1.5893296,1.6010929,1.6128561,1.6246194,1.6363826,1.6481459,1.6599091,1.6716724,1.6834356,1.6951989,1.7069621,1.7187254,1.7304887,1.7422519,1.7540152,1.7657784,1.7775417,1.7893049,1.8010682,1.8128314,1.8245947,1.8363579,1.8481212,1.8598844,1.8716477,1.883411,1.8951742,1.9069375,1.9187007,1.930464,1.9422272,1.9539905,1.9657537,1.977517,1.9892802,2.0010435,2.0128067,2.02457,2.0363332,2.0480965,2.0598598,2.071623,2.0833863,2.0951495,2.1069128,2.118676,2.1304393,2.1422025,2.1539658,2.165729,2.1774923,2.1892555,2.2010188,2.212782,2.2245453,2.2363086,2.2480718,2.2598351,2.2715983,2.2833616,2.2951248,2.3068881,2.3186513,2.3304146,2.3421778,2.3539411,2.3657043,2.3774676,2.3892308,2.4009941,2.4127574,2.4245206,2.4362839,2.4480471,2.4598104,2.4715736,2.4833369,2.4951001,2.5068634,2.5186266,2.5303899,2.5421531,2.5539164,2.5656797,2.5774429,2.5892062,2.6009694,2.6127327,2.6244959,2.6362592,2.6480224,2.6597857,2.6715489,2.6833122,2.6950754,2.7068387,2.7186019,2.7303652,2.7421285,2.7538917,2.765655,2.7774182,2.7891815,2.8009447,2.812708,2.8244712,2.8362345,2.8479977,2.859761,2.8715242,2.8832875,2.8950507,2.906814,2.9185773,2.9303405,2.9421038,2.953867,2.9656303,2.9773935,2.9891568,3.00092,3.0126833,3.0244465,3.0362098,3.047973,3.0597363,3.0714995,3.0832628,3.0950261,3.1067893,3.1185526,3.1303158,3.1420791,3.1538423,3.1656056,3.1773688,3.1891321,3.2008953,3.2126586,3.2244218,3.2361851,3.2479484,3.2597116,3.2714749,3.2832381,3.2950014,3.3067646,3.3185279,3.3302911,3.3420544,3.3538176,3.3655809,3.3773441,3.3891074,3.4008706,3.4126339,3.4243972,3.4361604,3.4479237,3.4596869,3.4714502,3.4832134,3.4949767,3.5067399,3.5185032,3.5302664,3.5420297,3.5537929,3.5655562,3.5773194,3.5890827,3.600846,3.6126092,3.6243725,3.6361357,3.647899,3.6596622,3.6714255,3.6831887,3.694952,3.7067152,3.7184785,3.7302417,3.742005,3.7537682,3.7655315,3.7772948,3.789058,3.8008213,3.8125845,3.8243478,3.836111,3.8478743,3.8596375,3.8714008,3.883164,3.8949273,3.9066905,3.9184538,3.9302171,3.9419803,3.9537436,3.9655068,3.9772701,3.9890333,4.0007966,4.0125598,4.0243231,4.0360863,4.0478496,4.0596128,4.0713761,4.0831393,4.0949026,4.1066659,4.1184291,4.1301924,4.1419556,4.1537189,4.1654821,4.1772454,4.1890086,4.2007719,4.2125351,4.2242984,4.2360616,4.2478249,4.2595881,4.2713514,4.2831147,4.2948779,4.3066412,4.3184044,4.3301677,4.3419309,4.3536942,4.3654574,4.3772207,4.3889839,4.4007472,4.4125104,4.4242737,4.436037,4.4478002,4.4595635,4.4713267,4.48309,4.4948532,4.5066165,4.5183797,4.530143,4.5419062,4.5536695,4.5654327,4.577196,4.5889592,4.6007225,4.6124858,4.624249,4.6360123,4.6477755,4.6595388,4.671302,4.6830653,4.6948285,4.7065918,4.718355,4.7301183,4.7418815,4.7536448,4.765408,4.7771713,4.7889346,4.8006978,4.8124611,4.8242243,4.8359876,4.8477508,4.8595141,4.8712773,4.8830406,4.8948038,4.9065671,4.9183303,4.9300936,4.9418568,4.9536201,4.9653834,4.9771466,4.9889099,5.0006731,5.0124364,5.0241996,5.0359629,5.0477261,5.0594894,5.0712526,5.0830159,5.0947791,5.1065424,5.1183057,5.1300689,5.1418322,5.1535954,5.1653587,5.1771219,5.1888852,5.2006484,5.2124117,5.2241749,5.2359382,5.2477014,5.2594647,5.2712279,5.2829912,5.2947545,5.3065177,5.318281,5.3300442,5.3418075,5.3535707,5.365334,5.3770972,5.3888605,5.4006237,5.412387,5.4241502,5.4359135,5.4476767,5.45944,5.4712033,5.4829665,5.4947298,5.506493,5.5182563,5.5300195,5.5417828,5.553546,5.5653093,5.5770725,5.5888358,5.600599,5.6123623,5.6241255,5.6358888,5.6476521,5.6594153,5.6711786,5.6829418,5.6947051,5.7064683,5.7182316,5.7299948,5.7417581,5.7535213,5.7652846,5.7770478,5.7888111,5.8005744,5.8123376,5.8241009,5.8358641,5.8476274,5.8593906,5.8711539,5.8829171,5.8946804,5.9064436,5.9182069,5.9299701,5.9417334,5.9534966,5.9652599,5.9770232,5.9887864,6.0005497,6.0123129,6.0240762,6.0358394,6.0476027,6.0593659,6.0711292,6.0828924,6.0946557,6.1064189,6.1181822,6.1299454,6.1417087,6.153472,6.1652352,6.1769985,6.1887617,6.200525,6.2122882,6.2240515,6.2358147,6.247578],"y":[-0.40869905,-0.40827344,-0.40784207,-0.40740496,-0.40696209,-0.40651343,-0.40605891,-0.40559846,-0.40513197,-0.40465931,-0.40418033,-0.40369486,-0.40320273,-0.40270375,-0.40219769,-0.40168437,-0.40116355,-0.40063501,-0.40009855,-0.39955395,-0.39900101,-0.39843953,-0.39786934,-0.39729027,-0.39670219,-0.39610497,-0.39549851,-0.39488275,-0.39425763,-0.39362313,-0.39297925,-0.39232602,-0.39166349,-0.39099171,-0.39031078,-0.3896208,-0.38892188,-0.38821413,-0.38749768,-0.38677264,-0.38603911,-0.38529719,-0.38454696,-0.38378844,-0.38302167,-0.3822466,-0.38146316,-0.38067124,-0.37987064,-0.37906113,-0.37824238,-0.37741403,-0.37657562,-0.3757266,-0.37486637,-0.37399424,-0.37310944,-0.37221111,-0.37129832,-0.37037007,-0.36942529,-0.36846284,-0.36748152,-0.36648007,-0.3654572,-0.36441158,-0.36334185,-0.36224663,-0.36112454,-0.35997421,-0.35879427,-0.35758341,-0.35634034,-0.35506383,-0.35375272,-0.35240593,-0.35102248,-0.34960148,-0.34814217,-0.34664391,-0.34510618,-0.34352864,-0.34191107,-0.34025342,-0.33855582,-0.33681856,-0.33504209,-0.33322705,-0.33137426,-0.32948471,-0.32755956,-0.32560014,-0.32360797,-0.32158469,-0.31953213,-0.31745224,-0.31534712,-0.31321899,-0.31107017,-0.30890311,-0.30672032,-0.30452441,-0.30231801,-0.30010384,-0.29788463,-0.2956631,-0.293442,-0.29122405,-0.28901194,-0.2868083,-0.2846157,-0.28243663,-0.28027349,-0.27812855,-0.276004,-0.27390184,-0.27182395,-0.26977207,-0.26774774,-0.26575232,-0.26378701,-0.26185279,-0.25995044,-0.25808056,-0.2562435,-0.25443941,-0.25266824,-0.25092969,-0.24922328,-0.24754828,-0.24590376,-0.24428858,-0.24270138,-0.24114062,-0.23960456,-0.23809126,-0.23659862,-0.23512435,-0.23366604,-0.23222111,-0.23078685,-0.22936043,-0.22793894,-0.22651936,-0.2250986,-0.22367354,-0.22224099,-0.22079777,-0.21934069,-0.21786657,-0.2163723,-0.21485478,-0.21331104,-0.21173818,-0.21013342,-0.20849412,-0.2068178,-0.20510214,-0.20334503,-0.20154454,-0.19969899,-0.19780693,-0.19586715,-0.19387871,-0.19184094,-0.18975345,-0.18761613,-0.18542917,-0.18319305,-0.18090855,-0.17857673,-0.17619895,-0.17377685,-0.17131235,-0.16880763,-0.16626513,-0.16368751,-0.16107768,-0.15843874,-0.15577399,-0.15308689,-0.15038103,-0.14766014,-0.14492805,-0.14218865,-0.13944589,-0.13670374,-0.13396616,-0.13123711,-0.12852046,-0.12582006,-0.12313961,-0.12048273,-0.1178529,-0.11525344,-0.11268749,-0.11015803,-0.10766782,-0.10521944,-0.10281523,-0.10045731,-0.0981476,-0.095887771,-0.093679275,-0.091523342,-0.089420982,-0.08737299,-0.08537996,-0.083442288,-0.081560186,-0.079733691,-0.077962684,-0.076246895,-0.074585925,-0.072979256,-0.071426267,-0.06992625,-0.068478423,-0.067081946,-0.065735933,-0.064439466,-0.063191609,-0.06199142,-0.060837959,-0.0597303,-0.058667542,-0.057648812,-0.056673279,-0.055740155,-0.054848701,-0.053998234,-0.053188129,-0.052417821,-0.051686809,-0.050994658,-0.050340996,-0.04972552,-0.049147994,-0.048608248,-0.048106181,-0.047641755,-0.047215002,-0.046826017,-0.04647496,-0.046162057,-0.045887596,-0.045651928,-0.045455467,-0.045298687,-0.045182123,-0.045106367,-0.04507207,-0.045079937,-0.045130727,-0.045225249,-0.045364358,-0.045548957,-0.045779983,-0.046058411,-0.046385245,-0.046761512,-0.047188253,-0.047666521,-0.048197367,-0.048781836,-0.049420952,-0.050115717,-0.050867091,-0.051675987,-0.052543262,-0.053469699,-0.054456005,-0.055502793,-0.056610574,-0.05777975,-0.0590106,-0.060303273,-0.06165778,-0.063073988,-0.064551611,-0.066090209,-0.06768918,-0.06934776,-0.071065022,-0.072839875,-0.074671067,-0.076557187,-0.078496671,-0.080487806,-0.082528738,-0.084617483,-0.086751933,-0.088929869,-0.091148971,-0.093406836,-0.095700985,-0.098028881,-0.10038794,-0.10277556,-0.10518911,-0.10762597,-0.11008354,-0.11255924,-0.11505054,-0.11755498,-0.12007017,-0.1225938,-0.12512366,-0.12765766,-0.13019382,-0.13273029,-0.13526536,-0.13779745,-0.14032514,-0.14284716,-0.14536239,-0.14786986,-0.15036878,-0.15285848,-0.15533847,-0.1578084,-0.16026806,-0.16271739,-0.16515644,-0.16758542,-0.17000464,-0.17241452,-0.17481557,-0.17720841,-0.17959374,-0.1819723,-0.18434493,-0.18671248,-0.18907587,-0.19143602,-0.19379387,-0.19615037,-0.19850645,-0.20086304,-0.20322103,-0.20558126,-0.20794455,-0.21031164,-0.21268321,-0.21505988,-0.21744218,-0.21983056,-0.22222537,-0.22462687,-0.22703524,-0.22945052,-0.23187267,-0.23430155,-0.23673689,-0.23917833,-0.2416254,-0.24407753,-0.24653404,-0.24899417,-0.25145703,-0.25392169,-0.25638709,-0.25885211,-0.26131557,-0.26377621,-0.2662327,-0.26868369,-0.27112776,-0.27356347,-0.27598933,-0.27840387,-0.28080558,-0.28319295,-0.28556447,-0.28791867,-0.29025408,-0.29256925,-0.29486278,-0.29713332,-0.29937954,-0.30160018,-0.30379404,-0.30595999,-0.30809695,-0.31020392,-0.31227998,-0.31432427,-0.31633603,-0.31831456,-0.32025925,-0.32216958,-0.32404509,-0.32588543,-0.3276903,-0.32945949,-0.33119288,-0.33289039,-0.33455206,-0.33617795,-0.33776823,-0.33932311,-0.34084286,-0.34232783,-0.34377841,-0.34519503,-0.3465782,-0.34792847,-0.34924641,-0.35053266,-0.3517879,-0.35301281,-0.35420815,-0.3553747,-0.35651324,-0.35762463,-0.3587097,-0.35976935,-0.36080447,-0.36181599,-0.36280485,-0.363772,-0.3647184,-0.36564504,-0.36655289,-0.36744294,-0.36831619,-0.36917362,-0.3700162,-0.37084492,-0.37166073,-0.37246458,-0.37325739,-0.37404006,-0.37481347,-0.37557844,-0.37633578,-0.37708626,-0.37783058,-0.37856942,-0.37930339,-0.38003305,-0.3807589,-0.38148138,-0.38220088,-0.3829177,-0.38363209,-0.38434424,-0.38505425,-0.38576217,-0.38646799,-0.38717162,-0.38787292,-0.3885717,-0.38926769,-0.3899606,-0.39065007,-0.3913357,-0.39201706,-0.3926937,-0.39336513,-0.39403084,-0.39469031,-0.39534303,-0.39598847,-0.3966261,-0.39725543,-0.39787596,-0.39848723,-0.39908879,-0.39968024,-0.40026121,-0.40083137,-0.40139042,-0.40193813,-0.4024743,-0.40299878,-0.40351146,-0.4040123,-0.40450129,-0.40497847,-0.40544393,-0.4058978,-0.40634025,-0.40677148,-0.40719173,-0.40760127,-0.40800039,-0.40838942,-0.40876868,-0.40913852,-0.40949929,-0.40985136,-0.41019508,-0.41053082,-0.41085891,-0.4111797,-0.41149352,-0.41180068,-0.41210146,-0.41239615],"zorder":2,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-0.56377987,-0.5519137,-0.54004753,-0.52818136,-0.51631519,-0.50444902,-0.49258285,-0.48071668,-0.46885051,-0.45698435,-0.44511818,-0.43325201,-0.42138584,-0.40951967,-0.3976535,-0.38578733,-0.37392116,-0.36205499,-0.35018883,-0.33832266,-0.32645649,-0.31459032,-0.30272415,-0.29085798,-0.27899181,-0.26712564,-0.25525947,-0.24339331,-0.23152714,-0.21966097,-0.2077948,-0.19592863,-0.18406246,-0.17219629,-0.16033012,-0.14846395,-0.13659779,-0.12473162,-0.11286545,-0.10099928,-0.08913311,-0.077266941,-0.065400772,-0.053534603,-0.041668434,-0.029802265,-0.017936096,-0.0060699272,0.0057962417,0.017662411,0.02952858,0.041394748,0.053260917,0.065127086,0.076993255,0.088859424,0.10072559,0.11259176,0.12445793,0.1363241,0.14819027,0.16005644,0.17192261,0.18378878,0.19565494,0.20752111,0.21938728,0.23125345,0.24311962,0.25498579,0.26685196,0.27871813,0.2905843,0.30245046,0.31431663,0.3261828,0.33804897,0.34991514,0.36178131,0.37364748,0.38551365,0.39737982,0.40924598,0.42111215,0.43297832,0.44484449,0.45671066,0.46857683,0.480443,0.49230917,0.50417534,0.51604151,0.52790767,0.53977384,0.55164001,0.56350618,0.57537235,0.58723852,0.59910469,0.61097086,0.62283703,0.63470319,0.64656936,0.65843553,0.6703017,0.68216787,0.69403404,0.70590021,0.71776638,0.72963255,0.74149871,0.75336488,0.76523105,0.77709722,0.78896339,0.80082956,0.81269573,0.8245619,0.83642807,0.84829423,0.8601604,0.87202657,0.88389274,0.89575891,0.90762508,0.91949125,0.93135742,0.94322359,0.95508976,0.96695592,0.97882209,0.99068826,1.0025544,1.0144206,1.0262868,1.0381529,1.0500191,1.0618853,1.0737514,1.0856176,1.0974838,1.10935,1.1212161,1.1330823,1.1449485,1.1568146,1.1686808,1.180547,1.1924131,1.2042793,1.2161455,1.2280116,1.2398778,1.251744,1.2636101,1.2754763,1.2873425,1.2992087,1.3110748,1.322941,1.3348072,1.3466733,1.3585395,1.3704057,1.3822718,1.394138,1.4060042,1.4178703,1.4297365,1.4416027,1.4534688,1.465335,1.4772012,1.4890674,1.5009335,1.5127997,1.5246659,1.536532,1.5483982,1.5602644,1.5721305,1.5839967,1.5958629,1.607729,1.6195952,1.6314614,1.6433276,1.6551937,1.6670599,1.6789261,1.6907922,1.7026584,1.7145246,1.7263907,1.7382569,1.7501231,1.7619892,1.7738554,1.7857216,1.7975877,1.8094539,1.8213201,1.8331863,1.8450524,1.8569186,1.8687848,1.8806509,1.8925171,1.9043833,1.9162494,1.9281156,1.9399818,1.9518479,1.9637141,1.9755803,1.9874465,1.9993126,2.0111788,2.023045,2.0349111,2.0467773,2.0586435,2.0705096,2.0823758,2.094242,2.1061081,2.1179743,2.1298405,2.1417066,2.1535728,2.165439,2.1773052,2.1891713,2.2010375,2.2129037,2.2247698,2.236636,2.2485022,2.2603683,2.2722345,2.2841007,2.2959668,2.307833,2.3196992,2.3315653,2.3434315,2.3552977,2.3671639,2.37903,2.3908962,2.4027624,2.4146285,2.4264947,2.4383609,2.450227,2.4620932,2.4739594,2.4858255,2.4976917,2.5095579,2.5214241,2.5332902,2.5451564,2.5570226,2.5688887,2.5807549,2.5926211,2.6044872,2.6163534,2.6282196,2.6400857,2.6519519,2.6638181,2.6756842,2.6875504,2.6994166,2.7112828,2.7231489,2.7350151,2.7468813,2.7587474,2.7706136,2.7824798,2.7943459,2.8062121,2.8180783,2.8299444,2.8418106,2.8536768,2.865543,2.8774091,2.8892753,2.9011415,2.9130076,2.9248738,2.93674,2.9486061,2.9604723,2.9723385,2.9842046,2.9960708,3.007937,3.0198031,3.0316693,3.0435355,3.0554017,3.0672678,3.079134,3.0910002,3.1028663,3.1147325,3.1265987,3.1384648,3.150331,3.1621972,3.1740633,3.1859295,3.1977957,3.2096618,3.221528,3.2333942,3.2452604,3.2571265,3.2689927,3.2808589,3.292725,3.3045912,3.3164574,3.3283235,3.3401897,3.3520559,3.363922,3.3757882,3.3876544,3.3995206,3.4113867,3.4232529,3.4351191,3.4469852,3.4588514,3.4707176,3.4825837,3.4944499,3.5063161,3.5181822,3.5300484,3.5419146,3.5537807,3.5656469,3.5775131,3.5893793,3.6012454,3.6131116,3.6249778,3.6368439,3.6487101,3.6605763,3.6724424,3.6843086,3.6961748,3.7080409,3.7199071,3.7317733,3.7436395,3.7555056,3.7673718,3.779238,3.7911041,3.8029703,3.8148365,3.8267026,3.8385688,3.850435,3.8623011,3.8741673,3.8860335,3.8978996,3.9097658,3.921632,3.9334982,3.9453643,3.9572305,3.9690967,3.9809628,3.992829,4.0046952,4.0165613,4.0284275,4.0402937,4.0521598,4.064026,4.0758922,4.0877583,4.0996245,4.1114907,4.1233569,4.135223,4.1470892,4.1589554,4.1708215,4.1826877,4.1945539,4.20642,4.2182862,4.2301524,4.2420185,4.2538847,4.2657509,4.2776171,4.2894832,4.3013494,4.3132156,4.3250817,4.3369479,4.3488141,4.3606802,4.3725464,4.3844126,4.3962787,4.4081449,4.4200111,4.4318772,4.4437434,4.4556096,4.4674758,4.4793419,4.4912081,4.5030743,4.5149404,4.5268066,4.5386728,4.5505389,4.5624051,4.5742713,4.5861374,4.5980036,4.6098698,4.621736,4.6336021,4.6454683,4.6573345,4.6692006,4.6810668,4.692933,4.7047991,4.7166653,4.7285315,4.7403976,4.7522638,4.76413,4.7759961,4.7878623,4.7997285,4.8115947,4.8234608,4.835327,4.8471932,4.8590593,4.8709255,4.8827917,4.8946578,4.906524,4.9183902,4.9302563,4.9421225,4.9539887,4.9658548,4.977721,4.9895872,5.0014534,5.0133195,5.0251857,5.0370519,5.048918,5.0607842,5.0726504,5.0845165,5.0963827,5.1082489,5.120115,5.1319812,5.1438474,5.1557136,5.1675797,5.1794459,5.1913121,5.2031782,5.2150444,5.2269106,5.2387767,5.2506429,5.2625091,5.2743752,5.2862414,5.2981076,5.3099737,5.3218399,5.3337061,5.3455723,5.3574384],"y":[-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123],"zorder":3,"type":"scatter"},{"customdata":[[0.0093841402],[0.0096101294],[0.0098348894],[0.010058533],[0.010281221],[0.010503165],[0.010724627],[0.010945918],[0.011167402],[0.01138949],[0.011612641],[0.011837364],[0.012064211],[0.012293778],[0.012526703],[0.01276366],[0.013005362],[0.013252551],[0.013506],[0.013766508],[0.014034894],[0.014311997],[0.014598669],[0.014895773],[0.015204177],[0.015524752],[0.015858366],[0.016205884],[0.016568157],[0.016946024],[0.017340308],[0.017751809],[0.018181301],[0.018629533],[0.01909722],[0.019585043],[0.020093644],[0.020623627],[0.02117555],[0.021749927],[0.022347223],[0.022967853],[0.023612178],[0.024280506],[0.024973087],[0.025690116],[0.026431724],[0.027197985],[0.027988908],[0.028804439],[0.029644462],[0.030508793],[0.031397183],[0.032309319],[0.033244818],[0.034203234],[0.035184052],[0.036186693],[0.037210514],[0.038254806],[0.039318797],[0.040401658],[0.041502497],[0.042620369],[0.043754274],[0.044903162],[0.046065937],[0.047241461],[0.048428559],[0.049626023],[0.050832617],[0.052047087],[0.053268163],[0.054494567],[0.055725022],[0.056958257],[0.058193018],[0.059428073],[0.060662222],[0.061894306],[0.063123216],[0.064347899],[0.06556737],[0.066780721],[0.067987124],[0.069185847],[0.070376257],[0.071557827],[0.072730146],[0.073892925],[0.075046001],[0.076189343],[0.077323058],[0.078447391],[0.079562732],[0.080669616],[0.081768721],[0.082860873],[0.083947041],[0.085028336],[0.086106008],[0.08718144],[0.088256147],[0.089331764],[0.090410042],[0.091492839],[0.092582112],[0.093679905],[0.09478834],[0.095909604],[0.097045938],[0.098199625],[0.099372974],[0.10056831],[0.10178796],[0.10303424],[0.10430944],[0.10561579],[0.1069555],[0.10833067],[0.10974337],[0.11119553],[0.11268899],[0.11422547],[0.11580657],[0.11743374],[0.11910828],[0.12083133],[0.12260387],[0.1244267],[0.12630044],[0.12822553],[0.13020221],[0.13223055],[0.13431042],[0.13644147],[0.1386232],[0.1408549],[0.14313565],[0.14546439],[0.14783984],[0.15026057],[0.15272499],[0.15523133],[0.15777768],[0.160362],[0.1629821],[0.16563569],[0.16832036],[0.17103361],[0.17377285],[0.17653543],[0.17931864],[0.18211971],[0.18493585],[0.18776425],[0.1906021],[0.19344658],[0.19629489],[0.19914428],[0.20199203],[0.20483547],[0.20767199],[0.21049908],[0.21331427],[0.21611522],[0.21889968],[0.22166549],[0.22441062],[0.22713316],[0.22983132],[0.23250342],[0.23514795],[0.2377635],[0.24034881],[0.24290275],[0.24542433],[0.2479127],[0.25036713],[0.25278705],[0.255172],[0.25752165],[0.25983581],[0.26211441],[0.26435748],[0.26656518],[0.2687378],[0.27087569],[0.27297933],[0.27504931],[0.27708629],[0.27909101],[0.28106432],[0.28300713],[0.28492041],[0.28680524],[0.28866272],[0.29049403],[0.2923004],[0.29408312],[0.29584352],[0.29758298],[0.2993029],[0.30100473],[0.30268996],[0.3043601],[0.30601667],[0.30766124],[0.30929536],[0.31092062],[0.3125386],[0.31415091],[0.31575911],[0.31736479],[0.31896951],[0.32057481],[0.3221822],[0.32379315],[0.3254091],[0.32703142],[0.32866143],[0.33030037],[0.33194939],[0.33360957],[0.33528186],[0.33696713],[0.33866608],[0.34037932],[0.34210727],[0.34385022],[0.34560829],[0.34738139],[0.34916928],[0.3509715],[0.3527874],[0.35461611],[0.35645655],[0.35830741],[0.36016717],[0.36203409],[0.3639062],[0.36578131],[0.36765704],[0.36953077],[0.37139971],[0.37326087],[0.3751111],[0.37694706],[0.37876531],[0.38056224],[0.38233416],[0.38407727],[0.38578773],[0.38746163],[0.38909505],[0.39068406],[0.39222476],[0.39371329],[0.39514586],[0.39651877],[0.39782841],[0.39907132],[0.40024418],[0.40134383],[0.40236729],[0.40331175],[0.40417463],[0.40495355],[0.40564632],[0.406251],[0.40676585],[0.40718938],[0.40752028],[0.40775747],[0.4079001],[0.40794748],[0.40789914],[0.40775478],[0.40751426],[0.40717761],[0.40674498],[0.40621667],[0.40559307],[0.40487469],[0.40406211],[0.40315599],[0.40215705],[0.40106604],[0.39988378],[0.39861108],[0.39724881],[0.39579782],[0.394259],[0.39263322],[0.39092137],[0.38912434],[0.38724304],[0.38527836],[0.38323123],[0.38110259],[0.3788934],[0.37660466],[0.37423739],[0.37179269],[0.36927168],[0.36667558],[0.36400565],[0.36126325],[0.35844982],[0.3555669],[0.35261613],[0.34959925],[0.34651812],[0.34337469],[0.34017106],[0.33690941],[0.33359205],[0.33022139],[0.32679996],[0.32333038],[0.31981536],[0.31625771],[0.31266031],[0.30902612],[0.30535813],[0.3016594],[0.29793303],[0.29418213],[0.29040981],[0.28661921],[0.28281344],[0.27899558],[0.27516868],[0.27133573],[0.26749968],[0.2636634],[0.25982968],[0.25600124],[0.25218069],[0.24837054],[0.2445732],[0.24079097],[0.23702605],[0.23328051],[0.22955629],[0.22585524],[0.22217909],[0.21852942],[0.21490774],[0.21131542],[0.20775372],[0.20422381],[0.20072674],[0.19726347],[0.19383487],[0.1904417],[0.18708466],[0.18376436],[0.18048132],[0.177236],[0.1740288],[0.17086005],[0.16773001],[0.16463891],[0.16158691],[0.15857413],[0.15560066],[0.15266653],[0.14977175],[0.1469163],[0.14410012],[0.14132313],[0.13858523],[0.13588631],[0.13322622],[0.13060482],[0.12802194],[0.12547742],[0.1229711],[0.12050278],[0.1180723],[0.11567948],[0.11332416],[0.11100617],[0.10872535],[0.10648157],[0.10427468],[0.10210456],[0.099971115],[0.097874234],[0.09581384],[0.093789862],[0.091802246],[0.089850947],[0.087935933],[0.08605718],[0.084214673],[0.082408401],[0.080638357],[0.078904533],[0.077206921],[0.075545503],[0.073920254],[0.072331136],[0.070778095],[0.069261054],[0.067779916],[0.066334555],[0.064924815],[0.063550506],[0.062211402],[0.060907238],[0.059637706],[0.058402458],[0.057201099],[0.056033189],[0.054898241],[0.053795723],[0.052725056],[0.051685618],[0.050676741],[0.049697717],[0.048747801],[0.047826208],[0.046932122],[0.0460647],[0.04522307],[0.044406343],[0.043613612],[0.042843959],[0.042096459],[0.041370186],[0.040664218],[0.039977641],[0.039309553],[0.038659072],[0.038025335],[0.037407509],[0.036804787],[0.036216398],[0.035641605],[0.03507971],[0.034530057],[0.03399203],[0.033465056],[0.032948606],[0.032442193],[0.031945371],[0.031457739],[0.03097893],[0.030508618],[0.030046511],[0.029592348],[0.029145895],[0.028706946],[0.028275314],[0.02785083],[0.027433338],[0.027022693],[0.026618752],[0.026221377],[0.025830425],[0.025445748],[0.025067191],[0.024694584],[0.024327744],[0.023966471],[0.023610547],[0.023259733],[0.02291377],[0.022572379],[0.022235258],[0.021902088],[0.021572528],[0.021246221],[0.020922795],[0.020601863],[0.02028303],[0.019965894],[0.019650047],[0.019335083],[0.019020599],[0.0187062],[0.018391503],[0.01807614],[0.017759762],[0.017442046],[0.017122692],[0.016801434],[0.016478038],[0.016152307],[0.015824082],[0.015493247],[0.015159726],[0.014823491],[0.014484555],[0.014142978],[0.013798866],[0.013452367],[0.013103675]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"rgb(80.47828, 2.52371, 161.14329)"],[0.14053094019539414,"#7201a8"],[0.32498931116973856,"#9c179e"],[0.5094476821440829,"#bd3786"],[0.6939060531200874,"#d8576b"],[0.8783644240944317,"#ed7953"],[1.0,"rgb(246.23188, 146.05797, 66.51449)"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Trace 4","x":[-0.56377987,-0.5519137,-0.54004753,-0.52818136,-0.51631519,-0.50444902,-0.49258285,-0.48071668,-0.46885051,-0.45698435,-0.44511818,-0.43325201,-0.42138584,-0.40951967,-0.3976535,-0.38578733,-0.37392116,-0.36205499,-0.35018883,-0.33832266,-0.32645649,-0.31459032,-0.30272415,-0.29085798,-0.27899181,-0.26712564,-0.25525947,-0.24339331,-0.23152714,-0.21966097,-0.2077948,-0.19592863,-0.18406246,-0.17219629,-0.16033012,-0.14846395,-0.13659779,-0.12473162,-0.11286545,-0.10099928,-0.08913311,-0.077266941,-0.065400772,-0.053534603,-0.041668434,-0.029802265,-0.017936096,-0.0060699272,0.0057962417,0.017662411,0.02952858,0.041394748,0.053260917,0.065127086,0.076993255,0.088859424,0.10072559,0.11259176,0.12445793,0.1363241,0.14819027,0.16005644,0.17192261,0.18378878,0.19565494,0.20752111,0.21938728,0.23125345,0.24311962,0.25498579,0.26685196,0.27871813,0.2905843,0.30245046,0.31431663,0.3261828,0.33804897,0.34991514,0.36178131,0.37364748,0.38551365,0.39737982,0.40924598,0.42111215,0.43297832,0.44484449,0.45671066,0.46857683,0.480443,0.49230917,0.50417534,0.51604151,0.52790767,0.53977384,0.55164001,0.56350618,0.57537235,0.58723852,0.59910469,0.61097086,0.62283703,0.63470319,0.64656936,0.65843553,0.6703017,0.68216787,0.69403404,0.70590021,0.71776638,0.72963255,0.74149871,0.75336488,0.76523105,0.77709722,0.78896339,0.80082956,0.81269573,0.8245619,0.83642807,0.84829423,0.8601604,0.87202657,0.88389274,0.89575891,0.90762508,0.91949125,0.93135742,0.94322359,0.95508976,0.96695592,0.97882209,0.99068826,1.0025544,1.0144206,1.0262868,1.0381529,1.0500191,1.0618853,1.0737514,1.0856176,1.0974838,1.10935,1.1212161,1.1330823,1.1449485,1.1568146,1.1686808,1.180547,1.1924131,1.2042793,1.2161455,1.2280116,1.2398778,1.251744,1.2636101,1.2754763,1.2873425,1.2992087,1.3110748,1.322941,1.3348072,1.3466733,1.3585395,1.3704057,1.3822718,1.394138,1.4060042,1.4178703,1.4297365,1.4416027,1.4534688,1.465335,1.4772012,1.4890674,1.5009335,1.5127997,1.5246659,1.536532,1.5483982,1.5602644,1.5721305,1.5839967,1.5958629,1.607729,1.6195952,1.6314614,1.6433276,1.6551937,1.6670599,1.6789261,1.6907922,1.7026584,1.7145246,1.7263907,1.7382569,1.7501231,1.7619892,1.7738554,1.7857216,1.7975877,1.8094539,1.8213201,1.8331863,1.8450524,1.8569186,1.8687848,1.8806509,1.8925171,1.9043833,1.9162494,1.9281156,1.9399818,1.9518479,1.9637141,1.9755803,1.9874465,1.9993126,2.0111788,2.023045,2.0349111,2.0467773,2.0586435,2.0705096,2.0823758,2.094242,2.1061081,2.1179743,2.1298405,2.1417066,2.1535728,2.165439,2.1773052,2.1891713,2.2010375,2.2129037,2.2247698,2.236636,2.2485022,2.2603683,2.2722345,2.2841007,2.2959668,2.307833,2.3196992,2.3315653,2.3434315,2.3552977,2.3671639,2.37903,2.3908962,2.4027624,2.4146285,2.4264947,2.4383609,2.450227,2.4620932,2.4739594,2.4858255,2.4976917,2.5095579,2.5214241,2.5332902,2.5451564,2.5570226,2.5688887,2.5807549,2.5926211,2.6044872,2.6163534,2.6282196,2.6400857,2.6519519,2.6638181,2.6756842,2.6875504,2.6994166,2.7112828,2.7231489,2.7350151,2.7468813,2.7587474,2.7706136,2.7824798,2.7943459,2.8062121,2.8180783,2.8299444,2.8418106,2.8536768,2.865543,2.8774091,2.8892753,2.9011415,2.9130076,2.9248738,2.93674,2.9486061,2.9604723,2.9723385,2.9842046,2.9960708,3.007937,3.0198031,3.0316693,3.0435355,3.0554017,3.0672678,3.079134,3.0910002,3.1028663,3.1147325,3.1265987,3.1384648,3.150331,3.1621972,3.1740633,3.1859295,3.1977957,3.2096618,3.221528,3.2333942,3.2452604,3.2571265,3.2689927,3.2808589,3.292725,3.3045912,3.3164574,3.3283235,3.3401897,3.3520559,3.363922,3.3757882,3.3876544,3.3995206,3.4113867,3.4232529,3.4351191,3.4469852,3.4588514,3.4707176,3.4825837,3.4944499,3.5063161,3.5181822,3.5300484,3.5419146,3.5537807,3.5656469,3.5775131,3.5893793,3.6012454,3.6131116,3.6249778,3.6368439,3.6487101,3.6605763,3.6724424,3.6843086,3.6961748,3.7080409,3.7199071,3.7317733,3.7436395,3.7555056,3.7673718,3.779238,3.7911041,3.8029703,3.8148365,3.8267026,3.8385688,3.850435,3.8623011,3.8741673,3.8860335,3.8978996,3.9097658,3.921632,3.9334982,3.9453643,3.9572305,3.9690967,3.9809628,3.992829,4.0046952,4.0165613,4.0284275,4.0402937,4.0521598,4.064026,4.0758922,4.0877583,4.0996245,4.1114907,4.1233569,4.135223,4.1470892,4.1589554,4.1708215,4.1826877,4.1945539,4.20642,4.2182862,4.2301524,4.2420185,4.2538847,4.2657509,4.2776171,4.2894832,4.3013494,4.3132156,4.3250817,4.3369479,4.3488141,4.3606802,4.3725464,4.3844126,4.3962787,4.4081449,4.4200111,4.4318772,4.4437434,4.4556096,4.4674758,4.4793419,4.4912081,4.5030743,4.5149404,4.5268066,4.5386728,4.5505389,4.5624051,4.5742713,4.5861374,4.5980036,4.6098698,4.621736,4.6336021,4.6454683,4.6573345,4.6692006,4.6810668,4.692933,4.7047991,4.7166653,4.7285315,4.7403976,4.7522638,4.76413,4.7759961,4.7878623,4.7997285,4.8115947,4.8234608,4.835327,4.8471932,4.8590593,4.8709255,4.8827917,4.8946578,4.906524,4.9183902,4.9302563,4.9421225,4.9539887,4.9658548,4.977721,4.9895872,5.0014534,5.0133195,5.0251857,5.0370519,5.048918,5.0607842,5.0726504,5.0845165,5.0963827,5.1082489,5.120115,5.1319812,5.1438474,5.1557136,5.1675797,5.1794459,5.1913121,5.2031782,5.2150444,5.2269106,5.2387767,5.2506429,5.2625091,5.2743752,5.2862414,5.2981076,5.3099737,5.3218399,5.3337061,5.3455723,5.3574384],"y":[-0.62224709,-0.6220211,-0.62179634,-0.62157269,-0.62135001,-0.62112806,-0.6209066,-0.62068531,-0.62046382,-0.62024174,-0.62001858,-0.61979386,-0.61956701,-0.61933745,-0.61910452,-0.61886757,-0.61862586,-0.61837868,-0.61812523,-0.61786472,-0.61759633,-0.61731923,-0.61703256,-0.61673545,-0.61642705,-0.61610647,-0.61577286,-0.61542534,-0.61506307,-0.6146852,-0.61429092,-0.61387942,-0.61344992,-0.61300169,-0.61253401,-0.61204618,-0.61153758,-0.6110076,-0.61045568,-0.6098813,-0.609284,-0.60866337,-0.60801905,-0.60735072,-0.60665814,-0.60594111,-0.6051995,-0.60443324,-0.60364232,-0.60282679,-0.60198676,-0.60112243,-0.60023404,-0.59932191,-0.59838641,-0.59742799,-0.59644717,-0.59544453,-0.59442071,-0.59337642,-0.59231243,-0.59122957,-0.59012873,-0.58901086,-0.58787695,-0.58672806,-0.58556529,-0.58438976,-0.58320267,-0.5820052,-0.58079861,-0.57958414,-0.57836306,-0.57713666,-0.5759062,-0.57467297,-0.57343821,-0.57220315,-0.570969,-0.56973692,-0.56850801,-0.56728333,-0.56606386,-0.56485051,-0.5636441,-0.56244538,-0.56125497,-0.5600734,-0.55890108,-0.5577383,-0.55658523,-0.55544188,-0.55430817,-0.55318384,-0.55206849,-0.55096161,-0.5498625,-0.54877035,-0.54768418,-0.54660289,-0.54552522,-0.54444979,-0.54337508,-0.54229946,-0.54122118,-0.54013839,-0.53904911,-0.53795132,-0.53684289,-0.53572162,-0.53458529,-0.5334316,-0.53225825,-0.53106291,-0.52984326,-0.52859698,-0.52732179,-0.52601544,-0.52467573,-0.52330055,-0.52188786,-0.5204357,-0.51894224,-0.51740576,-0.51582465,-0.51419748,-0.51252295,-0.51079989,-0.50902736,-0.50720453,-0.50533079,-0.5034057,-0.50142901,-0.49940067,-0.49732081,-0.49518975,-0.49300802,-0.49077633,-0.48849557,-0.48616684,-0.48379139,-0.48137065,-0.47890623,-0.4763999,-0.47385354,-0.47126923,-0.46864913,-0.46599554,-0.46331087,-0.46059762,-0.45785838,-0.45509579,-0.45231259,-0.44951152,-0.44669538,-0.44386697,-0.44102913,-0.43818465,-0.43533633,-0.43248694,-0.42963919,-0.42679576,-0.42395923,-0.42113215,-0.41831696,-0.41551601,-0.41273155,-0.40996574,-0.40722061,-0.40449807,-0.40179991,-0.3991278,-0.39648327,-0.39386772,-0.39128241,-0.38872847,-0.38620689,-0.38371853,-0.38126409,-0.37884418,-0.37645923,-0.37410957,-0.37179541,-0.36951682,-0.36727375,-0.36506604,-0.36289343,-0.36075554,-0.35865189,-0.35658191,-0.35454494,-0.35254021,-0.35056691,-0.3486241,-0.34671081,-0.34482599,-0.34296851,-0.3411372,-0.33933083,-0.3375481,-0.3357877,-0.33404825,-0.33232833,-0.33062649,-0.32894126,-0.32727113,-0.32561455,-0.32396999,-0.32233587,-0.32071061,-0.31909262,-0.31748032,-0.31587212,-0.31426644,-0.31266172,-0.31105642,-0.30944903,-0.30783807,-0.30622212,-0.3045998,-0.3029698,-0.30133086,-0.29968184,-0.29802166,-0.29634936,-0.2946641,-0.29296514,-0.29125191,-0.28952395,-0.287781,-0.28602294,-0.28424984,-0.28246195,-0.28065972,-0.27884382,-0.27701511,-0.27517468,-0.27332382,-0.27146405,-0.26959714,-0.26772503,-0.26584991,-0.26397419,-0.26210046,-0.26023152,-0.25837035,-0.25652013,-0.25468416,-0.25286592,-0.25106899,-0.24929707,-0.24755395,-0.24584349,-0.24416959,-0.24253618,-0.24094717,-0.23940646,-0.23791793,-0.23648536,-0.23511246,-0.23380282,-0.2325599,-0.23138704,-0.23028739,-0.22926394,-0.22831947,-0.22745659,-0.22667768,-0.22598491,-0.22538023,-0.22486537,-0.22444185,-0.22411095,-0.22387375,-0.22373113,-0.22368374,-0.22373208,-0.22387645,-0.22411696,-0.22445362,-0.22488625,-0.22541456,-0.22603816,-0.22675654,-0.22756911,-0.22847523,-0.22947418,-0.23056518,-0.23174745,-0.23302015,-0.23438242,-0.2358334,-0.23737223,-0.23899801,-0.24070986,-0.24250688,-0.24438819,-0.24635286,-0.24839999,-0.25052863,-0.25273783,-0.25502657,-0.25739384,-0.25983854,-0.26235955,-0.26495565,-0.26762558,-0.27036798,-0.27318141,-0.27606433,-0.2790151,-0.28203198,-0.28511311,-0.28825653,-0.29146017,-0.29472182,-0.29803918,-0.30140984,-0.30483127,-0.30830085,-0.31181587,-0.31537352,-0.31897091,-0.32260511,-0.3262731,-0.32997182,-0.3336982,-0.3374491,-0.34122141,-0.34501201,-0.34881778,-0.35263565,-0.35646255,-0.3602955,-0.36413155,-0.36796783,-0.37180154,-0.37562998,-0.37945054,-0.38326069,-0.38705803,-0.39084025,-0.39460517,-0.39835072,-0.40207494,-0.40577598,-0.40945214,-0.41310181,-0.41672349,-0.42031581,-0.42387751,-0.42740742,-0.43090449,-0.43436776,-0.43779636,-0.44118952,-0.44454656,-0.44786687,-0.45114991,-0.45439522,-0.45760242,-0.46077118,-0.46390122,-0.46699232,-0.47004432,-0.47305709,-0.47603057,-0.4789647,-0.48185947,-0.48471493,-0.48753111,-0.49030809,-0.49304599,-0.49574492,-0.49840501,-0.50102641,-0.50360929,-0.5061538,-0.50866013,-0.51112845,-0.51355893,-0.51595174,-0.51830707,-0.52062506,-0.52290588,-0.52514966,-0.52735655,-0.52952666,-0.53166011,-0.53375699,-0.53581739,-0.53784136,-0.53982898,-0.54178028,-0.54369529,-0.54557405,-0.54741655,-0.54922283,-0.55099287,-0.55272669,-0.55442431,-0.55608572,-0.55771097,-0.55930009,-0.56085313,-0.56237017,-0.56385131,-0.56529667,-0.56670641,-0.56808072,-0.56941982,-0.57072399,-0.57199352,-0.57322877,-0.57443013,-0.57559804,-0.57673299,-0.5778355,-0.57890617,-0.57994561,-0.58095449,-0.58193351,-0.58288343,-0.58380502,-0.5846991,-0.58556653,-0.58640816,-0.58722488,-0.58801761,-0.58878727,-0.58953477,-0.59026104,-0.59096701,-0.59165359,-0.59232167,-0.59297215,-0.59360589,-0.59422372,-0.59482644,-0.59541483,-0.59598962,-0.59655152,-0.59710117,-0.5976392,-0.59816617,-0.59868262,-0.59918903,-0.59968585,-0.60017349,-0.6006523,-0.60112261,-0.60158471,-0.60203888,-0.60248533,-0.60292428,-0.60335591,-0.6037804,-0.60419789,-0.60460853,-0.60501247,-0.60540985,-0.6058008,-0.60618548,-0.60656404,-0.60693664,-0.60730348,-0.60766475,-0.60802068,-0.60837149,-0.60871746,-0.60905885,-0.60939597,-0.60972914,-0.6100587,-0.610385,-0.61070843,-0.61102936,-0.6113482,-0.61166533,-0.61198118,-0.61229614,-0.61261063,-0.61292503,-0.61323972,-0.61355509,-0.61387146,-0.61418918,-0.61450853,-0.61482979,-0.61515319,-0.61547892,-0.61580714,-0.61613798,-0.6164715,-0.61680774,-0.61714667,-0.61748825,-0.61783236,-0.61817886,-0.61852755],"zorder":3,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-1.1948517,-1.1829859,-1.17112,-1.1592542,-1.1473884,-1.1355225,-1.1236567,-1.1117909,-1.0999251,-1.0880592,-1.0761934,-1.0643276,-1.0524617,-1.0405959,-1.0287301,-1.0168642,-1.0049984,-0.99313258,-0.98126675,-0.96940092,-0.95753509,-0.94566926,-0.93380342,-0.92193759,-0.91007176,-0.89820593,-0.8863401,-0.87447427,-0.86260844,-0.85074261,-0.83887678,-0.82701095,-0.81514512,-0.80327929,-0.79141345,-0.77954762,-0.76768179,-0.75581596,-0.74395013,-0.7320843,-0.72021847,-0.70835264,-0.69648681,-0.68462098,-0.67275515,-0.66088931,-0.64902348,-0.63715765,-0.62529182,-0.61342599,-0.60156016,-0.58969433,-0.5778285,-0.56596267,-0.55409684,-0.54223101,-0.53036518,-0.51849934,-0.50663351,-0.49476768,-0.48290185,-0.47103602,-0.45917019,-0.44730436,-0.43543853,-0.4235727,-0.41170687,-0.39984104,-0.3879752,-0.37610937,-0.36424354,-0.35237771,-0.34051188,-0.32864605,-0.31678022,-0.30491439,-0.29304856,-0.28118273,-0.2693169,-0.25745107,-0.24558523,-0.2337194,-0.22185357,-0.20998774,-0.19812191,-0.18625608,-0.17439025,-0.16252442,-0.15065859,-0.13879276,-0.12692693,-0.1150611,-0.10319526,-0.091329433,-0.079463603,-0.067597772,-0.055731941,-0.04386611,-0.032000279,-0.020134448,-0.0082686174,0.0035972134,0.015463044,0.027328875,0.039194706,0.051060537,0.062926368,0.074792199,0.086658029,0.09852386,0.11038969,0.12225552,0.13412135,0.14598718,0.15785301,0.16971885,0.18158468,0.19345051,0.20531634,0.21718217,0.229048,0.24091383,0.25277966,0.26464549,0.27651132,0.28837715,0.30024298,0.31210882,0.32397465,0.33584048,0.34770631,0.35957214,0.37143797,0.3833038,0.39516963,0.40703546,0.41890129,0.43076712,0.44263296,0.45449879,0.46636462,0.47823045,0.49009628,0.50196211,0.51382794,0.52569377,0.5375596,0.54942543,0.56129126,0.57315709,0.58502293,0.59688876,0.60875459,0.62062042,0.63248625,0.64435208,0.65621791,0.66808374,0.67994957,0.6918154,0.70368123,0.71554707,0.7274129,0.73927873,0.75114456,0.76301039,0.77487622,0.78674205,0.79860788,0.81047371,0.82233954,0.83420537,0.8460712,0.85793704,0.86980287,0.8816687,0.89353453,0.90540036,0.91726619,0.92913202,0.94099785,0.95286368,0.96472951,0.97659534,0.98846117,1.000327,1.0121928,1.0240587,1.0359245,1.0477903,1.0596562,1.071522,1.0833878,1.0952537,1.1071195,1.1189853,1.1308511,1.142717,1.1545828,1.1664486,1.1783145,1.1901803,1.2020461,1.213912,1.2257778,1.2376436,1.2495095,1.2613753,1.2732411,1.2851069,1.2969728,1.3088386,1.3207044,1.3325703,1.3444361,1.3563019,1.3681678,1.3800336,1.3918994,1.4037653,1.4156311,1.4274969,1.4393627,1.4512286,1.4630944,1.4749602,1.4868261,1.4986919,1.5105577,1.5224236,1.5342894,1.5461552,1.5580211,1.5698869,1.5817527,1.5936185,1.6054844,1.6173502,1.629216,1.6410819,1.6529477,1.6648135,1.6766794,1.6885452,1.700411,1.7122769,1.7241427,1.7360085,1.7478743,1.7597402,1.771606,1.7834718,1.7953377,1.8072035,1.8190693,1.8309352,1.842801,1.8546668,1.8665327,1.8783985,1.8902643,1.9021302,1.913996,1.9258618,1.9377276,1.9495935,1.9614593,1.9733251,1.985191,1.9970568,2.0089226,2.0207885,2.0326543,2.0445201,2.056386,2.0682518,2.0801176,2.0919834,2.1038493,2.1157151,2.1275809,2.1394468,2.1513126,2.1631784,2.1750443,2.1869101,2.1987759,2.2106418,2.2225076,2.2343734,2.2462392,2.2581051,2.2699709,2.2818367,2.2937026,2.3055684,2.3174342,2.3293001,2.3411659,2.3530317,2.3648976,2.3767634,2.3886292,2.400495,2.4123609,2.4242267,2.4360925,2.4479584,2.4598242,2.47169,2.4835559,2.4954217,2.5072875,2.5191534,2.5310192,2.542885,2.5547508,2.5666167,2.5784825,2.5903483,2.6022142,2.61408,2.6259458,2.6378117,2.6496775,2.6615433,2.6734092,2.685275,2.6971408,2.7090066,2.7208725,2.7327383,2.7446041,2.75647,2.7683358,2.7802016,2.7920675,2.8039333,2.8157991,2.827665,2.8395308,2.8513966,2.8632625,2.8751283,2.8869941,2.8988599,2.9107258,2.9225916,2.9344574,2.9463233,2.9581891,2.9700549,2.9819208,2.9937866,3.0056524,3.0175183,3.0293841,3.0412499,3.0531157,3.0649816,3.0768474,3.0887132,3.1005791,3.1124449,3.1243107,3.1361766,3.1480424,3.1599082,3.1717741,3.1836399,3.1955057,3.2073715,3.2192374,3.2311032,3.242969,3.2548349,3.2667007,3.2785665,3.2904324,3.3022982,3.314164,3.3260299,3.3378957,3.3497615,3.3616273,3.3734932,3.385359,3.3972248,3.4090907,3.4209565,3.4328223,3.4446882,3.456554,3.4684198,3.4802857,3.4921515,3.5040173,3.5158831,3.527749,3.5396148,3.5514806,3.5633465,3.5752123,3.5870781,3.598944,3.6108098,3.6226756,3.6345415,3.6464073,3.6582731,3.6701389,3.6820048,3.6938706,3.7057364,3.7176023,3.7294681,3.7413339,3.7531998,3.7650656,3.7769314,3.7887973,3.8006631,3.8125289,3.8243948,3.8362606,3.8481264,3.8599922,3.8718581,3.8837239,3.8955897,3.9074556,3.9193214,3.9311872,3.9430531,3.9549189,3.9667847,3.9786506,3.9905164,4.0023822,4.014248,4.0261139,4.0379797,4.0498455,4.0617114,4.0735772,4.085443,4.0973089,4.1091747,4.1210405,4.1329064,4.1447722,4.156638,4.1685038,4.1803697,4.1922355,4.2041013,4.2159672,4.227833,4.2396988,4.2515647,4.2634305,4.2752963,4.2871622,4.299028,4.3108938,4.3227596,4.3346255,4.3464913,4.3583571,4.370223,4.3820888,4.3939546,4.4058205,4.4176863,4.4295521,4.441418,4.4532838,4.4651496,4.4770154,4.4888813,4.5007471,4.5126129,4.5244788,4.5363446,4.5482104,4.5600763,4.5719421,4.5838079,4.5956738,4.6075396,4.6194054,4.6312712,4.6431371,4.6550029,4.6668687,4.6787346,4.6906004,4.7024662,4.7143321,4.7261979],"y":[-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497],"zorder":4,"type":"scatter"},{"customdata":[[0.0076262645],[0.0078963667],[0.0081734094],[0.0084577224],[0.0087496613],[0.009049607],[0.0093579656],[0.0096751677],[0.010001668],[0.010337945],[0.010684497],[0.011041847],[0.011410535],[0.01179112],[0.012184178],[0.012590301],[0.013010094],[0.013444172],[0.013893162],[0.014357698],[0.014838419],[0.015335967],[0.015850988],[0.016384122],[0.016936011],[0.017507286],[0.018098573],[0.018710486],[0.019343626],[0.019998576],[0.020675902],[0.021376148],[0.022099832],[0.022847447],[0.023619453],[0.024416278],[0.025238312],[0.026085906],[0.026959367],[0.027858956],[0.028784882],[0.029737304],[0.030716322],[0.031721974],[0.032754237],[0.03381302],[0.034898161],[0.036009425],[0.037146502],[0.038309],[0.039496449],[0.040708292],[0.041943889],[0.043202512],[0.044483347],[0.045785491],[0.047107952],[0.048449652],[0.04980943],[0.051186037],[0.052578147],[0.053984356],[0.055403188],[0.0568331],[0.058272489],[0.059719694],[0.061173013],[0.062630703],[0.064090992],[0.065552091],[0.067012202],[0.068469528],[0.06992229],[0.071368735],[0.072807149],[0.074235869],[0.0756533],[0.077057924],[0.078448315],[0.079823151],[0.081181228],[0.082521468],[0.083842939],[0.085144855],[0.086426598],[0.087687717],[0.088927944],[0.090147197],[0.091345588],[0.09252343],[0.093681236],[0.094819725],[0.095939824],[0.097042664],[0.098129581],[0.099202113],[0.10026199],[0.10131114],[0.10235167],[0.10338587],[0.10441617],[0.10544517],[0.10647563],[0.10751041],[0.10855249],[0.10960495],[0.11067096],[0.11175376],[0.11285663],[0.11398289],[0.11513586],[0.11631888],[0.11753526],[0.11878829],[0.12008117],[0.12141707],[0.12279904],[0.12423005],[0.12571295],[0.12725043],[0.12884507],[0.13049926],[0.13221523],[0.13399503],[0.1358405],[0.13775327],[0.13973479],[0.14178626],[0.14390864],[0.14610269],[0.14836892],[0.15070757],[0.15311868],[0.15560201],[0.1581571],[0.16078322],[0.1634794],[0.16624446],[0.16907693],[0.17197516],[0.17493724],[0.17796104],[0.18104422],[0.18418426],[0.18737839],[0.19062371],[0.1939171],[0.19725529],[0.20063486],[0.20405224],[0.20750374],[0.21098553],[0.21449371],[0.21802428],[0.22157314],[0.22513618],[0.2287092],[0.232288],[0.23586836],[0.23944605],[0.24301687],[0.24657664],[0.25012125],[0.25364664],[0.25714881],[0.26062388],[0.26406807],[0.2674777],[0.27084924],[0.2741793],[0.27746466],[0.28070223],[0.28388914],[0.28702268],[0.29010035],[0.29311984],[0.29607906],[0.29897612],[0.30180938],[0.30457739],[0.30727892],[0.309913],[0.31247884],[0.31497591],[0.31740387],[0.31976261],[0.32205221],[0.32427297],[0.32642536],[0.32851005],[0.33052789],[0.33247985],[0.33436707],[0.33619084],[0.33795254],[0.33965365],[0.34129575],[0.34288048],[0.34440952],[0.34588462],[0.34730749],[0.34867987],[0.35000348],[0.35127999],[0.35251102],[0.35369811],[0.35484272],[0.35594621],[0.35700981],[0.35803465],[0.35902168],[0.35997174],[0.36088549],[0.36176345],[0.36260595],[0.36341316],[0.36418508],[0.36492156],[0.36562225],[0.36628666],[0.36691416],[0.36750395],[0.36805511],[0.36856659],[0.36903725],[0.36946583],[0.36985101],[0.37019142],[0.37048562],[0.37073216],[0.37092958],[0.37107645],[0.37117137],[0.37121296],[0.37119996],[0.37113117],[0.3710055],[0.370822],[0.37057983],[0.37027834],[0.36991701],[0.36949552],[0.36901374],[0.36847171],[0.36786969],[0.36720814],[0.36648772],[0.36570931],[0.36487397],[0.36398299],[0.36303782],[0.36204014],[0.36099176],[0.35989471],[0.35875113],[0.35756333],[0.35633374],[0.3550649],[0.35375944],[0.35242009],[0.35104961],[0.34965084],[0.34822661],[0.34677976],[0.34531314],[0.34382956],[0.34233176],[0.34082245],[0.33930422],[0.3377796],[0.33625098],[0.33472063],[0.33319071],[0.33166318],[0.33013987],[0.32862246],[0.32711242],[0.32561105],[0.32411946],[0.3226386],[0.32116919],[0.31971177],[0.31826671],[0.31683417],[0.31541413],[0.3140064],[0.31261061],[0.31122621],[0.30985253],[0.30848871],[0.30713378],[0.30578661],[0.304446],[0.3031106],[0.30177899],[0.30044967],[0.29912106],[0.29779155],[0.29645948],[0.29512314],[0.29378084],[0.29243089],[0.29107159],[0.28970128],[0.28831834],[0.2869212],[0.28550833],[0.2840783],[0.28262974],[0.28116139],[0.27967205],[0.27816065],[0.27662622],[0.27506791],[0.27348499],[0.27187682],[0.27024292],[0.26858291],[0.26689653],[0.26518364],[0.26344423],[0.2616784],[0.25988633],[0.25806834],[0.25622482],[0.25435628],[0.25246328],[0.25054647],[0.24860657],[0.24664434],[0.2446606],[0.24265622],[0.24063207],[0.23858906],[0.23652811],[0.23445012],[0.232356],[0.23024665],[0.22812294],[0.2259857],[0.22383573],[0.22167379],[0.21950059],[0.21731679],[0.215123],[0.21291977],[0.21070758],[0.20848689],[0.20625805],[0.20402141],[0.20177723],[0.19952573],[0.19726709],[0.19500145],[0.19272892],[0.19044956],[0.18816344],[0.18587059],[0.18357104],[0.18126482],[0.17895197],[0.17663253],[0.17430659],[0.17197424],[0.16963561],[0.1672909],[0.16494032],[0.16258415],[0.16022274],[0.1578565],[0.15548587],[0.15311142],[0.15073374],[0.14835353],[0.14597153],[0.14358858],[0.14120559],[0.13882352],[0.13644343],[0.13406642],[0.13169365],[0.12932637],[0.12696585],[0.12461342],[0.12227045],[0.11993835],[0.11761855],[0.11531251],[0.11302169],[0.11074758],[0.10849166],[0.10625539],[0.10404023],[0.10184763],[0.099678978],[0.097535654],[0.095418984],[0.093330246],[0.091270666],[0.089241405],[0.087243558],[0.085278151],[0.08334613],[0.081448363],[0.079585631],[0.077758629],[0.07596796],[0.074214136],[0.072497571],[0.070818585],[0.0691774],[0.067574143],[0.066008841],[0.064481426],[0.062991737],[0.061539516],[0.060124419],[0.058746009],[0.05740377],[0.056097099],[0.054825322],[0.053587688],[0.052383383],[0.051211526],[0.050071184],[0.048961371],[0.047881058],[0.046829176],[0.045804627],[0.044806286],[0.04383301],[0.042883646],[0.041957033],[0.041052016],[0.040167445],[0.039302186],[0.038455126],[0.037625179],[0.036811291],[0.036012446],[0.03522767],[0.034456038],[0.033696676],[0.032948762],[0.032211537],[0.031484298],[0.030766407],[0.030057292],[0.029356443],[0.028663418],[0.027977841],[0.027299399],[0.026627846],[0.025962996],[0.025304726],[0.024652968],[0.024007712],[0.023368997],[0.022736912],[0.022111589],[0.021493201],[0.020881956],[0.020278093],[0.019681878],[0.019093597],[0.018513554],[0.017942065],[0.017379453],[0.016826044],[0.016282164],[0.015748129],[0.015224249],[0.014710819],[0.014208117],[0.0137164],[0.013235903],[0.012766835],[0.012309377],[0.011863681],[0.011429867],[0.011008024],[0.010598209],[0.010200446],[0.0098147238],[0.0094410019],[0.0090792065],[0.0087292335],[0.0083909493],[0.0080641924],[0.007748775],[0.0074444851],[0.0071510887],[0.0068683316],[0.0065959422],[0.0063336335],[0.0060811058],[0.005838049],[0.005604145],[0.0053790704],[0.0051624982]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"rgb(50.64016, 4.69823, 150.84849)"],[0.0626523936974259,"#46039f"],[0.24711601987990825,"#7201a8"],[0.4315796460623907,"#9c179e"],[0.616043272244873,"#bd3786"],[0.8005068984290156,"#d8576b"],[0.984970524611498,"#ed7953"],[1.0,"rgb(238.14067, 124.09611, 80.96308)"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Trace 5","x":[-1.1948517,-1.1829859,-1.17112,-1.1592542,-1.1473884,-1.1355225,-1.1236567,-1.1117909,-1.0999251,-1.0880592,-1.0761934,-1.0643276,-1.0524617,-1.0405959,-1.0287301,-1.0168642,-1.0049984,-0.99313258,-0.98126675,-0.96940092,-0.95753509,-0.94566926,-0.93380342,-0.92193759,-0.91007176,-0.89820593,-0.8863401,-0.87447427,-0.86260844,-0.85074261,-0.83887678,-0.82701095,-0.81514512,-0.80327929,-0.79141345,-0.77954762,-0.76768179,-0.75581596,-0.74395013,-0.7320843,-0.72021847,-0.70835264,-0.69648681,-0.68462098,-0.67275515,-0.66088931,-0.64902348,-0.63715765,-0.62529182,-0.61342599,-0.60156016,-0.58969433,-0.5778285,-0.56596267,-0.55409684,-0.54223101,-0.53036518,-0.51849934,-0.50663351,-0.49476768,-0.48290185,-0.47103602,-0.45917019,-0.44730436,-0.43543853,-0.4235727,-0.41170687,-0.39984104,-0.3879752,-0.37610937,-0.36424354,-0.35237771,-0.34051188,-0.32864605,-0.31678022,-0.30491439,-0.29304856,-0.28118273,-0.2693169,-0.25745107,-0.24558523,-0.2337194,-0.22185357,-0.20998774,-0.19812191,-0.18625608,-0.17439025,-0.16252442,-0.15065859,-0.13879276,-0.12692693,-0.1150611,-0.10319526,-0.091329433,-0.079463603,-0.067597772,-0.055731941,-0.04386611,-0.032000279,-0.020134448,-0.0082686174,0.0035972134,0.015463044,0.027328875,0.039194706,0.051060537,0.062926368,0.074792199,0.086658029,0.09852386,0.11038969,0.12225552,0.13412135,0.14598718,0.15785301,0.16971885,0.18158468,0.19345051,0.20531634,0.21718217,0.229048,0.24091383,0.25277966,0.26464549,0.27651132,0.28837715,0.30024298,0.31210882,0.32397465,0.33584048,0.34770631,0.35957214,0.37143797,0.3833038,0.39516963,0.40703546,0.41890129,0.43076712,0.44263296,0.45449879,0.46636462,0.47823045,0.49009628,0.50196211,0.51382794,0.52569377,0.5375596,0.54942543,0.56129126,0.57315709,0.58502293,0.59688876,0.60875459,0.62062042,0.63248625,0.64435208,0.65621791,0.66808374,0.67994957,0.6918154,0.70368123,0.71554707,0.7274129,0.73927873,0.75114456,0.76301039,0.77487622,0.78674205,0.79860788,0.81047371,0.82233954,0.83420537,0.8460712,0.85793704,0.86980287,0.8816687,0.89353453,0.90540036,0.91726619,0.92913202,0.94099785,0.95286368,0.96472951,0.97659534,0.98846117,1.000327,1.0121928,1.0240587,1.0359245,1.0477903,1.0596562,1.071522,1.0833878,1.0952537,1.1071195,1.1189853,1.1308511,1.142717,1.1545828,1.1664486,1.1783145,1.1901803,1.2020461,1.213912,1.2257778,1.2376436,1.2495095,1.2613753,1.2732411,1.2851069,1.2969728,1.3088386,1.3207044,1.3325703,1.3444361,1.3563019,1.3681678,1.3800336,1.3918994,1.4037653,1.4156311,1.4274969,1.4393627,1.4512286,1.4630944,1.4749602,1.4868261,1.4986919,1.5105577,1.5224236,1.5342894,1.5461552,1.5580211,1.5698869,1.5817527,1.5936185,1.6054844,1.6173502,1.629216,1.6410819,1.6529477,1.6648135,1.6766794,1.6885452,1.700411,1.7122769,1.7241427,1.7360085,1.7478743,1.7597402,1.771606,1.7834718,1.7953377,1.8072035,1.8190693,1.8309352,1.842801,1.8546668,1.8665327,1.8783985,1.8902643,1.9021302,1.913996,1.9258618,1.9377276,1.9495935,1.9614593,1.9733251,1.985191,1.9970568,2.0089226,2.0207885,2.0326543,2.0445201,2.056386,2.0682518,2.0801176,2.0919834,2.1038493,2.1157151,2.1275809,2.1394468,2.1513126,2.1631784,2.1750443,2.1869101,2.1987759,2.2106418,2.2225076,2.2343734,2.2462392,2.2581051,2.2699709,2.2818367,2.2937026,2.3055684,2.3174342,2.3293001,2.3411659,2.3530317,2.3648976,2.3767634,2.3886292,2.400495,2.4123609,2.4242267,2.4360925,2.4479584,2.4598242,2.47169,2.4835559,2.4954217,2.5072875,2.5191534,2.5310192,2.542885,2.5547508,2.5666167,2.5784825,2.5903483,2.6022142,2.61408,2.6259458,2.6378117,2.6496775,2.6615433,2.6734092,2.685275,2.6971408,2.7090066,2.7208725,2.7327383,2.7446041,2.75647,2.7683358,2.7802016,2.7920675,2.8039333,2.8157991,2.827665,2.8395308,2.8513966,2.8632625,2.8751283,2.8869941,2.8988599,2.9107258,2.9225916,2.9344574,2.9463233,2.9581891,2.9700549,2.9819208,2.9937866,3.0056524,3.0175183,3.0293841,3.0412499,3.0531157,3.0649816,3.0768474,3.0887132,3.1005791,3.1124449,3.1243107,3.1361766,3.1480424,3.1599082,3.1717741,3.1836399,3.1955057,3.2073715,3.2192374,3.2311032,3.242969,3.2548349,3.2667007,3.2785665,3.2904324,3.3022982,3.314164,3.3260299,3.3378957,3.3497615,3.3616273,3.3734932,3.385359,3.3972248,3.4090907,3.4209565,3.4328223,3.4446882,3.456554,3.4684198,3.4802857,3.4921515,3.5040173,3.5158831,3.527749,3.5396148,3.5514806,3.5633465,3.5752123,3.5870781,3.598944,3.6108098,3.6226756,3.6345415,3.6464073,3.6582731,3.6701389,3.6820048,3.6938706,3.7057364,3.7176023,3.7294681,3.7413339,3.7531998,3.7650656,3.7769314,3.7887973,3.8006631,3.8125289,3.8243948,3.8362606,3.8481264,3.8599922,3.8718581,3.8837239,3.8955897,3.9074556,3.9193214,3.9311872,3.9430531,3.9549189,3.9667847,3.9786506,3.9905164,4.0023822,4.014248,4.0261139,4.0379797,4.0498455,4.0617114,4.0735772,4.085443,4.0973089,4.1091747,4.1210405,4.1329064,4.1447722,4.156638,4.1685038,4.1803697,4.1922355,4.2041013,4.2159672,4.227833,4.2396988,4.2515647,4.2634305,4.2752963,4.2871622,4.299028,4.3108938,4.3227596,4.3346255,4.3464913,4.3583571,4.370223,4.3820888,4.3939546,4.4058205,4.4176863,4.4295521,4.441418,4.4532838,4.4651496,4.4770154,4.4888813,4.5007471,4.5126129,4.5244788,4.5363446,4.5482104,4.5600763,4.5719421,4.5838079,4.5956738,4.6075396,4.6194054,4.6312712,4.6431371,4.6550029,4.6668687,4.6787346,4.6906004,4.7024662,4.7143321,4.7261979],"y":[-0.8345487,-0.8342786,-0.83400156,-0.83371725,-0.83342531,-0.83312536,-0.832817,-0.8324998,-0.8321733,-0.83183702,-0.83149047,-0.83113312,-0.83076443,-0.83038385,-0.82999079,-0.82958467,-0.82916487,-0.8287308,-0.82828181,-0.82781727,-0.82733655,-0.826839,-0.82632398,-0.82579085,-0.82523896,-0.82466768,-0.82407639,-0.82346448,-0.82283134,-0.82217639,-0.82149907,-0.82079882,-0.82007514,-0.81932752,-0.81855551,-0.81775869,-0.81693666,-0.81608906,-0.8152156,-0.81431601,-0.81339009,-0.81243766,-0.81145865,-0.81045299,-0.80942073,-0.80836195,-0.80727681,-0.80616554,-0.80502847,-0.80386597,-0.80267852,-0.80146668,-0.80023108,-0.79897246,-0.79769162,-0.79638948,-0.79506702,-0.79372532,-0.79236554,-0.79098893,-0.78959682,-0.78819061,-0.78677178,-0.78534187,-0.78390248,-0.78245527,-0.78100195,-0.77954426,-0.77808398,-0.77662288,-0.77516277,-0.77370544,-0.77225268,-0.77080623,-0.76936782,-0.7679391,-0.76652167,-0.76511704,-0.76372665,-0.76235182,-0.76099374,-0.7596535,-0.75833203,-0.75703011,-0.75574837,-0.75448725,-0.75324702,-0.75202777,-0.75082938,-0.74965154,-0.74849373,-0.74735524,-0.74623514,-0.7451323,-0.74404539,-0.74297286,-0.74191298,-0.74086382,-0.73982329,-0.7387891,-0.7377588,-0.73672979,-0.73569934,-0.73466456,-0.73362248,-0.73257002,-0.731504,-0.7304212,-0.72931834,-0.72819208,-0.72703911,-0.72585609,-0.72463971,-0.72338668,-0.7220938,-0.7207579,-0.71937593,-0.71794492,-0.71646202,-0.71492454,-0.7133299,-0.71167571,-0.70995973,-0.70817994,-0.70633447,-0.70442169,-0.70244018,-0.70038871,-0.69826633,-0.69607228,-0.69380605,-0.6914674,-0.68905629,-0.68657295,-0.68401787,-0.68139175,-0.67869556,-0.67593051,-0.67309803,-0.67019981,-0.66723773,-0.66421393,-0.66113074,-0.65799071,-0.65479657,-0.65155126,-0.64825787,-0.64491968,-0.64154011,-0.63812273,-0.63467123,-0.63118944,-0.62768126,-0.62415069,-0.62060182,-0.61703879,-0.61346577,-0.60988696,-0.60630661,-0.60272892,-0.5991581,-0.59559833,-0.59205371,-0.58852833,-0.58502616,-0.58155108,-0.5781069,-0.57469727,-0.57132573,-0.56799566,-0.56471031,-0.56147274,-0.55828583,-0.55515229,-0.55207462,-0.54905513,-0.54609591,-0.54319884,-0.54036559,-0.53759758,-0.53489605,-0.53226197,-0.52969612,-0.52719906,-0.5247711,-0.52241236,-0.52012276,-0.517902,-0.51574961,-0.51366491,-0.51164708,-0.50969512,-0.50780789,-0.50598413,-0.50422243,-0.50252132,-0.50087922,-0.49929449,-0.49776544,-0.49629035,-0.49486748,-0.4934951,-0.49217148,-0.49089497,-0.48966395,-0.48847686,-0.48733225,-0.48622876,-0.48516515,-0.48414032,-0.48315329,-0.48220323,-0.48128947,-0.48041152,-0.47956902,-0.47876181,-0.47798988,-0.47725341,-0.47655272,-0.47588831,-0.47526081,-0.47467102,-0.47411986,-0.47360838,-0.47313772,-0.47270914,-0.47232395,-0.47198355,-0.47168935,-0.47144281,-0.47124539,-0.47109851,-0.4710036,-0.470962,-0.470975,-0.4710438,-0.47116946,-0.47135297,-0.47159513,-0.47189663,-0.47225796,-0.47267944,-0.47316123,-0.47370326,-0.47430528,-0.47496683,-0.47568724,-0.47646566,-0.477301,-0.47819198,-0.47913715,-0.48013483,-0.4811832,-0.48228026,-0.48342384,-0.48461164,-0.48584123,-0.48711007,-0.48841553,-0.48975488,-0.49112535,-0.49252413,-0.49394836,-0.49539521,-0.49686182,-0.49834541,-0.49984321,-0.50135252,-0.50287075,-0.50439537,-0.50592399,-0.50745433,-0.50898426,-0.51051179,-0.51203509,-0.51355251,-0.51506255,-0.51656392,-0.5180555,-0.51953637,-0.52100578,-0.5224632,-0.52390826,-0.5253408,-0.52676084,-0.52816857,-0.52956436,-0.53094875,-0.53232244,-0.53368626,-0.53504119,-0.53638835,-0.53772897,-0.53906437,-0.54039598,-0.5417253,-0.5430539,-0.54438341,-0.54571549,-0.54705183,-0.54839412,-0.54974408,-0.55110338,-0.55247369,-0.55385663,-0.55525377,-0.55666664,-0.55809667,-0.55954522,-0.56101358,-0.56250292,-0.56401432,-0.56554875,-0.56710705,-0.56868998,-0.57029815,-0.57193205,-0.57359206,-0.57527844,-0.57699132,-0.57873073,-0.58049657,-0.58228864,-0.58410663,-0.58595015,-0.58781869,-0.58971169,-0.5916285,-0.5935684,-0.59553063,-0.59751436,-0.59951875,-0.6015429,-0.6035859,-0.60564686,-0.60772485,-0.60981897,-0.61192831,-0.61405203,-0.61618927,-0.61833924,-0.62050118,-0.62267438,-0.62485818,-0.62705197,-0.6292552,-0.63146738,-0.63368808,-0.63591691,-0.63815356,-0.64039774,-0.64264924,-0.64490788,-0.64717352,-0.64944605,-0.6517254,-0.65401153,-0.65630438,-0.65860393,-0.66091015,-0.663223,-0.66554244,-0.66786838,-0.67020073,-0.67253936,-0.67488407,-0.67723465,-0.67959082,-0.68195222,-0.68431847,-0.68668909,-0.68906355,-0.69144122,-0.69382144,-0.69620344,-0.69858638,-0.70096938,-0.70335144,-0.70573154,-0.70810855,-0.71048132,-0.7128486,-0.71520912,-0.71756155,-0.71990452,-0.72223662,-0.72455642,-0.72686246,-0.72915328,-0.73142739,-0.73368331,-0.73591958,-0.73813473,-0.74032734,-0.74249599,-0.74463931,-0.74675598,-0.74884472,-0.7509043,-0.75293356,-0.75493141,-0.75689682,-0.75882884,-0.7607266,-0.76258934,-0.76441634,-0.76620701,-0.76796083,-0.7696774,-0.77135638,-0.77299757,-0.77460082,-0.77616613,-0.77769354,-0.77918323,-0.78063545,-0.78205055,-0.78342896,-0.7847712,-0.78607787,-0.78734965,-0.78858728,-0.78979159,-0.79096344,-0.79210378,-0.7932136,-0.79429391,-0.79534579,-0.79637034,-0.79736868,-0.79834196,-0.79929132,-0.80021793,-0.80112295,-0.80200752,-0.80287278,-0.80371984,-0.80454979,-0.80536368,-0.80616252,-0.8069473,-0.80771893,-0.80847829,-0.80922621,-0.80996343,-0.81069067,-0.81140856,-0.81211768,-0.81281853,-0.81351155,-0.81419713,-0.81487557,-0.81554712,-0.81621197,-0.81687024,-0.817522,-0.81816726,-0.81880597,-0.81943806,-0.82006338,-0.82068177,-0.82129301,-0.82189687,-0.82249309,-0.82308137,-0.82366141,-0.8242329,-0.82479552,-0.82534892,-0.8258928,-0.82642684,-0.82695072,-0.82746415,-0.82796685,-0.82845857,-0.82893906,-0.82940813,-0.82986559,-0.83031129,-0.8307451,-0.83116694,-0.83157676,-0.83197452,-0.83236024,-0.83273397,-0.83309576,-0.83344573,-0.83378402,-0.83411078,-0.83442619,-0.83473048,-0.83502388,-0.83530664,-0.83557903,-0.83584133,-0.83609386,-0.83633692,-0.83657082,-0.8367959,-0.83701247],"zorder":4,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-1.9161021,-1.9044028,-1.8927035,-1.8810042,-1.8693049,-1.8576056,-1.8459063,-1.834207,-1.8225077,-1.8108084,-1.7991091,-1.7874098,-1.7757105,-1.7640112,-1.7523119,-1.7406126,-1.7289134,-1.7172141,-1.7055148,-1.6938155,-1.6821162,-1.6704169,-1.6587176,-1.6470183,-1.635319,-1.6236197,-1.6119204,-1.6002211,-1.5885218,-1.5768225,-1.5651232,-1.5534239,-1.5417247,-1.5300254,-1.5183261,-1.5066268,-1.4949275,-1.4832282,-1.4715289,-1.4598296,-1.4481303,-1.436431,-1.4247317,-1.4130324,-1.4013331,-1.3896338,-1.3779345,-1.3662352,-1.354536,-1.3428367,-1.3311374,-1.3194381,-1.3077388,-1.2960395,-1.2843402,-1.2726409,-1.2609416,-1.2492423,-1.237543,-1.2258437,-1.2141444,-1.2024451,-1.1907458,-1.1790465,-1.1673473,-1.155648,-1.1439487,-1.1322494,-1.1205501,-1.1088508,-1.0971515,-1.0854522,-1.0737529,-1.0620536,-1.0503543,-1.038655,-1.0269557,-1.0152564,-1.0035571,-0.99185785,-0.98015855,-0.96845926,-0.95675997,-0.94506067,-0.93336138,-0.92166208,-0.90996279,-0.8982635,-0.8865642,-0.87486491,-0.86316562,-0.85146632,-0.83976703,-0.82806773,-0.81636844,-0.80466915,-0.79296985,-0.78127056,-0.76957127,-0.75787197,-0.74617268,-0.73447338,-0.72277409,-0.7110748,-0.6993755,-0.68767621,-0.67597692,-0.66427762,-0.65257833,-0.64087903,-0.62917974,-0.61748045,-0.60578115,-0.59408186,-0.58238257,-0.57068327,-0.55898398,-0.54728468,-0.53558539,-0.5238861,-0.5121868,-0.50048751,-0.48878822,-0.47708892,-0.46538963,-0.45369033,-0.44199104,-0.43029175,-0.41859245,-0.40689316,-0.39519387,-0.38349457,-0.37179528,-0.36009598,-0.34839669,-0.3366974,-0.3249981,-0.31329881,-0.30159952,-0.28990022,-0.27820093,-0.26650163,-0.25480234,-0.24310305,-0.23140375,-0.21970446,-0.20800517,-0.19630587,-0.18460658,-0.17290728,-0.16120799,-0.1495087,-0.1378094,-0.12611011,-0.11441082,-0.10271152,-0.091012228,-0.079312934,-0.06761364,-0.055914347,-0.044215053,-0.032515759,-0.020816465,-0.0091171716,0.0025821222,0.014281416,0.02598071,0.037680003,0.049379297,0.061078591,0.072777885,0.084477178,0.096176472,0.10787577,0.11957506,0.13127435,0.14297365,0.15467294,0.16637223,0.17807153,0.18977082,0.20147012,0.21316941,0.2248687,0.236568,0.24826729,0.25996658,0.27166588,0.28336517,0.29506447,0.30676376,0.31846305,0.33016235,0.34186164,0.35356093,0.36526023,0.37695952,0.38865882,0.40035811,0.4120574,0.4237567,0.43545599,0.44715528,0.45885458,0.47055387,0.48225317,0.49395246,0.50565175,0.51735105,0.52905034,0.54074963,0.55244893,0.56414822,0.57584752,0.58754681,0.5992461,0.6109454,0.62264469,0.63434398,0.64604328,0.65774257,0.66944187,0.68114116,0.69284045,0.70453975,0.71623904,0.72793833,0.73963763,0.75133692,0.76303622,0.77473551,0.7864348,0.7981341,0.80983339,0.82153268,0.83323198,0.84493127,0.85663057,0.86832986,0.88002915,0.89172845,0.90342774,0.91512703,0.92682633,0.93852562,0.95022492,0.96192421,0.9736235,0.9853228,0.99702209,1.0087214,1.0204207,1.03212,1.0438193,1.0555186,1.0672179,1.0789171,1.0906164,1.1023157,1.114015,1.1257143,1.1374136,1.1491129,1.1608122,1.1725115,1.1842108,1.1959101,1.2076094,1.2193087,1.231008,1.2427073,1.2544066,1.2661058,1.2778051,1.2895044,1.3012037,1.312903,1.3246023,1.3363016,1.3480009,1.3597002,1.3713995,1.3830988,1.3947981,1.4064974,1.4181967,1.429896,1.4415953,1.4532945,1.4649938,1.4766931,1.4883924,1.5000917,1.511791,1.5234903,1.5351896,1.5468889,1.5585882,1.5702875,1.5819868,1.5936861,1.6053854,1.6170847,1.628784,1.6404832,1.6521825,1.6638818,1.6755811,1.6872804,1.6989797,1.710679,1.7223783,1.7340776,1.7457769,1.7574762,1.7691755,1.7808748,1.7925741,1.8042734,1.8159727,1.8276719,1.8393712,1.8510705,1.8627698,1.8744691,1.8861684,1.8978677,1.909567,1.9212663,1.9329656,1.9446649,1.9563642,1.9680635,1.9797628,1.9914621,2.0031614,2.0148606,2.0265599,2.0382592,2.0499585,2.0616578,2.0733571,2.0850564,2.0967557,2.108455,2.1201543,2.1318536,2.1435529,2.1552522,2.1669515,2.1786508,2.1903501,2.2020493,2.2137486,2.2254479,2.2371472,2.2488465,2.2605458,2.2722451,2.2839444,2.2956437,2.307343,2.3190423,2.3307416,2.3424409,2.3541402,2.3658395,2.3775388,2.389238,2.4009373,2.4126366,2.4243359,2.4360352,2.4477345,2.4594338,2.4711331,2.4828324,2.4945317,2.506231,2.5179303,2.5296296,2.5413289,2.5530282,2.5647275,2.5764267,2.588126,2.5998253,2.6115246,2.6232239,2.6349232,2.6466225,2.6583218,2.6700211,2.6817204,2.6934197,2.705119,2.7168183,2.7285176,2.7402169,2.7519162,2.7636154,2.7753147,2.787014,2.7987133,2.8104126,2.8221119,2.8338112,2.8455105,2.8572098,2.8689091,2.8806084,2.8923077,2.904007,2.9157063,2.9274056,2.9391049,2.9508041,2.9625034,2.9742027,2.985902,2.9976013,3.0093006,3.0209999,3.0326992,3.0443985,3.0560978,3.0677971,3.0794964,3.0911957,3.102895,3.1145943,3.1262936,3.1379928,3.1496921,3.1613914,3.1730907,3.18479,3.1964893,3.2081886,3.2198879,3.2315872,3.2432865,3.2549858,3.2666851,3.2783844,3.2900837,3.301783,3.3134823,3.3251815,3.3368808,3.3485801,3.3602794,3.3719787,3.383678,3.3953773,3.4070766,3.4187759,3.4304752,3.4421745,3.4538738,3.4655731,3.4772724,3.4889717,3.500671,3.5123702,3.5240695,3.5357688,3.5474681,3.5591674,3.5708667,3.582566,3.5942653,3.6059646,3.6176639,3.6293632,3.6410625,3.6527618,3.6644611,3.6761604,3.6878597,3.6995589,3.7112582,3.7229575,3.7346568,3.7463561,3.7580554,3.7697547,3.781454,3.7931533,3.8048526,3.8165519,3.8282512,3.8399505,3.8516498,3.8633491,3.8750484,3.8867476,3.8984469,3.9101462,3.9218455],"y":[-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187],"zorder":5,"type":"scatter"},{"customdata":[[0.0063643275],[0.0065329146],[0.0067053219],[0.0068821252],[0.0070639465],[0.0072514519],[0.007445349],[0.0076463841],[0.0078553385],[0.0080730249],[0.0083002834],[0.0085379768],[0.0087869861],[0.0090482057],[0.0093225382],[0.0096108891],[0.0099141622],[0.010233253],[0.010569047],[0.010922408],[0.011294182],[0.011685184],[0.0120962],[0.012527979],[0.012981234],[0.01345663],[0.013954793],[0.014476295],[0.015021665],[0.015591376],[0.016185852],[0.016805464],[0.017450532],[0.018121326],[0.018818065],[0.01954092],[0.02029002],[0.021065448],[0.021867251],[0.022695436],[0.023549983],[0.024430841],[0.025337938],[0.026271182],[0.027230469],[0.028215684],[0.029226708],[0.030263423],[0.031325716],[0.032413483],[0.033526634],[0.034665094],[0.035828811],[0.037017755],[0.038231924],[0.039471344],[0.040736068],[0.042026184],[0.043341808],[0.04468309],[0.046050207],[0.047443367],[0.048862804],[0.050308777],[0.051781565],[0.053281464],[0.054808782],[0.056363838],[0.057946949],[0.059558433],[0.061198597],[0.062867732],[0.064566108],[0.066293966],[0.068051514],[0.069838915],[0.071656285],[0.073503685],[0.075381116],[0.077288511],[0.079225732],[0.081192563],[0.083188709],[0.085213788],[0.087267331],[0.089348781],[0.091457487],[0.093592709],[0.095753615],[0.097939281],[0.1001487],[0.10238077],[0.10463433],[0.10690812],[0.10920083],[0.11151106],[0.11383739],[0.11617832],[0.11853234],[0.12089788],[0.12327338],[0.12565725],[0.12804792],[0.13044382],[0.13284339],[0.13524513],[0.13764756],[0.14004928],[0.14244893],[0.14484524],[0.14723701],[0.14962313],[0.1520026],[0.15437452],[0.15673809],[0.15909263],[0.16143758],[0.16377249],[0.16609705],[0.16841105],[0.17071442],[0.17300717],[0.17528948],[0.17756159],[0.17982387],[0.18207678],[0.18432087],[0.18655679],[0.18878523],[0.19100699],[0.19322289],[0.19543381],[0.19764066],[0.19984439],[0.20204594],[0.20424629],[0.20644638],[0.20864715],[0.21084953],[0.21305439],[0.21526259],[0.21747491],[0.2196921],[0.22191485],[0.22414376],[0.22637938],[0.22862218],[0.23087256],[0.23313083],[0.23539722],[0.23767189],[0.23995492],[0.24224628],[0.2445459],[0.24685361],[0.24916916],[0.25149225],[0.25382249],[0.25615942],[0.25850252],[0.26085121],[0.26320486],[0.26556275],[0.26792415],[0.27028823],[0.27265415],[0.27502101],[0.27738786],[0.27975372],[0.28211754],[0.28447826],[0.28683476],[0.28918591],[0.29153053],[0.29386738],[0.29619523],[0.29851279],[0.30081876],[0.30311179],[0.30539053],[0.30765358],[0.30989955],[0.31212701],[0.31433454],[0.31652068],[0.31868401],[0.32082307],[0.32293643],[0.32502268],[0.32708041],[0.32910826],[0.33110487],[0.33306896],[0.33499927],[0.33689462],[0.33875386],[0.34057594],[0.34235986],[0.34410473],[0.34580974],[0.34747415],[0.34909735],[0.35067883],[0.35221816],[0.35371505],[0.35516929],[0.35658082],[0.35794964],[0.3592759],[0.36055984],[0.3618018],[0.36300223],[0.36416164],[0.36528067],[0.36636001],[0.36740042],[0.36840275],[0.36936786],[0.3702967],[0.3711902],[0.37204936],[0.37287517],[0.37366862],[0.37443069],[0.37516235],[0.37586453],[0.37653812],[0.37718397],[0.37780286],[0.3783955],[0.37896255],[0.37950457],[0.38002203],[0.38051532],[0.38098474],[0.38143046],[0.38185258],[0.3822511],[0.38262588],[0.38297671],[0.38330327],[0.38360514],[0.38388179],[0.38413262],[0.38435693],[0.38455392],[0.38472273],[0.38486242],[0.38497199],[0.38505038],[0.38509646],[0.38510909],[0.38508705],[0.38502913],[0.38493408],[0.38480064],[0.38462755],[0.38441355],[0.38415741],[0.38385789],[0.38351381],[0.383124],[0.38268735],[0.38220279],[0.38166932],[0.38108599],[0.38045192],[0.3797663],[0.3790284],[0.37823756],[0.37739322],[0.37649487],[0.37554213],[0.37453466],[0.37347223],[0.37235468],[0.37118193],[0.36995399],[0.36867092],[0.36733285],[0.36593999],[0.3644926],[0.36299096],[0.36143543],[0.35982639],[0.35816423],[0.35644938],[0.35468227],[0.35286333],[0.350993],[0.34907168],[0.34709977],[0.34507763],[0.34300561],[0.340884],[0.33871306],[0.33649299],[0.33422397],[0.33190612],[0.32953951],[0.32712418],[0.32466012],[0.32214729],[0.31958562],[0.31697501],[0.31431537],[0.31160658],[0.30884855],[0.30604119],[0.30318446],[0.30027835],[0.29732292],[0.2943183],[0.2912647],[0.28816243],[0.28501193],[0.28181375],[0.27856858],[0.27527727],[0.27194083],[0.26856043],[0.26513743],[0.26167337],[0.25816997],[0.25462916],[0.25105304],[0.24744393],[0.24380432],[0.24013689],[0.23644448],[0.23273014],[0.22899705],[0.22524854],[0.22148808],[0.21771925],[0.21394576],[0.21017138],[0.20639995],[0.20263537],[0.19888157],[0.19514247],[0.191422],[0.18772405],[0.18405246],[0.18041101],[0.17680336],[0.1732331],[0.16970368],[0.16621839],[0.1627804],[0.15939267],[0.15605801],[0.15277902],[0.14955808],[0.14639739],[0.1432989],[0.14026436],[0.13729527],[0.13439291],[0.13155831],[0.1287923],[0.12609544],[0.12346809],[0.12091039],[0.11842222],[0.1160033],[0.1136531],[0.11137093],[0.10915587],[0.10700686],[0.10492264],[0.10290181],[0.1009428],[0.099043923],[0.097203357],[0.095419166],[0.09368931],[0.092011664],[0.09038402],[0.088804108],[0.087269603],[0.085778141],[0.084327328],[0.082914755],[0.081538009],[0.080194684],[0.078882393],[0.077598781],[0.076341534],[0.075108391],[0.073897155],[0.0727057],[0.071531984],[0.070374055],[0.069230062],[0.06809826],[0.066977018],[0.065864828],[0.064760304],[0.063662194],[0.062569378],[0.061480874],[0.060395838],[0.059313569],[0.058233502],[0.057155213],[0.056078417],[0.05500296],[0.05392882],[0.0528561],[0.051785026],[0.050715934],[0.049649268],[0.048585572],[0.04752548],[0.046469705],[0.045419036],[0.044374321],[0.043336462],[0.042306401],[0.041285114],[0.040273598],[0.039272859],[0.038283908],[0.037307745],[0.036345355],[0.035397695],[0.034465689],[0.03355022],[0.032652122],[0.031772174],[0.030911096],[0.030069542],[0.0292481],[0.028447285],[0.027667537],[0.026909225],[0.026172638],[0.025457992],[0.024765427],[0.024095008],[0.02344673],[0.022820518],[0.02221623],[0.021633661],[0.021072547],[0.020532567],[0.020013351],[0.019514478],[0.019035487],[0.018575877],[0.018135113],[0.017712632],[0.017307843],[0.016920134],[0.016548875],[0.016193423],[0.015853124],[0.015527315],[0.015215329],[0.014916499],[0.014630157],[0.014355635],[0.014092275],[0.01383942],[0.013596424],[0.013362649],[0.013137467],[0.012920261],[0.012710426],[0.012507369],[0.012310513],[0.012119292],[0.011933156],[0.011751571],[0.011574018],[0.011399994],[0.011229014],[0.011060609],[0.010894331],[0.01072975],[0.010566454],[0.010404056],[0.010242186],[0.010080501],[0.009918676],[0.0097564149],[0.0095934445],[0.0094295174],[0.0092644134],[0.0090979389],[0.0089299286],[0.0087602454],[0.0085887806],[0.0084154548],[0.0082402173],[0.0080630464],[0.0078839491],[0.0077029605],[0.0075201435]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"rgb(13, 8, 135)"],[0.18708942907084045,"#46039f"],[0.3741788581416809,"#7201a8"],[0.5612682872125214,"#9c179e"],[0.7483577162833618,"#bd3786"],[0.935447145355886,"#d8576b"],[1.0,"rgb(223.24579, 98.73127, 98.7191)"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Trace 6","x":[-1.9161021,-1.9044028,-1.8927035,-1.8810042,-1.8693049,-1.8576056,-1.8459063,-1.834207,-1.8225077,-1.8108084,-1.7991091,-1.7874098,-1.7757105,-1.7640112,-1.7523119,-1.7406126,-1.7289134,-1.7172141,-1.7055148,-1.6938155,-1.6821162,-1.6704169,-1.6587176,-1.6470183,-1.635319,-1.6236197,-1.6119204,-1.6002211,-1.5885218,-1.5768225,-1.5651232,-1.5534239,-1.5417247,-1.5300254,-1.5183261,-1.5066268,-1.4949275,-1.4832282,-1.4715289,-1.4598296,-1.4481303,-1.436431,-1.4247317,-1.4130324,-1.4013331,-1.3896338,-1.3779345,-1.3662352,-1.354536,-1.3428367,-1.3311374,-1.3194381,-1.3077388,-1.2960395,-1.2843402,-1.2726409,-1.2609416,-1.2492423,-1.237543,-1.2258437,-1.2141444,-1.2024451,-1.1907458,-1.1790465,-1.1673473,-1.155648,-1.1439487,-1.1322494,-1.1205501,-1.1088508,-1.0971515,-1.0854522,-1.0737529,-1.0620536,-1.0503543,-1.038655,-1.0269557,-1.0152564,-1.0035571,-0.99185785,-0.98015855,-0.96845926,-0.95675997,-0.94506067,-0.93336138,-0.92166208,-0.90996279,-0.8982635,-0.8865642,-0.87486491,-0.86316562,-0.85146632,-0.83976703,-0.82806773,-0.81636844,-0.80466915,-0.79296985,-0.78127056,-0.76957127,-0.75787197,-0.74617268,-0.73447338,-0.72277409,-0.7110748,-0.6993755,-0.68767621,-0.67597692,-0.66427762,-0.65257833,-0.64087903,-0.62917974,-0.61748045,-0.60578115,-0.59408186,-0.58238257,-0.57068327,-0.55898398,-0.54728468,-0.53558539,-0.5238861,-0.5121868,-0.50048751,-0.48878822,-0.47708892,-0.46538963,-0.45369033,-0.44199104,-0.43029175,-0.41859245,-0.40689316,-0.39519387,-0.38349457,-0.37179528,-0.36009598,-0.34839669,-0.3366974,-0.3249981,-0.31329881,-0.30159952,-0.28990022,-0.27820093,-0.26650163,-0.25480234,-0.24310305,-0.23140375,-0.21970446,-0.20800517,-0.19630587,-0.18460658,-0.17290728,-0.16120799,-0.1495087,-0.1378094,-0.12611011,-0.11441082,-0.10271152,-0.091012228,-0.079312934,-0.06761364,-0.055914347,-0.044215053,-0.032515759,-0.020816465,-0.0091171716,0.0025821222,0.014281416,0.02598071,0.037680003,0.049379297,0.061078591,0.072777885,0.084477178,0.096176472,0.10787577,0.11957506,0.13127435,0.14297365,0.15467294,0.16637223,0.17807153,0.18977082,0.20147012,0.21316941,0.2248687,0.236568,0.24826729,0.25996658,0.27166588,0.28336517,0.29506447,0.30676376,0.31846305,0.33016235,0.34186164,0.35356093,0.36526023,0.37695952,0.38865882,0.40035811,0.4120574,0.4237567,0.43545599,0.44715528,0.45885458,0.47055387,0.48225317,0.49395246,0.50565175,0.51735105,0.52905034,0.54074963,0.55244893,0.56414822,0.57584752,0.58754681,0.5992461,0.6109454,0.62264469,0.63434398,0.64604328,0.65774257,0.66944187,0.68114116,0.69284045,0.70453975,0.71623904,0.72793833,0.73963763,0.75133692,0.76303622,0.77473551,0.7864348,0.7981341,0.80983339,0.82153268,0.83323198,0.84493127,0.85663057,0.86832986,0.88002915,0.89172845,0.90342774,0.91512703,0.92682633,0.93852562,0.95022492,0.96192421,0.9736235,0.9853228,0.99702209,1.0087214,1.0204207,1.03212,1.0438193,1.0555186,1.0672179,1.0789171,1.0906164,1.1023157,1.114015,1.1257143,1.1374136,1.1491129,1.1608122,1.1725115,1.1842108,1.1959101,1.2076094,1.2193087,1.231008,1.2427073,1.2544066,1.2661058,1.2778051,1.2895044,1.3012037,1.312903,1.3246023,1.3363016,1.3480009,1.3597002,1.3713995,1.3830988,1.3947981,1.4064974,1.4181967,1.429896,1.4415953,1.4532945,1.4649938,1.4766931,1.4883924,1.5000917,1.511791,1.5234903,1.5351896,1.5468889,1.5585882,1.5702875,1.5819868,1.5936861,1.6053854,1.6170847,1.628784,1.6404832,1.6521825,1.6638818,1.6755811,1.6872804,1.6989797,1.710679,1.7223783,1.7340776,1.7457769,1.7574762,1.7691755,1.7808748,1.7925741,1.8042734,1.8159727,1.8276719,1.8393712,1.8510705,1.8627698,1.8744691,1.8861684,1.8978677,1.909567,1.9212663,1.9329656,1.9446649,1.9563642,1.9680635,1.9797628,1.9914621,2.0031614,2.0148606,2.0265599,2.0382592,2.0499585,2.0616578,2.0733571,2.0850564,2.0967557,2.108455,2.1201543,2.1318536,2.1435529,2.1552522,2.1669515,2.1786508,2.1903501,2.2020493,2.2137486,2.2254479,2.2371472,2.2488465,2.2605458,2.2722451,2.2839444,2.2956437,2.307343,2.3190423,2.3307416,2.3424409,2.3541402,2.3658395,2.3775388,2.389238,2.4009373,2.4126366,2.4243359,2.4360352,2.4477345,2.4594338,2.4711331,2.4828324,2.4945317,2.506231,2.5179303,2.5296296,2.5413289,2.5530282,2.5647275,2.5764267,2.588126,2.5998253,2.6115246,2.6232239,2.6349232,2.6466225,2.6583218,2.6700211,2.6817204,2.6934197,2.705119,2.7168183,2.7285176,2.7402169,2.7519162,2.7636154,2.7753147,2.787014,2.7987133,2.8104126,2.8221119,2.8338112,2.8455105,2.8572098,2.8689091,2.8806084,2.8923077,2.904007,2.9157063,2.9274056,2.9391049,2.9508041,2.9625034,2.9742027,2.985902,2.9976013,3.0093006,3.0209999,3.0326992,3.0443985,3.0560978,3.0677971,3.0794964,3.0911957,3.102895,3.1145943,3.1262936,3.1379928,3.1496921,3.1613914,3.1730907,3.18479,3.1964893,3.2081886,3.2198879,3.2315872,3.2432865,3.2549858,3.2666851,3.2783844,3.2900837,3.301783,3.3134823,3.3251815,3.3368808,3.3485801,3.3602794,3.3719787,3.383678,3.3953773,3.4070766,3.4187759,3.4304752,3.4421745,3.4538738,3.4655731,3.4772724,3.4889717,3.500671,3.5123702,3.5240695,3.5357688,3.5474681,3.5591674,3.5708667,3.582566,3.5942653,3.6059646,3.6176639,3.6293632,3.6410625,3.6527618,3.6644611,3.6761604,3.6878597,3.6995589,3.7112582,3.7229575,3.7346568,3.7463561,3.7580554,3.7697547,3.781454,3.7931533,3.8048526,3.8165519,3.8282512,3.8399505,3.8516498,3.8633491,3.8750484,3.8867476,3.8984469,3.9101462,3.9218455],"y":[-1.0463544,-1.0461858,-1.0460134,-1.0458366,-1.0456548,-1.0454673,-1.0452734,-1.0450723,-1.0448634,-1.0446457,-1.0444184,-1.0441807,-1.0439317,-1.0436705,-1.0433962,-1.0431078,-1.0428045,-1.0424855,-1.0421497,-1.0417963,-1.0414245,-1.0410335,-1.0406225,-1.0401907,-1.0397375,-1.0392621,-1.0387639,-1.0382424,-1.037697,-1.0371273,-1.0365329,-1.0359132,-1.0352682,-1.0345974,-1.0339006,-1.0331778,-1.0324287,-1.0316533,-1.0308515,-1.0300233,-1.0291687,-1.0282879,-1.0273808,-1.0264475,-1.0254882,-1.024503,-1.023492,-1.0224553,-1.021393,-1.0203052,-1.0191921,-1.0180536,-1.0168899,-1.015701,-1.0144868,-1.0132474,-1.0119826,-1.0106925,-1.0093769,-1.0080356,-1.0066685,-1.0052753,-1.0038559,-1.0024099,-1.0009371,-0.99943725,-0.99790993,-0.99635487,-0.99477176,-0.99316028,-0.99152011,-0.98985098,-0.9881526,-0.98642474,-0.9846672,-0.9828798,-0.98106243,-0.97921503,-0.97733759,-0.9754302,-0.97349298,-0.97152615,-0.96953,-0.96750492,-0.96545138,-0.96336993,-0.96126122,-0.959126,-0.9569651,-0.95477943,-0.95257001,-0.95033794,-0.94808438,-0.94581059,-0.94351788,-0.94120765,-0.93888132,-0.93654039,-0.93418637,-0.93182083,-0.92944533,-0.92706146,-0.92467079,-0.92227489,-0.91987532,-0.91747358,-0.91507115,-0.91266943,-0.91026978,-0.90787347,-0.9054817,-0.90309558,-0.90071611,-0.89834419,-0.89598062,-0.89362608,-0.89128113,-0.88894622,-0.88662166,-0.88430766,-0.88200429,-0.87971154,-0.87742923,-0.87515712,-0.87289484,-0.87064193,-0.86839784,-0.86616192,-0.86393348,-0.86171172,-0.85949582,-0.8572849,-0.85507805,-0.85287432,-0.85067277,-0.84847242,-0.84627233,-0.84407156,-0.84186918,-0.83966432,-0.83745612,-0.8352438,-0.83302661,-0.83080386,-0.82857495,-0.82633933,-0.82409653,-0.82184615,-0.81958788,-0.81732149,-0.81504682,-0.81276379,-0.81047243,-0.80817281,-0.8058651,-0.80354955,-0.80122646,-0.79889622,-0.79655929,-0.79421619,-0.7918675,-0.78951385,-0.78715596,-0.78479456,-0.78243048,-0.78006456,-0.7776977,-0.77533085,-0.77296499,-0.77060117,-0.76824045,-0.76588395,-0.7635328,-0.76118818,-0.75885133,-0.75652348,-0.75420592,-0.75189995,-0.74960692,-0.74732818,-0.74506513,-0.74281916,-0.7405917,-0.73838417,-0.73619803,-0.7340347,-0.73189564,-0.72978228,-0.72769603,-0.7256383,-0.72361045,-0.72161384,-0.71964975,-0.71771944,-0.71582409,-0.71396485,-0.71214277,-0.71035885,-0.70861398,-0.70690897,-0.70524456,-0.70362136,-0.70203988,-0.70050055,-0.69900366,-0.69754942,-0.69613789,-0.69476907,-0.69344281,-0.69215887,-0.69091691,-0.68971648,-0.68855707,-0.68743804,-0.6863587,-0.68531829,-0.68431596,-0.68335085,-0.68242201,-0.68152851,-0.68066935,-0.67984354,-0.67905009,-0.67828802,-0.67755636,-0.67685418,-0.67618059,-0.67553474,-0.67491585,-0.67432321,-0.67375616,-0.67321414,-0.67269668,-0.67220339,-0.67173397,-0.67128825,-0.67086613,-0.67046761,-0.67009283,-0.669742,-0.66941544,-0.66911357,-0.66883692,-0.66858609,-0.66836178,-0.66816479,-0.66799598,-0.66785629,-0.66774672,-0.66766833,-0.66762225,-0.66760962,-0.66763166,-0.66768958,-0.66778463,-0.66791807,-0.66809116,-0.66830516,-0.6685613,-0.66886082,-0.6692049,-0.66959471,-0.67003136,-0.67051592,-0.67104939,-0.67163272,-0.67226679,-0.67295241,-0.67369031,-0.67448115,-0.67532549,-0.67622384,-0.67717658,-0.67818405,-0.67924648,-0.68036403,-0.68153678,-0.68276472,-0.68404779,-0.68538586,-0.68677872,-0.68822611,-0.68972775,-0.69128328,-0.69289232,-0.69455448,-0.69626933,-0.69803644,-0.69985538,-0.70172571,-0.70364703,-0.70561894,-0.70764108,-0.7097131,-0.71183471,-0.71400565,-0.71622572,-0.71849474,-0.72081259,-0.7231792,-0.72559453,-0.72805859,-0.73057142,-0.73313309,-0.7357437,-0.73840334,-0.74111213,-0.74387016,-0.74667752,-0.74953425,-0.75244036,-0.75539579,-0.75840041,-0.76145401,-0.76455628,-0.76770678,-0.77090496,-0.77415013,-0.77744144,-0.78077788,-0.78415828,-0.78758128,-0.79104534,-0.79454874,-0.79808955,-0.80166567,-0.80527478,-0.80891439,-0.81258182,-0.81627423,-0.81998857,-0.82372166,-0.82747017,-0.83123063,-0.83499946,-0.83877295,-0.84254733,-0.84631876,-0.85008334,-0.85383714,-0.85757624,-0.86129671,-0.86499466,-0.86866625,-0.8723077,-0.87591535,-0.87948561,-0.88301503,-0.88650032,-0.88993831,-0.89332604,-0.8966607,-0.89993969,-0.90316063,-0.90632132,-0.90941981,-0.91245435,-0.91542344,-0.9183258,-0.9211604,-0.92392641,-0.92662327,-0.92925062,-0.93180832,-0.93429649,-0.93671541,-0.93906561,-0.94134778,-0.94356284,-0.94571185,-0.94779607,-0.9498169,-0.95177591,-0.95367479,-0.95551535,-0.95729954,-0.9590294,-0.96070705,-0.96233469,-0.9639146,-0.96544911,-0.96694057,-0.96839138,-0.96980395,-0.9711807,-0.97252403,-0.97383632,-0.97511993,-0.97637718,-0.97761032,-0.97882156,-0.98001301,-0.98118673,-0.98234465,-0.98348865,-0.98462045,-0.98574169,-0.98685388,-0.98795841,-0.98905652,-0.99014933,-0.99123784,-0.99232287,-0.99340514,-0.99448521,-0.9955635,-0.99664029,-0.99771575,-0.99878989,-0.99986261,-1.0009337,-1.0020028,-1.0030694,-1.0041331,-1.0051932,-1.006249,-1.0072997,-1.0083444,-1.0093822,-1.0104123,-1.0114336,-1.0124451,-1.0134459,-1.0144348,-1.015411,-1.0163734,-1.017321,-1.018253,-1.0191685,-1.0200666,-1.0209465,-1.0218076,-1.0226492,-1.0234706,-1.0242714,-1.0250512,-1.0258095,-1.0265461,-1.0272607,-1.0279533,-1.0286237,-1.029272,-1.0298982,-1.0305025,-1.031085,-1.0316462,-1.0321861,-1.0327054,-1.0332042,-1.0336832,-1.0341428,-1.0345836,-1.0350061,-1.0354109,-1.0357986,-1.0361698,-1.0365253,-1.0368656,-1.0371914,-1.0375034,-1.0378022,-1.0380886,-1.0383631,-1.0386264,-1.0388793,-1.0391223,-1.0393561,-1.0395812,-1.0397984,-1.0400083,-1.0402113,-1.0404082,-1.0405994,-1.0407856,-1.0409671,-1.0411447,-1.0413187,-1.0414897,-1.0416581,-1.0418244,-1.041989,-1.0421523,-1.0423147,-1.0424765,-1.0426382,-1.0428,-1.0429623,-1.0431253,-1.0432892,-1.0434543,-1.0436208,-1.0437888,-1.0439585,-1.0441299,-1.0443033,-1.0444785,-1.0446557,-1.0448348,-1.0450157,-1.0451986],"zorder":5,"type":"scatter"}],"layout":{"template":{"data":{"histogram2dcontour":[{"type":"histogram2dcontour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"choropleth":[{"type":"choropleth","colorbar":{"outlinewidth":0,"ticks":""}}],"histogram2d":[{"type":"histogram2d","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmap":[{"type":"heatmap","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmapgl":[{"type":"heatmapgl","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"contourcarpet":[{"type":"contourcarpet","colorbar":{"outlinewidth":0,"ticks":""}}],"contour":[{"type":"contour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"surface":[{"type":"surface","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"mesh3d":[{"type":"mesh3d","colorbar":{"outlinewidth":0,"ticks":""}}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"parcoords":[{"type":"parcoords","line":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolargl":[{"type":"scatterpolargl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"scattergeo":[{"type":"scattergeo","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolar":[{"type":"scatterpolar","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"scattergl":[{"type":"scattergl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatter3d":[{"type":"scatter3d","line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattermapbox":[{"type":"scattermapbox","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterternary":[{"type":"scatterternary","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattercarpet":[{"type":"scattercarpet","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"type":"carpet"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}],"barpolar":[{"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"pie":[{"automargin":true,"type":"pie"}]},"layout":{"autotypenumbers":"strict","colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"hovermode":"closest","hoverlabel":{"align":"left"},"paper_bgcolor":"white","plot_bgcolor":"#E5ECF6","polar":{"bgcolor":"#E5ECF6","angularaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"radialaxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"ternary":{"bgcolor":"#E5ECF6","aaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"baxis":{"gridcolor":"white","linecolor":"white","ticks":""},"caxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]]},"xaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"yaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"scene":{"xaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"yaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"zaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"geo":{"bgcolor":"white","landcolor":"#E5ECF6","subunitcolor":"white","showland":true,"showlakes":true,"lakecolor":"white"},"title":{"x":0.05},"mapbox":{"style":"light"}}},"legend":{"traceorder":"normal"},"yaxis":{"showticklabels":true,"tickvals":[0.0,-0.2105437420024572,-0.4210874840049144,-0.6316312260073716,-0.8421749680098288,-1.0527187100122861],"ticktext":[["Trace 1"],["Trace 2"],["Trace 3"],["Trace 4"],["Trace 5"],["Trace 6"]],"zeroline":false,"showgrid":true},"xaxis":{"range":[-2.4076002786408495,8.405360691942956],"showticklabels":true,"zeroline":false,"showgrid":true},"barmode":"stack","bargap":0,"bargroupgap":0,"height":350,"width":800}} +{"data":[{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[2.0354712,2.0472515,2.0590318,2.0708122,2.0825925,2.0943729,2.1061532,2.1179336,2.1297139,2.1414943,2.1532746,2.1650549,2.1768353,2.1886156,2.200396,2.2121763,2.2239567,2.235737,2.2475173,2.2592977,2.271078,2.2828584,2.2946387,2.3064191,2.3181994,2.3299797,2.3417601,2.3535404,2.3653208,2.3771011,2.3888815,2.4006618,2.4124421,2.4242225,2.4360028,2.4477832,2.4595635,2.4713439,2.4831242,2.4949046,2.5066849,2.5184652,2.5302456,2.5420259,2.5538063,2.5655866,2.577367,2.5891473,2.6009276,2.612708,2.6244883,2.6362687,2.648049,2.6598294,2.6716097,2.68339,2.6951704,2.7069507,2.7187311,2.7305114,2.7422918,2.7540721,2.7658524,2.7776328,2.7894131,2.8011935,2.8129738,2.8247542,2.8365345,2.8483148,2.8600952,2.8718755,2.8836559,2.8954362,2.9072166,2.9189969,2.9307773,2.9425576,2.9543379,2.9661183,2.9778986,2.989679,3.0014593,3.0132397,3.02502,3.0368003,3.0485807,3.060361,3.0721414,3.0839217,3.0957021,3.1074824,3.1192627,3.1310431,3.1428234,3.1546038,3.1663841,3.1781645,3.1899448,3.2017251,3.2135055,3.2252858,3.2370662,3.2488465,3.2606269,3.2724072,3.2841876,3.2959679,3.3077482,3.3195286,3.3313089,3.3430893,3.3548696,3.36665,3.3784303,3.3902106,3.401991,3.4137713,3.4255517,3.437332,3.4491124,3.4608927,3.472673,3.4844534,3.4962337,3.5080141,3.5197944,3.5315748,3.5433551,3.5551354,3.5669158,3.5786961,3.5904765,3.6022568,3.6140372,3.6258175,3.6375979,3.6493782,3.6611585,3.6729389,3.6847192,3.6964996,3.7082799,3.7200603,3.7318406,3.7436209,3.7554013,3.7671816,3.778962,3.7907423,3.8025227,3.814303,3.8260833,3.8378637,3.849644,3.8614244,3.8732047,3.8849851,3.8967654,3.9085457,3.9203261,3.9321064,3.9438868,3.9556671,3.9674475,3.9792278,3.9910081,4.0027885,4.0145688,4.0263492,4.0381295,4.0499099,4.0616902,4.0734706,4.0852509,4.0970312,4.1088116,4.1205919,4.1323723,4.1441526,4.155933,4.1677133,4.1794936,4.191274,4.2030543,4.2148347,4.226615,4.2383954,4.2501757,4.261956,4.2737364,4.2855167,4.2972971,4.3090774,4.3208578,4.3326381,4.3444184,4.3561988,4.3679791,4.3797595,4.3915398,4.4033202,4.4151005,4.4268809,4.4386612,4.4504415,4.4622219,4.4740022,4.4857826,4.4975629,4.5093433,4.5211236,4.5329039,4.5446843,4.5564646,4.568245,4.5800253,4.5918057,4.603586,4.6153663,4.6271467,4.638927,4.6507074,4.6624877,4.6742681,4.6860484,4.6978287,4.7096091,4.7213894,4.7331698,4.7449501,4.7567305,4.7685108,4.7802911,4.7920715,4.8038518,4.8156322,4.8274125,4.8391929,4.8509732,4.8627536,4.8745339,4.8863142,4.8980946,4.9098749,4.9216553,4.9334356,4.945216,4.9569963,4.9687766,4.980557,4.9923373,5.0041177,5.015898,5.0276784,5.0394587,5.051239,5.0630194,5.0747997,5.0865801,5.0983604,5.1101408,5.1219211,5.1337014,5.1454818,5.1572621,5.1690425,5.1808228,5.1926032,5.2043835,5.2161639,5.2279442,5.2397245,5.2515049,5.2632852,5.2750656,5.2868459,5.2986263,5.3104066,5.3221869,5.3339673,5.3457476,5.357528,5.3693083,5.3810887,5.392869,5.4046493,5.4164297,5.42821,5.4399904,5.4517707,5.4635511,5.4753314,5.4871117,5.4988921,5.5106724,5.5224528,5.5342331,5.5460135,5.5577938,5.5695742,5.5813545,5.5931348,5.6049152,5.6166955,5.6284759,5.6402562,5.6520366,5.6638169,5.6755972,5.6873776,5.6991579,5.7109383,5.7227186,5.734499,5.7462793,5.7580596,5.76984,5.7816203,5.7934007,5.805181,5.8169614,5.8287417,5.840522,5.8523024,5.8640827,5.8758631,5.8876434,5.8994238,5.9112041,5.9229844,5.9347648,5.9465451,5.9583255,5.9701058,5.9818862,5.9936665,6.0054469,6.0172272,6.0290075,6.0407879,6.0525682,6.0643486,6.0761289,6.0879093,6.0996896,6.1114699,6.1232503,6.1350306,6.146811,6.1585913,6.1703717,6.182152,6.1939323,6.2057127,6.217493,6.2292734,6.2410537,6.2528341,6.2646144,6.2763947,6.2881751,6.2999554,6.3117358,6.3235161,6.3352965,6.3470768,6.3588572,6.3706375,6.3824178,6.3941982,6.4059785,6.4177589,6.4295392,6.4413196,6.4530999,6.4648802,6.4766606,6.4884409,6.5002213,6.5120016,6.523782,6.5355623,6.5473426,6.559123,6.5709033,6.5826837,6.594464,6.6062444,6.6180247,6.629805,6.6415854,6.6533657,6.6651461,6.6769264,6.6887068,6.7004871,6.7122674,6.7240478,6.7358281,6.7476085,6.7593888,6.7711692,6.7829495,6.7947299,6.8065102,6.8182905,6.8300709,6.8418512,6.8536316,6.8654119,6.8771923,6.8889726,6.9007529,6.9125333,6.9243136,6.936094,6.9478743,6.9596547,6.971435,6.9832153,6.9949957,7.006776,7.0185564,7.0303367,7.0421171,7.0538974,7.0656777,7.0774581,7.0892384,7.1010188,7.1127991,7.1245795,7.1363598,7.1481402,7.1599205,7.1717008,7.1834812,7.1952615,7.2070419,7.2188222,7.2306026,7.2423829,7.2541632,7.2659436,7.2777239,7.2895043,7.3012846,7.313065,7.3248453,7.3366256,7.348406,7.3601863,7.3719667,7.383747,7.3955274,7.4073077,7.419088,7.4308684,7.4426487,7.4544291,7.4662094,7.4779898,7.4897701,7.5015505,7.5133308,7.5251111,7.5368915,7.5486718,7.5604522,7.5722325,7.5840129,7.5957932,7.6075735,7.6193539,7.6311342,7.6429146,7.6546949,7.6664753,7.6782556,7.6900359,7.7018163,7.7135966,7.725377,7.7371573,7.7489377,7.760718,7.7724983,7.7842787,7.796059,7.8078394,7.8196197,7.8314001,7.8431804,7.8549607,7.8667411,7.8785214,7.8903018,7.9020821,7.9138625],"y":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"zorder":0,"type":"scatter"},{"customdata":[[0.0044821864],[0.0046542885],[0.0048332863],[0.0050196155],[0.0052137235],[0.0054160674],[0.0056271107],[0.0058473203],[0.0060771639],[0.0063171061],[0.0065676055],[0.0068291112],[0.0071020595],[0.0073868703],[0.0076839443],[0.0079936594],[0.008316368],[0.0086523938],[0.0090020299],[0.0093655359],[0.0097431359],[0.010135017],[0.010541328],[0.010962179],[0.011397639],[0.011847737],[0.012312462],[0.012791765],[0.013285557],[0.013793713],[0.014316074],[0.014852446],[0.015402608],[0.01596631],[0.016543278],[0.01713322],[0.017735826],[0.018350776],[0.018977739],[0.019616385],[0.020266382],[0.020927407],[0.021599146],[0.022281302],[0.022973599],[0.023675784],[0.024387637],[0.025108969],[0.025839631],[0.026579518],[0.027328568],[0.028086771],[0.028854169],[0.02963086],[0.030417],[0.031212803],[0.032018548],[0.032834573],[0.033661282],[0.034499142],[0.035348682],[0.036210495],[0.037085233],[0.037973608],[0.038876389],[0.039794398],[0.040728508],[0.041679639],[0.04264875],[0.043636839],[0.044644936],[0.045674096],[0.046725393],[0.047799913],[0.048898751],[0.050022997],[0.051173735],[0.052352033],[0.053558932],[0.054795444],[0.056062541],[0.05736115],[0.058692139],[0.06005632],[0.061454434],[0.062887147],[0.064355045],[0.065858631],[0.067398313],[0.068974407],[0.070587131],[0.072236601],[0.073922834],[0.07564574],[0.077405131],[0.079200713],[0.081032096],[0.08289879],[0.084800214],[0.086735697],[0.088704487],[0.090705752],[0.092738592],[0.094802045],[0.096895091],[0.099016668],[0.10116567],[0.10334098],[0.10554143],[0.10776586],[0.11001313],[0.11228206],[0.11457152],[0.11688038],[0.11920757],[0.12155203],[0.12391275],[0.12628875],[0.12867914],[0.13108305],[0.13349966],[0.13592824],[0.13836808],[0.14081854],[0.14327903],[0.145749],[0.14822796],[0.15071544],[0.153211],[0.15571423],[0.15822475],[0.16074217],[0.16326612],[0.16579619],[0.16833198],[0.17087307],[0.17341898],[0.17596922],[0.17852324],[0.18108043],[0.18364012],[0.18620159],[0.18876405],[0.19132663],[0.1938884],[0.19644835],[0.19900541],[0.20155846],[0.20410629],[0.20664765],[0.20918127],[0.2117058],[0.2142199],[0.21672221],[0.21921135],[0.22168598],[0.22414477],[0.22658645],[0.2290098],[0.23141368],[0.23379703],[0.23615891],[0.23849851],[0.24081514],[0.24310828],[0.24537756],[0.2476228],[0.24984399],[0.25204132],[0.25421519],[0.25636617],[0.25849508],[0.26060291],[0.26269085],[0.2647603],[0.26681281],[0.26885014],[0.27087417],[0.27288695],[0.27489064],[0.27688748],[0.27887982],[0.28087002],[0.28286049],[0.28485362],[0.28685179],[0.28885728],[0.2908723],[0.29289892],[0.29493908],[0.29699451],[0.29906676],[0.30115713],[0.30326666],[0.30539612],[0.30754599],[0.30971644],[0.31190732],[0.31411814],[0.3163481],[0.31859604],[0.32086051],[0.3231397],[0.32543154],[0.32773362],[0.3300433],[0.33235766],[0.33467359],[0.33698777],[0.33929673],[0.34159686],[0.34388448],[0.34615586],[0.34840726],[0.35063496],[0.35283531],[0.35500478],[0.35713996],[0.35923763],[0.3612948],[0.36330869],[0.36527681],[0.36719695],[0.36906722],[0.37088606],[0.37265222],[0.37436483],[0.37602335],[0.37762756],[0.3791776],[0.38067391],[0.38211723],[0.38350858],[0.38484921],[0.38614061],[0.38738445],[0.38858252],[0.38973674],[0.39084908],[0.39192154],[0.39295608],[0.3939546],[0.3949189],[0.3958506],[0.39675113],[0.39762172],[0.39846328],[0.39927646],[0.40006155],[0.40081852],[0.40154695],[0.40224602],[0.40291455],[0.40355093],[0.40415318],[0.40471893],[0.40524542],[0.40572954],[0.40616787],[0.40655665],[0.40689189],[0.40716934],[0.40738457],[0.407533],[0.40760993],[0.40761065],[0.40753039],[0.40736447],[0.40710828],[0.40675736],[0.40630746],[0.40575453],[0.40509484],[0.40432496],[0.40344184],[0.40244279],[0.40132559],[0.40008842],[0.39872996],[0.39724935],[0.39564624],[0.39392074],[0.3920735],[0.39010561],[0.38801868],[0.38581475],[0.38349632],[0.38106629],[0.37852796],[0.375885],[0.37314138],[0.3703014],[0.36736957],[0.36435066],[0.36124958],[0.35807141],[0.3548213],[0.3515045],[0.34812626],[0.34469183],[0.34120643],[0.33767521],[0.3341032],[0.33049534],[0.32685642],[0.32319106],[0.31950373],[0.31579869],[0.31208003],[0.30835162],[0.30461715],[0.30088011],[0.29714376],[0.29341123],[0.28968541],[0.28596905],[0.28226473],[0.27857487],[0.27490177],[0.27124759],[0.26761437],[0.26400407],[0.26041855],[0.25685959],[0.25332892],[0.24982819],[0.24635901],[0.24292296],[0.23952157],[0.23615633],[0.23282871],[0.22954013],[0.22629199],[0.22308565],[0.21992242],[0.21680356],[0.21373029],[0.21070376],[0.20772502],[0.20479509],[0.20191486],[0.19908513],[0.19630661],[0.19357986],[0.19090533],[0.18828334],[0.18571405],[0.1831975],[0.18073355],[0.17832192],[0.17596216],[0.17365367],[0.17139568],[0.16918728],[0.1670274],[0.16491482],[0.16284816],[0.16082595],[0.15884656],[0.15690826],[0.15500922],[0.15314751],[0.15132112],[0.14952799],[0.14776601],[0.14603303],[0.14432687],[0.14264535],[0.14098632],[0.13934761],[0.13772713],[0.13612281],[0.13453265],[0.13295473],[0.1313872],[0.12982831],[0.12827642],[0.12672998],[0.12518757],[0.12364789],[0.12210976],[0.12057213],[0.11903408],[0.11749481],[0.11595366],[0.11441009],[0.11286368],[0.11131415],[0.10976132],[0.10820511],[0.10664558],[0.10508284],[0.10351714],[0.10194879],[0.10037816],[0.098805736],[0.097232019],[0.095657589],[0.094083063],[0.0925091],[0.090936387],[0.089365638],[0.08779758],[0.086232956],[0.084672513],[0.083116997],[0.081567151],[0.080023711],[0.078487399],[0.076958922],[0.075438974],[0.073928224],[0.072427326],[0.07093691],[0.069457585],[0.067989937],[0.066534533],[0.065091917],[0.063662616],[0.062247135],[0.060845964],[0.059459574],[0.058088424],[0.056732959],[0.05539361],[0.054070797],[0.052764933],[0.051476418],[0.050205647],[0.048953003],[0.047718863],[0.046503598],[0.045307567],[0.044131122],[0.042974605],[0.041838347],[0.040722667],[0.039627869],[0.038554246],[0.037502068],[0.036471591],[0.035463049],[0.034476652],[0.033512586],[0.032571012],[0.031652062],[0.030755837],[0.029882408],[0.029031813],[0.028204055],[0.027399104],[0.026616892],[0.025857317],[0.025120241],[0.024405486],[0.023712841],[0.02304206],[0.022392859],[0.021764923],[0.021157901],[0.020571413],[0.020005046],[0.019458363],[0.018930895],[0.01842215],[0.017931615],[0.017458753],[0.017003009],[0.016563811],[0.016140572],[0.015732693],[0.015339564],[0.014960567],[0.014595076],[0.014242462],[0.013902093],[0.013573339],[0.013255568],[0.012948154],[0.012650477],[0.012361923],[0.012081889],[0.01180978],[0.011545019],[0.011287039],[0.011035292],[0.010789248],[0.010548397],[0.01031225],[0.01008034],[0.0098522264],[0.0096274936],[0.0094057527],[0.0091866434],[0.0089698345],[0.0087550252],[0.0085419453],[0.0083303563],[0.0081200514],[0.0079108561]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"rgb(176.39181, 42.77388, 143.16959)"],[0.07098879319017543,"#bd3786"],[0.2567910345534781,"#d8576b"],[0.44259327591510866,"#ed7953"],[0.628395517276739,"#fb9f3a"],[0.8141977586383695,"#fdca26"],[1.0,"rgb(240, 249, 33)"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Trace 1","x":[2.0354712,2.0472515,2.0590318,2.0708122,2.0825925,2.0943729,2.1061532,2.1179336,2.1297139,2.1414943,2.1532746,2.1650549,2.1768353,2.1886156,2.200396,2.2121763,2.2239567,2.235737,2.2475173,2.2592977,2.271078,2.2828584,2.2946387,2.3064191,2.3181994,2.3299797,2.3417601,2.3535404,2.3653208,2.3771011,2.3888815,2.4006618,2.4124421,2.4242225,2.4360028,2.4477832,2.4595635,2.4713439,2.4831242,2.4949046,2.5066849,2.5184652,2.5302456,2.5420259,2.5538063,2.5655866,2.577367,2.5891473,2.6009276,2.612708,2.6244883,2.6362687,2.648049,2.6598294,2.6716097,2.68339,2.6951704,2.7069507,2.7187311,2.7305114,2.7422918,2.7540721,2.7658524,2.7776328,2.7894131,2.8011935,2.8129738,2.8247542,2.8365345,2.8483148,2.8600952,2.8718755,2.8836559,2.8954362,2.9072166,2.9189969,2.9307773,2.9425576,2.9543379,2.9661183,2.9778986,2.989679,3.0014593,3.0132397,3.02502,3.0368003,3.0485807,3.060361,3.0721414,3.0839217,3.0957021,3.1074824,3.1192627,3.1310431,3.1428234,3.1546038,3.1663841,3.1781645,3.1899448,3.2017251,3.2135055,3.2252858,3.2370662,3.2488465,3.2606269,3.2724072,3.2841876,3.2959679,3.3077482,3.3195286,3.3313089,3.3430893,3.3548696,3.36665,3.3784303,3.3902106,3.401991,3.4137713,3.4255517,3.437332,3.4491124,3.4608927,3.472673,3.4844534,3.4962337,3.5080141,3.5197944,3.5315748,3.5433551,3.5551354,3.5669158,3.5786961,3.5904765,3.6022568,3.6140372,3.6258175,3.6375979,3.6493782,3.6611585,3.6729389,3.6847192,3.6964996,3.7082799,3.7200603,3.7318406,3.7436209,3.7554013,3.7671816,3.778962,3.7907423,3.8025227,3.814303,3.8260833,3.8378637,3.849644,3.8614244,3.8732047,3.8849851,3.8967654,3.9085457,3.9203261,3.9321064,3.9438868,3.9556671,3.9674475,3.9792278,3.9910081,4.0027885,4.0145688,4.0263492,4.0381295,4.0499099,4.0616902,4.0734706,4.0852509,4.0970312,4.1088116,4.1205919,4.1323723,4.1441526,4.155933,4.1677133,4.1794936,4.191274,4.2030543,4.2148347,4.226615,4.2383954,4.2501757,4.261956,4.2737364,4.2855167,4.2972971,4.3090774,4.3208578,4.3326381,4.3444184,4.3561988,4.3679791,4.3797595,4.3915398,4.4033202,4.4151005,4.4268809,4.4386612,4.4504415,4.4622219,4.4740022,4.4857826,4.4975629,4.5093433,4.5211236,4.5329039,4.5446843,4.5564646,4.568245,4.5800253,4.5918057,4.603586,4.6153663,4.6271467,4.638927,4.6507074,4.6624877,4.6742681,4.6860484,4.6978287,4.7096091,4.7213894,4.7331698,4.7449501,4.7567305,4.7685108,4.7802911,4.7920715,4.8038518,4.8156322,4.8274125,4.8391929,4.8509732,4.8627536,4.8745339,4.8863142,4.8980946,4.9098749,4.9216553,4.9334356,4.945216,4.9569963,4.9687766,4.980557,4.9923373,5.0041177,5.015898,5.0276784,5.0394587,5.051239,5.0630194,5.0747997,5.0865801,5.0983604,5.1101408,5.1219211,5.1337014,5.1454818,5.1572621,5.1690425,5.1808228,5.1926032,5.2043835,5.2161639,5.2279442,5.2397245,5.2515049,5.2632852,5.2750656,5.2868459,5.2986263,5.3104066,5.3221869,5.3339673,5.3457476,5.357528,5.3693083,5.3810887,5.392869,5.4046493,5.4164297,5.42821,5.4399904,5.4517707,5.4635511,5.4753314,5.4871117,5.4988921,5.5106724,5.5224528,5.5342331,5.5460135,5.5577938,5.5695742,5.5813545,5.5931348,5.6049152,5.6166955,5.6284759,5.6402562,5.6520366,5.6638169,5.6755972,5.6873776,5.6991579,5.7109383,5.7227186,5.734499,5.7462793,5.7580596,5.76984,5.7816203,5.7934007,5.805181,5.8169614,5.8287417,5.840522,5.8523024,5.8640827,5.8758631,5.8876434,5.8994238,5.9112041,5.9229844,5.9347648,5.9465451,5.9583255,5.9701058,5.9818862,5.9936665,6.0054469,6.0172272,6.0290075,6.0407879,6.0525682,6.0643486,6.0761289,6.0879093,6.0996896,6.1114699,6.1232503,6.1350306,6.146811,6.1585913,6.1703717,6.182152,6.1939323,6.2057127,6.217493,6.2292734,6.2410537,6.2528341,6.2646144,6.2763947,6.2881751,6.2999554,6.3117358,6.3235161,6.3352965,6.3470768,6.3588572,6.3706375,6.3824178,6.3941982,6.4059785,6.4177589,6.4295392,6.4413196,6.4530999,6.4648802,6.4766606,6.4884409,6.5002213,6.5120016,6.523782,6.5355623,6.5473426,6.559123,6.5709033,6.5826837,6.594464,6.6062444,6.6180247,6.629805,6.6415854,6.6533657,6.6651461,6.6769264,6.6887068,6.7004871,6.7122674,6.7240478,6.7358281,6.7476085,6.7593888,6.7711692,6.7829495,6.7947299,6.8065102,6.8182905,6.8300709,6.8418512,6.8536316,6.8654119,6.8771923,6.8889726,6.9007529,6.9125333,6.9243136,6.936094,6.9478743,6.9596547,6.971435,6.9832153,6.9949957,7.006776,7.0185564,7.0303367,7.0421171,7.0538974,7.0656777,7.0774581,7.0892384,7.1010188,7.1127991,7.1245795,7.1363598,7.1481402,7.1599205,7.1717008,7.1834812,7.1952615,7.2070419,7.2188222,7.2306026,7.2423829,7.2541632,7.2659436,7.2777239,7.2895043,7.3012846,7.313065,7.3248453,7.3366256,7.348406,7.3601863,7.3719667,7.383747,7.3955274,7.4073077,7.419088,7.4308684,7.4426487,7.4544291,7.4662094,7.4779898,7.4897701,7.5015505,7.5133308,7.5251111,7.5368915,7.5486718,7.5604522,7.5722325,7.5840129,7.5957932,7.6075735,7.6193539,7.6311342,7.6429146,7.6546949,7.6664753,7.6782556,7.6900359,7.7018163,7.7135966,7.725377,7.7371573,7.7489377,7.760718,7.7724983,7.7842787,7.796059,7.8078394,7.8196197,7.8314001,7.8431804,7.8549607,7.8667411,7.8785214,7.8903018,7.9020821,7.9138625],"y":[0.0044821864,0.0046542885,0.0048332863,0.0050196155,0.0052137235,0.0054160674,0.0056271107,0.0058473203,0.0060771639,0.0063171061,0.0065676055,0.0068291112,0.0071020595,0.0073868703,0.0076839443,0.0079936594,0.008316368,0.0086523938,0.0090020299,0.0093655359,0.0097431359,0.010135017,0.010541328,0.010962179,0.011397639,0.011847737,0.012312462,0.012791765,0.013285557,0.013793713,0.014316074,0.014852446,0.015402608,0.01596631,0.016543278,0.01713322,0.017735826,0.018350776,0.018977739,0.019616385,0.020266382,0.020927407,0.021599146,0.022281302,0.022973599,0.023675784,0.024387637,0.025108969,0.025839631,0.026579518,0.027328568,0.028086771,0.028854169,0.02963086,0.030417,0.031212803,0.032018548,0.032834573,0.033661282,0.034499142,0.035348682,0.036210495,0.037085233,0.037973608,0.038876389,0.039794398,0.040728508,0.041679639,0.04264875,0.043636839,0.044644936,0.045674096,0.046725393,0.047799913,0.048898751,0.050022997,0.051173735,0.052352033,0.053558932,0.054795444,0.056062541,0.05736115,0.058692139,0.06005632,0.061454434,0.062887147,0.064355045,0.065858631,0.067398313,0.068974407,0.070587131,0.072236601,0.073922834,0.07564574,0.077405131,0.079200713,0.081032096,0.08289879,0.084800214,0.086735697,0.088704487,0.090705752,0.092738592,0.094802045,0.096895091,0.099016668,0.10116567,0.10334098,0.10554143,0.10776586,0.11001313,0.11228206,0.11457152,0.11688038,0.11920757,0.12155203,0.12391275,0.12628875,0.12867914,0.13108305,0.13349966,0.13592824,0.13836808,0.14081854,0.14327903,0.145749,0.14822796,0.15071544,0.153211,0.15571423,0.15822475,0.16074217,0.16326612,0.16579619,0.16833198,0.17087307,0.17341898,0.17596922,0.17852324,0.18108043,0.18364012,0.18620159,0.18876405,0.19132663,0.1938884,0.19644835,0.19900541,0.20155846,0.20410629,0.20664765,0.20918127,0.2117058,0.2142199,0.21672221,0.21921135,0.22168598,0.22414477,0.22658645,0.2290098,0.23141368,0.23379703,0.23615891,0.23849851,0.24081514,0.24310828,0.24537756,0.2476228,0.24984399,0.25204132,0.25421519,0.25636617,0.25849508,0.26060291,0.26269085,0.2647603,0.26681281,0.26885014,0.27087417,0.27288695,0.27489064,0.27688748,0.27887982,0.28087002,0.28286049,0.28485362,0.28685179,0.28885728,0.2908723,0.29289892,0.29493908,0.29699451,0.29906676,0.30115713,0.30326666,0.30539612,0.30754599,0.30971644,0.31190732,0.31411814,0.3163481,0.31859604,0.32086051,0.3231397,0.32543154,0.32773362,0.3300433,0.33235766,0.33467359,0.33698777,0.33929673,0.34159686,0.34388448,0.34615586,0.34840726,0.35063496,0.35283531,0.35500478,0.35713996,0.35923763,0.3612948,0.36330869,0.36527681,0.36719695,0.36906722,0.37088606,0.37265222,0.37436483,0.37602335,0.37762756,0.3791776,0.38067391,0.38211723,0.38350858,0.38484921,0.38614061,0.38738445,0.38858252,0.38973674,0.39084908,0.39192154,0.39295608,0.3939546,0.3949189,0.3958506,0.39675113,0.39762172,0.39846328,0.39927646,0.40006155,0.40081852,0.40154695,0.40224602,0.40291455,0.40355093,0.40415318,0.40471893,0.40524542,0.40572954,0.40616787,0.40655665,0.40689189,0.40716934,0.40738457,0.407533,0.40760993,0.40761065,0.40753039,0.40736447,0.40710828,0.40675736,0.40630746,0.40575453,0.40509484,0.40432496,0.40344184,0.40244279,0.40132559,0.40008842,0.39872996,0.39724935,0.39564624,0.39392074,0.3920735,0.39010561,0.38801868,0.38581475,0.38349632,0.38106629,0.37852796,0.375885,0.37314138,0.3703014,0.36736957,0.36435066,0.36124958,0.35807141,0.3548213,0.3515045,0.34812626,0.34469183,0.34120643,0.33767521,0.3341032,0.33049534,0.32685642,0.32319106,0.31950373,0.31579869,0.31208003,0.30835162,0.30461715,0.30088011,0.29714376,0.29341123,0.28968541,0.28596905,0.28226473,0.27857487,0.27490177,0.27124759,0.26761437,0.26400407,0.26041855,0.25685959,0.25332892,0.24982819,0.24635901,0.24292296,0.23952157,0.23615633,0.23282871,0.22954013,0.22629199,0.22308565,0.21992242,0.21680356,0.21373029,0.21070376,0.20772502,0.20479509,0.20191486,0.19908513,0.19630661,0.19357986,0.19090533,0.18828334,0.18571405,0.1831975,0.18073355,0.17832192,0.17596216,0.17365367,0.17139568,0.16918728,0.1670274,0.16491482,0.16284816,0.16082595,0.15884656,0.15690826,0.15500922,0.15314751,0.15132112,0.14952799,0.14776601,0.14603303,0.14432687,0.14264535,0.14098632,0.13934761,0.13772713,0.13612281,0.13453265,0.13295473,0.1313872,0.12982831,0.12827642,0.12672998,0.12518757,0.12364789,0.12210976,0.12057213,0.11903408,0.11749481,0.11595366,0.11441009,0.11286368,0.11131415,0.10976132,0.10820511,0.10664558,0.10508284,0.10351714,0.10194879,0.10037816,0.098805736,0.097232019,0.095657589,0.094083063,0.0925091,0.090936387,0.089365638,0.08779758,0.086232956,0.084672513,0.083116997,0.081567151,0.080023711,0.078487399,0.076958922,0.075438974,0.073928224,0.072427326,0.07093691,0.069457585,0.067989937,0.066534533,0.065091917,0.063662616,0.062247135,0.060845964,0.059459574,0.058088424,0.056732959,0.05539361,0.054070797,0.052764933,0.051476418,0.050205647,0.048953003,0.047718863,0.046503598,0.045307567,0.044131122,0.042974605,0.041838347,0.040722667,0.039627869,0.038554246,0.037502068,0.036471591,0.035463049,0.034476652,0.033512586,0.032571012,0.031652062,0.030755837,0.029882408,0.029031813,0.028204055,0.027399104,0.026616892,0.025857317,0.025120241,0.024405486,0.023712841,0.02304206,0.022392859,0.021764923,0.021157901,0.020571413,0.020005046,0.019458363,0.018930895,0.01842215,0.017931615,0.017458753,0.017003009,0.016563811,0.016140572,0.015732693,0.015339564,0.014960567,0.014595076,0.014242462,0.013902093,0.013573339,0.013255568,0.012948154,0.012650477,0.012361923,0.012081889,0.01180978,0.011545019,0.011287039,0.011035292,0.010789248,0.010548397,0.01031225,0.01008034,0.0098522264,0.0096274936,0.0094057527,0.0091866434,0.0089698345,0.0087550252,0.0085419453,0.0083303563,0.0081200514,0.0079108561],"zorder":0,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[0.51825384,0.53193574,0.54561764,0.55929953,0.57298143,0.58666333,0.60034522,0.61402712,0.62770902,0.64139091,0.65507281,0.66875471,0.6824366,0.6961185,0.7098004,0.72348229,0.73716419,0.75084609,0.76452798,0.77820988,0.79189178,0.80557367,0.81925557,0.83293747,0.84661936,0.86030126,0.87398316,0.88766506,0.90134695,0.91502885,0.92871075,0.94239264,0.95607454,0.96975644,0.98343833,0.99712023,1.0108021,1.024484,1.0381659,1.0518478,1.0655297,1.0792116,1.0928935,1.1065754,1.1202573,1.1339392,1.1476211,1.161303,1.1749849,1.1886668,1.2023487,1.2160306,1.2297125,1.2433944,1.2570763,1.2707582,1.2844401,1.298122,1.3118039,1.3254858,1.3391676,1.3528495,1.3665314,1.3802133,1.3938952,1.4075771,1.421259,1.4349409,1.4486228,1.4623047,1.4759866,1.4896685,1.5033504,1.5170323,1.5307142,1.5443961,1.558078,1.5717599,1.5854418,1.5991237,1.6128056,1.6264875,1.6401694,1.6538513,1.6675332,1.6812151,1.694897,1.7085789,1.7222608,1.7359427,1.7496246,1.7633065,1.7769883,1.7906702,1.8043521,1.818034,1.8317159,1.8453978,1.8590797,1.8727616,1.8864435,1.9001254,1.9138073,1.9274892,1.9411711,1.954853,1.9685349,1.9822168,1.9958987,2.0095806,2.0232625,2.0369444,2.0506263,2.0643082,2.0779901,2.091672,2.1053539,2.1190358,2.1327177,2.1463996,2.1600815,2.1737634,2.1874453,2.2011271,2.214809,2.2284909,2.2421728,2.2558547,2.2695366,2.2832185,2.2969004,2.3105823,2.3242642,2.3379461,2.351628,2.3653099,2.3789918,2.3926737,2.4063556,2.4200375,2.4337194,2.4474013,2.4610832,2.4747651,2.488447,2.5021289,2.5158108,2.5294927,2.5431746,2.5568565,2.5705384,2.5842203,2.5979022,2.6115841,2.6252659,2.6389478,2.6526297,2.6663116,2.6799935,2.6936754,2.7073573,2.7210392,2.7347211,2.748403,2.7620849,2.7757668,2.7894487,2.8031306,2.8168125,2.8304944,2.8441763,2.8578582,2.8715401,2.885222,2.8989039,2.9125858,2.9262677,2.9399496,2.9536315,2.9673134,2.9809953,2.9946772,3.0083591,3.022041,3.0357229,3.0494047,3.0630866,3.0767685,3.0904504,3.1041323,3.1178142,3.1314961,3.145178,3.1588599,3.1725418,3.1862237,3.1999056,3.2135875,3.2272694,3.2409513,3.2546332,3.2683151,3.281997,3.2956789,3.3093608,3.3230427,3.3367246,3.3504065,3.3640884,3.3777703,3.3914522,3.4051341,3.418816,3.4324979,3.4461798,3.4598617,3.4735436,3.4872254,3.5009073,3.5145892,3.5282711,3.541953,3.5556349,3.5693168,3.5829987,3.5966806,3.6103625,3.6240444,3.6377263,3.6514082,3.6650901,3.678772,3.6924539,3.7061358,3.7198177,3.7334996,3.7471815,3.7608634,3.7745453,3.7882272,3.8019091,3.815591,3.8292729,3.8429548,3.8566367,3.8703186,3.8840005,3.8976824,3.9113642,3.9250461,3.938728,3.9524099,3.9660918,3.9797737,3.9934556,4.0071375,4.0208194,4.0345013,4.0481832,4.0618651,4.075547,4.0892289,4.1029108,4.1165927,4.1302746,4.1439565,4.1576384,4.1713203,4.1850022,4.1986841,4.212366,4.2260479,4.2397298,4.2534117,4.2670936,4.2807755,4.2944574,4.3081393,4.3218212,4.335503,4.3491849,4.3628668,4.3765487,4.3902306,4.4039125,4.4175944,4.4312763,4.4449582,4.4586401,4.472322,4.4860039,4.4996858,4.5133677,4.5270496,4.5407315,4.5544134,4.5680953,4.5817772,4.5954591,4.609141,4.6228229,4.6365048,4.6501867,4.6638686,4.6775505,4.6912324,4.7049143,4.7185962,4.7322781,4.74596,4.7596419,4.7733237,4.7870056,4.8006875,4.8143694,4.8280513,4.8417332,4.8554151,4.869097,4.8827789,4.8964608,4.9101427,4.9238246,4.9375065,4.9511884,4.9648703,4.9785522,4.9922341,5.005916,5.0195979,5.0332798,5.0469617,5.0606436,5.0743255,5.0880074,5.1016893,5.1153712,5.1290531,5.142735,5.1564169,5.1700988,5.1837807,5.1974625,5.2111444,5.2248263,5.2385082,5.2521901,5.265872,5.2795539,5.2932358,5.3069177,5.3205996,5.3342815,5.3479634,5.3616453,5.3753272,5.3890091,5.402691,5.4163729,5.4300548,5.4437367,5.4574186,5.4711005,5.4847824,5.4984643,5.5121462,5.5258281,5.53951,5.5531919,5.5668738,5.5805557,5.5942376,5.6079195,5.6216013,5.6352832,5.6489651,5.662647,5.6763289,5.6900108,5.7036927,5.7173746,5.7310565,5.7447384,5.7584203,5.7721022,5.7857841,5.799466,5.8131479,5.8268298,5.8405117,5.8541936,5.8678755,5.8815574,5.8952393,5.9089212,5.9226031,5.936285,5.9499669,5.9636488,5.9773307,5.9910126,6.0046945,6.0183764,6.0320583,6.0457401,6.059422,6.0731039,6.0867858,6.1004677,6.1141496,6.1278315,6.1415134,6.1551953,6.1688772,6.1825591,6.196241,6.2099229,6.2236048,6.2372867,6.2509686,6.2646505,6.2783324,6.2920143,6.3056962,6.3193781,6.33306,6.3467419,6.3604238,6.3741057,6.3877876,6.4014695,6.4151514,6.4288333,6.4425152,6.4561971,6.469879,6.4835608,6.4972427,6.5109246,6.5246065,6.5382884,6.5519703,6.5656522,6.5793341,6.593016,6.6066979,6.6203798,6.6340617,6.6477436,6.6614255,6.6751074,6.6887893,6.7024712,6.7161531,6.729835,6.7435169,6.7571988,6.7708807,6.7845626,6.7982445,6.8119264,6.8256083,6.8392902,6.8529721,6.866654,6.8803359,6.8940178,6.9076996,6.9213815,6.9350634,6.9487453,6.9624272,6.9761091,6.989791,7.0034729,7.0171548,7.0308367,7.0445186,7.0582005,7.0718824,7.0855643,7.0992462,7.1129281,7.12661,7.1402919,7.1539738,7.1676557,7.1813376,7.1950195,7.2087014,7.2223833,7.2360652,7.2497471,7.263429,7.2771109,7.2907928,7.3044747,7.3181566,7.3318384,7.3455203],"y":[-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374,-0.21054374],"zorder":1,"type":"scatter"},{"customdata":[[0.0025084175],[0.0025175469],[0.0025221562],[0.0025224549],[0.0025187052],[0.0025112204],[0.0025003628],[0.0024865415],[0.0024702091],[0.0024518579],[0.0024320167],[0.0024112458],[0.0023901329],[0.0023692881],[0.0023493391],[0.0023309263],[0.0023146976],[0.0023013041],[0.0022913949],[0.002285613],[0.0022845909],[0.0022889475],[0.0022992837],[0.0023161806],[0.0023401963],[0.0023718645],[0.0024116929],[0.0024601623],[0.0025177267],[0.0025848129],[0.0026618216],[0.0027491286],[0.0028470858],[0.0029560237],[0.0030762534],[0.0032080686],[0.0033517491],[0.0035075623],[0.0036757671],[0.0038566156],[0.0040503561],[0.0042572356],[0.0044775011],[0.0047114022],[0.0049591917],[0.0052211271],[0.0054974704],[0.0057884885],[0.0060944522],[0.0064156354],[0.0067523127],[0.007104758],[0.0074732409],[0.0078580242],[0.0082593595],[0.0086774839],[0.0091126152],[0.0095649479],[0.010034648],[0.010521848],[0.011026645],[0.011549092],[0.012089197],[0.012646919],[0.013222162],[0.013814776],[0.014424552],[0.015051223],[0.015694461],[0.016353879],[0.017029032],[0.017719418],[0.018424483],[0.019143621],[0.019876185],[0.020621485],[0.021378802],[0.022147391],[0.022926487],[0.02371532],[0.024513118],[0.025319116],[0.026132571],[0.026952767],[0.027779022],[0.028610705],[0.029447237],[0.030288102],[0.031132858],[0.031981138],[0.032832658],[0.033687225],[0.034544737],[0.035405187],[0.036268666],[0.037135361],[0.038005556],[0.038879628],[0.039758046],[0.040641367],[0.041530225],[0.042425334],[0.043327473],[0.044237482],[0.045156251],[0.046084715],[0.047023843],[0.04797463],[0.048938085],[0.049915227],[0.050907075],[0.051914641],[0.052938922],[0.053980897],[0.055041519],[0.056121717],[0.057222386],[0.058344393],[0.059488574],[0.060655733],[0.061846651],[0.063062083],[0.064302768],[0.06556943],[0.06686279],[0.068183567],[0.069532491],[0.070910309],[0.072317791],[0.07375574],[0.075225001],[0.076726464],[0.07826107],[0.079829822],[0.081433782],[0.083074074],[0.084751888],[0.086468476],[0.088225148],[0.090023268],[0.091864245],[0.093749521],[0.095680562],[0.097658842],[0.099685821],[0.10176293],[0.10389155],[0.10607299],[0.10830844],[0.11059898],[0.11294553],[0.11534881],[0.11780934],[0.12032739],[0.12290294],[0.1255357],[0.12822501],[0.13096989],[0.13376896],[0.13662045],[0.13952219],[0.14247156],[0.14546554],[0.14850065],[0.151573],[0.15467828],[0.15781176],[0.16096834],[0.16414258],[0.16732869],[0.17052063],[0.17371211],[0.17689667],[0.18006773],[0.18321864],[0.18634277],[0.18943356],[0.19248461],[0.19548973],[0.19844306],[0.20133906],[0.2041727],[0.20693942],[0.20963526],[0.21225691],[0.21480176],[0.21726794],[0.21965438],[0.22196083],[0.2241879],[0.22633706],[0.22841064],[0.23041182],[0.23234466],[0.234214],[0.23602547],[0.23778542],[0.23950091],[0.24117954],[0.24282951],[0.24445941],[0.24607823],[0.24769521],[0.24931976],[0.25096138],[0.25262952],[0.25433351],[0.25608246],[0.25788514],[0.25974991],[0.26168462],[0.26369655],[0.26579228],[0.2679777],[0.27025787],[0.27263703],[0.27511854],[0.27770483],[0.28039741],[0.28319682],[0.28610268],[0.28911363],[0.29222742],[0.29544086],[0.29874992],[0.30214972],[0.30563462],[0.30919822],[0.31283347],[0.31653271],[0.32028773],[0.32408983],[0.32792993],[0.3317986],[0.33568616],[0.33958272],[0.34347829],[0.34736282],[0.35122626],[0.35505866],[0.3588502],[0.36259125],[0.36627244],[0.36988471],[0.37341931],[0.37686792],[0.38022263],[0.38347598],[0.38662102],[0.38965129],[0.39256087],[0.39534439],[0.39799705],[0.40051459],[0.40289335],[0.4051302],[0.4072226],[0.40916854],[0.41096655],[0.41261567],[0.41411545],[0.41546588],[0.41666741],[0.41772088],[0.4186275],[0.41938882],[0.42000666],[0.42048309],[0.42082039],[0.42102101],[0.42108748],[0.42102244],[0.42082851],[0.42050835],[0.42006453],[0.41949954],[0.41881577],[0.41801544],[0.41710062],[0.41607319],[0.41493481],[0.41368696],[0.41233091],[0.41086771],[0.40929826],[0.40762323],[0.40584318],[0.40395854],[0.40196961],[0.39987667],[0.39767994],[0.39537969],[0.39297621],[0.3904699],[0.38786131],[0.38515114],[0.38234034],[0.37943007],[0.37642182],[0.37331734],[0.37011877],[0.36682855],[0.36344954],[0.35998493],[0.35643833],[0.3528137],[0.34911538],[0.34534805],[0.34151673],[0.33762677],[0.33368378],[0.32969362],[0.32566238],[0.32159631],[0.31750182],[0.31338539],[0.30925357],[0.30511292],[0.30096995],[0.29683112],[0.29270276],[0.28859105],[0.28450197],[0.28044128],[0.2764145],[0.27242682],[0.26848317],[0.26458809],[0.2607458],[0.25696013],[0.25323453],[0.24957204],[0.24597531],[0.24244658],[0.23898765],[0.23559994],[0.23228446],[0.2290418],[0.22587216],[0.22277537],[0.21975087],[0.21679777],[0.2139148],[0.2111004],[0.20835268],[0.20566949],[0.20304839],[0.20048672],[0.19798159],[0.19552993],[0.19312849],[0.1907739],[0.18846265],[0.18619118],[0.18395583],[0.18175294],[0.17957885],[0.17742989],[0.17530246],[0.17319305],[0.17109821],[0.16901464],[0.16693917],[0.1648688],[0.16280068],[0.1607322],[0.15866091],[0.1565846],[0.15450128],[0.15240919],[0.15030681],[0.14819284],[0.14606622],[0.14392612],[0.14177193],[0.13960326],[0.13741991],[0.13522189],[0.13300938],[0.13078275],[0.1285425],[0.12628928],[0.12402389],[0.12174723],[0.11946029],[0.11716418],[0.11486008],[0.11254924],[0.11023297],[0.10791264],[0.10558967],[0.10326554],[0.10094176],[0.098619863],[0.096301457],[0.093988168],[0.091681663],[0.089383652],[0.087095881],[0.084820139],[0.082558252],[0.080312085],[0.078083542],[0.075874561],[0.073687107],[0.071523176],[0.069384779],[0.067273937],[0.065192676],[0.06314301],[0.061126932],[0.0591464],[0.057203325],[0.055299553],[0.053436851],[0.051616893],[0.04984124],[0.048111331],[0.046428463],[0.044793779],[0.043208258],[0.041672698],[0.040187714],[0.038753723],[0.037370945],[0.036039395],[0.034758885],[0.033529024],[0.032349221],[0.031218693],[0.030136474],[0.029101421],[0.028112232],[0.027167457],[0.026265514],[0.025404706],[0.024583244],[0.023799256],[0.023050819],[0.022335967],[0.021652719],[0.020999092],[0.020373124],[0.01977289],[0.019196518],[0.018642203],[0.018108222],[0.017592945],[0.017094846],[0.016612509],[0.016144637],[0.015690052],[0.015247701],[0.014816655],[0.014396108],[0.013985374],[0.013583882],[0.01319117],[0.012806879],[0.012430745],[0.012062587],[0.011702303],[0.011349855],[0.011005262],[0.010668585],[0.010339923],[0.0100194],[0.0097071524],[0.0094033248],[0.0091080584],[0.0088214838],[0.0085437141],[0.0082748387],[0.0080149174],[0.0077639768],[0.0075220064],[0.0072889559],[0.0070647339],[0.0068492071],[0.0066422002],[0.006443497],[0.0062528421],[0.0060699431],[0.0058944737],[0.0057260771],[0.00556437],[0.0054089466],[0.005259384],[0.0051152461],[0.0049760893],[0.0048414671],[0.0047109351],[0.0045840561],[0.0044604047],[0.0043395714],[0.0042211673],[0.0041048277],[0.0039902151],[0.0038770226],[0.0037649761]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"rgb(123.61036, 6.034, 165.71182)"],[0.12337279419884005,"#9c179e"],[0.28335164944387603,"#bd3786"],[0.44333050469035185,"#d8576b"],[0.6033093599353879,"#ed7953"],[0.7632882151804238,"#fb9f3a"],[0.9232670704254599,"#fdca26"],[1.0,"rgb(246.76463, 224.54328, 35.60178)"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Trace 2","x":[0.51825384,0.53193574,0.54561764,0.55929953,0.57298143,0.58666333,0.60034522,0.61402712,0.62770902,0.64139091,0.65507281,0.66875471,0.6824366,0.6961185,0.7098004,0.72348229,0.73716419,0.75084609,0.76452798,0.77820988,0.79189178,0.80557367,0.81925557,0.83293747,0.84661936,0.86030126,0.87398316,0.88766506,0.90134695,0.91502885,0.92871075,0.94239264,0.95607454,0.96975644,0.98343833,0.99712023,1.0108021,1.024484,1.0381659,1.0518478,1.0655297,1.0792116,1.0928935,1.1065754,1.1202573,1.1339392,1.1476211,1.161303,1.1749849,1.1886668,1.2023487,1.2160306,1.2297125,1.2433944,1.2570763,1.2707582,1.2844401,1.298122,1.3118039,1.3254858,1.3391676,1.3528495,1.3665314,1.3802133,1.3938952,1.4075771,1.421259,1.4349409,1.4486228,1.4623047,1.4759866,1.4896685,1.5033504,1.5170323,1.5307142,1.5443961,1.558078,1.5717599,1.5854418,1.5991237,1.6128056,1.6264875,1.6401694,1.6538513,1.6675332,1.6812151,1.694897,1.7085789,1.7222608,1.7359427,1.7496246,1.7633065,1.7769883,1.7906702,1.8043521,1.818034,1.8317159,1.8453978,1.8590797,1.8727616,1.8864435,1.9001254,1.9138073,1.9274892,1.9411711,1.954853,1.9685349,1.9822168,1.9958987,2.0095806,2.0232625,2.0369444,2.0506263,2.0643082,2.0779901,2.091672,2.1053539,2.1190358,2.1327177,2.1463996,2.1600815,2.1737634,2.1874453,2.2011271,2.214809,2.2284909,2.2421728,2.2558547,2.2695366,2.2832185,2.2969004,2.3105823,2.3242642,2.3379461,2.351628,2.3653099,2.3789918,2.3926737,2.4063556,2.4200375,2.4337194,2.4474013,2.4610832,2.4747651,2.488447,2.5021289,2.5158108,2.5294927,2.5431746,2.5568565,2.5705384,2.5842203,2.5979022,2.6115841,2.6252659,2.6389478,2.6526297,2.6663116,2.6799935,2.6936754,2.7073573,2.7210392,2.7347211,2.748403,2.7620849,2.7757668,2.7894487,2.8031306,2.8168125,2.8304944,2.8441763,2.8578582,2.8715401,2.885222,2.8989039,2.9125858,2.9262677,2.9399496,2.9536315,2.9673134,2.9809953,2.9946772,3.0083591,3.022041,3.0357229,3.0494047,3.0630866,3.0767685,3.0904504,3.1041323,3.1178142,3.1314961,3.145178,3.1588599,3.1725418,3.1862237,3.1999056,3.2135875,3.2272694,3.2409513,3.2546332,3.2683151,3.281997,3.2956789,3.3093608,3.3230427,3.3367246,3.3504065,3.3640884,3.3777703,3.3914522,3.4051341,3.418816,3.4324979,3.4461798,3.4598617,3.4735436,3.4872254,3.5009073,3.5145892,3.5282711,3.541953,3.5556349,3.5693168,3.5829987,3.5966806,3.6103625,3.6240444,3.6377263,3.6514082,3.6650901,3.678772,3.6924539,3.7061358,3.7198177,3.7334996,3.7471815,3.7608634,3.7745453,3.7882272,3.8019091,3.815591,3.8292729,3.8429548,3.8566367,3.8703186,3.8840005,3.8976824,3.9113642,3.9250461,3.938728,3.9524099,3.9660918,3.9797737,3.9934556,4.0071375,4.0208194,4.0345013,4.0481832,4.0618651,4.075547,4.0892289,4.1029108,4.1165927,4.1302746,4.1439565,4.1576384,4.1713203,4.1850022,4.1986841,4.212366,4.2260479,4.2397298,4.2534117,4.2670936,4.2807755,4.2944574,4.3081393,4.3218212,4.335503,4.3491849,4.3628668,4.3765487,4.3902306,4.4039125,4.4175944,4.4312763,4.4449582,4.4586401,4.472322,4.4860039,4.4996858,4.5133677,4.5270496,4.5407315,4.5544134,4.5680953,4.5817772,4.5954591,4.609141,4.6228229,4.6365048,4.6501867,4.6638686,4.6775505,4.6912324,4.7049143,4.7185962,4.7322781,4.74596,4.7596419,4.7733237,4.7870056,4.8006875,4.8143694,4.8280513,4.8417332,4.8554151,4.869097,4.8827789,4.8964608,4.9101427,4.9238246,4.9375065,4.9511884,4.9648703,4.9785522,4.9922341,5.005916,5.0195979,5.0332798,5.0469617,5.0606436,5.0743255,5.0880074,5.1016893,5.1153712,5.1290531,5.142735,5.1564169,5.1700988,5.1837807,5.1974625,5.2111444,5.2248263,5.2385082,5.2521901,5.265872,5.2795539,5.2932358,5.3069177,5.3205996,5.3342815,5.3479634,5.3616453,5.3753272,5.3890091,5.402691,5.4163729,5.4300548,5.4437367,5.4574186,5.4711005,5.4847824,5.4984643,5.5121462,5.5258281,5.53951,5.5531919,5.5668738,5.5805557,5.5942376,5.6079195,5.6216013,5.6352832,5.6489651,5.662647,5.6763289,5.6900108,5.7036927,5.7173746,5.7310565,5.7447384,5.7584203,5.7721022,5.7857841,5.799466,5.8131479,5.8268298,5.8405117,5.8541936,5.8678755,5.8815574,5.8952393,5.9089212,5.9226031,5.936285,5.9499669,5.9636488,5.9773307,5.9910126,6.0046945,6.0183764,6.0320583,6.0457401,6.059422,6.0731039,6.0867858,6.1004677,6.1141496,6.1278315,6.1415134,6.1551953,6.1688772,6.1825591,6.196241,6.2099229,6.2236048,6.2372867,6.2509686,6.2646505,6.2783324,6.2920143,6.3056962,6.3193781,6.33306,6.3467419,6.3604238,6.3741057,6.3877876,6.4014695,6.4151514,6.4288333,6.4425152,6.4561971,6.469879,6.4835608,6.4972427,6.5109246,6.5246065,6.5382884,6.5519703,6.5656522,6.5793341,6.593016,6.6066979,6.6203798,6.6340617,6.6477436,6.6614255,6.6751074,6.6887893,6.7024712,6.7161531,6.729835,6.7435169,6.7571988,6.7708807,6.7845626,6.7982445,6.8119264,6.8256083,6.8392902,6.8529721,6.866654,6.8803359,6.8940178,6.9076996,6.9213815,6.9350634,6.9487453,6.9624272,6.9761091,6.989791,7.0034729,7.0171548,7.0308367,7.0445186,7.0582005,7.0718824,7.0855643,7.0992462,7.1129281,7.12661,7.1402919,7.1539738,7.1676557,7.1813376,7.1950195,7.2087014,7.2223833,7.2360652,7.2497471,7.263429,7.2771109,7.2907928,7.3044747,7.3181566,7.3318384,7.3455203],"y":[-0.20803532,-0.2080262,-0.20802159,-0.20802129,-0.20802504,-0.20803252,-0.20804338,-0.2080572,-0.20807353,-0.20809188,-0.20811173,-0.2081325,-0.20815361,-0.20817445,-0.2081944,-0.20821282,-0.20822904,-0.20824244,-0.20825235,-0.20825813,-0.20825915,-0.20825479,-0.20824446,-0.20822756,-0.20820355,-0.20817188,-0.20813205,-0.20808358,-0.20802602,-0.20795893,-0.20788192,-0.20779461,-0.20769666,-0.20758772,-0.20746749,-0.20733567,-0.20719199,-0.20703618,-0.20686797,-0.20668713,-0.20649339,-0.20628651,-0.20606624,-0.20583234,-0.20558455,-0.20532261,-0.20504627,-0.20475525,-0.20444929,-0.20412811,-0.20379143,-0.20343898,-0.2030705,-0.20268572,-0.20228438,-0.20186626,-0.20143113,-0.20097879,-0.20050909,-0.20002189,-0.1995171,-0.19899465,-0.19845454,-0.19789682,-0.19732158,-0.19672897,-0.19611919,-0.19549252,-0.19484928,-0.19418986,-0.19351471,-0.19282432,-0.19211926,-0.19140012,-0.19066756,-0.18992226,-0.18916494,-0.18839635,-0.18761725,-0.18682842,-0.18603062,-0.18522463,-0.18441117,-0.18359098,-0.18276472,-0.18193304,-0.18109651,-0.18025564,-0.17941088,-0.1785626,-0.17771108,-0.17685652,-0.17599901,-0.17513855,-0.17427508,-0.17340838,-0.17253819,-0.17166411,-0.1707857,-0.16990238,-0.16901352,-0.16811841,-0.16721627,-0.16630626,-0.16538749,-0.16445903,-0.1635199,-0.16256911,-0.16160566,-0.16062852,-0.15963667,-0.1586291,-0.15760482,-0.15656285,-0.15550222,-0.15442203,-0.15332136,-0.15219935,-0.15105517,-0.14988801,-0.14869709,-0.14748166,-0.14624097,-0.14497431,-0.14368095,-0.14236018,-0.14101125,-0.13963343,-0.13822595,-0.136788,-0.13531874,-0.13381728,-0.13228267,-0.13071392,-0.12910996,-0.12746967,-0.12579185,-0.12407527,-0.12231859,-0.12052047,-0.1186795,-0.11679422,-0.11486318,-0.1128849,-0.11085792,-0.10878081,-0.10665219,-0.10447075,-0.1022353,-0.099944759,-0.097598212,-0.09519493,-0.0927344,-0.090216353,-0.087640797,-0.085008042,-0.082318728,-0.07957385,-0.07677478,-0.073923287,-0.071021552,-0.068072179,-0.065078203,-0.062043092,-0.058970742,-0.055865466,-0.052731986,-0.0495754,-0.046401163,-0.043215049,-0.04002311,-0.036831629,-0.033647068,-0.030476012,-0.027325102,-0.024200974,-0.021110182,-0.018059133,-0.015054007,-0.012100686,-0.0092046773,-0.0063710413,-0.0036043219,-0.00090847914,0.001713172,0.0042580181,0.0067241961,0.0091106351,0.011417089,0.013644162,0.015793319,0.017866894,0.019868082,0.021800917,0.023670255,0.025481723,0.027241683,0.028957164,0.030635802,0.032285765,0.033915667,0.035534485,0.037151463,0.038776017,0.040417634,0.042085773,0.043789766,0.045538714,0.047341394,0.049206165,0.051140882,0.053152807,0.055248543,0.057433957,0.059714128,0.062093291,0.064574799,0.06716109,0.069853667,0.072653081,0.075558936,0.078569889,0.081683673,0.084897116,0.088206175,0.09160598,0.095090876,0.098654479,0.10228973,0.10598897,0.10974398,0.11354609,0.11738619,0.12125486,0.12514242,0.12903898,0.13293455,0.13681908,0.14068252,0.14451492,0.14830646,0.15204751,0.1557287,0.15934096,0.16287557,0.16632418,0.16967889,0.17293224,0.17607728,0.17910754,0.18201712,0.18480065,0.18745331,0.18997085,0.19234961,0.19458646,0.19667886,0.1986248,0.2004228,0.20207193,0.2035717,0.20492214,0.20612367,0.20717714,0.20808376,0.20884508,0.20946291,0.20993935,0.21027665,0.21047727,0.21054374,0.21047869,0.21028477,0.20996461,0.20952079,0.2089558,0.20827203,0.2074717,0.20655688,0.20552944,0.20439106,0.20314322,0.20178716,0.20032397,0.19875451,0.19707949,0.19529944,0.19341479,0.19142587,0.18933293,0.1871362,0.18483595,0.18243247,0.17992616,0.17731757,0.1746074,0.1717966,0.16888633,0.16587808,0.1627736,0.15957502,0.15628481,0.15290579,0.14944119,0.14589459,0.14226996,0.13857164,0.13480431,0.13097299,0.12708303,0.12314004,0.11914988,0.11511864,0.11105257,0.10695808,0.10284165,0.098709831,0.094569178,0.090426212,0.086287382,0.08215902,0.078047306,0.073958226,0.069897541,0.065870755,0.061883082,0.057939424,0.054044346,0.050202055,0.046416385,0.042690783,0.039028297,0.03543157,0.031902833,0.028443908,0.025056203,0.021740719,0.018498055,0.015328417,0.012231626,0.0092071317,0.0062540258,0.0033710591,0.00055665775,-0.0021910575,-0.0048742506,-0.0074953491,-0.010057021,-0.01256215,-0.015013812,-0.017415249,-0.019769844,-0.022081089,-0.024352566,-0.026587913,-0.028790798,-0.030964896,-0.033113856,-0.03524128,-0.037350695,-0.039445532,-0.041529101,-0.043604569,-0.045674945,-0.047743057,-0.049811543,-0.051882835,-0.053959144,-0.056042463,-0.05813455,-0.060236933,-0.062350903,-0.064477521,-0.066617619,-0.068771807,-0.070940481,-0.073123831,-0.075321852,-0.077534358,-0.079760994,-0.082001246,-0.084254459,-0.086519849,-0.088796515,-0.09108345,-0.093379558,-0.095683659,-0.097994503,-0.10031077,-0.1026311,-0.10495407,-0.1072782,-0.10960199,-0.11192388,-0.11424228,-0.11655557,-0.11886208,-0.12116009,-0.12344786,-0.1257236,-0.12798549,-0.13023166,-0.1324602,-0.13466918,-0.13685663,-0.13902057,-0.14115896,-0.1432698,-0.14535107,-0.14740073,-0.14941681,-0.15139734,-0.15334042,-0.15524419,-0.15710689,-0.15892685,-0.1607025,-0.16243241,-0.16411528,-0.16574996,-0.16733548,-0.16887104,-0.17035603,-0.17179002,-0.1731728,-0.17450435,-0.17578486,-0.17701472,-0.17819452,-0.17932505,-0.18040727,-0.18144232,-0.18243151,-0.18337628,-0.18427823,-0.18513904,-0.1859605,-0.18674449,-0.18749292,-0.18820777,-0.18889102,-0.18954465,-0.19017062,-0.19077085,-0.19134722,-0.19190154,-0.19243552,-0.1929508,-0.1934489,-0.19393123,-0.19439911,-0.19485369,-0.19529604,-0.19572709,-0.19614763,-0.19655837,-0.19695986,-0.19735257,-0.19773686,-0.198113,-0.19848115,-0.19884144,-0.19919389,-0.19953848,-0.19987516,-0.20020382,-0.20052434,-0.20083659,-0.20114042,-0.20143568,-0.20172226,-0.20200003,-0.2022689,-0.20252882,-0.20277977,-0.20302174,-0.20325479,-0.20347901,-0.20369453,-0.20390154,-0.20410025,-0.2042909,-0.2044738,-0.20464927,-0.20481766,-0.20497937,-0.2051348,-0.20528436,-0.2054285,-0.20556765,-0.20570227,-0.20583281,-0.20595969,-0.20608334,-0.20620417,-0.20632257,-0.20643891,-0.20655353,-0.20666672,-0.20677877],"zorder":1,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[0.37771451,0.38947776,0.40124102,0.41300427,0.42476752,0.43653078,0.44829403,0.46005728,0.47182054,0.48358379,0.49534704,0.5071103,0.51887355,0.5306368,0.54240006,0.55416331,0.56592656,0.57768982,0.58945307,0.60121632,0.61297958,0.62474283,0.63650608,0.64826934,0.66003259,0.67179585,0.6835591,0.69532235,0.70708561,0.71884886,0.73061211,0.74237537,0.75413862,0.76590187,0.77766513,0.78942838,0.80119163,0.81295489,0.82471814,0.83648139,0.84824465,0.8600079,0.87177115,0.88353441,0.89529766,0.90706091,0.91882417,0.93058742,0.94235067,0.95411393,0.96587718,0.97764044,0.98940369,1.0011669,1.0129302,1.0246934,1.0364567,1.04822,1.0599832,1.0717465,1.0835097,1.095273,1.1070362,1.1187995,1.1305627,1.142326,1.1540892,1.1658525,1.1776157,1.189379,1.2011423,1.2129055,1.2246688,1.236432,1.2481953,1.2599585,1.2717218,1.283485,1.2952483,1.3070115,1.3187748,1.330538,1.3423013,1.3540645,1.3658278,1.3775911,1.3893543,1.4011176,1.4128808,1.4246441,1.4364073,1.4481706,1.4599338,1.4716971,1.4834603,1.4952236,1.5069868,1.5187501,1.5305133,1.5422766,1.5540399,1.5658031,1.5775664,1.5893296,1.6010929,1.6128561,1.6246194,1.6363826,1.6481459,1.6599091,1.6716724,1.6834356,1.6951989,1.7069621,1.7187254,1.7304887,1.7422519,1.7540152,1.7657784,1.7775417,1.7893049,1.8010682,1.8128314,1.8245947,1.8363579,1.8481212,1.8598844,1.8716477,1.883411,1.8951742,1.9069375,1.9187007,1.930464,1.9422272,1.9539905,1.9657537,1.977517,1.9892802,2.0010435,2.0128067,2.02457,2.0363332,2.0480965,2.0598598,2.071623,2.0833863,2.0951495,2.1069128,2.118676,2.1304393,2.1422025,2.1539658,2.165729,2.1774923,2.1892555,2.2010188,2.212782,2.2245453,2.2363086,2.2480718,2.2598351,2.2715983,2.2833616,2.2951248,2.3068881,2.3186513,2.3304146,2.3421778,2.3539411,2.3657043,2.3774676,2.3892308,2.4009941,2.4127574,2.4245206,2.4362839,2.4480471,2.4598104,2.4715736,2.4833369,2.4951001,2.5068634,2.5186266,2.5303899,2.5421531,2.5539164,2.5656797,2.5774429,2.5892062,2.6009694,2.6127327,2.6244959,2.6362592,2.6480224,2.6597857,2.6715489,2.6833122,2.6950754,2.7068387,2.7186019,2.7303652,2.7421285,2.7538917,2.765655,2.7774182,2.7891815,2.8009447,2.812708,2.8244712,2.8362345,2.8479977,2.859761,2.8715242,2.8832875,2.8950507,2.906814,2.9185773,2.9303405,2.9421038,2.953867,2.9656303,2.9773935,2.9891568,3.00092,3.0126833,3.0244465,3.0362098,3.047973,3.0597363,3.0714995,3.0832628,3.0950261,3.1067893,3.1185526,3.1303158,3.1420791,3.1538423,3.1656056,3.1773688,3.1891321,3.2008953,3.2126586,3.2244218,3.2361851,3.2479484,3.2597116,3.2714749,3.2832381,3.2950014,3.3067646,3.3185279,3.3302911,3.3420544,3.3538176,3.3655809,3.3773441,3.3891074,3.4008706,3.4126339,3.4243972,3.4361604,3.4479237,3.4596869,3.4714502,3.4832134,3.4949767,3.5067399,3.5185032,3.5302664,3.5420297,3.5537929,3.5655562,3.5773194,3.5890827,3.600846,3.6126092,3.6243725,3.6361357,3.647899,3.6596622,3.6714255,3.6831887,3.694952,3.7067152,3.7184785,3.7302417,3.742005,3.7537682,3.7655315,3.7772948,3.789058,3.8008213,3.8125845,3.8243478,3.836111,3.8478743,3.8596375,3.8714008,3.883164,3.8949273,3.9066905,3.9184538,3.9302171,3.9419803,3.9537436,3.9655068,3.9772701,3.9890333,4.0007966,4.0125598,4.0243231,4.0360863,4.0478496,4.0596128,4.0713761,4.0831393,4.0949026,4.1066659,4.1184291,4.1301924,4.1419556,4.1537189,4.1654821,4.1772454,4.1890086,4.2007719,4.2125351,4.2242984,4.2360616,4.2478249,4.2595881,4.2713514,4.2831147,4.2948779,4.3066412,4.3184044,4.3301677,4.3419309,4.3536942,4.3654574,4.3772207,4.3889839,4.4007472,4.4125104,4.4242737,4.436037,4.4478002,4.4595635,4.4713267,4.48309,4.4948532,4.5066165,4.5183797,4.530143,4.5419062,4.5536695,4.5654327,4.577196,4.5889592,4.6007225,4.6124858,4.624249,4.6360123,4.6477755,4.6595388,4.671302,4.6830653,4.6948285,4.7065918,4.718355,4.7301183,4.7418815,4.7536448,4.765408,4.7771713,4.7889346,4.8006978,4.8124611,4.8242243,4.8359876,4.8477508,4.8595141,4.8712773,4.8830406,4.8948038,4.9065671,4.9183303,4.9300936,4.9418568,4.9536201,4.9653834,4.9771466,4.9889099,5.0006731,5.0124364,5.0241996,5.0359629,5.0477261,5.0594894,5.0712526,5.0830159,5.0947791,5.1065424,5.1183057,5.1300689,5.1418322,5.1535954,5.1653587,5.1771219,5.1888852,5.2006484,5.2124117,5.2241749,5.2359382,5.2477014,5.2594647,5.2712279,5.2829912,5.2947545,5.3065177,5.318281,5.3300442,5.3418075,5.3535707,5.365334,5.3770972,5.3888605,5.4006237,5.412387,5.4241502,5.4359135,5.4476767,5.45944,5.4712033,5.4829665,5.4947298,5.506493,5.5182563,5.5300195,5.5417828,5.553546,5.5653093,5.5770725,5.5888358,5.600599,5.6123623,5.6241255,5.6358888,5.6476521,5.6594153,5.6711786,5.6829418,5.6947051,5.7064683,5.7182316,5.7299948,5.7417581,5.7535213,5.7652846,5.7770478,5.7888111,5.8005744,5.8123376,5.8241009,5.8358641,5.8476274,5.8593906,5.8711539,5.8829171,5.8946804,5.9064436,5.9182069,5.9299701,5.9417334,5.9534966,5.9652599,5.9770232,5.9887864,6.0005497,6.0123129,6.0240762,6.0358394,6.0476027,6.0593659,6.0711292,6.0828924,6.0946557,6.1064189,6.1181822,6.1299454,6.1417087,6.153472,6.1652352,6.1769985,6.1887617,6.200525,6.2122882,6.2240515,6.2358147,6.247578],"y":[-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748,-0.42108748],"zorder":2,"type":"scatter"},{"customdata":[[0.012388439],[0.012814048],[0.013245414],[0.013682525],[0.014125394],[0.014574055],[0.015028569],[0.01548902],[0.015955513],[0.016428177],[0.016907158],[0.017392623],[0.017884751],[0.018383739],[0.01888979],[0.019403117],[0.019923937],[0.020452469],[0.02098893],[0.021533531],[0.022086475],[0.022647954],[0.023218147],[0.023797215],[0.024385298],[0.024982518],[0.025588973],[0.026204735],[0.026829854],[0.027464352],[0.028108229],[0.02876146],[0.029423997],[0.030095772],[0.0307767],[0.03146668],[0.032165603],[0.03287335],[0.033589803],[0.034314846],[0.035048372],[0.035790289],[0.036540527],[0.037299039],[0.038065816],[0.038840885],[0.039624319],[0.040416244],[0.041216842],[0.042026357],[0.042845099],[0.043673451],[0.044511868],[0.045360883],[0.04622111],[0.047093239],[0.047978044],[0.048876376],[0.049789163],[0.05071741],[0.051662189],[0.052624641],[0.053605965],[0.054607412],[0.05563028],[0.0566759],[0.057745633],[0.058840855],[0.059962945],[0.061113279],[0.062293214],[0.063504076],[0.064747148],[0.066023658],[0.067334767],[0.068681553],[0.070065004],[0.071486001],[0.072945313],[0.074443578],[0.075981303],[0.077558847],[0.079176418],[0.080834062],[0.082531661],[0.084268927],[0.086045398],[0.087860436],[0.089713226],[0.091602778],[0.093527928],[0.095487342],[0.097479517],[0.099502792],[0.10155535],[0.10363524],[0.10574036],[0.1078685],[0.11001731],[0.11218437],[0.11436716],[0.11656308],[0.11876947],[0.12098364],[0.12320286],[0.12542439],[0.12764548],[0.12986343],[0.13207554],[0.13427918],[0.13647178],[0.13865085],[0.140814],[0.14295893],[0.14508349],[0.14718565],[0.14926353],[0.15131541],[0.15333975],[0.15533516],[0.15730047],[0.1592347],[0.16113704],[0.16300693],[0.16484399],[0.16664807],[0.16841925],[0.17015779],[0.1718642],[0.1735392],[0.17518372],[0.17679891],[0.1783861],[0.17994686],[0.18148292],[0.18299622],[0.18448887],[0.18596313],[0.18742144],[0.18886638],[0.19030064],[0.19172705],[0.19314854],[0.19456813],[0.19598888],[0.19741394],[0.19884649],[0.20028971],[0.20174679],[0.20322091],[0.20471519],[0.2062327],[0.20777644],[0.2093493],[0.21095406],[0.21259336],[0.21426968],[0.21598534],[0.21774246],[0.21954294],[0.22138849],[0.22328055],[0.22522033],[0.22720877],[0.22924654],[0.23133404],[0.23347136],[0.23565832],[0.23789444],[0.24017894],[0.24251076],[0.24488853],[0.24731063],[0.24977513],[0.25227985],[0.25482236],[0.25739997],[0.2600098],[0.26264874],[0.26531349],[0.2680006],[0.27070646],[0.27342735],[0.27615944],[0.27889884],[0.2816416],[0.28438375],[0.28712132],[0.28985038],[0.29256702],[0.29526743],[0.29794787],[0.30060475],[0.30323458],[0.30583405],[0.30839999],[0.31092945],[0.31341966],[0.31586804],[0.31827226],[0.32063017],[0.32293988],[0.32519971],[0.32740821],[0.32956414],[0.3316665],[0.33371449],[0.33570752],[0.3376452],[0.3395273],[0.34135379],[0.3431248],[0.34484059],[0.34650156],[0.34810823],[0.34966122],[0.35116123],[0.35260906],[0.35400554],[0.35535155],[0.35664802],[0.35789587],[0.35909606],[0.36024952],[0.36135718],[0.36241994],[0.36343867],[0.3644142],[0.36534733],[0.36623878],[0.36708925],[0.36789936],[0.36866966],[0.36940067],[0.37009283],[0.37074649],[0.37136196],[0.37193949],[0.37247924],[0.3729813],[0.37344573],[0.37387248],[0.37426147],[0.37461252],[0.37492543],[0.37519989],[0.37543556],[0.37563202],[0.3757888],[0.37590536],[0.37598112],[0.37601541],[0.37600755],[0.37595676],[0.37586224],[0.37572313],[0.37553853],[0.3753075],[0.37502907],[0.37470224],[0.37432597],[0.37389923],[0.37342096],[0.37289012],[0.37230565],[0.37166653],[0.37097177],[0.37022039],[0.3694115],[0.36854422],[0.36761778],[0.36663148],[0.36558469],[0.36447691],[0.36330773],[0.36207688],[0.36078421],[0.3594297],[0.3580135],[0.35653587],[0.35499727],[0.3533983],[0.35173972],[0.35002246],[0.34824761],[0.34641642],[0.3445303],[0.34259081],[0.34059968],[0.33855875],[0.33647],[0.33433555],[0.33215762],[0.32993851],[0.32768065],[0.3253865],[0.3230586],[0.32069954],[0.31831192],[0.31589837],[0.31346151],[0.31100394],[0.30852825],[0.30603694],[0.3035325],[0.30101731],[0.29849368],[0.29596382],[0.29342982],[0.29089366],[0.28835719],[0.28582213],[0.28329004],[0.28076234],[0.27824033],[0.2757251],[0.27321762],[0.2707187],[0.268229],[0.26574901],[0.26327908],[0.26081942],[0.2583701],[0.25593104],[0.25350206],[0.25108284],[0.24867297],[0.24627191],[0.24387907],[0.24149375],[0.23911518],[0.23674256],[0.234375],[0.23201161],[0.22965147],[0.22729362],[0.22493712],[0.22258103],[0.22022444],[0.21786646],[0.21550622],[0.21314293],[0.21077585],[0.20840427],[0.2060276],[0.2036453],[0.20125693],[0.19886211],[0.19646061],[0.19405225],[0.19163697],[0.18921481],[0.18678594],[0.1843506],[0.18190916],[0.17946208],[0.17700995],[0.17455344],[0.17209332],[0.16963045],[0.1671658],[0.1647004],[0.16223537],[0.15977191],[0.15731128],[0.15485478],[0.15240379],[0.14995972],[0.14752402],[0.14509815],[0.14268361],[0.1402819],[0.13789454],[0.13552301],[0.13316881],[0.13083341],[0.12851823],[0.1262247],[0.12395417],[0.12170795],[0.1194873],[0.11729344],[0.11512749],[0.11299053],[0.11088356],[0.1088075],[0.10676321],[0.10475146],[0.10277293],[0.10082823],[0.098917906],[0.09704239],[0.095202053],[0.093397184],[0.09162799],[0.089894606],[0.088197089],[0.086535425],[0.08490953],[0.083319251],[0.081764374],[0.08024462],[0.078759652],[0.077309079],[0.075892453],[0.07450928],[0.073159016],[0.071841073],[0.07055482],[0.069299589],[0.068074672],[0.066879329],[0.065712786],[0.06457424],[0.063462858],[0.062377784],[0.061318137],[0.060283014],[0.059271493],[0.058282636],[0.057315488],[0.056369084],[0.055442447],[0.054534595],[0.05364454],[0.052771293],[0.051913868],[0.051071282],[0.050242564],[0.049426752],[0.048622903],[0.047830092],[0.047047421],[0.046274019],[0.045509047],[0.044751704],[0.044001229],[0.043256906],[0.042518068],[0.041784099],[0.041054439],[0.040328587],[0.039606101],[0.038886604],[0.038169783],[0.037455391],[0.036743248],[0.036033239],[0.035325316],[0.034619499],[0.033915867],[0.033214562],[0.032515784],[0.03181979],[0.031126883],[0.030437418],[0.029751788],[0.029070422],[0.028393783],[0.027722356],[0.027056646],[0.02639717],[0.025744452],[0.025099016],[0.024461381],[0.023832054],[0.023211524],[0.022600258],[0.021998696],[0.021407244],[0.020826273],[0.020256116],[0.01969706],[0.01914935],[0.018613183],[0.018088707],[0.017576023],[0.017075185],[0.016586195],[0.016109014],[0.015643553],[0.015189684],[0.014747237],[0.014316008],[0.013895757],[0.013486216],[0.01308709],[0.012698063],[0.012318804],[0.011948964],[0.011588191],[0.011236123],[0.010892401],[0.010556669],[0.010228575],[0.0099077815],[0.009593961],[0.0092868039],[0.008986019],[0.0086913356]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"rgb(118.20608, 3.20319, 166.99855)"],[0.16743801324085608,"#9c179e"],[0.35351019105629805,"#bd3786"],[0.5395823688734148,"#d8576b"],[0.7256545466888569,"#ed7953"],[0.9117267245042988,"#fb9f3a"],[1.0,"rgb(251.94881, 179.39935, 48.51193)"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Trace 3","x":[0.37771451,0.38947776,0.40124102,0.41300427,0.42476752,0.43653078,0.44829403,0.46005728,0.47182054,0.48358379,0.49534704,0.5071103,0.51887355,0.5306368,0.54240006,0.55416331,0.56592656,0.57768982,0.58945307,0.60121632,0.61297958,0.62474283,0.63650608,0.64826934,0.66003259,0.67179585,0.6835591,0.69532235,0.70708561,0.71884886,0.73061211,0.74237537,0.75413862,0.76590187,0.77766513,0.78942838,0.80119163,0.81295489,0.82471814,0.83648139,0.84824465,0.8600079,0.87177115,0.88353441,0.89529766,0.90706091,0.91882417,0.93058742,0.94235067,0.95411393,0.96587718,0.97764044,0.98940369,1.0011669,1.0129302,1.0246934,1.0364567,1.04822,1.0599832,1.0717465,1.0835097,1.095273,1.1070362,1.1187995,1.1305627,1.142326,1.1540892,1.1658525,1.1776157,1.189379,1.2011423,1.2129055,1.2246688,1.236432,1.2481953,1.2599585,1.2717218,1.283485,1.2952483,1.3070115,1.3187748,1.330538,1.3423013,1.3540645,1.3658278,1.3775911,1.3893543,1.4011176,1.4128808,1.4246441,1.4364073,1.4481706,1.4599338,1.4716971,1.4834603,1.4952236,1.5069868,1.5187501,1.5305133,1.5422766,1.5540399,1.5658031,1.5775664,1.5893296,1.6010929,1.6128561,1.6246194,1.6363826,1.6481459,1.6599091,1.6716724,1.6834356,1.6951989,1.7069621,1.7187254,1.7304887,1.7422519,1.7540152,1.7657784,1.7775417,1.7893049,1.8010682,1.8128314,1.8245947,1.8363579,1.8481212,1.8598844,1.8716477,1.883411,1.8951742,1.9069375,1.9187007,1.930464,1.9422272,1.9539905,1.9657537,1.977517,1.9892802,2.0010435,2.0128067,2.02457,2.0363332,2.0480965,2.0598598,2.071623,2.0833863,2.0951495,2.1069128,2.118676,2.1304393,2.1422025,2.1539658,2.165729,2.1774923,2.1892555,2.2010188,2.212782,2.2245453,2.2363086,2.2480718,2.2598351,2.2715983,2.2833616,2.2951248,2.3068881,2.3186513,2.3304146,2.3421778,2.3539411,2.3657043,2.3774676,2.3892308,2.4009941,2.4127574,2.4245206,2.4362839,2.4480471,2.4598104,2.4715736,2.4833369,2.4951001,2.5068634,2.5186266,2.5303899,2.5421531,2.5539164,2.5656797,2.5774429,2.5892062,2.6009694,2.6127327,2.6244959,2.6362592,2.6480224,2.6597857,2.6715489,2.6833122,2.6950754,2.7068387,2.7186019,2.7303652,2.7421285,2.7538917,2.765655,2.7774182,2.7891815,2.8009447,2.812708,2.8244712,2.8362345,2.8479977,2.859761,2.8715242,2.8832875,2.8950507,2.906814,2.9185773,2.9303405,2.9421038,2.953867,2.9656303,2.9773935,2.9891568,3.00092,3.0126833,3.0244465,3.0362098,3.047973,3.0597363,3.0714995,3.0832628,3.0950261,3.1067893,3.1185526,3.1303158,3.1420791,3.1538423,3.1656056,3.1773688,3.1891321,3.2008953,3.2126586,3.2244218,3.2361851,3.2479484,3.2597116,3.2714749,3.2832381,3.2950014,3.3067646,3.3185279,3.3302911,3.3420544,3.3538176,3.3655809,3.3773441,3.3891074,3.4008706,3.4126339,3.4243972,3.4361604,3.4479237,3.4596869,3.4714502,3.4832134,3.4949767,3.5067399,3.5185032,3.5302664,3.5420297,3.5537929,3.5655562,3.5773194,3.5890827,3.600846,3.6126092,3.6243725,3.6361357,3.647899,3.6596622,3.6714255,3.6831887,3.694952,3.7067152,3.7184785,3.7302417,3.742005,3.7537682,3.7655315,3.7772948,3.789058,3.8008213,3.8125845,3.8243478,3.836111,3.8478743,3.8596375,3.8714008,3.883164,3.8949273,3.9066905,3.9184538,3.9302171,3.9419803,3.9537436,3.9655068,3.9772701,3.9890333,4.0007966,4.0125598,4.0243231,4.0360863,4.0478496,4.0596128,4.0713761,4.0831393,4.0949026,4.1066659,4.1184291,4.1301924,4.1419556,4.1537189,4.1654821,4.1772454,4.1890086,4.2007719,4.2125351,4.2242984,4.2360616,4.2478249,4.2595881,4.2713514,4.2831147,4.2948779,4.3066412,4.3184044,4.3301677,4.3419309,4.3536942,4.3654574,4.3772207,4.3889839,4.4007472,4.4125104,4.4242737,4.436037,4.4478002,4.4595635,4.4713267,4.48309,4.4948532,4.5066165,4.5183797,4.530143,4.5419062,4.5536695,4.5654327,4.577196,4.5889592,4.6007225,4.6124858,4.624249,4.6360123,4.6477755,4.6595388,4.671302,4.6830653,4.6948285,4.7065918,4.718355,4.7301183,4.7418815,4.7536448,4.765408,4.7771713,4.7889346,4.8006978,4.8124611,4.8242243,4.8359876,4.8477508,4.8595141,4.8712773,4.8830406,4.8948038,4.9065671,4.9183303,4.9300936,4.9418568,4.9536201,4.9653834,4.9771466,4.9889099,5.0006731,5.0124364,5.0241996,5.0359629,5.0477261,5.0594894,5.0712526,5.0830159,5.0947791,5.1065424,5.1183057,5.1300689,5.1418322,5.1535954,5.1653587,5.1771219,5.1888852,5.2006484,5.2124117,5.2241749,5.2359382,5.2477014,5.2594647,5.2712279,5.2829912,5.2947545,5.3065177,5.318281,5.3300442,5.3418075,5.3535707,5.365334,5.3770972,5.3888605,5.4006237,5.412387,5.4241502,5.4359135,5.4476767,5.45944,5.4712033,5.4829665,5.4947298,5.506493,5.5182563,5.5300195,5.5417828,5.553546,5.5653093,5.5770725,5.5888358,5.600599,5.6123623,5.6241255,5.6358888,5.6476521,5.6594153,5.6711786,5.6829418,5.6947051,5.7064683,5.7182316,5.7299948,5.7417581,5.7535213,5.7652846,5.7770478,5.7888111,5.8005744,5.8123376,5.8241009,5.8358641,5.8476274,5.8593906,5.8711539,5.8829171,5.8946804,5.9064436,5.9182069,5.9299701,5.9417334,5.9534966,5.9652599,5.9770232,5.9887864,6.0005497,6.0123129,6.0240762,6.0358394,6.0476027,6.0593659,6.0711292,6.0828924,6.0946557,6.1064189,6.1181822,6.1299454,6.1417087,6.153472,6.1652352,6.1769985,6.1887617,6.200525,6.2122882,6.2240515,6.2358147,6.247578],"y":[-0.40869905,-0.40827344,-0.40784207,-0.40740496,-0.40696209,-0.40651343,-0.40605891,-0.40559846,-0.40513197,-0.40465931,-0.40418033,-0.40369486,-0.40320273,-0.40270375,-0.40219769,-0.40168437,-0.40116355,-0.40063501,-0.40009855,-0.39955395,-0.39900101,-0.39843953,-0.39786934,-0.39729027,-0.39670219,-0.39610497,-0.39549851,-0.39488275,-0.39425763,-0.39362313,-0.39297925,-0.39232602,-0.39166349,-0.39099171,-0.39031078,-0.3896208,-0.38892188,-0.38821413,-0.38749768,-0.38677264,-0.38603911,-0.38529719,-0.38454696,-0.38378844,-0.38302167,-0.3822466,-0.38146316,-0.38067124,-0.37987064,-0.37906113,-0.37824238,-0.37741403,-0.37657562,-0.3757266,-0.37486637,-0.37399424,-0.37310944,-0.37221111,-0.37129832,-0.37037007,-0.36942529,-0.36846284,-0.36748152,-0.36648007,-0.3654572,-0.36441158,-0.36334185,-0.36224663,-0.36112454,-0.35997421,-0.35879427,-0.35758341,-0.35634034,-0.35506383,-0.35375272,-0.35240593,-0.35102248,-0.34960148,-0.34814217,-0.34664391,-0.34510618,-0.34352864,-0.34191107,-0.34025342,-0.33855582,-0.33681856,-0.33504209,-0.33322705,-0.33137426,-0.32948471,-0.32755956,-0.32560014,-0.32360797,-0.32158469,-0.31953213,-0.31745224,-0.31534712,-0.31321899,-0.31107017,-0.30890311,-0.30672032,-0.30452441,-0.30231801,-0.30010384,-0.29788463,-0.2956631,-0.293442,-0.29122405,-0.28901194,-0.2868083,-0.2846157,-0.28243663,-0.28027349,-0.27812855,-0.276004,-0.27390184,-0.27182395,-0.26977207,-0.26774774,-0.26575232,-0.26378701,-0.26185279,-0.25995044,-0.25808056,-0.2562435,-0.25443941,-0.25266824,-0.25092969,-0.24922328,-0.24754828,-0.24590376,-0.24428858,-0.24270138,-0.24114062,-0.23960456,-0.23809126,-0.23659862,-0.23512435,-0.23366604,-0.23222111,-0.23078685,-0.22936043,-0.22793894,-0.22651936,-0.2250986,-0.22367354,-0.22224099,-0.22079777,-0.21934069,-0.21786657,-0.2163723,-0.21485478,-0.21331104,-0.21173818,-0.21013342,-0.20849412,-0.2068178,-0.20510214,-0.20334503,-0.20154454,-0.19969899,-0.19780693,-0.19586715,-0.19387871,-0.19184094,-0.18975345,-0.18761613,-0.18542917,-0.18319305,-0.18090855,-0.17857673,-0.17619895,-0.17377685,-0.17131235,-0.16880763,-0.16626513,-0.16368751,-0.16107768,-0.15843874,-0.15577399,-0.15308689,-0.15038103,-0.14766014,-0.14492805,-0.14218865,-0.13944589,-0.13670374,-0.13396616,-0.13123711,-0.12852046,-0.12582006,-0.12313961,-0.12048273,-0.1178529,-0.11525344,-0.11268749,-0.11015803,-0.10766782,-0.10521944,-0.10281523,-0.10045731,-0.0981476,-0.095887771,-0.093679275,-0.091523342,-0.089420982,-0.08737299,-0.08537996,-0.083442288,-0.081560186,-0.079733691,-0.077962684,-0.076246895,-0.074585925,-0.072979256,-0.071426267,-0.06992625,-0.068478423,-0.067081946,-0.065735933,-0.064439466,-0.063191609,-0.06199142,-0.060837959,-0.0597303,-0.058667542,-0.057648812,-0.056673279,-0.055740155,-0.054848701,-0.053998234,-0.053188129,-0.052417821,-0.051686809,-0.050994658,-0.050340996,-0.04972552,-0.049147994,-0.048608248,-0.048106181,-0.047641755,-0.047215002,-0.046826017,-0.04647496,-0.046162057,-0.045887596,-0.045651928,-0.045455467,-0.045298687,-0.045182123,-0.045106367,-0.04507207,-0.045079937,-0.045130727,-0.045225249,-0.045364358,-0.045548957,-0.045779983,-0.046058411,-0.046385245,-0.046761512,-0.047188253,-0.047666521,-0.048197367,-0.048781836,-0.049420952,-0.050115717,-0.050867091,-0.051675987,-0.052543262,-0.053469699,-0.054456005,-0.055502793,-0.056610574,-0.05777975,-0.0590106,-0.060303273,-0.06165778,-0.063073988,-0.064551611,-0.066090209,-0.06768918,-0.06934776,-0.071065022,-0.072839875,-0.074671067,-0.076557187,-0.078496671,-0.080487806,-0.082528738,-0.084617483,-0.086751933,-0.088929869,-0.091148971,-0.093406836,-0.095700985,-0.098028881,-0.10038794,-0.10277556,-0.10518911,-0.10762597,-0.11008354,-0.11255924,-0.11505054,-0.11755498,-0.12007017,-0.1225938,-0.12512366,-0.12765766,-0.13019382,-0.13273029,-0.13526536,-0.13779745,-0.14032514,-0.14284716,-0.14536239,-0.14786986,-0.15036878,-0.15285848,-0.15533847,-0.1578084,-0.16026806,-0.16271739,-0.16515644,-0.16758542,-0.17000464,-0.17241452,-0.17481557,-0.17720841,-0.17959374,-0.1819723,-0.18434493,-0.18671248,-0.18907587,-0.19143602,-0.19379387,-0.19615037,-0.19850645,-0.20086304,-0.20322103,-0.20558126,-0.20794455,-0.21031164,-0.21268321,-0.21505988,-0.21744218,-0.21983056,-0.22222537,-0.22462687,-0.22703524,-0.22945052,-0.23187267,-0.23430155,-0.23673689,-0.23917833,-0.2416254,-0.24407753,-0.24653404,-0.24899417,-0.25145703,-0.25392169,-0.25638709,-0.25885211,-0.26131557,-0.26377621,-0.2662327,-0.26868369,-0.27112776,-0.27356347,-0.27598933,-0.27840387,-0.28080558,-0.28319295,-0.28556447,-0.28791867,-0.29025408,-0.29256925,-0.29486278,-0.29713332,-0.29937954,-0.30160018,-0.30379404,-0.30595999,-0.30809695,-0.31020392,-0.31227998,-0.31432427,-0.31633603,-0.31831456,-0.32025925,-0.32216958,-0.32404509,-0.32588543,-0.3276903,-0.32945949,-0.33119288,-0.33289039,-0.33455206,-0.33617795,-0.33776823,-0.33932311,-0.34084286,-0.34232783,-0.34377841,-0.34519503,-0.3465782,-0.34792847,-0.34924641,-0.35053266,-0.3517879,-0.35301281,-0.35420815,-0.3553747,-0.35651324,-0.35762463,-0.3587097,-0.35976935,-0.36080447,-0.36181599,-0.36280485,-0.363772,-0.3647184,-0.36564504,-0.36655289,-0.36744294,-0.36831619,-0.36917362,-0.3700162,-0.37084492,-0.37166073,-0.37246458,-0.37325739,-0.37404006,-0.37481347,-0.37557844,-0.37633578,-0.37708626,-0.37783058,-0.37856942,-0.37930339,-0.38003305,-0.3807589,-0.38148138,-0.38220088,-0.3829177,-0.38363209,-0.38434424,-0.38505425,-0.38576217,-0.38646799,-0.38717162,-0.38787292,-0.3885717,-0.38926769,-0.3899606,-0.39065007,-0.3913357,-0.39201706,-0.3926937,-0.39336513,-0.39403084,-0.39469031,-0.39534303,-0.39598847,-0.3966261,-0.39725543,-0.39787596,-0.39848723,-0.39908879,-0.39968024,-0.40026121,-0.40083137,-0.40139042,-0.40193813,-0.4024743,-0.40299878,-0.40351146,-0.4040123,-0.40450129,-0.40497847,-0.40544393,-0.4058978,-0.40634025,-0.40677148,-0.40719173,-0.40760127,-0.40800039,-0.40838942,-0.40876868,-0.40913852,-0.40949929,-0.40985136,-0.41019508,-0.41053082,-0.41085891,-0.4111797,-0.41149352,-0.41180068,-0.41210146,-0.41239615],"zorder":2,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-0.56377987,-0.5519137,-0.54004753,-0.52818136,-0.51631519,-0.50444902,-0.49258285,-0.48071668,-0.46885051,-0.45698435,-0.44511818,-0.43325201,-0.42138584,-0.40951967,-0.3976535,-0.38578733,-0.37392116,-0.36205499,-0.35018883,-0.33832266,-0.32645649,-0.31459032,-0.30272415,-0.29085798,-0.27899181,-0.26712564,-0.25525947,-0.24339331,-0.23152714,-0.21966097,-0.2077948,-0.19592863,-0.18406246,-0.17219629,-0.16033012,-0.14846395,-0.13659779,-0.12473162,-0.11286545,-0.10099928,-0.08913311,-0.077266941,-0.065400772,-0.053534603,-0.041668434,-0.029802265,-0.017936096,-0.0060699272,0.0057962417,0.017662411,0.02952858,0.041394748,0.053260917,0.065127086,0.076993255,0.088859424,0.10072559,0.11259176,0.12445793,0.1363241,0.14819027,0.16005644,0.17192261,0.18378878,0.19565494,0.20752111,0.21938728,0.23125345,0.24311962,0.25498579,0.26685196,0.27871813,0.2905843,0.30245046,0.31431663,0.3261828,0.33804897,0.34991514,0.36178131,0.37364748,0.38551365,0.39737982,0.40924598,0.42111215,0.43297832,0.44484449,0.45671066,0.46857683,0.480443,0.49230917,0.50417534,0.51604151,0.52790767,0.53977384,0.55164001,0.56350618,0.57537235,0.58723852,0.59910469,0.61097086,0.62283703,0.63470319,0.64656936,0.65843553,0.6703017,0.68216787,0.69403404,0.70590021,0.71776638,0.72963255,0.74149871,0.75336488,0.76523105,0.77709722,0.78896339,0.80082956,0.81269573,0.8245619,0.83642807,0.84829423,0.8601604,0.87202657,0.88389274,0.89575891,0.90762508,0.91949125,0.93135742,0.94322359,0.95508976,0.96695592,0.97882209,0.99068826,1.0025544,1.0144206,1.0262868,1.0381529,1.0500191,1.0618853,1.0737514,1.0856176,1.0974838,1.10935,1.1212161,1.1330823,1.1449485,1.1568146,1.1686808,1.180547,1.1924131,1.2042793,1.2161455,1.2280116,1.2398778,1.251744,1.2636101,1.2754763,1.2873425,1.2992087,1.3110748,1.322941,1.3348072,1.3466733,1.3585395,1.3704057,1.3822718,1.394138,1.4060042,1.4178703,1.4297365,1.4416027,1.4534688,1.465335,1.4772012,1.4890674,1.5009335,1.5127997,1.5246659,1.536532,1.5483982,1.5602644,1.5721305,1.5839967,1.5958629,1.607729,1.6195952,1.6314614,1.6433276,1.6551937,1.6670599,1.6789261,1.6907922,1.7026584,1.7145246,1.7263907,1.7382569,1.7501231,1.7619892,1.7738554,1.7857216,1.7975877,1.8094539,1.8213201,1.8331863,1.8450524,1.8569186,1.8687848,1.8806509,1.8925171,1.9043833,1.9162494,1.9281156,1.9399818,1.9518479,1.9637141,1.9755803,1.9874465,1.9993126,2.0111788,2.023045,2.0349111,2.0467773,2.0586435,2.0705096,2.0823758,2.094242,2.1061081,2.1179743,2.1298405,2.1417066,2.1535728,2.165439,2.1773052,2.1891713,2.2010375,2.2129037,2.2247698,2.236636,2.2485022,2.2603683,2.2722345,2.2841007,2.2959668,2.307833,2.3196992,2.3315653,2.3434315,2.3552977,2.3671639,2.37903,2.3908962,2.4027624,2.4146285,2.4264947,2.4383609,2.450227,2.4620932,2.4739594,2.4858255,2.4976917,2.5095579,2.5214241,2.5332902,2.5451564,2.5570226,2.5688887,2.5807549,2.5926211,2.6044872,2.6163534,2.6282196,2.6400857,2.6519519,2.6638181,2.6756842,2.6875504,2.6994166,2.7112828,2.7231489,2.7350151,2.7468813,2.7587474,2.7706136,2.7824798,2.7943459,2.8062121,2.8180783,2.8299444,2.8418106,2.8536768,2.865543,2.8774091,2.8892753,2.9011415,2.9130076,2.9248738,2.93674,2.9486061,2.9604723,2.9723385,2.9842046,2.9960708,3.007937,3.0198031,3.0316693,3.0435355,3.0554017,3.0672678,3.079134,3.0910002,3.1028663,3.1147325,3.1265987,3.1384648,3.150331,3.1621972,3.1740633,3.1859295,3.1977957,3.2096618,3.221528,3.2333942,3.2452604,3.2571265,3.2689927,3.2808589,3.292725,3.3045912,3.3164574,3.3283235,3.3401897,3.3520559,3.363922,3.3757882,3.3876544,3.3995206,3.4113867,3.4232529,3.4351191,3.4469852,3.4588514,3.4707176,3.4825837,3.4944499,3.5063161,3.5181822,3.5300484,3.5419146,3.5537807,3.5656469,3.5775131,3.5893793,3.6012454,3.6131116,3.6249778,3.6368439,3.6487101,3.6605763,3.6724424,3.6843086,3.6961748,3.7080409,3.7199071,3.7317733,3.7436395,3.7555056,3.7673718,3.779238,3.7911041,3.8029703,3.8148365,3.8267026,3.8385688,3.850435,3.8623011,3.8741673,3.8860335,3.8978996,3.9097658,3.921632,3.9334982,3.9453643,3.9572305,3.9690967,3.9809628,3.992829,4.0046952,4.0165613,4.0284275,4.0402937,4.0521598,4.064026,4.0758922,4.0877583,4.0996245,4.1114907,4.1233569,4.135223,4.1470892,4.1589554,4.1708215,4.1826877,4.1945539,4.20642,4.2182862,4.2301524,4.2420185,4.2538847,4.2657509,4.2776171,4.2894832,4.3013494,4.3132156,4.3250817,4.3369479,4.3488141,4.3606802,4.3725464,4.3844126,4.3962787,4.4081449,4.4200111,4.4318772,4.4437434,4.4556096,4.4674758,4.4793419,4.4912081,4.5030743,4.5149404,4.5268066,4.5386728,4.5505389,4.5624051,4.5742713,4.5861374,4.5980036,4.6098698,4.621736,4.6336021,4.6454683,4.6573345,4.6692006,4.6810668,4.692933,4.7047991,4.7166653,4.7285315,4.7403976,4.7522638,4.76413,4.7759961,4.7878623,4.7997285,4.8115947,4.8234608,4.835327,4.8471932,4.8590593,4.8709255,4.8827917,4.8946578,4.906524,4.9183902,4.9302563,4.9421225,4.9539887,4.9658548,4.977721,4.9895872,5.0014534,5.0133195,5.0251857,5.0370519,5.048918,5.0607842,5.0726504,5.0845165,5.0963827,5.1082489,5.120115,5.1319812,5.1438474,5.1557136,5.1675797,5.1794459,5.1913121,5.2031782,5.2150444,5.2269106,5.2387767,5.2506429,5.2625091,5.2743752,5.2862414,5.2981076,5.3099737,5.3218399,5.3337061,5.3455723,5.3574384],"y":[-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123,-0.63163123],"zorder":3,"type":"scatter"},{"customdata":[[0.0093841402],[0.0096101294],[0.0098348894],[0.010058533],[0.010281221],[0.010503165],[0.010724627],[0.010945918],[0.011167402],[0.01138949],[0.011612641],[0.011837364],[0.012064211],[0.012293778],[0.012526703],[0.01276366],[0.013005362],[0.013252551],[0.013506],[0.013766508],[0.014034894],[0.014311997],[0.014598669],[0.014895773],[0.015204177],[0.015524752],[0.015858366],[0.016205884],[0.016568157],[0.016946024],[0.017340308],[0.017751809],[0.018181301],[0.018629533],[0.01909722],[0.019585043],[0.020093644],[0.020623627],[0.02117555],[0.021749927],[0.022347223],[0.022967853],[0.023612178],[0.024280506],[0.024973087],[0.025690116],[0.026431724],[0.027197985],[0.027988908],[0.028804439],[0.029644462],[0.030508793],[0.031397183],[0.032309319],[0.033244818],[0.034203234],[0.035184052],[0.036186693],[0.037210514],[0.038254806],[0.039318797],[0.040401658],[0.041502497],[0.042620369],[0.043754274],[0.044903162],[0.046065937],[0.047241461],[0.048428559],[0.049626023],[0.050832617],[0.052047087],[0.053268163],[0.054494567],[0.055725022],[0.056958257],[0.058193018],[0.059428073],[0.060662222],[0.061894306],[0.063123216],[0.064347899],[0.06556737],[0.066780721],[0.067987124],[0.069185847],[0.070376257],[0.071557827],[0.072730146],[0.073892925],[0.075046001],[0.076189343],[0.077323058],[0.078447391],[0.079562732],[0.080669616],[0.081768721],[0.082860873],[0.083947041],[0.085028336],[0.086106008],[0.08718144],[0.088256147],[0.089331764],[0.090410042],[0.091492839],[0.092582112],[0.093679905],[0.09478834],[0.095909604],[0.097045938],[0.098199625],[0.099372974],[0.10056831],[0.10178796],[0.10303424],[0.10430944],[0.10561579],[0.1069555],[0.10833067],[0.10974337],[0.11119553],[0.11268899],[0.11422547],[0.11580657],[0.11743374],[0.11910828],[0.12083133],[0.12260387],[0.1244267],[0.12630044],[0.12822553],[0.13020221],[0.13223055],[0.13431042],[0.13644147],[0.1386232],[0.1408549],[0.14313565],[0.14546439],[0.14783984],[0.15026057],[0.15272499],[0.15523133],[0.15777768],[0.160362],[0.1629821],[0.16563569],[0.16832036],[0.17103361],[0.17377285],[0.17653543],[0.17931864],[0.18211971],[0.18493585],[0.18776425],[0.1906021],[0.19344658],[0.19629489],[0.19914428],[0.20199203],[0.20483547],[0.20767199],[0.21049908],[0.21331427],[0.21611522],[0.21889968],[0.22166549],[0.22441062],[0.22713316],[0.22983132],[0.23250342],[0.23514795],[0.2377635],[0.24034881],[0.24290275],[0.24542433],[0.2479127],[0.25036713],[0.25278705],[0.255172],[0.25752165],[0.25983581],[0.26211441],[0.26435748],[0.26656518],[0.2687378],[0.27087569],[0.27297933],[0.27504931],[0.27708629],[0.27909101],[0.28106432],[0.28300713],[0.28492041],[0.28680524],[0.28866272],[0.29049403],[0.2923004],[0.29408312],[0.29584352],[0.29758298],[0.2993029],[0.30100473],[0.30268996],[0.3043601],[0.30601667],[0.30766124],[0.30929536],[0.31092062],[0.3125386],[0.31415091],[0.31575911],[0.31736479],[0.31896951],[0.32057481],[0.3221822],[0.32379315],[0.3254091],[0.32703142],[0.32866143],[0.33030037],[0.33194939],[0.33360957],[0.33528186],[0.33696713],[0.33866608],[0.34037932],[0.34210727],[0.34385022],[0.34560829],[0.34738139],[0.34916928],[0.3509715],[0.3527874],[0.35461611],[0.35645655],[0.35830741],[0.36016717],[0.36203409],[0.3639062],[0.36578131],[0.36765704],[0.36953077],[0.37139971],[0.37326087],[0.3751111],[0.37694706],[0.37876531],[0.38056224],[0.38233416],[0.38407727],[0.38578773],[0.38746163],[0.38909505],[0.39068406],[0.39222476],[0.39371329],[0.39514586],[0.39651877],[0.39782841],[0.39907132],[0.40024418],[0.40134383],[0.40236729],[0.40331175],[0.40417463],[0.40495355],[0.40564632],[0.406251],[0.40676585],[0.40718938],[0.40752028],[0.40775747],[0.4079001],[0.40794748],[0.40789914],[0.40775478],[0.40751426],[0.40717761],[0.40674498],[0.40621667],[0.40559307],[0.40487469],[0.40406211],[0.40315599],[0.40215705],[0.40106604],[0.39988378],[0.39861108],[0.39724881],[0.39579782],[0.394259],[0.39263322],[0.39092137],[0.38912434],[0.38724304],[0.38527836],[0.38323123],[0.38110259],[0.3788934],[0.37660466],[0.37423739],[0.37179269],[0.36927168],[0.36667558],[0.36400565],[0.36126325],[0.35844982],[0.3555669],[0.35261613],[0.34959925],[0.34651812],[0.34337469],[0.34017106],[0.33690941],[0.33359205],[0.33022139],[0.32679996],[0.32333038],[0.31981536],[0.31625771],[0.31266031],[0.30902612],[0.30535813],[0.3016594],[0.29793303],[0.29418213],[0.29040981],[0.28661921],[0.28281344],[0.27899558],[0.27516868],[0.27133573],[0.26749968],[0.2636634],[0.25982968],[0.25600124],[0.25218069],[0.24837054],[0.2445732],[0.24079097],[0.23702605],[0.23328051],[0.22955629],[0.22585524],[0.22217909],[0.21852942],[0.21490774],[0.21131542],[0.20775372],[0.20422381],[0.20072674],[0.19726347],[0.19383487],[0.1904417],[0.18708466],[0.18376436],[0.18048132],[0.177236],[0.1740288],[0.17086005],[0.16773001],[0.16463891],[0.16158691],[0.15857413],[0.15560066],[0.15266653],[0.14977175],[0.1469163],[0.14410012],[0.14132313],[0.13858523],[0.13588631],[0.13322622],[0.13060482],[0.12802194],[0.12547742],[0.1229711],[0.12050278],[0.1180723],[0.11567948],[0.11332416],[0.11100617],[0.10872535],[0.10648157],[0.10427468],[0.10210456],[0.099971115],[0.097874234],[0.09581384],[0.093789862],[0.091802246],[0.089850947],[0.087935933],[0.08605718],[0.084214673],[0.082408401],[0.080638357],[0.078904533],[0.077206921],[0.075545503],[0.073920254],[0.072331136],[0.070778095],[0.069261054],[0.067779916],[0.066334555],[0.064924815],[0.063550506],[0.062211402],[0.060907238],[0.059637706],[0.058402458],[0.057201099],[0.056033189],[0.054898241],[0.053795723],[0.052725056],[0.051685618],[0.050676741],[0.049697717],[0.048747801],[0.047826208],[0.046932122],[0.0460647],[0.04522307],[0.044406343],[0.043613612],[0.042843959],[0.042096459],[0.041370186],[0.040664218],[0.039977641],[0.039309553],[0.038659072],[0.038025335],[0.037407509],[0.036804787],[0.036216398],[0.035641605],[0.03507971],[0.034530057],[0.03399203],[0.033465056],[0.032948606],[0.032442193],[0.031945371],[0.031457739],[0.03097893],[0.030508618],[0.030046511],[0.029592348],[0.029145895],[0.028706946],[0.028275314],[0.02785083],[0.027433338],[0.027022693],[0.026618752],[0.026221377],[0.025830425],[0.025445748],[0.025067191],[0.024694584],[0.024327744],[0.023966471],[0.023610547],[0.023259733],[0.02291377],[0.022572379],[0.022235258],[0.021902088],[0.021572528],[0.021246221],[0.020922795],[0.020601863],[0.02028303],[0.019965894],[0.019650047],[0.019335083],[0.019020599],[0.0187062],[0.018391503],[0.01807614],[0.017759762],[0.017442046],[0.017122692],[0.016801434],[0.016478038],[0.016152307],[0.015824082],[0.015493247],[0.015159726],[0.014823491],[0.014484555],[0.014142978],[0.013798866],[0.013452367],[0.013103675]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"rgb(80.47828, 2.52371, 161.14329)"],[0.14053094019539414,"#7201a8"],[0.32498931116973856,"#9c179e"],[0.5094476821440829,"#bd3786"],[0.6939060531200874,"#d8576b"],[0.8783644240944317,"#ed7953"],[1.0,"rgb(246.23188, 146.05797, 66.51449)"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Trace 4","x":[-0.56377987,-0.5519137,-0.54004753,-0.52818136,-0.51631519,-0.50444902,-0.49258285,-0.48071668,-0.46885051,-0.45698435,-0.44511818,-0.43325201,-0.42138584,-0.40951967,-0.3976535,-0.38578733,-0.37392116,-0.36205499,-0.35018883,-0.33832266,-0.32645649,-0.31459032,-0.30272415,-0.29085798,-0.27899181,-0.26712564,-0.25525947,-0.24339331,-0.23152714,-0.21966097,-0.2077948,-0.19592863,-0.18406246,-0.17219629,-0.16033012,-0.14846395,-0.13659779,-0.12473162,-0.11286545,-0.10099928,-0.08913311,-0.077266941,-0.065400772,-0.053534603,-0.041668434,-0.029802265,-0.017936096,-0.0060699272,0.0057962417,0.017662411,0.02952858,0.041394748,0.053260917,0.065127086,0.076993255,0.088859424,0.10072559,0.11259176,0.12445793,0.1363241,0.14819027,0.16005644,0.17192261,0.18378878,0.19565494,0.20752111,0.21938728,0.23125345,0.24311962,0.25498579,0.26685196,0.27871813,0.2905843,0.30245046,0.31431663,0.3261828,0.33804897,0.34991514,0.36178131,0.37364748,0.38551365,0.39737982,0.40924598,0.42111215,0.43297832,0.44484449,0.45671066,0.46857683,0.480443,0.49230917,0.50417534,0.51604151,0.52790767,0.53977384,0.55164001,0.56350618,0.57537235,0.58723852,0.59910469,0.61097086,0.62283703,0.63470319,0.64656936,0.65843553,0.6703017,0.68216787,0.69403404,0.70590021,0.71776638,0.72963255,0.74149871,0.75336488,0.76523105,0.77709722,0.78896339,0.80082956,0.81269573,0.8245619,0.83642807,0.84829423,0.8601604,0.87202657,0.88389274,0.89575891,0.90762508,0.91949125,0.93135742,0.94322359,0.95508976,0.96695592,0.97882209,0.99068826,1.0025544,1.0144206,1.0262868,1.0381529,1.0500191,1.0618853,1.0737514,1.0856176,1.0974838,1.10935,1.1212161,1.1330823,1.1449485,1.1568146,1.1686808,1.180547,1.1924131,1.2042793,1.2161455,1.2280116,1.2398778,1.251744,1.2636101,1.2754763,1.2873425,1.2992087,1.3110748,1.322941,1.3348072,1.3466733,1.3585395,1.3704057,1.3822718,1.394138,1.4060042,1.4178703,1.4297365,1.4416027,1.4534688,1.465335,1.4772012,1.4890674,1.5009335,1.5127997,1.5246659,1.536532,1.5483982,1.5602644,1.5721305,1.5839967,1.5958629,1.607729,1.6195952,1.6314614,1.6433276,1.6551937,1.6670599,1.6789261,1.6907922,1.7026584,1.7145246,1.7263907,1.7382569,1.7501231,1.7619892,1.7738554,1.7857216,1.7975877,1.8094539,1.8213201,1.8331863,1.8450524,1.8569186,1.8687848,1.8806509,1.8925171,1.9043833,1.9162494,1.9281156,1.9399818,1.9518479,1.9637141,1.9755803,1.9874465,1.9993126,2.0111788,2.023045,2.0349111,2.0467773,2.0586435,2.0705096,2.0823758,2.094242,2.1061081,2.1179743,2.1298405,2.1417066,2.1535728,2.165439,2.1773052,2.1891713,2.2010375,2.2129037,2.2247698,2.236636,2.2485022,2.2603683,2.2722345,2.2841007,2.2959668,2.307833,2.3196992,2.3315653,2.3434315,2.3552977,2.3671639,2.37903,2.3908962,2.4027624,2.4146285,2.4264947,2.4383609,2.450227,2.4620932,2.4739594,2.4858255,2.4976917,2.5095579,2.5214241,2.5332902,2.5451564,2.5570226,2.5688887,2.5807549,2.5926211,2.6044872,2.6163534,2.6282196,2.6400857,2.6519519,2.6638181,2.6756842,2.6875504,2.6994166,2.7112828,2.7231489,2.7350151,2.7468813,2.7587474,2.7706136,2.7824798,2.7943459,2.8062121,2.8180783,2.8299444,2.8418106,2.8536768,2.865543,2.8774091,2.8892753,2.9011415,2.9130076,2.9248738,2.93674,2.9486061,2.9604723,2.9723385,2.9842046,2.9960708,3.007937,3.0198031,3.0316693,3.0435355,3.0554017,3.0672678,3.079134,3.0910002,3.1028663,3.1147325,3.1265987,3.1384648,3.150331,3.1621972,3.1740633,3.1859295,3.1977957,3.2096618,3.221528,3.2333942,3.2452604,3.2571265,3.2689927,3.2808589,3.292725,3.3045912,3.3164574,3.3283235,3.3401897,3.3520559,3.363922,3.3757882,3.3876544,3.3995206,3.4113867,3.4232529,3.4351191,3.4469852,3.4588514,3.4707176,3.4825837,3.4944499,3.5063161,3.5181822,3.5300484,3.5419146,3.5537807,3.5656469,3.5775131,3.5893793,3.6012454,3.6131116,3.6249778,3.6368439,3.6487101,3.6605763,3.6724424,3.6843086,3.6961748,3.7080409,3.7199071,3.7317733,3.7436395,3.7555056,3.7673718,3.779238,3.7911041,3.8029703,3.8148365,3.8267026,3.8385688,3.850435,3.8623011,3.8741673,3.8860335,3.8978996,3.9097658,3.921632,3.9334982,3.9453643,3.9572305,3.9690967,3.9809628,3.992829,4.0046952,4.0165613,4.0284275,4.0402937,4.0521598,4.064026,4.0758922,4.0877583,4.0996245,4.1114907,4.1233569,4.135223,4.1470892,4.1589554,4.1708215,4.1826877,4.1945539,4.20642,4.2182862,4.2301524,4.2420185,4.2538847,4.2657509,4.2776171,4.2894832,4.3013494,4.3132156,4.3250817,4.3369479,4.3488141,4.3606802,4.3725464,4.3844126,4.3962787,4.4081449,4.4200111,4.4318772,4.4437434,4.4556096,4.4674758,4.4793419,4.4912081,4.5030743,4.5149404,4.5268066,4.5386728,4.5505389,4.5624051,4.5742713,4.5861374,4.5980036,4.6098698,4.621736,4.6336021,4.6454683,4.6573345,4.6692006,4.6810668,4.692933,4.7047991,4.7166653,4.7285315,4.7403976,4.7522638,4.76413,4.7759961,4.7878623,4.7997285,4.8115947,4.8234608,4.835327,4.8471932,4.8590593,4.8709255,4.8827917,4.8946578,4.906524,4.9183902,4.9302563,4.9421225,4.9539887,4.9658548,4.977721,4.9895872,5.0014534,5.0133195,5.0251857,5.0370519,5.048918,5.0607842,5.0726504,5.0845165,5.0963827,5.1082489,5.120115,5.1319812,5.1438474,5.1557136,5.1675797,5.1794459,5.1913121,5.2031782,5.2150444,5.2269106,5.2387767,5.2506429,5.2625091,5.2743752,5.2862414,5.2981076,5.3099737,5.3218399,5.3337061,5.3455723,5.3574384],"y":[-0.62224709,-0.6220211,-0.62179634,-0.62157269,-0.62135001,-0.62112806,-0.6209066,-0.62068531,-0.62046382,-0.62024174,-0.62001858,-0.61979386,-0.61956701,-0.61933745,-0.61910452,-0.61886757,-0.61862586,-0.61837868,-0.61812523,-0.61786472,-0.61759633,-0.61731923,-0.61703256,-0.61673545,-0.61642705,-0.61610647,-0.61577286,-0.61542534,-0.61506307,-0.6146852,-0.61429092,-0.61387942,-0.61344992,-0.61300169,-0.61253401,-0.61204618,-0.61153758,-0.6110076,-0.61045568,-0.6098813,-0.609284,-0.60866337,-0.60801905,-0.60735072,-0.60665814,-0.60594111,-0.6051995,-0.60443324,-0.60364232,-0.60282679,-0.60198676,-0.60112243,-0.60023404,-0.59932191,-0.59838641,-0.59742799,-0.59644717,-0.59544453,-0.59442071,-0.59337642,-0.59231243,-0.59122957,-0.59012873,-0.58901086,-0.58787695,-0.58672806,-0.58556529,-0.58438976,-0.58320267,-0.5820052,-0.58079861,-0.57958414,-0.57836306,-0.57713666,-0.5759062,-0.57467297,-0.57343821,-0.57220315,-0.570969,-0.56973692,-0.56850801,-0.56728333,-0.56606386,-0.56485051,-0.5636441,-0.56244538,-0.56125497,-0.5600734,-0.55890108,-0.5577383,-0.55658523,-0.55544188,-0.55430817,-0.55318384,-0.55206849,-0.55096161,-0.5498625,-0.54877035,-0.54768418,-0.54660289,-0.54552522,-0.54444979,-0.54337508,-0.54229946,-0.54122118,-0.54013839,-0.53904911,-0.53795132,-0.53684289,-0.53572162,-0.53458529,-0.5334316,-0.53225825,-0.53106291,-0.52984326,-0.52859698,-0.52732179,-0.52601544,-0.52467573,-0.52330055,-0.52188786,-0.5204357,-0.51894224,-0.51740576,-0.51582465,-0.51419748,-0.51252295,-0.51079989,-0.50902736,-0.50720453,-0.50533079,-0.5034057,-0.50142901,-0.49940067,-0.49732081,-0.49518975,-0.49300802,-0.49077633,-0.48849557,-0.48616684,-0.48379139,-0.48137065,-0.47890623,-0.4763999,-0.47385354,-0.47126923,-0.46864913,-0.46599554,-0.46331087,-0.46059762,-0.45785838,-0.45509579,-0.45231259,-0.44951152,-0.44669538,-0.44386697,-0.44102913,-0.43818465,-0.43533633,-0.43248694,-0.42963919,-0.42679576,-0.42395923,-0.42113215,-0.41831696,-0.41551601,-0.41273155,-0.40996574,-0.40722061,-0.40449807,-0.40179991,-0.3991278,-0.39648327,-0.39386772,-0.39128241,-0.38872847,-0.38620689,-0.38371853,-0.38126409,-0.37884418,-0.37645923,-0.37410957,-0.37179541,-0.36951682,-0.36727375,-0.36506604,-0.36289343,-0.36075554,-0.35865189,-0.35658191,-0.35454494,-0.35254021,-0.35056691,-0.3486241,-0.34671081,-0.34482599,-0.34296851,-0.3411372,-0.33933083,-0.3375481,-0.3357877,-0.33404825,-0.33232833,-0.33062649,-0.32894126,-0.32727113,-0.32561455,-0.32396999,-0.32233587,-0.32071061,-0.31909262,-0.31748032,-0.31587212,-0.31426644,-0.31266172,-0.31105642,-0.30944903,-0.30783807,-0.30622212,-0.3045998,-0.3029698,-0.30133086,-0.29968184,-0.29802166,-0.29634936,-0.2946641,-0.29296514,-0.29125191,-0.28952395,-0.287781,-0.28602294,-0.28424984,-0.28246195,-0.28065972,-0.27884382,-0.27701511,-0.27517468,-0.27332382,-0.27146405,-0.26959714,-0.26772503,-0.26584991,-0.26397419,-0.26210046,-0.26023152,-0.25837035,-0.25652013,-0.25468416,-0.25286592,-0.25106899,-0.24929707,-0.24755395,-0.24584349,-0.24416959,-0.24253618,-0.24094717,-0.23940646,-0.23791793,-0.23648536,-0.23511246,-0.23380282,-0.2325599,-0.23138704,-0.23028739,-0.22926394,-0.22831947,-0.22745659,-0.22667768,-0.22598491,-0.22538023,-0.22486537,-0.22444185,-0.22411095,-0.22387375,-0.22373113,-0.22368374,-0.22373208,-0.22387645,-0.22411696,-0.22445362,-0.22488625,-0.22541456,-0.22603816,-0.22675654,-0.22756911,-0.22847523,-0.22947418,-0.23056518,-0.23174745,-0.23302015,-0.23438242,-0.2358334,-0.23737223,-0.23899801,-0.24070986,-0.24250688,-0.24438819,-0.24635286,-0.24839999,-0.25052863,-0.25273783,-0.25502657,-0.25739384,-0.25983854,-0.26235955,-0.26495565,-0.26762558,-0.27036798,-0.27318141,-0.27606433,-0.2790151,-0.28203198,-0.28511311,-0.28825653,-0.29146017,-0.29472182,-0.29803918,-0.30140984,-0.30483127,-0.30830085,-0.31181587,-0.31537352,-0.31897091,-0.32260511,-0.3262731,-0.32997182,-0.3336982,-0.3374491,-0.34122141,-0.34501201,-0.34881778,-0.35263565,-0.35646255,-0.3602955,-0.36413155,-0.36796783,-0.37180154,-0.37562998,-0.37945054,-0.38326069,-0.38705803,-0.39084025,-0.39460517,-0.39835072,-0.40207494,-0.40577598,-0.40945214,-0.41310181,-0.41672349,-0.42031581,-0.42387751,-0.42740742,-0.43090449,-0.43436776,-0.43779636,-0.44118952,-0.44454656,-0.44786687,-0.45114991,-0.45439522,-0.45760242,-0.46077118,-0.46390122,-0.46699232,-0.47004432,-0.47305709,-0.47603057,-0.4789647,-0.48185947,-0.48471493,-0.48753111,-0.49030809,-0.49304599,-0.49574492,-0.49840501,-0.50102641,-0.50360929,-0.5061538,-0.50866013,-0.51112845,-0.51355893,-0.51595174,-0.51830707,-0.52062506,-0.52290588,-0.52514966,-0.52735655,-0.52952666,-0.53166011,-0.53375699,-0.53581739,-0.53784136,-0.53982898,-0.54178028,-0.54369529,-0.54557405,-0.54741655,-0.54922283,-0.55099287,-0.55272669,-0.55442431,-0.55608572,-0.55771097,-0.55930009,-0.56085313,-0.56237017,-0.56385131,-0.56529667,-0.56670641,-0.56808072,-0.56941982,-0.57072399,-0.57199352,-0.57322877,-0.57443013,-0.57559804,-0.57673299,-0.5778355,-0.57890617,-0.57994561,-0.58095449,-0.58193351,-0.58288343,-0.58380502,-0.5846991,-0.58556653,-0.58640816,-0.58722488,-0.58801761,-0.58878727,-0.58953477,-0.59026104,-0.59096701,-0.59165359,-0.59232167,-0.59297215,-0.59360589,-0.59422372,-0.59482644,-0.59541483,-0.59598962,-0.59655152,-0.59710117,-0.5976392,-0.59816617,-0.59868262,-0.59918903,-0.59968585,-0.60017349,-0.6006523,-0.60112261,-0.60158471,-0.60203888,-0.60248533,-0.60292428,-0.60335591,-0.6037804,-0.60419789,-0.60460853,-0.60501247,-0.60540985,-0.6058008,-0.60618548,-0.60656404,-0.60693664,-0.60730348,-0.60766475,-0.60802068,-0.60837149,-0.60871746,-0.60905885,-0.60939597,-0.60972914,-0.6100587,-0.610385,-0.61070843,-0.61102936,-0.6113482,-0.61166533,-0.61198118,-0.61229614,-0.61261063,-0.61292503,-0.61323972,-0.61355509,-0.61387146,-0.61418918,-0.61450853,-0.61482979,-0.61515319,-0.61547892,-0.61580714,-0.61613798,-0.6164715,-0.61680774,-0.61714667,-0.61748825,-0.61783236,-0.61817886,-0.61852755],"zorder":3,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-1.1948517,-1.1829859,-1.17112,-1.1592542,-1.1473884,-1.1355225,-1.1236567,-1.1117909,-1.0999251,-1.0880592,-1.0761934,-1.0643276,-1.0524617,-1.0405959,-1.0287301,-1.0168642,-1.0049984,-0.99313258,-0.98126675,-0.96940092,-0.95753509,-0.94566926,-0.93380342,-0.92193759,-0.91007176,-0.89820593,-0.8863401,-0.87447427,-0.86260844,-0.85074261,-0.83887678,-0.82701095,-0.81514512,-0.80327929,-0.79141345,-0.77954762,-0.76768179,-0.75581596,-0.74395013,-0.7320843,-0.72021847,-0.70835264,-0.69648681,-0.68462098,-0.67275515,-0.66088931,-0.64902348,-0.63715765,-0.62529182,-0.61342599,-0.60156016,-0.58969433,-0.5778285,-0.56596267,-0.55409684,-0.54223101,-0.53036518,-0.51849934,-0.50663351,-0.49476768,-0.48290185,-0.47103602,-0.45917019,-0.44730436,-0.43543853,-0.4235727,-0.41170687,-0.39984104,-0.3879752,-0.37610937,-0.36424354,-0.35237771,-0.34051188,-0.32864605,-0.31678022,-0.30491439,-0.29304856,-0.28118273,-0.2693169,-0.25745107,-0.24558523,-0.2337194,-0.22185357,-0.20998774,-0.19812191,-0.18625608,-0.17439025,-0.16252442,-0.15065859,-0.13879276,-0.12692693,-0.1150611,-0.10319526,-0.091329433,-0.079463603,-0.067597772,-0.055731941,-0.04386611,-0.032000279,-0.020134448,-0.0082686174,0.0035972134,0.015463044,0.027328875,0.039194706,0.051060537,0.062926368,0.074792199,0.086658029,0.09852386,0.11038969,0.12225552,0.13412135,0.14598718,0.15785301,0.16971885,0.18158468,0.19345051,0.20531634,0.21718217,0.229048,0.24091383,0.25277966,0.26464549,0.27651132,0.28837715,0.30024298,0.31210882,0.32397465,0.33584048,0.34770631,0.35957214,0.37143797,0.3833038,0.39516963,0.40703546,0.41890129,0.43076712,0.44263296,0.45449879,0.46636462,0.47823045,0.49009628,0.50196211,0.51382794,0.52569377,0.5375596,0.54942543,0.56129126,0.57315709,0.58502293,0.59688876,0.60875459,0.62062042,0.63248625,0.64435208,0.65621791,0.66808374,0.67994957,0.6918154,0.70368123,0.71554707,0.7274129,0.73927873,0.75114456,0.76301039,0.77487622,0.78674205,0.79860788,0.81047371,0.82233954,0.83420537,0.8460712,0.85793704,0.86980287,0.8816687,0.89353453,0.90540036,0.91726619,0.92913202,0.94099785,0.95286368,0.96472951,0.97659534,0.98846117,1.000327,1.0121928,1.0240587,1.0359245,1.0477903,1.0596562,1.071522,1.0833878,1.0952537,1.1071195,1.1189853,1.1308511,1.142717,1.1545828,1.1664486,1.1783145,1.1901803,1.2020461,1.213912,1.2257778,1.2376436,1.2495095,1.2613753,1.2732411,1.2851069,1.2969728,1.3088386,1.3207044,1.3325703,1.3444361,1.3563019,1.3681678,1.3800336,1.3918994,1.4037653,1.4156311,1.4274969,1.4393627,1.4512286,1.4630944,1.4749602,1.4868261,1.4986919,1.5105577,1.5224236,1.5342894,1.5461552,1.5580211,1.5698869,1.5817527,1.5936185,1.6054844,1.6173502,1.629216,1.6410819,1.6529477,1.6648135,1.6766794,1.6885452,1.700411,1.7122769,1.7241427,1.7360085,1.7478743,1.7597402,1.771606,1.7834718,1.7953377,1.8072035,1.8190693,1.8309352,1.842801,1.8546668,1.8665327,1.8783985,1.8902643,1.9021302,1.913996,1.9258618,1.9377276,1.9495935,1.9614593,1.9733251,1.985191,1.9970568,2.0089226,2.0207885,2.0326543,2.0445201,2.056386,2.0682518,2.0801176,2.0919834,2.1038493,2.1157151,2.1275809,2.1394468,2.1513126,2.1631784,2.1750443,2.1869101,2.1987759,2.2106418,2.2225076,2.2343734,2.2462392,2.2581051,2.2699709,2.2818367,2.2937026,2.3055684,2.3174342,2.3293001,2.3411659,2.3530317,2.3648976,2.3767634,2.3886292,2.400495,2.4123609,2.4242267,2.4360925,2.4479584,2.4598242,2.47169,2.4835559,2.4954217,2.5072875,2.5191534,2.5310192,2.542885,2.5547508,2.5666167,2.5784825,2.5903483,2.6022142,2.61408,2.6259458,2.6378117,2.6496775,2.6615433,2.6734092,2.685275,2.6971408,2.7090066,2.7208725,2.7327383,2.7446041,2.75647,2.7683358,2.7802016,2.7920675,2.8039333,2.8157991,2.827665,2.8395308,2.8513966,2.8632625,2.8751283,2.8869941,2.8988599,2.9107258,2.9225916,2.9344574,2.9463233,2.9581891,2.9700549,2.9819208,2.9937866,3.0056524,3.0175183,3.0293841,3.0412499,3.0531157,3.0649816,3.0768474,3.0887132,3.1005791,3.1124449,3.1243107,3.1361766,3.1480424,3.1599082,3.1717741,3.1836399,3.1955057,3.2073715,3.2192374,3.2311032,3.242969,3.2548349,3.2667007,3.2785665,3.2904324,3.3022982,3.314164,3.3260299,3.3378957,3.3497615,3.3616273,3.3734932,3.385359,3.3972248,3.4090907,3.4209565,3.4328223,3.4446882,3.456554,3.4684198,3.4802857,3.4921515,3.5040173,3.5158831,3.527749,3.5396148,3.5514806,3.5633465,3.5752123,3.5870781,3.598944,3.6108098,3.6226756,3.6345415,3.6464073,3.6582731,3.6701389,3.6820048,3.6938706,3.7057364,3.7176023,3.7294681,3.7413339,3.7531998,3.7650656,3.7769314,3.7887973,3.8006631,3.8125289,3.8243948,3.8362606,3.8481264,3.8599922,3.8718581,3.8837239,3.8955897,3.9074556,3.9193214,3.9311872,3.9430531,3.9549189,3.9667847,3.9786506,3.9905164,4.0023822,4.014248,4.0261139,4.0379797,4.0498455,4.0617114,4.0735772,4.085443,4.0973089,4.1091747,4.1210405,4.1329064,4.1447722,4.156638,4.1685038,4.1803697,4.1922355,4.2041013,4.2159672,4.227833,4.2396988,4.2515647,4.2634305,4.2752963,4.2871622,4.299028,4.3108938,4.3227596,4.3346255,4.3464913,4.3583571,4.370223,4.3820888,4.3939546,4.4058205,4.4176863,4.4295521,4.441418,4.4532838,4.4651496,4.4770154,4.4888813,4.5007471,4.5126129,4.5244788,4.5363446,4.5482104,4.5600763,4.5719421,4.5838079,4.5956738,4.6075396,4.6194054,4.6312712,4.6431371,4.6550029,4.6668687,4.6787346,4.6906004,4.7024662,4.7143321,4.7261979],"y":[-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497,-0.84217497],"zorder":4,"type":"scatter"},{"customdata":[[0.0076262645],[0.0078963667],[0.0081734094],[0.0084577224],[0.0087496613],[0.009049607],[0.0093579656],[0.0096751677],[0.010001668],[0.010337945],[0.010684497],[0.011041847],[0.011410535],[0.01179112],[0.012184178],[0.012590301],[0.013010094],[0.013444172],[0.013893162],[0.014357698],[0.014838419],[0.015335967],[0.015850988],[0.016384122],[0.016936011],[0.017507286],[0.018098573],[0.018710486],[0.019343626],[0.019998576],[0.020675902],[0.021376148],[0.022099832],[0.022847447],[0.023619453],[0.024416278],[0.025238312],[0.026085906],[0.026959367],[0.027858956],[0.028784882],[0.029737304],[0.030716322],[0.031721974],[0.032754237],[0.03381302],[0.034898161],[0.036009425],[0.037146502],[0.038309],[0.039496449],[0.040708292],[0.041943889],[0.043202512],[0.044483347],[0.045785491],[0.047107952],[0.048449652],[0.04980943],[0.051186037],[0.052578147],[0.053984356],[0.055403188],[0.0568331],[0.058272489],[0.059719694],[0.061173013],[0.062630703],[0.064090992],[0.065552091],[0.067012202],[0.068469528],[0.06992229],[0.071368735],[0.072807149],[0.074235869],[0.0756533],[0.077057924],[0.078448315],[0.079823151],[0.081181228],[0.082521468],[0.083842939],[0.085144855],[0.086426598],[0.087687717],[0.088927944],[0.090147197],[0.091345588],[0.09252343],[0.093681236],[0.094819725],[0.095939824],[0.097042664],[0.098129581],[0.099202113],[0.10026199],[0.10131114],[0.10235167],[0.10338587],[0.10441617],[0.10544517],[0.10647563],[0.10751041],[0.10855249],[0.10960495],[0.11067096],[0.11175376],[0.11285663],[0.11398289],[0.11513586],[0.11631888],[0.11753526],[0.11878829],[0.12008117],[0.12141707],[0.12279904],[0.12423005],[0.12571295],[0.12725043],[0.12884507],[0.13049926],[0.13221523],[0.13399503],[0.1358405],[0.13775327],[0.13973479],[0.14178626],[0.14390864],[0.14610269],[0.14836892],[0.15070757],[0.15311868],[0.15560201],[0.1581571],[0.16078322],[0.1634794],[0.16624446],[0.16907693],[0.17197516],[0.17493724],[0.17796104],[0.18104422],[0.18418426],[0.18737839],[0.19062371],[0.1939171],[0.19725529],[0.20063486],[0.20405224],[0.20750374],[0.21098553],[0.21449371],[0.21802428],[0.22157314],[0.22513618],[0.2287092],[0.232288],[0.23586836],[0.23944605],[0.24301687],[0.24657664],[0.25012125],[0.25364664],[0.25714881],[0.26062388],[0.26406807],[0.2674777],[0.27084924],[0.2741793],[0.27746466],[0.28070223],[0.28388914],[0.28702268],[0.29010035],[0.29311984],[0.29607906],[0.29897612],[0.30180938],[0.30457739],[0.30727892],[0.309913],[0.31247884],[0.31497591],[0.31740387],[0.31976261],[0.32205221],[0.32427297],[0.32642536],[0.32851005],[0.33052789],[0.33247985],[0.33436707],[0.33619084],[0.33795254],[0.33965365],[0.34129575],[0.34288048],[0.34440952],[0.34588462],[0.34730749],[0.34867987],[0.35000348],[0.35127999],[0.35251102],[0.35369811],[0.35484272],[0.35594621],[0.35700981],[0.35803465],[0.35902168],[0.35997174],[0.36088549],[0.36176345],[0.36260595],[0.36341316],[0.36418508],[0.36492156],[0.36562225],[0.36628666],[0.36691416],[0.36750395],[0.36805511],[0.36856659],[0.36903725],[0.36946583],[0.36985101],[0.37019142],[0.37048562],[0.37073216],[0.37092958],[0.37107645],[0.37117137],[0.37121296],[0.37119996],[0.37113117],[0.3710055],[0.370822],[0.37057983],[0.37027834],[0.36991701],[0.36949552],[0.36901374],[0.36847171],[0.36786969],[0.36720814],[0.36648772],[0.36570931],[0.36487397],[0.36398299],[0.36303782],[0.36204014],[0.36099176],[0.35989471],[0.35875113],[0.35756333],[0.35633374],[0.3550649],[0.35375944],[0.35242009],[0.35104961],[0.34965084],[0.34822661],[0.34677976],[0.34531314],[0.34382956],[0.34233176],[0.34082245],[0.33930422],[0.3377796],[0.33625098],[0.33472063],[0.33319071],[0.33166318],[0.33013987],[0.32862246],[0.32711242],[0.32561105],[0.32411946],[0.3226386],[0.32116919],[0.31971177],[0.31826671],[0.31683417],[0.31541413],[0.3140064],[0.31261061],[0.31122621],[0.30985253],[0.30848871],[0.30713378],[0.30578661],[0.304446],[0.3031106],[0.30177899],[0.30044967],[0.29912106],[0.29779155],[0.29645948],[0.29512314],[0.29378084],[0.29243089],[0.29107159],[0.28970128],[0.28831834],[0.2869212],[0.28550833],[0.2840783],[0.28262974],[0.28116139],[0.27967205],[0.27816065],[0.27662622],[0.27506791],[0.27348499],[0.27187682],[0.27024292],[0.26858291],[0.26689653],[0.26518364],[0.26344423],[0.2616784],[0.25988633],[0.25806834],[0.25622482],[0.25435628],[0.25246328],[0.25054647],[0.24860657],[0.24664434],[0.2446606],[0.24265622],[0.24063207],[0.23858906],[0.23652811],[0.23445012],[0.232356],[0.23024665],[0.22812294],[0.2259857],[0.22383573],[0.22167379],[0.21950059],[0.21731679],[0.215123],[0.21291977],[0.21070758],[0.20848689],[0.20625805],[0.20402141],[0.20177723],[0.19952573],[0.19726709],[0.19500145],[0.19272892],[0.19044956],[0.18816344],[0.18587059],[0.18357104],[0.18126482],[0.17895197],[0.17663253],[0.17430659],[0.17197424],[0.16963561],[0.1672909],[0.16494032],[0.16258415],[0.16022274],[0.1578565],[0.15548587],[0.15311142],[0.15073374],[0.14835353],[0.14597153],[0.14358858],[0.14120559],[0.13882352],[0.13644343],[0.13406642],[0.13169365],[0.12932637],[0.12696585],[0.12461342],[0.12227045],[0.11993835],[0.11761855],[0.11531251],[0.11302169],[0.11074758],[0.10849166],[0.10625539],[0.10404023],[0.10184763],[0.099678978],[0.097535654],[0.095418984],[0.093330246],[0.091270666],[0.089241405],[0.087243558],[0.085278151],[0.08334613],[0.081448363],[0.079585631],[0.077758629],[0.07596796],[0.074214136],[0.072497571],[0.070818585],[0.0691774],[0.067574143],[0.066008841],[0.064481426],[0.062991737],[0.061539516],[0.060124419],[0.058746009],[0.05740377],[0.056097099],[0.054825322],[0.053587688],[0.052383383],[0.051211526],[0.050071184],[0.048961371],[0.047881058],[0.046829176],[0.045804627],[0.044806286],[0.04383301],[0.042883646],[0.041957033],[0.041052016],[0.040167445],[0.039302186],[0.038455126],[0.037625179],[0.036811291],[0.036012446],[0.03522767],[0.034456038],[0.033696676],[0.032948762],[0.032211537],[0.031484298],[0.030766407],[0.030057292],[0.029356443],[0.028663418],[0.027977841],[0.027299399],[0.026627846],[0.025962996],[0.025304726],[0.024652968],[0.024007712],[0.023368997],[0.022736912],[0.022111589],[0.021493201],[0.020881956],[0.020278093],[0.019681878],[0.019093597],[0.018513554],[0.017942065],[0.017379453],[0.016826044],[0.016282164],[0.015748129],[0.015224249],[0.014710819],[0.014208117],[0.0137164],[0.013235903],[0.012766835],[0.012309377],[0.011863681],[0.011429867],[0.011008024],[0.010598209],[0.010200446],[0.0098147238],[0.0094410019],[0.0090792065],[0.0087292335],[0.0083909493],[0.0080641924],[0.007748775],[0.0074444851],[0.0071510887],[0.0068683316],[0.0065959422],[0.0063336335],[0.0060811058],[0.005838049],[0.005604145],[0.0053790704],[0.0051624982]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"rgb(50.64016, 4.69823, 150.84849)"],[0.0626523936974259,"#46039f"],[0.24711601987990825,"#7201a8"],[0.4315796460623907,"#9c179e"],[0.616043272244873,"#bd3786"],[0.8005068984290156,"#d8576b"],[0.984970524611498,"#ed7953"],[1.0,"rgb(238.14067, 124.09611, 80.96308)"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Trace 5","x":[-1.1948517,-1.1829859,-1.17112,-1.1592542,-1.1473884,-1.1355225,-1.1236567,-1.1117909,-1.0999251,-1.0880592,-1.0761934,-1.0643276,-1.0524617,-1.0405959,-1.0287301,-1.0168642,-1.0049984,-0.99313258,-0.98126675,-0.96940092,-0.95753509,-0.94566926,-0.93380342,-0.92193759,-0.91007176,-0.89820593,-0.8863401,-0.87447427,-0.86260844,-0.85074261,-0.83887678,-0.82701095,-0.81514512,-0.80327929,-0.79141345,-0.77954762,-0.76768179,-0.75581596,-0.74395013,-0.7320843,-0.72021847,-0.70835264,-0.69648681,-0.68462098,-0.67275515,-0.66088931,-0.64902348,-0.63715765,-0.62529182,-0.61342599,-0.60156016,-0.58969433,-0.5778285,-0.56596267,-0.55409684,-0.54223101,-0.53036518,-0.51849934,-0.50663351,-0.49476768,-0.48290185,-0.47103602,-0.45917019,-0.44730436,-0.43543853,-0.4235727,-0.41170687,-0.39984104,-0.3879752,-0.37610937,-0.36424354,-0.35237771,-0.34051188,-0.32864605,-0.31678022,-0.30491439,-0.29304856,-0.28118273,-0.2693169,-0.25745107,-0.24558523,-0.2337194,-0.22185357,-0.20998774,-0.19812191,-0.18625608,-0.17439025,-0.16252442,-0.15065859,-0.13879276,-0.12692693,-0.1150611,-0.10319526,-0.091329433,-0.079463603,-0.067597772,-0.055731941,-0.04386611,-0.032000279,-0.020134448,-0.0082686174,0.0035972134,0.015463044,0.027328875,0.039194706,0.051060537,0.062926368,0.074792199,0.086658029,0.09852386,0.11038969,0.12225552,0.13412135,0.14598718,0.15785301,0.16971885,0.18158468,0.19345051,0.20531634,0.21718217,0.229048,0.24091383,0.25277966,0.26464549,0.27651132,0.28837715,0.30024298,0.31210882,0.32397465,0.33584048,0.34770631,0.35957214,0.37143797,0.3833038,0.39516963,0.40703546,0.41890129,0.43076712,0.44263296,0.45449879,0.46636462,0.47823045,0.49009628,0.50196211,0.51382794,0.52569377,0.5375596,0.54942543,0.56129126,0.57315709,0.58502293,0.59688876,0.60875459,0.62062042,0.63248625,0.64435208,0.65621791,0.66808374,0.67994957,0.6918154,0.70368123,0.71554707,0.7274129,0.73927873,0.75114456,0.76301039,0.77487622,0.78674205,0.79860788,0.81047371,0.82233954,0.83420537,0.8460712,0.85793704,0.86980287,0.8816687,0.89353453,0.90540036,0.91726619,0.92913202,0.94099785,0.95286368,0.96472951,0.97659534,0.98846117,1.000327,1.0121928,1.0240587,1.0359245,1.0477903,1.0596562,1.071522,1.0833878,1.0952537,1.1071195,1.1189853,1.1308511,1.142717,1.1545828,1.1664486,1.1783145,1.1901803,1.2020461,1.213912,1.2257778,1.2376436,1.2495095,1.2613753,1.2732411,1.2851069,1.2969728,1.3088386,1.3207044,1.3325703,1.3444361,1.3563019,1.3681678,1.3800336,1.3918994,1.4037653,1.4156311,1.4274969,1.4393627,1.4512286,1.4630944,1.4749602,1.4868261,1.4986919,1.5105577,1.5224236,1.5342894,1.5461552,1.5580211,1.5698869,1.5817527,1.5936185,1.6054844,1.6173502,1.629216,1.6410819,1.6529477,1.6648135,1.6766794,1.6885452,1.700411,1.7122769,1.7241427,1.7360085,1.7478743,1.7597402,1.771606,1.7834718,1.7953377,1.8072035,1.8190693,1.8309352,1.842801,1.8546668,1.8665327,1.8783985,1.8902643,1.9021302,1.913996,1.9258618,1.9377276,1.9495935,1.9614593,1.9733251,1.985191,1.9970568,2.0089226,2.0207885,2.0326543,2.0445201,2.056386,2.0682518,2.0801176,2.0919834,2.1038493,2.1157151,2.1275809,2.1394468,2.1513126,2.1631784,2.1750443,2.1869101,2.1987759,2.2106418,2.2225076,2.2343734,2.2462392,2.2581051,2.2699709,2.2818367,2.2937026,2.3055684,2.3174342,2.3293001,2.3411659,2.3530317,2.3648976,2.3767634,2.3886292,2.400495,2.4123609,2.4242267,2.4360925,2.4479584,2.4598242,2.47169,2.4835559,2.4954217,2.5072875,2.5191534,2.5310192,2.542885,2.5547508,2.5666167,2.5784825,2.5903483,2.6022142,2.61408,2.6259458,2.6378117,2.6496775,2.6615433,2.6734092,2.685275,2.6971408,2.7090066,2.7208725,2.7327383,2.7446041,2.75647,2.7683358,2.7802016,2.7920675,2.8039333,2.8157991,2.827665,2.8395308,2.8513966,2.8632625,2.8751283,2.8869941,2.8988599,2.9107258,2.9225916,2.9344574,2.9463233,2.9581891,2.9700549,2.9819208,2.9937866,3.0056524,3.0175183,3.0293841,3.0412499,3.0531157,3.0649816,3.0768474,3.0887132,3.1005791,3.1124449,3.1243107,3.1361766,3.1480424,3.1599082,3.1717741,3.1836399,3.1955057,3.2073715,3.2192374,3.2311032,3.242969,3.2548349,3.2667007,3.2785665,3.2904324,3.3022982,3.314164,3.3260299,3.3378957,3.3497615,3.3616273,3.3734932,3.385359,3.3972248,3.4090907,3.4209565,3.4328223,3.4446882,3.456554,3.4684198,3.4802857,3.4921515,3.5040173,3.5158831,3.527749,3.5396148,3.5514806,3.5633465,3.5752123,3.5870781,3.598944,3.6108098,3.6226756,3.6345415,3.6464073,3.6582731,3.6701389,3.6820048,3.6938706,3.7057364,3.7176023,3.7294681,3.7413339,3.7531998,3.7650656,3.7769314,3.7887973,3.8006631,3.8125289,3.8243948,3.8362606,3.8481264,3.8599922,3.8718581,3.8837239,3.8955897,3.9074556,3.9193214,3.9311872,3.9430531,3.9549189,3.9667847,3.9786506,3.9905164,4.0023822,4.014248,4.0261139,4.0379797,4.0498455,4.0617114,4.0735772,4.085443,4.0973089,4.1091747,4.1210405,4.1329064,4.1447722,4.156638,4.1685038,4.1803697,4.1922355,4.2041013,4.2159672,4.227833,4.2396988,4.2515647,4.2634305,4.2752963,4.2871622,4.299028,4.3108938,4.3227596,4.3346255,4.3464913,4.3583571,4.370223,4.3820888,4.3939546,4.4058205,4.4176863,4.4295521,4.441418,4.4532838,4.4651496,4.4770154,4.4888813,4.5007471,4.5126129,4.5244788,4.5363446,4.5482104,4.5600763,4.5719421,4.5838079,4.5956738,4.6075396,4.6194054,4.6312712,4.6431371,4.6550029,4.6668687,4.6787346,4.6906004,4.7024662,4.7143321,4.7261979],"y":[-0.8345487,-0.8342786,-0.83400156,-0.83371725,-0.83342531,-0.83312536,-0.832817,-0.8324998,-0.8321733,-0.83183702,-0.83149047,-0.83113312,-0.83076443,-0.83038385,-0.82999079,-0.82958467,-0.82916487,-0.8287308,-0.82828181,-0.82781727,-0.82733655,-0.826839,-0.82632398,-0.82579085,-0.82523896,-0.82466768,-0.82407639,-0.82346448,-0.82283134,-0.82217639,-0.82149907,-0.82079882,-0.82007514,-0.81932752,-0.81855551,-0.81775869,-0.81693666,-0.81608906,-0.8152156,-0.81431601,-0.81339009,-0.81243766,-0.81145865,-0.81045299,-0.80942073,-0.80836195,-0.80727681,-0.80616554,-0.80502847,-0.80386597,-0.80267852,-0.80146668,-0.80023108,-0.79897246,-0.79769162,-0.79638948,-0.79506702,-0.79372532,-0.79236554,-0.79098893,-0.78959682,-0.78819061,-0.78677178,-0.78534187,-0.78390248,-0.78245527,-0.78100195,-0.77954426,-0.77808398,-0.77662288,-0.77516277,-0.77370544,-0.77225268,-0.77080623,-0.76936782,-0.7679391,-0.76652167,-0.76511704,-0.76372665,-0.76235182,-0.76099374,-0.7596535,-0.75833203,-0.75703011,-0.75574837,-0.75448725,-0.75324702,-0.75202777,-0.75082938,-0.74965154,-0.74849373,-0.74735524,-0.74623514,-0.7451323,-0.74404539,-0.74297286,-0.74191298,-0.74086382,-0.73982329,-0.7387891,-0.7377588,-0.73672979,-0.73569934,-0.73466456,-0.73362248,-0.73257002,-0.731504,-0.7304212,-0.72931834,-0.72819208,-0.72703911,-0.72585609,-0.72463971,-0.72338668,-0.7220938,-0.7207579,-0.71937593,-0.71794492,-0.71646202,-0.71492454,-0.7133299,-0.71167571,-0.70995973,-0.70817994,-0.70633447,-0.70442169,-0.70244018,-0.70038871,-0.69826633,-0.69607228,-0.69380605,-0.6914674,-0.68905629,-0.68657295,-0.68401787,-0.68139175,-0.67869556,-0.67593051,-0.67309803,-0.67019981,-0.66723773,-0.66421393,-0.66113074,-0.65799071,-0.65479657,-0.65155126,-0.64825787,-0.64491968,-0.64154011,-0.63812273,-0.63467123,-0.63118944,-0.62768126,-0.62415069,-0.62060182,-0.61703879,-0.61346577,-0.60988696,-0.60630661,-0.60272892,-0.5991581,-0.59559833,-0.59205371,-0.58852833,-0.58502616,-0.58155108,-0.5781069,-0.57469727,-0.57132573,-0.56799566,-0.56471031,-0.56147274,-0.55828583,-0.55515229,-0.55207462,-0.54905513,-0.54609591,-0.54319884,-0.54036559,-0.53759758,-0.53489605,-0.53226197,-0.52969612,-0.52719906,-0.5247711,-0.52241236,-0.52012276,-0.517902,-0.51574961,-0.51366491,-0.51164708,-0.50969512,-0.50780789,-0.50598413,-0.50422243,-0.50252132,-0.50087922,-0.49929449,-0.49776544,-0.49629035,-0.49486748,-0.4934951,-0.49217148,-0.49089497,-0.48966395,-0.48847686,-0.48733225,-0.48622876,-0.48516515,-0.48414032,-0.48315329,-0.48220323,-0.48128947,-0.48041152,-0.47956902,-0.47876181,-0.47798988,-0.47725341,-0.47655272,-0.47588831,-0.47526081,-0.47467102,-0.47411986,-0.47360838,-0.47313772,-0.47270914,-0.47232395,-0.47198355,-0.47168935,-0.47144281,-0.47124539,-0.47109851,-0.4710036,-0.470962,-0.470975,-0.4710438,-0.47116946,-0.47135297,-0.47159513,-0.47189663,-0.47225796,-0.47267944,-0.47316123,-0.47370326,-0.47430528,-0.47496683,-0.47568724,-0.47646566,-0.477301,-0.47819198,-0.47913715,-0.48013483,-0.4811832,-0.48228026,-0.48342384,-0.48461164,-0.48584123,-0.48711007,-0.48841553,-0.48975488,-0.49112535,-0.49252413,-0.49394836,-0.49539521,-0.49686182,-0.49834541,-0.49984321,-0.50135252,-0.50287075,-0.50439537,-0.50592399,-0.50745433,-0.50898426,-0.51051179,-0.51203509,-0.51355251,-0.51506255,-0.51656392,-0.5180555,-0.51953637,-0.52100578,-0.5224632,-0.52390826,-0.5253408,-0.52676084,-0.52816857,-0.52956436,-0.53094875,-0.53232244,-0.53368626,-0.53504119,-0.53638835,-0.53772897,-0.53906437,-0.54039598,-0.5417253,-0.5430539,-0.54438341,-0.54571549,-0.54705183,-0.54839412,-0.54974408,-0.55110338,-0.55247369,-0.55385663,-0.55525377,-0.55666664,-0.55809667,-0.55954522,-0.56101358,-0.56250292,-0.56401432,-0.56554875,-0.56710705,-0.56868998,-0.57029815,-0.57193205,-0.57359206,-0.57527844,-0.57699132,-0.57873073,-0.58049657,-0.58228864,-0.58410663,-0.58595015,-0.58781869,-0.58971169,-0.5916285,-0.5935684,-0.59553063,-0.59751436,-0.59951875,-0.6015429,-0.6035859,-0.60564686,-0.60772485,-0.60981897,-0.61192831,-0.61405203,-0.61618927,-0.61833924,-0.62050118,-0.62267438,-0.62485818,-0.62705197,-0.6292552,-0.63146738,-0.63368808,-0.63591691,-0.63815356,-0.64039774,-0.64264924,-0.64490788,-0.64717352,-0.64944605,-0.6517254,-0.65401153,-0.65630438,-0.65860393,-0.66091015,-0.663223,-0.66554244,-0.66786838,-0.67020073,-0.67253936,-0.67488407,-0.67723465,-0.67959082,-0.68195222,-0.68431847,-0.68668909,-0.68906355,-0.69144122,-0.69382144,-0.69620344,-0.69858638,-0.70096938,-0.70335144,-0.70573154,-0.70810855,-0.71048132,-0.7128486,-0.71520912,-0.71756155,-0.71990452,-0.72223662,-0.72455642,-0.72686246,-0.72915328,-0.73142739,-0.73368331,-0.73591958,-0.73813473,-0.74032734,-0.74249599,-0.74463931,-0.74675598,-0.74884472,-0.7509043,-0.75293356,-0.75493141,-0.75689682,-0.75882884,-0.7607266,-0.76258934,-0.76441634,-0.76620701,-0.76796083,-0.7696774,-0.77135638,-0.77299757,-0.77460082,-0.77616613,-0.77769354,-0.77918323,-0.78063545,-0.78205055,-0.78342896,-0.7847712,-0.78607787,-0.78734965,-0.78858728,-0.78979159,-0.79096344,-0.79210378,-0.7932136,-0.79429391,-0.79534579,-0.79637034,-0.79736868,-0.79834196,-0.79929132,-0.80021793,-0.80112295,-0.80200752,-0.80287278,-0.80371984,-0.80454979,-0.80536368,-0.80616252,-0.8069473,-0.80771893,-0.80847829,-0.80922621,-0.80996343,-0.81069067,-0.81140856,-0.81211768,-0.81281853,-0.81351155,-0.81419713,-0.81487557,-0.81554712,-0.81621197,-0.81687024,-0.817522,-0.81816726,-0.81880597,-0.81943806,-0.82006338,-0.82068177,-0.82129301,-0.82189687,-0.82249309,-0.82308137,-0.82366141,-0.8242329,-0.82479552,-0.82534892,-0.8258928,-0.82642684,-0.82695072,-0.82746415,-0.82796685,-0.82845857,-0.82893906,-0.82940813,-0.82986559,-0.83031129,-0.8307451,-0.83116694,-0.83157676,-0.83197452,-0.83236024,-0.83273397,-0.83309576,-0.83344573,-0.83378402,-0.83411078,-0.83442619,-0.83473048,-0.83502388,-0.83530664,-0.83557903,-0.83584133,-0.83609386,-0.83633692,-0.83657082,-0.8367959,-0.83701247],"zorder":4,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-1.9161021,-1.9044028,-1.8927035,-1.8810042,-1.8693049,-1.8576056,-1.8459063,-1.834207,-1.8225077,-1.8108084,-1.7991091,-1.7874098,-1.7757105,-1.7640112,-1.7523119,-1.7406126,-1.7289134,-1.7172141,-1.7055148,-1.6938155,-1.6821162,-1.6704169,-1.6587176,-1.6470183,-1.635319,-1.6236197,-1.6119204,-1.6002211,-1.5885218,-1.5768225,-1.5651232,-1.5534239,-1.5417247,-1.5300254,-1.5183261,-1.5066268,-1.4949275,-1.4832282,-1.4715289,-1.4598296,-1.4481303,-1.436431,-1.4247317,-1.4130324,-1.4013331,-1.3896338,-1.3779345,-1.3662352,-1.354536,-1.3428367,-1.3311374,-1.3194381,-1.3077388,-1.2960395,-1.2843402,-1.2726409,-1.2609416,-1.2492423,-1.237543,-1.2258437,-1.2141444,-1.2024451,-1.1907458,-1.1790465,-1.1673473,-1.155648,-1.1439487,-1.1322494,-1.1205501,-1.1088508,-1.0971515,-1.0854522,-1.0737529,-1.0620536,-1.0503543,-1.038655,-1.0269557,-1.0152564,-1.0035571,-0.99185785,-0.98015855,-0.96845926,-0.95675997,-0.94506067,-0.93336138,-0.92166208,-0.90996279,-0.8982635,-0.8865642,-0.87486491,-0.86316562,-0.85146632,-0.83976703,-0.82806773,-0.81636844,-0.80466915,-0.79296985,-0.78127056,-0.76957127,-0.75787197,-0.74617268,-0.73447338,-0.72277409,-0.7110748,-0.6993755,-0.68767621,-0.67597692,-0.66427762,-0.65257833,-0.64087903,-0.62917974,-0.61748045,-0.60578115,-0.59408186,-0.58238257,-0.57068327,-0.55898398,-0.54728468,-0.53558539,-0.5238861,-0.5121868,-0.50048751,-0.48878822,-0.47708892,-0.46538963,-0.45369033,-0.44199104,-0.43029175,-0.41859245,-0.40689316,-0.39519387,-0.38349457,-0.37179528,-0.36009598,-0.34839669,-0.3366974,-0.3249981,-0.31329881,-0.30159952,-0.28990022,-0.27820093,-0.26650163,-0.25480234,-0.24310305,-0.23140375,-0.21970446,-0.20800517,-0.19630587,-0.18460658,-0.17290728,-0.16120799,-0.1495087,-0.1378094,-0.12611011,-0.11441082,-0.10271152,-0.091012228,-0.079312934,-0.06761364,-0.055914347,-0.044215053,-0.032515759,-0.020816465,-0.0091171716,0.0025821222,0.014281416,0.02598071,0.037680003,0.049379297,0.061078591,0.072777885,0.084477178,0.096176472,0.10787577,0.11957506,0.13127435,0.14297365,0.15467294,0.16637223,0.17807153,0.18977082,0.20147012,0.21316941,0.2248687,0.236568,0.24826729,0.25996658,0.27166588,0.28336517,0.29506447,0.30676376,0.31846305,0.33016235,0.34186164,0.35356093,0.36526023,0.37695952,0.38865882,0.40035811,0.4120574,0.4237567,0.43545599,0.44715528,0.45885458,0.47055387,0.48225317,0.49395246,0.50565175,0.51735105,0.52905034,0.54074963,0.55244893,0.56414822,0.57584752,0.58754681,0.5992461,0.6109454,0.62264469,0.63434398,0.64604328,0.65774257,0.66944187,0.68114116,0.69284045,0.70453975,0.71623904,0.72793833,0.73963763,0.75133692,0.76303622,0.77473551,0.7864348,0.7981341,0.80983339,0.82153268,0.83323198,0.84493127,0.85663057,0.86832986,0.88002915,0.89172845,0.90342774,0.91512703,0.92682633,0.93852562,0.95022492,0.96192421,0.9736235,0.9853228,0.99702209,1.0087214,1.0204207,1.03212,1.0438193,1.0555186,1.0672179,1.0789171,1.0906164,1.1023157,1.114015,1.1257143,1.1374136,1.1491129,1.1608122,1.1725115,1.1842108,1.1959101,1.2076094,1.2193087,1.231008,1.2427073,1.2544066,1.2661058,1.2778051,1.2895044,1.3012037,1.312903,1.3246023,1.3363016,1.3480009,1.3597002,1.3713995,1.3830988,1.3947981,1.4064974,1.4181967,1.429896,1.4415953,1.4532945,1.4649938,1.4766931,1.4883924,1.5000917,1.511791,1.5234903,1.5351896,1.5468889,1.5585882,1.5702875,1.5819868,1.5936861,1.6053854,1.6170847,1.628784,1.6404832,1.6521825,1.6638818,1.6755811,1.6872804,1.6989797,1.710679,1.7223783,1.7340776,1.7457769,1.7574762,1.7691755,1.7808748,1.7925741,1.8042734,1.8159727,1.8276719,1.8393712,1.8510705,1.8627698,1.8744691,1.8861684,1.8978677,1.909567,1.9212663,1.9329656,1.9446649,1.9563642,1.9680635,1.9797628,1.9914621,2.0031614,2.0148606,2.0265599,2.0382592,2.0499585,2.0616578,2.0733571,2.0850564,2.0967557,2.108455,2.1201543,2.1318536,2.1435529,2.1552522,2.1669515,2.1786508,2.1903501,2.2020493,2.2137486,2.2254479,2.2371472,2.2488465,2.2605458,2.2722451,2.2839444,2.2956437,2.307343,2.3190423,2.3307416,2.3424409,2.3541402,2.3658395,2.3775388,2.389238,2.4009373,2.4126366,2.4243359,2.4360352,2.4477345,2.4594338,2.4711331,2.4828324,2.4945317,2.506231,2.5179303,2.5296296,2.5413289,2.5530282,2.5647275,2.5764267,2.588126,2.5998253,2.6115246,2.6232239,2.6349232,2.6466225,2.6583218,2.6700211,2.6817204,2.6934197,2.705119,2.7168183,2.7285176,2.7402169,2.7519162,2.7636154,2.7753147,2.787014,2.7987133,2.8104126,2.8221119,2.8338112,2.8455105,2.8572098,2.8689091,2.8806084,2.8923077,2.904007,2.9157063,2.9274056,2.9391049,2.9508041,2.9625034,2.9742027,2.985902,2.9976013,3.0093006,3.0209999,3.0326992,3.0443985,3.0560978,3.0677971,3.0794964,3.0911957,3.102895,3.1145943,3.1262936,3.1379928,3.1496921,3.1613914,3.1730907,3.18479,3.1964893,3.2081886,3.2198879,3.2315872,3.2432865,3.2549858,3.2666851,3.2783844,3.2900837,3.301783,3.3134823,3.3251815,3.3368808,3.3485801,3.3602794,3.3719787,3.383678,3.3953773,3.4070766,3.4187759,3.4304752,3.4421745,3.4538738,3.4655731,3.4772724,3.4889717,3.500671,3.5123702,3.5240695,3.5357688,3.5474681,3.5591674,3.5708667,3.582566,3.5942653,3.6059646,3.6176639,3.6293632,3.6410625,3.6527618,3.6644611,3.6761604,3.6878597,3.6995589,3.7112582,3.7229575,3.7346568,3.7463561,3.7580554,3.7697547,3.781454,3.7931533,3.8048526,3.8165519,3.8282512,3.8399505,3.8516498,3.8633491,3.8750484,3.8867476,3.8984469,3.9101462,3.9218455],"y":[-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187,-1.0527187],"zorder":5,"type":"scatter"},{"customdata":[[0.0063643275],[0.0065329146],[0.0067053219],[0.0068821252],[0.0070639465],[0.0072514519],[0.007445349],[0.0076463841],[0.0078553385],[0.0080730249],[0.0083002834],[0.0085379768],[0.0087869861],[0.0090482057],[0.0093225382],[0.0096108891],[0.0099141622],[0.010233253],[0.010569047],[0.010922408],[0.011294182],[0.011685184],[0.0120962],[0.012527979],[0.012981234],[0.01345663],[0.013954793],[0.014476295],[0.015021665],[0.015591376],[0.016185852],[0.016805464],[0.017450532],[0.018121326],[0.018818065],[0.01954092],[0.02029002],[0.021065448],[0.021867251],[0.022695436],[0.023549983],[0.024430841],[0.025337938],[0.026271182],[0.027230469],[0.028215684],[0.029226708],[0.030263423],[0.031325716],[0.032413483],[0.033526634],[0.034665094],[0.035828811],[0.037017755],[0.038231924],[0.039471344],[0.040736068],[0.042026184],[0.043341808],[0.04468309],[0.046050207],[0.047443367],[0.048862804],[0.050308777],[0.051781565],[0.053281464],[0.054808782],[0.056363838],[0.057946949],[0.059558433],[0.061198597],[0.062867732],[0.064566108],[0.066293966],[0.068051514],[0.069838915],[0.071656285],[0.073503685],[0.075381116],[0.077288511],[0.079225732],[0.081192563],[0.083188709],[0.085213788],[0.087267331],[0.089348781],[0.091457487],[0.093592709],[0.095753615],[0.097939281],[0.1001487],[0.10238077],[0.10463433],[0.10690812],[0.10920083],[0.11151106],[0.11383739],[0.11617832],[0.11853234],[0.12089788],[0.12327338],[0.12565725],[0.12804792],[0.13044382],[0.13284339],[0.13524513],[0.13764756],[0.14004928],[0.14244893],[0.14484524],[0.14723701],[0.14962313],[0.1520026],[0.15437452],[0.15673809],[0.15909263],[0.16143758],[0.16377249],[0.16609705],[0.16841105],[0.17071442],[0.17300717],[0.17528948],[0.17756159],[0.17982387],[0.18207678],[0.18432087],[0.18655679],[0.18878523],[0.19100699],[0.19322289],[0.19543381],[0.19764066],[0.19984439],[0.20204594],[0.20424629],[0.20644638],[0.20864715],[0.21084953],[0.21305439],[0.21526259],[0.21747491],[0.2196921],[0.22191485],[0.22414376],[0.22637938],[0.22862218],[0.23087256],[0.23313083],[0.23539722],[0.23767189],[0.23995492],[0.24224628],[0.2445459],[0.24685361],[0.24916916],[0.25149225],[0.25382249],[0.25615942],[0.25850252],[0.26085121],[0.26320486],[0.26556275],[0.26792415],[0.27028823],[0.27265415],[0.27502101],[0.27738786],[0.27975372],[0.28211754],[0.28447826],[0.28683476],[0.28918591],[0.29153053],[0.29386738],[0.29619523],[0.29851279],[0.30081876],[0.30311179],[0.30539053],[0.30765358],[0.30989955],[0.31212701],[0.31433454],[0.31652068],[0.31868401],[0.32082307],[0.32293643],[0.32502268],[0.32708041],[0.32910826],[0.33110487],[0.33306896],[0.33499927],[0.33689462],[0.33875386],[0.34057594],[0.34235986],[0.34410473],[0.34580974],[0.34747415],[0.34909735],[0.35067883],[0.35221816],[0.35371505],[0.35516929],[0.35658082],[0.35794964],[0.3592759],[0.36055984],[0.3618018],[0.36300223],[0.36416164],[0.36528067],[0.36636001],[0.36740042],[0.36840275],[0.36936786],[0.3702967],[0.3711902],[0.37204936],[0.37287517],[0.37366862],[0.37443069],[0.37516235],[0.37586453],[0.37653812],[0.37718397],[0.37780286],[0.3783955],[0.37896255],[0.37950457],[0.38002203],[0.38051532],[0.38098474],[0.38143046],[0.38185258],[0.3822511],[0.38262588],[0.38297671],[0.38330327],[0.38360514],[0.38388179],[0.38413262],[0.38435693],[0.38455392],[0.38472273],[0.38486242],[0.38497199],[0.38505038],[0.38509646],[0.38510909],[0.38508705],[0.38502913],[0.38493408],[0.38480064],[0.38462755],[0.38441355],[0.38415741],[0.38385789],[0.38351381],[0.383124],[0.38268735],[0.38220279],[0.38166932],[0.38108599],[0.38045192],[0.3797663],[0.3790284],[0.37823756],[0.37739322],[0.37649487],[0.37554213],[0.37453466],[0.37347223],[0.37235468],[0.37118193],[0.36995399],[0.36867092],[0.36733285],[0.36593999],[0.3644926],[0.36299096],[0.36143543],[0.35982639],[0.35816423],[0.35644938],[0.35468227],[0.35286333],[0.350993],[0.34907168],[0.34709977],[0.34507763],[0.34300561],[0.340884],[0.33871306],[0.33649299],[0.33422397],[0.33190612],[0.32953951],[0.32712418],[0.32466012],[0.32214729],[0.31958562],[0.31697501],[0.31431537],[0.31160658],[0.30884855],[0.30604119],[0.30318446],[0.30027835],[0.29732292],[0.2943183],[0.2912647],[0.28816243],[0.28501193],[0.28181375],[0.27856858],[0.27527727],[0.27194083],[0.26856043],[0.26513743],[0.26167337],[0.25816997],[0.25462916],[0.25105304],[0.24744393],[0.24380432],[0.24013689],[0.23644448],[0.23273014],[0.22899705],[0.22524854],[0.22148808],[0.21771925],[0.21394576],[0.21017138],[0.20639995],[0.20263537],[0.19888157],[0.19514247],[0.191422],[0.18772405],[0.18405246],[0.18041101],[0.17680336],[0.1732331],[0.16970368],[0.16621839],[0.1627804],[0.15939267],[0.15605801],[0.15277902],[0.14955808],[0.14639739],[0.1432989],[0.14026436],[0.13729527],[0.13439291],[0.13155831],[0.1287923],[0.12609544],[0.12346809],[0.12091039],[0.11842222],[0.1160033],[0.1136531],[0.11137093],[0.10915587],[0.10700686],[0.10492264],[0.10290181],[0.1009428],[0.099043923],[0.097203357],[0.095419166],[0.09368931],[0.092011664],[0.09038402],[0.088804108],[0.087269603],[0.085778141],[0.084327328],[0.082914755],[0.081538009],[0.080194684],[0.078882393],[0.077598781],[0.076341534],[0.075108391],[0.073897155],[0.0727057],[0.071531984],[0.070374055],[0.069230062],[0.06809826],[0.066977018],[0.065864828],[0.064760304],[0.063662194],[0.062569378],[0.061480874],[0.060395838],[0.059313569],[0.058233502],[0.057155213],[0.056078417],[0.05500296],[0.05392882],[0.0528561],[0.051785026],[0.050715934],[0.049649268],[0.048585572],[0.04752548],[0.046469705],[0.045419036],[0.044374321],[0.043336462],[0.042306401],[0.041285114],[0.040273598],[0.039272859],[0.038283908],[0.037307745],[0.036345355],[0.035397695],[0.034465689],[0.03355022],[0.032652122],[0.031772174],[0.030911096],[0.030069542],[0.0292481],[0.028447285],[0.027667537],[0.026909225],[0.026172638],[0.025457992],[0.024765427],[0.024095008],[0.02344673],[0.022820518],[0.02221623],[0.021633661],[0.021072547],[0.020532567],[0.020013351],[0.019514478],[0.019035487],[0.018575877],[0.018135113],[0.017712632],[0.017307843],[0.016920134],[0.016548875],[0.016193423],[0.015853124],[0.015527315],[0.015215329],[0.014916499],[0.014630157],[0.014355635],[0.014092275],[0.01383942],[0.013596424],[0.013362649],[0.013137467],[0.012920261],[0.012710426],[0.012507369],[0.012310513],[0.012119292],[0.011933156],[0.011751571],[0.011574018],[0.011399994],[0.011229014],[0.011060609],[0.010894331],[0.01072975],[0.010566454],[0.010404056],[0.010242186],[0.010080501],[0.009918676],[0.0097564149],[0.0095934445],[0.0094295174],[0.0092644134],[0.0090979389],[0.0089299286],[0.0087602454],[0.0085887806],[0.0084154548],[0.0082402173],[0.0080630464],[0.0078839491],[0.0077029605],[0.0075201435]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"rgb(13, 8, 135)"],[0.18708942907084045,"#46039f"],[0.3741788581416809,"#7201a8"],[0.5612682872125214,"#9c179e"],[0.7483577162833618,"#bd3786"],[0.935447145355886,"#d8576b"],[1.0,"rgb(223.24579, 98.73127, 98.7191)"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Trace 6","x":[-1.9161021,-1.9044028,-1.8927035,-1.8810042,-1.8693049,-1.8576056,-1.8459063,-1.834207,-1.8225077,-1.8108084,-1.7991091,-1.7874098,-1.7757105,-1.7640112,-1.7523119,-1.7406126,-1.7289134,-1.7172141,-1.7055148,-1.6938155,-1.6821162,-1.6704169,-1.6587176,-1.6470183,-1.635319,-1.6236197,-1.6119204,-1.6002211,-1.5885218,-1.5768225,-1.5651232,-1.5534239,-1.5417247,-1.5300254,-1.5183261,-1.5066268,-1.4949275,-1.4832282,-1.4715289,-1.4598296,-1.4481303,-1.436431,-1.4247317,-1.4130324,-1.4013331,-1.3896338,-1.3779345,-1.3662352,-1.354536,-1.3428367,-1.3311374,-1.3194381,-1.3077388,-1.2960395,-1.2843402,-1.2726409,-1.2609416,-1.2492423,-1.237543,-1.2258437,-1.2141444,-1.2024451,-1.1907458,-1.1790465,-1.1673473,-1.155648,-1.1439487,-1.1322494,-1.1205501,-1.1088508,-1.0971515,-1.0854522,-1.0737529,-1.0620536,-1.0503543,-1.038655,-1.0269557,-1.0152564,-1.0035571,-0.99185785,-0.98015855,-0.96845926,-0.95675997,-0.94506067,-0.93336138,-0.92166208,-0.90996279,-0.8982635,-0.8865642,-0.87486491,-0.86316562,-0.85146632,-0.83976703,-0.82806773,-0.81636844,-0.80466915,-0.79296985,-0.78127056,-0.76957127,-0.75787197,-0.74617268,-0.73447338,-0.72277409,-0.7110748,-0.6993755,-0.68767621,-0.67597692,-0.66427762,-0.65257833,-0.64087903,-0.62917974,-0.61748045,-0.60578115,-0.59408186,-0.58238257,-0.57068327,-0.55898398,-0.54728468,-0.53558539,-0.5238861,-0.5121868,-0.50048751,-0.48878822,-0.47708892,-0.46538963,-0.45369033,-0.44199104,-0.43029175,-0.41859245,-0.40689316,-0.39519387,-0.38349457,-0.37179528,-0.36009598,-0.34839669,-0.3366974,-0.3249981,-0.31329881,-0.30159952,-0.28990022,-0.27820093,-0.26650163,-0.25480234,-0.24310305,-0.23140375,-0.21970446,-0.20800517,-0.19630587,-0.18460658,-0.17290728,-0.16120799,-0.1495087,-0.1378094,-0.12611011,-0.11441082,-0.10271152,-0.091012228,-0.079312934,-0.06761364,-0.055914347,-0.044215053,-0.032515759,-0.020816465,-0.0091171716,0.0025821222,0.014281416,0.02598071,0.037680003,0.049379297,0.061078591,0.072777885,0.084477178,0.096176472,0.10787577,0.11957506,0.13127435,0.14297365,0.15467294,0.16637223,0.17807153,0.18977082,0.20147012,0.21316941,0.2248687,0.236568,0.24826729,0.25996658,0.27166588,0.28336517,0.29506447,0.30676376,0.31846305,0.33016235,0.34186164,0.35356093,0.36526023,0.37695952,0.38865882,0.40035811,0.4120574,0.4237567,0.43545599,0.44715528,0.45885458,0.47055387,0.48225317,0.49395246,0.50565175,0.51735105,0.52905034,0.54074963,0.55244893,0.56414822,0.57584752,0.58754681,0.5992461,0.6109454,0.62264469,0.63434398,0.64604328,0.65774257,0.66944187,0.68114116,0.69284045,0.70453975,0.71623904,0.72793833,0.73963763,0.75133692,0.76303622,0.77473551,0.7864348,0.7981341,0.80983339,0.82153268,0.83323198,0.84493127,0.85663057,0.86832986,0.88002915,0.89172845,0.90342774,0.91512703,0.92682633,0.93852562,0.95022492,0.96192421,0.9736235,0.9853228,0.99702209,1.0087214,1.0204207,1.03212,1.0438193,1.0555186,1.0672179,1.0789171,1.0906164,1.1023157,1.114015,1.1257143,1.1374136,1.1491129,1.1608122,1.1725115,1.1842108,1.1959101,1.2076094,1.2193087,1.231008,1.2427073,1.2544066,1.2661058,1.2778051,1.2895044,1.3012037,1.312903,1.3246023,1.3363016,1.3480009,1.3597002,1.3713995,1.3830988,1.3947981,1.4064974,1.4181967,1.429896,1.4415953,1.4532945,1.4649938,1.4766931,1.4883924,1.5000917,1.511791,1.5234903,1.5351896,1.5468889,1.5585882,1.5702875,1.5819868,1.5936861,1.6053854,1.6170847,1.628784,1.6404832,1.6521825,1.6638818,1.6755811,1.6872804,1.6989797,1.710679,1.7223783,1.7340776,1.7457769,1.7574762,1.7691755,1.7808748,1.7925741,1.8042734,1.8159727,1.8276719,1.8393712,1.8510705,1.8627698,1.8744691,1.8861684,1.8978677,1.909567,1.9212663,1.9329656,1.9446649,1.9563642,1.9680635,1.9797628,1.9914621,2.0031614,2.0148606,2.0265599,2.0382592,2.0499585,2.0616578,2.0733571,2.0850564,2.0967557,2.108455,2.1201543,2.1318536,2.1435529,2.1552522,2.1669515,2.1786508,2.1903501,2.2020493,2.2137486,2.2254479,2.2371472,2.2488465,2.2605458,2.2722451,2.2839444,2.2956437,2.307343,2.3190423,2.3307416,2.3424409,2.3541402,2.3658395,2.3775388,2.389238,2.4009373,2.4126366,2.4243359,2.4360352,2.4477345,2.4594338,2.4711331,2.4828324,2.4945317,2.506231,2.5179303,2.5296296,2.5413289,2.5530282,2.5647275,2.5764267,2.588126,2.5998253,2.6115246,2.6232239,2.6349232,2.6466225,2.6583218,2.6700211,2.6817204,2.6934197,2.705119,2.7168183,2.7285176,2.7402169,2.7519162,2.7636154,2.7753147,2.787014,2.7987133,2.8104126,2.8221119,2.8338112,2.8455105,2.8572098,2.8689091,2.8806084,2.8923077,2.904007,2.9157063,2.9274056,2.9391049,2.9508041,2.9625034,2.9742027,2.985902,2.9976013,3.0093006,3.0209999,3.0326992,3.0443985,3.0560978,3.0677971,3.0794964,3.0911957,3.102895,3.1145943,3.1262936,3.1379928,3.1496921,3.1613914,3.1730907,3.18479,3.1964893,3.2081886,3.2198879,3.2315872,3.2432865,3.2549858,3.2666851,3.2783844,3.2900837,3.301783,3.3134823,3.3251815,3.3368808,3.3485801,3.3602794,3.3719787,3.383678,3.3953773,3.4070766,3.4187759,3.4304752,3.4421745,3.4538738,3.4655731,3.4772724,3.4889717,3.500671,3.5123702,3.5240695,3.5357688,3.5474681,3.5591674,3.5708667,3.582566,3.5942653,3.6059646,3.6176639,3.6293632,3.6410625,3.6527618,3.6644611,3.6761604,3.6878597,3.6995589,3.7112582,3.7229575,3.7346568,3.7463561,3.7580554,3.7697547,3.781454,3.7931533,3.8048526,3.8165519,3.8282512,3.8399505,3.8516498,3.8633491,3.8750484,3.8867476,3.8984469,3.9101462,3.9218455],"y":[-1.0463544,-1.0461858,-1.0460134,-1.0458366,-1.0456548,-1.0454673,-1.0452734,-1.0450723,-1.0448634,-1.0446457,-1.0444184,-1.0441807,-1.0439317,-1.0436705,-1.0433962,-1.0431078,-1.0428045,-1.0424855,-1.0421497,-1.0417963,-1.0414245,-1.0410335,-1.0406225,-1.0401907,-1.0397375,-1.0392621,-1.0387639,-1.0382424,-1.037697,-1.0371273,-1.0365329,-1.0359132,-1.0352682,-1.0345974,-1.0339006,-1.0331778,-1.0324287,-1.0316533,-1.0308515,-1.0300233,-1.0291687,-1.0282879,-1.0273808,-1.0264475,-1.0254882,-1.024503,-1.023492,-1.0224553,-1.021393,-1.0203052,-1.0191921,-1.0180536,-1.0168899,-1.015701,-1.0144868,-1.0132474,-1.0119826,-1.0106925,-1.0093769,-1.0080356,-1.0066685,-1.0052753,-1.0038559,-1.0024099,-1.0009371,-0.99943725,-0.99790993,-0.99635487,-0.99477176,-0.99316028,-0.99152011,-0.98985098,-0.9881526,-0.98642474,-0.9846672,-0.9828798,-0.98106243,-0.97921503,-0.97733759,-0.9754302,-0.97349298,-0.97152615,-0.96953,-0.96750492,-0.96545138,-0.96336993,-0.96126122,-0.959126,-0.9569651,-0.95477943,-0.95257001,-0.95033794,-0.94808438,-0.94581059,-0.94351788,-0.94120765,-0.93888132,-0.93654039,-0.93418637,-0.93182083,-0.92944533,-0.92706146,-0.92467079,-0.92227489,-0.91987532,-0.91747358,-0.91507115,-0.91266943,-0.91026978,-0.90787347,-0.9054817,-0.90309558,-0.90071611,-0.89834419,-0.89598062,-0.89362608,-0.89128113,-0.88894622,-0.88662166,-0.88430766,-0.88200429,-0.87971154,-0.87742923,-0.87515712,-0.87289484,-0.87064193,-0.86839784,-0.86616192,-0.86393348,-0.86171172,-0.85949582,-0.8572849,-0.85507805,-0.85287432,-0.85067277,-0.84847242,-0.84627233,-0.84407156,-0.84186918,-0.83966432,-0.83745612,-0.8352438,-0.83302661,-0.83080386,-0.82857495,-0.82633933,-0.82409653,-0.82184615,-0.81958788,-0.81732149,-0.81504682,-0.81276379,-0.81047243,-0.80817281,-0.8058651,-0.80354955,-0.80122646,-0.79889622,-0.79655929,-0.79421619,-0.7918675,-0.78951385,-0.78715596,-0.78479456,-0.78243048,-0.78006456,-0.7776977,-0.77533085,-0.77296499,-0.77060117,-0.76824045,-0.76588395,-0.7635328,-0.76118818,-0.75885133,-0.75652348,-0.75420592,-0.75189995,-0.74960692,-0.74732818,-0.74506513,-0.74281916,-0.7405917,-0.73838417,-0.73619803,-0.7340347,-0.73189564,-0.72978228,-0.72769603,-0.7256383,-0.72361045,-0.72161384,-0.71964975,-0.71771944,-0.71582409,-0.71396485,-0.71214277,-0.71035885,-0.70861398,-0.70690897,-0.70524456,-0.70362136,-0.70203988,-0.70050055,-0.69900366,-0.69754942,-0.69613789,-0.69476907,-0.69344281,-0.69215887,-0.69091691,-0.68971648,-0.68855707,-0.68743804,-0.6863587,-0.68531829,-0.68431596,-0.68335085,-0.68242201,-0.68152851,-0.68066935,-0.67984354,-0.67905009,-0.67828802,-0.67755636,-0.67685418,-0.67618059,-0.67553474,-0.67491585,-0.67432321,-0.67375616,-0.67321414,-0.67269668,-0.67220339,-0.67173397,-0.67128825,-0.67086613,-0.67046761,-0.67009283,-0.669742,-0.66941544,-0.66911357,-0.66883692,-0.66858609,-0.66836178,-0.66816479,-0.66799598,-0.66785629,-0.66774672,-0.66766833,-0.66762225,-0.66760962,-0.66763166,-0.66768958,-0.66778463,-0.66791807,-0.66809116,-0.66830516,-0.6685613,-0.66886082,-0.6692049,-0.66959471,-0.67003136,-0.67051592,-0.67104939,-0.67163272,-0.67226679,-0.67295241,-0.67369031,-0.67448115,-0.67532549,-0.67622384,-0.67717658,-0.67818405,-0.67924648,-0.68036403,-0.68153678,-0.68276472,-0.68404779,-0.68538586,-0.68677872,-0.68822611,-0.68972775,-0.69128328,-0.69289232,-0.69455448,-0.69626933,-0.69803644,-0.69985538,-0.70172571,-0.70364703,-0.70561894,-0.70764108,-0.7097131,-0.71183471,-0.71400565,-0.71622572,-0.71849474,-0.72081259,-0.7231792,-0.72559453,-0.72805859,-0.73057142,-0.73313309,-0.7357437,-0.73840334,-0.74111213,-0.74387016,-0.74667752,-0.74953425,-0.75244036,-0.75539579,-0.75840041,-0.76145401,-0.76455628,-0.76770678,-0.77090496,-0.77415013,-0.77744144,-0.78077788,-0.78415828,-0.78758128,-0.79104534,-0.79454874,-0.79808955,-0.80166567,-0.80527478,-0.80891439,-0.81258182,-0.81627423,-0.81998857,-0.82372166,-0.82747017,-0.83123063,-0.83499946,-0.83877295,-0.84254733,-0.84631876,-0.85008334,-0.85383714,-0.85757624,-0.86129671,-0.86499466,-0.86866625,-0.8723077,-0.87591535,-0.87948561,-0.88301503,-0.88650032,-0.88993831,-0.89332604,-0.8966607,-0.89993969,-0.90316063,-0.90632132,-0.90941981,-0.91245435,-0.91542344,-0.9183258,-0.9211604,-0.92392641,-0.92662327,-0.92925062,-0.93180832,-0.93429649,-0.93671541,-0.93906561,-0.94134778,-0.94356284,-0.94571185,-0.94779607,-0.9498169,-0.95177591,-0.95367479,-0.95551535,-0.95729954,-0.9590294,-0.96070705,-0.96233469,-0.9639146,-0.96544911,-0.96694057,-0.96839138,-0.96980395,-0.9711807,-0.97252403,-0.97383632,-0.97511993,-0.97637718,-0.97761032,-0.97882156,-0.98001301,-0.98118673,-0.98234465,-0.98348865,-0.98462045,-0.98574169,-0.98685388,-0.98795841,-0.98905652,-0.99014933,-0.99123784,-0.99232287,-0.99340514,-0.99448521,-0.9955635,-0.99664029,-0.99771575,-0.99878989,-0.99986261,-1.0009337,-1.0020028,-1.0030694,-1.0041331,-1.0051932,-1.006249,-1.0072997,-1.0083444,-1.0093822,-1.0104123,-1.0114336,-1.0124451,-1.0134459,-1.0144348,-1.015411,-1.0163734,-1.017321,-1.018253,-1.0191685,-1.0200666,-1.0209465,-1.0218076,-1.0226492,-1.0234706,-1.0242714,-1.0250512,-1.0258095,-1.0265461,-1.0272607,-1.0279533,-1.0286237,-1.029272,-1.0298982,-1.0305025,-1.031085,-1.0316462,-1.0321861,-1.0327054,-1.0332042,-1.0336832,-1.0341428,-1.0345836,-1.0350061,-1.0354109,-1.0357986,-1.0361698,-1.0365253,-1.0368656,-1.0371914,-1.0375034,-1.0378022,-1.0380886,-1.0383631,-1.0386264,-1.0388793,-1.0391223,-1.0393561,-1.0395812,-1.0397984,-1.0400083,-1.0402113,-1.0404082,-1.0405994,-1.0407856,-1.0409671,-1.0411447,-1.0413187,-1.0414897,-1.0416581,-1.0418244,-1.041989,-1.0421523,-1.0423147,-1.0424765,-1.0426382,-1.0428,-1.0429623,-1.0431253,-1.0432892,-1.0434543,-1.0436208,-1.0437888,-1.0439585,-1.0441299,-1.0443033,-1.0444785,-1.0446557,-1.0448348,-1.0450157,-1.0451986],"zorder":5,"type":"scatter"}],"layout":{"template":{"data":{"histogram2dcontour":[{"type":"histogram2dcontour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"choropleth":[{"type":"choropleth","colorbar":{"outlinewidth":0,"ticks":""}}],"histogram2d":[{"type":"histogram2d","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmap":[{"type":"heatmap","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"contourcarpet":[{"type":"contourcarpet","colorbar":{"outlinewidth":0,"ticks":""}}],"contour":[{"type":"contour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"surface":[{"type":"surface","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"mesh3d":[{"type":"mesh3d","colorbar":{"outlinewidth":0,"ticks":""}}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"parcoords":[{"type":"parcoords","line":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolargl":[{"type":"scatterpolargl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"scattergeo":[{"type":"scattergeo","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolar":[{"type":"scatterpolar","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"scattergl":[{"type":"scattergl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatter3d":[{"type":"scatter3d","line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattermap":[{"type":"scattermap","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattermapbox":[{"type":"scattermapbox","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterternary":[{"type":"scatterternary","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattercarpet":[{"type":"scattercarpet","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"type":"carpet"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}],"barpolar":[{"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"pie":[{"automargin":true,"type":"pie"}]},"layout":{"autotypenumbers":"strict","colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"hovermode":"closest","hoverlabel":{"align":"left"},"paper_bgcolor":"white","plot_bgcolor":"#E5ECF6","polar":{"bgcolor":"#E5ECF6","angularaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"radialaxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"ternary":{"bgcolor":"#E5ECF6","aaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"baxis":{"gridcolor":"white","linecolor":"white","ticks":""},"caxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]]},"xaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"yaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"scene":{"xaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"yaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"zaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"geo":{"bgcolor":"white","landcolor":"#E5ECF6","subunitcolor":"white","showland":true,"showlakes":true,"lakecolor":"white"},"title":{"x":0.05},"mapbox":{"style":"light"}}},"legend":{"traceorder":"normal"},"yaxis":{"showticklabels":true,"tickvals":[0.0,-0.2105437420024572,-0.4210874840049144,-0.6316312260073716,-0.8421749680098288,-1.0527187100122861],"ticktext":[["Trace 1"],["Trace 2"],["Trace 3"],["Trace 4"],["Trace 5"],["Trace 6"]],"zeroline":false,"showgrid":true},"xaxis":{"range":[-2.4076002786408495,8.405360691942956],"showticklabels":true,"zeroline":false,"showgrid":true},"barmode":"stack","bargap":0,"bargroupgap":0,"height":350,"width":800}} diff --git a/tests/e2e/artifacts/basic_hist.json b/tests/e2e/artifacts/basic_hist.json index 5c92c44..9398f68 100644 --- a/tests/e2e/artifacts/basic_hist.json +++ b/tests/e2e/artifacts/basic_hist.json @@ -1 +1 @@ -{"data":[{"base":0.0,"customdata":[[1.0],[3.0],[5.0],[9.0],[20.0],[31.0],[41.0],[54.0],[64.0],[72.0],[73.0],[74.0],[51.0],[34.0],[23.0],[23.0],[10.0],[6.0],[4.0],[2.0]],"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","marker":{"color":["rgb(180.0717, 46.34225, 140.49331)","rgb(189.18476, 55.21898, 133.81524)","rgb(196.6745, 64.0957, 126.3255)","rgb(204.16423, 72.97242, 118.83577)","rgb(211.65397, 81.84915, 111.34603)","rgb(218.4451, 90.95874, 104.2056)","rgb(224.27045, 100.39026, 97.54805)","rgb(230.0958, 109.82177, 90.89051)","rgb(235.92115, 119.25329, 84.23297)","rgb(240.16433, 129.58891, 77.3494)","rgb(244.0479, 140.13002, 70.41446)","rgb(247.93147, 150.67113, 63.47952)","rgb(251.11643, 161.50332, 56.83567)","rgb(251.67123, 173.43142, 51.28771)","rgb(252.22602, 185.35951, 45.73976)","rgb(252.78082, 197.28761, 40.19181)","rgb(250.81851, 209.88694, 37.16096)","rgb(247.21234, 222.92462, 35.77398)","rgb(243.60617, 235.96231, 34.38699)","rgb(240, 249, 33)"],"line":{"color":"black","width":0.5}},"name":"Trace 1","x":[2.0354712,2.3293907,2.6233103,2.9172299,3.2111494,3.505069,3.7989886,4.0929081,4.3868277,4.6807472,4.9746668,5.2685864,5.5625059,5.8564255,6.1503451,6.4442646,6.7381842,7.0321038,7.3260233,7.6199429],"y":[1.0,3.0,5.0,9.0,20.0,31.0,41.0,54.0,64.0,72.0,73.0,74.0,51.0,34.0,23.0,23.0,10.0,6.0,4.0,2.0],"zorder":0,"type":"bar"},{"base":-47.5,"customdata":[[1.0],[0.0],[2.0],[6.0],[9.0],[18.0],[26.0],[53.0],[47.0],[74.0],[95.0],[84.0],[66.0],[43.0],[37.0],[23.0],[9.0],[4.0],[2.0],[1.0]],"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","marker":{"color":["rgb(126.49562, 7.54532, 165.02485)","rgb(140.02694, 14.63316, 161.80311)","rgb(153.55827, 21.721, 158.58136)","rgb(164.71325, 31.44922, 151.66309)","rgb(175.34501, 41.7588, 143.9309)","rgb(185.97677, 52.06838, 136.19872)","rgb(195.22515, 62.37796, 127.77485)","rgb(203.92386, 72.68754, 119.07614)","rgb(212.62257, 82.99713, 110.37743)","rgb(220.13878, 93.70088, 102.26997)","rgb(226.90444, 104.65481, 94.53778)","rgb(233.6701, 115.60874, 86.8056)","rgb(239.29051, 127.2171, 78.9098)","rgb(243.80095, 139.45973, 70.85544)","rgb(248.3114, 151.70236, 62.80108)","rgb(251.26026, 164.59564, 55.39738)","rgb(251.90461, 178.44914, 48.95389)","rgb(252.54896, 192.30264, 42.5104)","rgb(251.74349, 206.54276, 37.51673)","rgb(247.55522, 221.68496, 35.90586)"],"line":{"color":"black","width":0.5}},"name":"Trace 2","x":[0.51825384,0.85961717,1.2009805,1.5423438,1.8837071,2.2250705,2.5664338,2.9077971,3.2491604,3.5905238,3.9318871,4.2732504,4.6146137,4.9559771,5.2973404,5.6387037,5.980067,6.3214304,6.6627937,7.004157],"y":[1.0,0.0,2.0,6.0,9.0,18.0,26.0,53.0,47.0,74.0,95.0,84.0,66.0,43.0,37.0,23.0,9.0,4.0,2.0,1.0],"zorder":1,"type":"bar"},{"base":-95.0,"customdata":[[4.0],[4.0],[12.0],[8.0],[29.0],[33.0],[38.0],[52.0],[63.0],[68.0],[62.0],[72.0],[45.0],[39.0],[28.0],[19.0],[11.0],[8.0],[2.0],[3.0]],"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","marker":{"color":["rgb(120.92477, 4.62726, 166.35125)","rgb(132.55856, 10.72115, 163.58129)","rgb(144.19236, 16.81505, 160.81134)","rgb(155.82616, 22.90894, 158.04139)","rgb(165.00425, 31.7314, 151.45145)","rgb(174.14509, 40.59524, 144.80357)","rgb(183.28594, 49.45909, 138.15568)","rgb(191.80373, 58.32293, 131.19627)","rgb(199.2826, 67.18678, 123.7174)","rgb(206.76147, 76.05063, 116.23853)","rgb(214.24034, 84.91447, 108.75966)","rgb(220.44827, 94.20196, 101.91626)","rgb(226.26517, 103.6198, 95.26838)","rgb(232.08207, 113.03764, 88.62049)","rgb(237.59931, 122.6267, 81.9298)","rgb(241.47724, 133.15252, 75.00492)","rgb(245.35518, 143.67834, 68.08004)","rgb(249.23311, 154.20416, 61.15516)","rgb(251.30158, 165.48392, 54.98422)","rgb(251.85557, 177.39471, 49.44432)"],"line":{"color":"black","width":0.5}},"name":"Trace 3","x":[0.37771451,0.67120768,0.96470086,1.258194,1.5516872,1.8451804,2.1386736,2.4321667,2.7256599,3.0191531,3.3126462,3.6061394,3.8996326,4.1931258,4.4866189,4.7801121,5.0736053,5.3670985,5.6605916,5.9540848],"y":[4.0,4.0,12.0,8.0,29.0,33.0,38.0,52.0,63.0,68.0,62.0,72.0,45.0,39.0,28.0,19.0,11.0,8.0,2.0,3.0],"zorder":2,"type":"bar"},{"base":-142.5,"customdata":[[3.0],[2.0],[7.0],[14.0],[15.0],[21.0],[44.0],[47.0],[56.0],[55.0],[81.0],[77.0],[68.0],[42.0],[27.0],[18.0],[8.0],[7.0],[3.0],[5.0]],"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","marker":{"color":["rgb(82.15741, 2.44739, 161.48674)","rgb(94.45183, 1.88855, 164.00151)","rgb(106.74625, 1.32972, 166.51628)","rgb(118.81154, 3.52033, 166.85439)","rgb(130.54712, 9.66754, 164.06021)","rgb(142.2827, 15.81475, 161.26602)","rgb(154.01828, 21.96196, 158.47184)","rgb(163.66375, 30.43152, 152.42636)","rgb(172.88457, 39.37291, 145.72032)","rgb(182.10538, 48.31431, 139.01427)","rgb(190.90325, 57.2557, 132.09675)","rgb(198.44755, 66.1971, 124.55245)","rgb(205.99185, 75.13849, 117.00815)","rgb(213.53615, 84.07989, 109.46385)","rgb(219.95147, 93.39761, 102.48404)","rgb(225.81926, 102.89784, 95.77799)","rgb(231.68705, 112.39807, 89.07195)","rgb(237.36989, 122.00399, 82.33948)","rgb(241.28175, 132.6219, 75.35402)","rgb(245.19361, 143.2398, 68.36855)"],"line":{"color":"black","width":0.5}},"name":"Trace 4","x":[-0.56377987,-0.26771895,0.028341963,0.32440288,0.62046379,0.91652471,1.2125856,1.5086465,1.8047074,2.1007684,2.3968293,2.6928902,2.9889511,3.285012,3.5810729,3.8771339,4.1731948,4.4692557,4.7653166,5.0613775],"y":[3.0,2.0,7.0,14.0,15.0,21.0,44.0,47.0,56.0,55.0,81.0,77.0,68.0,42.0,27.0,18.0,8.0,7.0,3.0,5.0],"zorder":3,"type":"bar"},{"base":-190.0,"customdata":[[2.0],[3.0],[7.0],[22.0],[16.0],[24.0],[47.0],[63.0],[60.0],[75.0],[64.0],[53.0],[51.0],[40.0],[36.0],[17.0],[9.0],[7.0],[3.0],[1.0]],"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","marker":{"color":["rgb(51.8003, 4.59646, 151.33697)","rgb(67.72671, 3.19941, 158.04282)","rgb(80.53925, 2.52094, 161.15575)","rgb(92.83331, 1.96212, 163.67045)","rgb(105.12738, 1.4033, 166.18515)","rgb(117.26593, 2.71072, 167.2224)","rgb(129.00118, 8.85776, 164.42829)","rgb(140.73642, 15.00479, 161.63419)","rgb(152.47167, 21.15183, 158.84008)","rgb(162.44829, 29.25289, 153.31033)","rgb(171.66884, 38.19403, 146.60448)","rgb(180.88939, 47.13517, 139.89862)","rgb(189.90813, 56.07631, 133.09187)","rgb(197.45222, 65.01745, 125.54778)","rgb(204.99631, 73.95859, 118.00369)","rgb(212.5404, 82.89973, 110.4596)","rgb(219.17682, 92.14342, 103.36935)","rgb(225.04444, 101.64338, 96.66349)","rgb(230.91207, 111.14335, 89.95764)","rgb(236.77969, 120.64331, 83.25178)"],"line":{"color":"black","width":0.5}},"name":"Trace 5","x":[-1.1948517,-0.89879922,-0.60274674,-0.30669426,-0.010641784,0.2854107,0.58146318,0.87751566,1.1735681,1.4696206,1.7656731,2.0617256,2.3577781,2.6538305,2.949883,3.2459355,3.541988,3.8380405,4.1340929,4.4301454],"y":[2.0,3.0,7.0,22.0,16.0,24.0,47.0,63.0,60.0,75.0,64.0,53.0,51.0,40.0,36.0,17.0,9.0,7.0,3.0,1.0],"zorder":4,"type":"bar"},{"base":-237.5,"customdata":[[2.0],[2.0],[9.0],[12.0],[31.0],[34.0],[47.0],[57.0],[64.0],[70.0],[68.0],[67.0],[50.0],[40.0],[17.0],[11.0],[11.0],[4.0],[1.0],[3.0]],"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","marker":{"color":["rgb(13, 8, 135)","rgb(28.70288, 6.62255, 141.61174)","rgb(44.40576, 5.24511, 148.22348)","rgb(60.10864, 3.86766, 154.83521)","rgb(74.48608, 2.79609, 159.91761)","rgb(86.6076, 2.24511, 162.39701)","rgb(98.72912, 1.69413, 164.87641)","rgb(110.85064, 1.14315, 167.35581)","rgb(122.56434, 5.48608, 165.96087)","rgb(134.13488, 11.54684, 163.20598)","rgb(145.70542, 17.6076, 160.45109)","rgb(157.00254, 23.97216, 157.27088)","rgb(166.09368, 32.78781, 150.65914)","rgb(175.18482, 41.60346, 144.0474)","rgb(184.27596, 50.41912, 137.43566)","rgb(192.57308, 59.23477, 130.42692)","rgb(200.01129, 68.05042, 122.98871)","rgb(207.4495, 76.86607, 115.5505)","rgb(214.8877, 85.68172, 108.1123)","rgb(220.92015, 94.96596, 101.37697)"],"line":{"color":"black","width":0.5}},"name":"Trace 6","x":[-1.9161021,-1.6242047,-1.3323073,-1.0404099,-0.74851254,-0.45661516,-0.16471778,0.1271796,0.41907698,0.71097436,1.0028717,1.2947691,1.5866665,1.8785639,2.1704613,2.4623586,2.754256,3.0461534,3.3380508,3.6299481],"y":[2.0,2.0,9.0,12.0,31.0,34.0,47.0,57.0,64.0,70.0,68.0,67.0,50.0,40.0,17.0,11.0,11.0,4.0,1.0,3.0],"zorder":5,"type":"bar"}],"layout":{"template":{"data":{"histogram2dcontour":[{"type":"histogram2dcontour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"choropleth":[{"type":"choropleth","colorbar":{"outlinewidth":0,"ticks":""}}],"histogram2d":[{"type":"histogram2d","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmap":[{"type":"heatmap","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmapgl":[{"type":"heatmapgl","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"contourcarpet":[{"type":"contourcarpet","colorbar":{"outlinewidth":0,"ticks":""}}],"contour":[{"type":"contour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"surface":[{"type":"surface","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"mesh3d":[{"type":"mesh3d","colorbar":{"outlinewidth":0,"ticks":""}}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"parcoords":[{"type":"parcoords","line":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolargl":[{"type":"scatterpolargl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"scattergeo":[{"type":"scattergeo","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolar":[{"type":"scatterpolar","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"scattergl":[{"type":"scattergl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatter3d":[{"type":"scatter3d","line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattermapbox":[{"type":"scattermapbox","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterternary":[{"type":"scatterternary","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattercarpet":[{"type":"scattercarpet","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"type":"carpet"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}],"barpolar":[{"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"pie":[{"automargin":true,"type":"pie"}]},"layout":{"autotypenumbers":"strict","colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"hovermode":"closest","hoverlabel":{"align":"left"},"paper_bgcolor":"white","plot_bgcolor":"#E5ECF6","polar":{"bgcolor":"#E5ECF6","angularaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"radialaxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"ternary":{"bgcolor":"#E5ECF6","aaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"baxis":{"gridcolor":"white","linecolor":"white","ticks":""},"caxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]]},"xaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"yaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"scene":{"xaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"yaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"zaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"geo":{"bgcolor":"white","landcolor":"#E5ECF6","subunitcolor":"white","showland":true,"showlakes":true,"lakecolor":"white"},"title":{"x":0.05},"mapbox":{"style":"light"}}},"legend":{"traceorder":"normal"},"yaxis":{"showticklabels":true,"tickvals":[0.0,-47.5,-95.0,-142.5,-190.0,-237.5],"ticktext":[["Trace 1"],["Trace 2"],["Trace 3"],["Trace 4"],["Trace 5"],["Trace 6"]],"zeroline":false,"showgrid":true},"xaxis":{"range":[-2.392904300381227,8.096745148490886],"showticklabels":true,"zeroline":false,"showgrid":true},"barmode":"stack","bargap":0,"bargroupgap":0,"height":350,"width":800}} +{"data":[{"base":0.0,"customdata":[[1.0],[3.0],[5.0],[9.0],[20.0],[31.0],[41.0],[54.0],[64.0],[72.0],[73.0],[74.0],[51.0],[34.0],[23.0],[23.0],[10.0],[6.0],[4.0],[2.0]],"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","marker":{"color":["rgb(180.0717, 46.34225, 140.49331)","rgb(189.18476, 55.21898, 133.81524)","rgb(196.6745, 64.0957, 126.3255)","rgb(204.16423, 72.97242, 118.83577)","rgb(211.65397, 81.84915, 111.34603)","rgb(218.4451, 90.95874, 104.2056)","rgb(224.27045, 100.39026, 97.54805)","rgb(230.0958, 109.82177, 90.89051)","rgb(235.92115, 119.25329, 84.23297)","rgb(240.16433, 129.58891, 77.3494)","rgb(244.0479, 140.13002, 70.41446)","rgb(247.93147, 150.67113, 63.47952)","rgb(251.11643, 161.50332, 56.83567)","rgb(251.67123, 173.43142, 51.28771)","rgb(252.22602, 185.35951, 45.73976)","rgb(252.78082, 197.28761, 40.19181)","rgb(250.81851, 209.88694, 37.16096)","rgb(247.21234, 222.92462, 35.77398)","rgb(243.60617, 235.96231, 34.38699)","rgb(240, 249, 33)"],"line":{"color":"black","width":0.5}},"name":"Trace 1","x":[2.0354712,2.3293907,2.6233103,2.9172299,3.2111494,3.505069,3.7989886,4.0929081,4.3868277,4.6807472,4.9746668,5.2685864,5.5625059,5.8564255,6.1503451,6.4442646,6.7381842,7.0321038,7.3260233,7.6199429],"y":[1.0,3.0,5.0,9.0,20.0,31.0,41.0,54.0,64.0,72.0,73.0,74.0,51.0,34.0,23.0,23.0,10.0,6.0,4.0,2.0],"zorder":0,"type":"bar"},{"base":-47.5,"customdata":[[1.0],[0.0],[2.0],[6.0],[9.0],[18.0],[26.0],[53.0],[47.0],[74.0],[95.0],[84.0],[66.0],[43.0],[37.0],[23.0],[9.0],[4.0],[2.0],[1.0]],"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","marker":{"color":["rgb(126.49562, 7.54532, 165.02485)","rgb(140.02694, 14.63316, 161.80311)","rgb(153.55827, 21.721, 158.58136)","rgb(164.71325, 31.44922, 151.66309)","rgb(175.34501, 41.7588, 143.9309)","rgb(185.97677, 52.06838, 136.19872)","rgb(195.22515, 62.37796, 127.77485)","rgb(203.92386, 72.68754, 119.07614)","rgb(212.62257, 82.99713, 110.37743)","rgb(220.13878, 93.70088, 102.26997)","rgb(226.90444, 104.65481, 94.53778)","rgb(233.6701, 115.60874, 86.8056)","rgb(239.29051, 127.2171, 78.9098)","rgb(243.80095, 139.45973, 70.85544)","rgb(248.3114, 151.70236, 62.80108)","rgb(251.26026, 164.59564, 55.39738)","rgb(251.90461, 178.44914, 48.95389)","rgb(252.54896, 192.30264, 42.5104)","rgb(251.74349, 206.54276, 37.51673)","rgb(247.55522, 221.68496, 35.90586)"],"line":{"color":"black","width":0.5}},"name":"Trace 2","x":[0.51825384,0.85961717,1.2009805,1.5423438,1.8837071,2.2250705,2.5664338,2.9077971,3.2491604,3.5905238,3.9318871,4.2732504,4.6146137,4.9559771,5.2973404,5.6387037,5.980067,6.3214304,6.6627937,7.004157],"y":[1.0,0.0,2.0,6.0,9.0,18.0,26.0,53.0,47.0,74.0,95.0,84.0,66.0,43.0,37.0,23.0,9.0,4.0,2.0,1.0],"zorder":1,"type":"bar"},{"base":-95.0,"customdata":[[4.0],[4.0],[12.0],[8.0],[29.0],[33.0],[38.0],[52.0],[63.0],[68.0],[62.0],[72.0],[45.0],[39.0],[28.0],[19.0],[11.0],[8.0],[2.0],[3.0]],"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","marker":{"color":["rgb(120.92477, 4.62726, 166.35125)","rgb(132.55856, 10.72115, 163.58129)","rgb(144.19236, 16.81505, 160.81134)","rgb(155.82616, 22.90894, 158.04139)","rgb(165.00425, 31.7314, 151.45145)","rgb(174.14509, 40.59524, 144.80357)","rgb(183.28594, 49.45909, 138.15568)","rgb(191.80373, 58.32293, 131.19627)","rgb(199.2826, 67.18678, 123.7174)","rgb(206.76147, 76.05063, 116.23853)","rgb(214.24034, 84.91447, 108.75966)","rgb(220.44827, 94.20196, 101.91626)","rgb(226.26517, 103.6198, 95.26838)","rgb(232.08207, 113.03764, 88.62049)","rgb(237.59931, 122.6267, 81.9298)","rgb(241.47724, 133.15252, 75.00492)","rgb(245.35518, 143.67834, 68.08004)","rgb(249.23311, 154.20416, 61.15516)","rgb(251.30158, 165.48392, 54.98422)","rgb(251.85557, 177.39471, 49.44432)"],"line":{"color":"black","width":0.5}},"name":"Trace 3","x":[0.37771451,0.67120768,0.96470086,1.258194,1.5516872,1.8451804,2.1386736,2.4321667,2.7256599,3.0191531,3.3126462,3.6061394,3.8996326,4.1931258,4.4866189,4.7801121,5.0736053,5.3670985,5.6605916,5.9540848],"y":[4.0,4.0,12.0,8.0,29.0,33.0,38.0,52.0,63.0,68.0,62.0,72.0,45.0,39.0,28.0,19.0,11.0,8.0,2.0,3.0],"zorder":2,"type":"bar"},{"base":-142.5,"customdata":[[3.0],[2.0],[7.0],[14.0],[15.0],[21.0],[44.0],[47.0],[56.0],[55.0],[81.0],[77.0],[68.0],[42.0],[27.0],[18.0],[8.0],[7.0],[3.0],[5.0]],"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","marker":{"color":["rgb(82.15741, 2.44739, 161.48674)","rgb(94.45183, 1.88855, 164.00151)","rgb(106.74625, 1.32972, 166.51628)","rgb(118.81154, 3.52033, 166.85439)","rgb(130.54712, 9.66754, 164.06021)","rgb(142.2827, 15.81475, 161.26602)","rgb(154.01828, 21.96196, 158.47184)","rgb(163.66375, 30.43152, 152.42636)","rgb(172.88457, 39.37291, 145.72032)","rgb(182.10538, 48.31431, 139.01427)","rgb(190.90325, 57.2557, 132.09675)","rgb(198.44755, 66.1971, 124.55245)","rgb(205.99185, 75.13849, 117.00815)","rgb(213.53615, 84.07989, 109.46385)","rgb(219.95147, 93.39761, 102.48404)","rgb(225.81926, 102.89784, 95.77799)","rgb(231.68705, 112.39807, 89.07195)","rgb(237.36989, 122.00399, 82.33948)","rgb(241.28175, 132.6219, 75.35402)","rgb(245.19361, 143.2398, 68.36855)"],"line":{"color":"black","width":0.5}},"name":"Trace 4","x":[-0.56377987,-0.26771895,0.028341963,0.32440288,0.62046379,0.91652471,1.2125856,1.5086465,1.8047074,2.1007684,2.3968293,2.6928902,2.9889511,3.285012,3.5810729,3.8771339,4.1731948,4.4692557,4.7653166,5.0613775],"y":[3.0,2.0,7.0,14.0,15.0,21.0,44.0,47.0,56.0,55.0,81.0,77.0,68.0,42.0,27.0,18.0,8.0,7.0,3.0,5.0],"zorder":3,"type":"bar"},{"base":-190.0,"customdata":[[2.0],[3.0],[7.0],[22.0],[16.0],[24.0],[47.0],[63.0],[60.0],[75.0],[64.0],[53.0],[51.0],[40.0],[36.0],[17.0],[9.0],[7.0],[3.0],[1.0]],"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","marker":{"color":["rgb(51.8003, 4.59646, 151.33697)","rgb(67.72671, 3.19941, 158.04282)","rgb(80.53925, 2.52094, 161.15575)","rgb(92.83331, 1.96212, 163.67045)","rgb(105.12738, 1.4033, 166.18515)","rgb(117.26593, 2.71072, 167.2224)","rgb(129.00118, 8.85776, 164.42829)","rgb(140.73642, 15.00479, 161.63419)","rgb(152.47167, 21.15183, 158.84008)","rgb(162.44829, 29.25289, 153.31033)","rgb(171.66884, 38.19403, 146.60448)","rgb(180.88939, 47.13517, 139.89862)","rgb(189.90813, 56.07631, 133.09187)","rgb(197.45222, 65.01745, 125.54778)","rgb(204.99631, 73.95859, 118.00369)","rgb(212.5404, 82.89973, 110.4596)","rgb(219.17682, 92.14342, 103.36935)","rgb(225.04444, 101.64338, 96.66349)","rgb(230.91207, 111.14335, 89.95764)","rgb(236.77969, 120.64331, 83.25178)"],"line":{"color":"black","width":0.5}},"name":"Trace 5","x":[-1.1948517,-0.89879922,-0.60274674,-0.30669426,-0.010641784,0.2854107,0.58146318,0.87751566,1.1735681,1.4696206,1.7656731,2.0617256,2.3577781,2.6538305,2.949883,3.2459355,3.541988,3.8380405,4.1340929,4.4301454],"y":[2.0,3.0,7.0,22.0,16.0,24.0,47.0,63.0,60.0,75.0,64.0,53.0,51.0,40.0,36.0,17.0,9.0,7.0,3.0,1.0],"zorder":4,"type":"bar"},{"base":-237.5,"customdata":[[2.0],[2.0],[9.0],[12.0],[31.0],[34.0],[47.0],[57.0],[64.0],[70.0],[68.0],[67.0],[50.0],[40.0],[17.0],[11.0],[11.0],[4.0],[1.0],[3.0]],"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","marker":{"color":["rgb(13, 8, 135)","rgb(28.70288, 6.62255, 141.61174)","rgb(44.40576, 5.24511, 148.22348)","rgb(60.10864, 3.86766, 154.83521)","rgb(74.48608, 2.79609, 159.91761)","rgb(86.6076, 2.24511, 162.39701)","rgb(98.72912, 1.69413, 164.87641)","rgb(110.85064, 1.14315, 167.35581)","rgb(122.56434, 5.48608, 165.96087)","rgb(134.13488, 11.54684, 163.20598)","rgb(145.70542, 17.6076, 160.45109)","rgb(157.00254, 23.97216, 157.27088)","rgb(166.09368, 32.78781, 150.65914)","rgb(175.18482, 41.60346, 144.0474)","rgb(184.27596, 50.41912, 137.43566)","rgb(192.57308, 59.23477, 130.42692)","rgb(200.01129, 68.05042, 122.98871)","rgb(207.4495, 76.86607, 115.5505)","rgb(214.8877, 85.68172, 108.1123)","rgb(220.92015, 94.96596, 101.37697)"],"line":{"color":"black","width":0.5}},"name":"Trace 6","x":[-1.9161021,-1.6242047,-1.3323073,-1.0404099,-0.74851254,-0.45661516,-0.16471778,0.1271796,0.41907698,0.71097436,1.0028717,1.2947691,1.5866665,1.8785639,2.1704613,2.4623586,2.754256,3.0461534,3.3380508,3.6299481],"y":[2.0,2.0,9.0,12.0,31.0,34.0,47.0,57.0,64.0,70.0,68.0,67.0,50.0,40.0,17.0,11.0,11.0,4.0,1.0,3.0],"zorder":5,"type":"bar"}],"layout":{"template":{"data":{"histogram2dcontour":[{"type":"histogram2dcontour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"choropleth":[{"type":"choropleth","colorbar":{"outlinewidth":0,"ticks":""}}],"histogram2d":[{"type":"histogram2d","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmap":[{"type":"heatmap","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"contourcarpet":[{"type":"contourcarpet","colorbar":{"outlinewidth":0,"ticks":""}}],"contour":[{"type":"contour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"surface":[{"type":"surface","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"mesh3d":[{"type":"mesh3d","colorbar":{"outlinewidth":0,"ticks":""}}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"parcoords":[{"type":"parcoords","line":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolargl":[{"type":"scatterpolargl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"scattergeo":[{"type":"scattergeo","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolar":[{"type":"scatterpolar","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"scattergl":[{"type":"scattergl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatter3d":[{"type":"scatter3d","line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattermap":[{"type":"scattermap","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattermapbox":[{"type":"scattermapbox","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterternary":[{"type":"scatterternary","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattercarpet":[{"type":"scattercarpet","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"type":"carpet"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}],"barpolar":[{"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"pie":[{"automargin":true,"type":"pie"}]},"layout":{"autotypenumbers":"strict","colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"hovermode":"closest","hoverlabel":{"align":"left"},"paper_bgcolor":"white","plot_bgcolor":"#E5ECF6","polar":{"bgcolor":"#E5ECF6","angularaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"radialaxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"ternary":{"bgcolor":"#E5ECF6","aaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"baxis":{"gridcolor":"white","linecolor":"white","ticks":""},"caxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]]},"xaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"yaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"scene":{"xaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"yaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"zaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"geo":{"bgcolor":"white","landcolor":"#E5ECF6","subunitcolor":"white","showland":true,"showlakes":true,"lakecolor":"white"},"title":{"x":0.05},"mapbox":{"style":"light"}}},"legend":{"traceorder":"normal"},"yaxis":{"showticklabels":true,"tickvals":[0.0,-47.5,-95.0,-142.5,-190.0,-237.5],"ticktext":[["Trace 1"],["Trace 2"],["Trace 3"],["Trace 4"],["Trace 5"],["Trace 6"]],"zeroline":false,"showgrid":true},"xaxis":{"range":[-2.392904300381227,8.096745148490886],"showticklabels":true,"zeroline":false,"showgrid":true},"barmode":"stack","bargap":0,"bargroupgap":0,"height":350,"width":800}} diff --git a/tests/e2e/artifacts/lincoln_weather.json b/tests/e2e/artifacts/lincoln_weather.json index 1240581..04e3cca 100644 --- a/tests/e2e/artifacts/lincoln_weather.json +++ b/tests/e2e/artifacts/lincoln_weather.json @@ -1 +1 @@ -{"data":[{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"zorder":0,"type":"scatter"},{"customdata":[[2.9189075e-16],[6.0207336e-16],[1.2309595e-15],[2.4946152e-15],[5.0110528e-15],[9.9774646e-15],[1.9691438e-14],[3.8521299e-14],[7.4694895e-14],[1.4356472e-13],[2.73509e-13],[5.1649129e-13],[9.6676793e-13],[1.7936998e-12],[3.2987245e-12],[6.0132827e-12],[1.0865434e-11],[1.9460458e-11],[3.4548587e-11],[6.0796636e-11],[1.0604782e-10],[1.8335714e-10],[3.1424539e-10],[5.3384622e-10],[8.9896118e-10],[1.50053e-09],[2.4827275e-09],[4.0718883e-09],[6.6198338e-09],[1.0668048e-08],[1.7041662e-08],[2.698552e-08],[4.2358881e-08],[6.5910767e-08],[1.016647e-07],[1.5544973e-07],[2.3562443e-07],[3.5405135e-07],[5.2739173e-07],[7.7880307e-07],[1.1401345e-06],[1.6547259e-06],[2.3809263e-06],[3.3964471e-06],[4.8036669e-06],[6.7359858e-06],[9.3653052e-06],[1.2910667e-05],[1.7648028e-05],[2.3921075e-05],[3.215289e-05],[4.285817e-05],[5.665559e-05],[7.4279785e-05],[9.6592284e-05],[0.00012459067],[0.00015941511],[0.00020235141],[0.00025482974],[0.0003184182],[0.00039481057],[0.00048580775],[0.00059329254],[0.00071919784],[0.00086546838],[0.0010340165],[0.0012266727],[0.0014451323],[0.0016908978],[0.0019652203],[0.0022690389],[0.0026029207],[0.002967001],[0.0033609266],[0.0037838016],[0.0042341383],[0.0047098137],[0.0052080356],[0.005725319],[0.0062574778],[0.006799634],[0.0073462505],[0.0078911896],[0.0084278028],[0.0089490536],[0.009447675],[0.0099163618],[0.010347994],[0.010735883],[0.011074043],[0.011357455],[0.011582333],[0.011746361],[0.011848895],[0.011891105],[0.011876052],[0.011808684],[0.01169575],[0.01154562],[0.011368029],[0.011173738],[0.010974137],[0.010780809],[0.010605062],[0.010457477],[0.010347465],[0.010282891],[0.010269751],[0.010311949],[0.010411159],[0.010566802],[0.010776124],[0.011034372],[0.011335069],[0.011670355],[0.012031398],[0.012408835],[0.012793232],[0.013175545],[0.013547554],[0.013902251],[0.014234179],[0.014539695],[0.014817159],[0.015067041],[0.015291945],[0.015496555],[0.015687502],[0.015873168],[0.016063429],[0.016269353],[0.016502851],[0.016776312],[0.017102209],[0.0174927],[0.017959225],[0.018512112],[0.019160196],[0.019910458],[0.020767691],[0.021734215],[0.022809624],[0.023990597],[0.025270782],[0.026640745],[0.028088019],[0.029597237],[0.03115037],[0.032727074],[0.034305119],[0.035860928],[0.037370183],[0.038808495],[0.040152109],[0.041378619],[0.042467658],[0.043401539],[0.04416581],[0.044749698],[0.045146418],[0.045353325],[0.045371916],[0.045207661],[0.044869678],[0.044370281],[0.043724398],[0.042948919],[0.042061987],[0.041082271],[0.040028272],[0.038917671],[0.037766778],[0.036590075],[0.035399891],[0.034206214],[0.033016626],[0.031836373],[0.030668541],[0.029514328],[0.02837338],[0.02724418],[0.026124443],[0.025011516],[0.023902747],[0.022795809],[0.02168897],[0.020581292],[0.019472765],[0.018364373],[0.017258086],[0.016156806],[0.015064254],[0.013984823],[0.012923404],[0.011885192],[0.010875489],[0.0098995094],[0.0089621983],[0.0080680673],[0.0072210567],[0.0064244247],[0.0056806692],[0.0049914802],[0.0043577242],[0.0037794586],[0.0032559719],[0.0027858479],[0.0023670477],[0.0019970051],[0.0016727312],[0.0013909215],[0.0011480629],[0.00094053466],[0.00076470104],[0.00061699303],[0.0004939769],[0.00039240901],[0.00030927687],[0.00024182663],[0.00018757845],[0.00014433098],[0.00011015681],[8.3390615e-05],[6.2611984e-05],[4.6624483e-05],[3.4432614e-05],[2.5217948e-05],[1.83155e-05],[1.3191182e-05],[9.4208954e-06],[6.6716421e-06],[4.6848405e-06],[3.2618849e-06],[2.2518798e-06],[1.541403e-06],[1.0461018e-06],[7.0390059e-07],[4.6959324e-07],[3.1059855e-07],[2.0367536e-07],[1.32414e-07],[8.5345554e-08],[5.4534968e-08],[3.4547157e-08],[2.169646e-08],[1.3508318e-08],[8.3376999e-09],[5.1017692e-09],[3.0947255e-09],[1.8610054e-09],[1.1094172e-09],[6.5563431e-10],[3.8410135e-10],[2.2307219e-10],[1.2842767e-10],[7.3296571e-11],[4.146856e-11],[2.3257498e-11],[1.293047e-11],[7.1264228e-12],[3.8934405e-12],[2.1086231e-12],[1.1320529e-12],[6.0247042e-13],[3.1783737e-13],[1.6621623e-13],[8.6166851e-14],[4.4279676e-14],[2.2556162e-14],[1.1389948e-14],[5.7012917e-15],[2.8289092e-15],[1.39142e-15],[6.7840696e-16],[3.2787966e-16],[1.5708335e-16],[7.4599634e-17],[3.5118301e-17],[1.6387774e-17],[7.5804598e-18],[3.4758393e-18],[1.5798354e-18],[7.1178936e-19],[3.1789093e-19],[1.4073149e-19],[6.1757603e-20],[2.6864276e-20],[1.1583637e-20],[4.9510735e-21],[2.0976741e-21],[8.8096866e-22],[3.6674674e-22],[1.5134045e-22],[6.190509e-23],[2.5100355e-23],[1.0088234e-23],[4.0191283e-24],[1.5871927e-24],[6.2130968e-25],[2.4108319e-25],[9.2726904e-26],[3.5352836e-26],[1.3360481e-26],[5.0049407e-27],[1.8584654e-27],[6.840509e-28],[2.4957464e-28],[9.0258946e-29],[3.2356204e-29],[1.1497465e-29],[4.0497063e-30],[1.4139095e-30],[4.8932354e-31],[1.678598e-31],[5.7078581e-32],[1.9238678e-32],[6.4276563e-33],[2.1286545e-33],[6.987673e-34],[2.2737076e-34],[7.3334957e-35],[2.3445617e-35],[7.4299558e-36],[2.3339124e-36],[7.2670206e-37],[2.2428568e-37],[6.861512e-38],[2.0807074e-38],[6.2542455e-39],[1.8634226e-39],[5.5032613e-40],[1.6110205e-40],[4.6747023e-41],[1.3445552e-41],[3.833319e-42],[1.083285e-42],[3.0344624e-43],[8.4254273e-44],[2.3188522e-44],[6.3259389e-45],[1.7105965e-45],[4.585014e-46],[1.2181593e-46],[3.208025e-47],[8.3741641e-48],[2.1667815e-48],[5.5572323e-49],[1.4127706e-49],[3.5600352e-50],[8.892141e-51],[2.2015455e-51],[5.4027908e-52],[1.3142491e-52],[3.1688825e-53],[7.5736181e-54],[1.7941939e-54],[4.2131209e-55],[9.8063404e-56],[2.2624468e-56],[5.1739006e-57],[1.1728054e-57],[2.6351291e-58],[5.868753e-59],[1.2955604e-59],[2.8348969e-60],[6.1487184e-61],[1.3219029e-61],[2.8169688e-62],[5.9502055e-63],[1.2458027e-63],[2.5854363e-64],[5.3184569e-65],[1.0844376e-65],[2.1917477e-66],[4.3907986e-67],[8.7189342e-68],[1.7161297e-68],[3.34814e-69],[6.4747619e-70],[1.241111e-70],[2.3581099e-71],[4.4410326e-72],[8.2903017e-73],[1.533992e-73],[2.8134693e-74],[5.114787e-75],[9.2167781e-76],[1.6462541e-76],[2.9146118e-77],[5.1148233e-78],[8.8970606e-79],[1.5340108e-79],[2.6216589e-80],[4.4410925e-81],[7.4570878e-82],[1.241122e-82],[2.0475069e-83],[3.3481275e-84],[5.426805e-85],[8.7187061e-86]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"January","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[2.9189075e-16,6.0207336e-16,1.2309595e-15,2.4946152e-15,5.0110528e-15,9.9774646e-15,1.9691438e-14,3.8521299e-14,7.4694895e-14,1.4356472e-13,2.73509e-13,5.1649129e-13,9.6676793e-13,1.7936998e-12,3.2987245e-12,6.0132827e-12,1.0865434e-11,1.9460458e-11,3.4548587e-11,6.0796636e-11,1.0604782e-10,1.8335714e-10,3.1424539e-10,5.3384622e-10,8.9896118e-10,1.50053e-09,2.4827275e-09,4.0718883e-09,6.6198338e-09,1.0668048e-08,1.7041662e-08,2.698552e-08,4.2358881e-08,6.5910767e-08,1.016647e-07,1.5544973e-07,2.3562443e-07,3.5405135e-07,5.2739173e-07,7.7880307e-07,1.1401345e-06,1.6547259e-06,2.3809263e-06,3.3964471e-06,4.8036669e-06,6.7359858e-06,9.3653052e-06,1.2910667e-05,1.7648028e-05,2.3921075e-05,3.215289e-05,4.285817e-05,5.665559e-05,7.4279785e-05,9.6592284e-05,0.00012459067,0.00015941511,0.00020235141,0.00025482974,0.0003184182,0.00039481057,0.00048580775,0.00059329254,0.00071919784,0.00086546838,0.0010340165,0.0012266727,0.0014451323,0.0016908978,0.0019652203,0.0022690389,0.0026029207,0.002967001,0.0033609266,0.0037838016,0.0042341383,0.0047098137,0.0052080356,0.005725319,0.0062574778,0.006799634,0.0073462505,0.0078911896,0.0084278028,0.0089490536,0.009447675,0.0099163618,0.010347994,0.010735883,0.011074043,0.011357455,0.011582333,0.011746361,0.011848895,0.011891105,0.011876052,0.011808684,0.01169575,0.01154562,0.011368029,0.011173738,0.010974137,0.010780809,0.010605062,0.010457477,0.010347465,0.010282891,0.010269751,0.010311949,0.010411159,0.010566802,0.010776124,0.011034372,0.011335069,0.011670355,0.012031398,0.012408835,0.012793232,0.013175545,0.013547554,0.013902251,0.014234179,0.014539695,0.014817159,0.015067041,0.015291945,0.015496555,0.015687502,0.015873168,0.016063429,0.016269353,0.016502851,0.016776312,0.017102209,0.0174927,0.017959225,0.018512112,0.019160196,0.019910458,0.020767691,0.021734215,0.022809624,0.023990597,0.025270782,0.026640745,0.028088019,0.029597237,0.03115037,0.032727074,0.034305119,0.035860928,0.037370183,0.038808495,0.040152109,0.041378619,0.042467658,0.043401539,0.04416581,0.044749698,0.045146418,0.045353325,0.045371916,0.045207661,0.044869678,0.044370281,0.043724398,0.042948919,0.042061987,0.041082271,0.040028272,0.038917671,0.037766778,0.036590075,0.035399891,0.034206214,0.033016626,0.031836373,0.030668541,0.029514328,0.02837338,0.02724418,0.026124443,0.025011516,0.023902747,0.022795809,0.02168897,0.020581292,0.019472765,0.018364373,0.017258086,0.016156806,0.015064254,0.013984823,0.012923404,0.011885192,0.010875489,0.0098995094,0.0089621983,0.0080680673,0.0072210567,0.0064244247,0.0056806692,0.0049914802,0.0043577242,0.0037794586,0.0032559719,0.0027858479,0.0023670477,0.0019970051,0.0016727312,0.0013909215,0.0011480629,0.00094053466,0.00076470104,0.00061699303,0.0004939769,0.00039240901,0.00030927687,0.00024182663,0.00018757845,0.00014433098,0.00011015681,8.3390615e-05,6.2611984e-05,4.6624483e-05,3.4432614e-05,2.5217948e-05,1.83155e-05,1.3191182e-05,9.4208954e-06,6.6716421e-06,4.6848405e-06,3.2618849e-06,2.2518798e-06,1.541403e-06,1.0461018e-06,7.0390059e-07,4.6959324e-07,3.1059855e-07,2.0367536e-07,1.32414e-07,8.5345554e-08,5.4534968e-08,3.4547157e-08,2.169646e-08,1.3508318e-08,8.3376999e-09,5.1017692e-09,3.0947255e-09,1.8610054e-09,1.1094172e-09,6.5563431e-10,3.8410135e-10,2.2307219e-10,1.2842767e-10,7.3296571e-11,4.146856e-11,2.3257498e-11,1.293047e-11,7.1264228e-12,3.8934405e-12,2.1086231e-12,1.1320529e-12,6.0247042e-13,3.1783737e-13,1.6621623e-13,8.6166851e-14,4.4279676e-14,2.2556162e-14,1.1389948e-14,5.7012917e-15,2.8289092e-15,1.39142e-15,6.7840696e-16,3.2787966e-16,1.5708335e-16,7.4599634e-17,3.5118301e-17,1.6387774e-17,7.5804598e-18,3.4758393e-18,1.5798354e-18,7.1178936e-19,3.1789093e-19,1.4073149e-19,6.1757603e-20,2.6864276e-20,1.1583637e-20,4.9510735e-21,2.0976741e-21,8.8096866e-22,3.6674674e-22,1.5134045e-22,6.190509e-23,2.5100355e-23,1.0088234e-23,4.0191283e-24,1.5871927e-24,6.2130968e-25,2.4108319e-25,9.2726904e-26,3.5352836e-26,1.3360481e-26,5.0049407e-27,1.8584654e-27,6.840509e-28,2.4957464e-28,9.0258946e-29,3.2356204e-29,1.1497465e-29,4.0497063e-30,1.4139095e-30,4.8932354e-31,1.678598e-31,5.7078581e-32,1.9238678e-32,6.4276563e-33,2.1286545e-33,6.987673e-34,2.2737076e-34,7.3334957e-35,2.3445617e-35,7.4299558e-36,2.3339124e-36,7.2670206e-37,2.2428568e-37,6.861512e-38,2.0807074e-38,6.2542455e-39,1.8634226e-39,5.5032613e-40,1.6110205e-40,4.6747023e-41,1.3445552e-41,3.833319e-42,1.083285e-42,3.0344624e-43,8.4254273e-44,2.3188522e-44,6.3259389e-45,1.7105965e-45,4.585014e-46,1.2181593e-46,3.208025e-47,8.3741641e-48,2.1667815e-48,5.5572323e-49,1.4127706e-49,3.5600352e-50,8.892141e-51,2.2015455e-51,5.4027908e-52,1.3142491e-52,3.1688825e-53,7.5736181e-54,1.7941939e-54,4.2131209e-55,9.8063404e-56,2.2624468e-56,5.1739006e-57,1.1728054e-57,2.6351291e-58,5.868753e-59,1.2955604e-59,2.8348969e-60,6.1487184e-61,1.3219029e-61,2.8169688e-62,5.9502055e-63,1.2458027e-63,2.5854363e-64,5.3184569e-65,1.0844376e-65,2.1917477e-66,4.3907986e-67,8.7189342e-68,1.7161297e-68,3.34814e-69,6.4747619e-70,1.241111e-70,2.3581099e-71,4.4410326e-72,8.2903017e-73,1.533992e-73,2.8134693e-74,5.114787e-75,9.2167781e-76,1.6462541e-76,2.9146118e-77,5.1148233e-78,8.8970606e-79,1.5340108e-79,2.6216589e-80,4.4410925e-81,7.4570878e-82,1.241122e-82,2.0475069e-83,3.3481275e-84,5.426805e-85,8.7187061e-86],"zorder":0,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"zorder":1,"type":"scatter"},{"customdata":[[2.838495e-44],[1.0289775e-43],[3.6973229e-43],[1.3168391e-42],[4.6488104e-42],[1.6267273e-41],[5.6422391e-41],[1.939778e-40],[6.6102267e-40],[2.2327726e-39],[7.4754342e-39],[2.4808023e-38],[8.1604047e-38],[2.6606947e-37],[8.5988858e-37],[2.7545656e-36],[8.7463705e-36],[2.7527478e-35],[8.5875399e-35],[2.6554304e-34],[8.1388842e-34],[2.4726271e-33],[7.4458825e-33],[2.2224783e-32],[6.5754078e-32],[1.9282869e-31],[5.6051136e-31],[1.6149571e-30],[4.6121279e-30],[1.3055861e-29],[3.6633084e-29],[1.0188383e-28],[2.8086707e-28],[7.6746786e-28],[2.0786596e-27],[5.5804645e-27],[1.4849818e-26],[3.9168389e-26],[1.0240333e-25],[2.6537272e-25],[6.8165128e-25],[1.7355297e-24],[4.3799145e-24],[1.0956277e-23],[2.7165907e-23],[6.6765055e-23],[1.6264398e-22],[3.9272686e-22],[9.3995487e-22],[2.2299093e-21],[5.2436199e-21],[1.2221908e-20],[2.8236484e-20],[6.4661538e-20],[1.4677269e-19],[3.3022371e-19],[7.364361e-19],[1.6278924e-18],[3.5668111e-18],[7.7463717e-18],[1.6675557e-17],[3.5581659e-17],[7.5255081e-17],[1.5776449e-16],[3.2782835e-16],[6.7522351e-16],[1.3785179e-15],[2.7895945e-15],[5.5954309e-15],[1.1124739e-14],[2.19235e-14],[4.2824647e-14],[8.2916603e-14],[1.5913035e-13],[3.0271111e-13],[5.7077839e-13],[1.0667693e-12],[1.9762292e-12],[3.628841e-12],[6.6048417e-12],[1.1915732e-11],[2.130801e-11],[3.7768428e-11],[6.6355786e-11],[1.1555602e-10],[1.9946662e-10],[3.4128075e-10],[5.7878503e-10],[9.7294152e-10],[1.6211387e-09],[2.6774268e-09],[4.3830769e-09],[7.1122116e-09],[1.1439167e-08],[1.8236787e-08],[2.8818179e-08],[4.5138706e-08],[7.0080333e-08],[1.0784693e-07],[1.6450692e-07],[2.4872843e-07],[3.7276214e-07],[5.5373695e-07],[8.1534391e-07],[1.1899922e-06],[1.7215265e-06],[2.4685966e-06],[3.5087618e-06],[4.9433989e-06],[6.9034502e-06],[9.5560063e-06],[1.3111652e-05],[1.7832429e-05],[2.4040149e-05],[3.212471e-05],[4.255189e-05],[5.5869993e-05],[7.2714592e-05],[9.3810479e-05],[0.0001199699],[0.00015208611],[0.00019112137],[0.0002380887],[0.00029402678],[0.0003599681],[0.00043690066],[0.00052572409],[0.00062720202],[0.00074191269],[0.00087020094],[0.0010121348],[0.0011674704],[0.0013356297],[0.0015156935],[0.0017064144],[0.0019062518],[0.0021134293],[0.0023260158],[0.0025420279],[0.0027595497],[0.0029768669],[0.0031926054],[0.0034058704],[0.0036163749],[0.0038245501],[0.0040316297],[0.004239701],[0.0044517168],[0.0046714663],[0.004903502],[0.0051530264],[0.0054257415],[0.0057276686],[0.0060649458],[0.0064436147],[0.0068694054],[0.0073475317],[0.0078825053],[0.0084779783],[0.00913662],[0.0098600335],[0.010648711],[0.011502033],[0.012418299],[0.013394794],[0.01442788],[0.015513104],[0.016645316],[0.017818791],[0.019027344],[0.020264441],[0.021523292],[0.022796932],[0.024078289],[0.02536024],[0.026635657],[0.027897441],[0.029138571],[0.030352131],[0.031531362],[0.032669704],[0.033760847],[0.034798787],[0.035777875],[0.036692865],[0.037538957],[0.03831182],[0.03900761],[0.039622967],[0.040155004],[0.040601277],[0.040959757],[0.0412288],[0.041407112],[0.041493743],[0.041488084],[0.041389888],[0.041199319],[0.040917012],[0.04054416],[0.04008261],[0.039534965],[0.038904683],[0.038196169],[0.037414842],[0.036567181],[0.035660735],[0.0347041],[0.033706857],[0.032679471],[0.031633154],[0.030579691],[0.029531241],[0.028500101],[0.027498457],[0.026538113],[0.025630211],[0.024784942],[0.024011263],[0.023316628],[0.022706734],[0.0221853],[0.021753891],[0.02141179],[0.021155939],[0.020980949],[0.020879184],[0.02084093],[0.020854641],[0.020907258],[0.020984594],[0.021071761],[0.021153641],[0.021215361],[0.021242763],[0.021222853],[0.021144189],[0.020997223],[0.020774552],[0.020471091],[0.020084156],[0.01961346],[0.019061014],[0.018430971],[0.017729386],[0.016963941],[0.016143623],[0.015278394],[0.014378842],[0.013455852],[0.012520287],[0.011582705],[0.010653111],[0.0097407437],[0.0088539148],[0.0079998858],[0.0071847904],[0.0064135963],[0.0056901041],[0.005016978],[0.004395804],[0.0038271705],[0.0033107659],[0.0028454887],[0.0024295644],[0.0020606664],[0.0017360351],[0.0014525941],[0.001207058],[0.00099603172],[0.00081609858],[0.0006638961],[0.00053617897],[0.00042986929],[0.00034209417],[0.00027021167],[0.000211826],[0.00016479343],[0.00012722012],[9.7453639e-05],[7.4069427e-05],[5.5853722e-05],[4.1784217e-05],[3.1009552e-05],[2.282859e-05],[1.6670228e-05],[1.2074316e-05],[8.6740695e-06],[6.1802288e-06],[4.3670736e-06],[3.0603054e-06],[2.1267298e-06],[1.4656123e-06],[1.0015484e-06],[6.7866965e-07],[4.5600232e-07],[3.0379946e-07],[2.0068188e-07],[1.3143805e-07],[8.5352662e-08],[5.4952544e-08],[3.5077258e-08],[2.2198491e-08],[1.3927546e-08],[8.6630906e-09],[5.3421054e-09],[3.2657881e-09],[1.979222e-09],[1.1891244e-09],[7.0824257e-10],[4.1817172e-10],[2.4476056e-10],[1.4201651e-10],[8.1685251e-11],[4.6574994e-11],[2.6324704e-11],[1.4749358e-11],[8.1917973e-12],[4.5100306e-12],[2.4613415e-12],[1.3315406e-12],[7.1404442e-13],[3.7956194e-13],[1.9999775e-13],[1.0446027e-13],[5.4082819e-14],[2.775546e-14],[1.4119433e-14],[7.1197499e-15],[3.5586871e-15],[1.7631591e-15],[8.6590249e-16],[4.2152312e-16],[2.0339861e-16],[9.7285474e-17],[4.6123346e-17],[2.1675333e-17],[1.0096767e-17],[4.6619753e-18],[2.1336744e-18],[9.6795777e-19],[4.3526558e-19],[1.9400883e-19],[8.5715143e-20],[3.7537223e-20],[1.6294271e-20],[7.0109297e-21],[2.9900877e-21],[1.2640365e-21],[5.2966635e-22],[2.1999462e-22],[9.0570842e-23],[3.6959938e-23],[1.4949971e-23],[5.9939844e-24],[2.3820826e-24],[9.3834784e-25],[3.6638406e-25],[1.4179954e-25],[5.4397448e-26],[2.068462e-26],[7.7961784e-27],[2.9126018e-27],[1.0785629e-27],[3.9589026e-28],[1.4403532e-28],[5.1943115e-29],[1.8567426e-29],[6.5786998e-30],[2.3104312e-30],[8.0428612e-31],[2.7751892e-31],[9.4915923e-32],[3.2177327e-32],[1.0812477e-32],[3.6013455e-33],[1.1889638e-33],[3.8907809e-34],[1.2620284e-34],[4.0575667e-35],[1.293083e-35],[4.0846161e-36],[1.2789107e-36],[3.9691117e-37],[1.2209854e-37],[3.7229886e-38],[1.1252188e-38],[3.3709031e-39],[1.0009666e-39],[2.9461637e-40],[8.5952431e-41],[2.4855553e-41],[7.1244713e-42],[2.0241645e-42],[5.7003683e-43],[1.591197e-43],[4.4025967e-44],[1.2074184e-44],[3.2822416e-45],[8.8439691e-46]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"January","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[2.838495e-44,1.0289775e-43,3.6973229e-43,1.3168391e-42,4.6488104e-42,1.6267273e-41,5.6422391e-41,1.939778e-40,6.6102267e-40,2.2327726e-39,7.4754342e-39,2.4808023e-38,8.1604047e-38,2.6606947e-37,8.5988858e-37,2.7545656e-36,8.7463705e-36,2.7527478e-35,8.5875399e-35,2.6554304e-34,8.1388842e-34,2.4726271e-33,7.4458825e-33,2.2224783e-32,6.5754078e-32,1.9282869e-31,5.6051136e-31,1.6149571e-30,4.6121279e-30,1.3055861e-29,3.6633084e-29,1.0188383e-28,2.8086707e-28,7.6746786e-28,2.0786596e-27,5.5804645e-27,1.4849818e-26,3.9168389e-26,1.0240333e-25,2.6537272e-25,6.8165128e-25,1.7355297e-24,4.3799145e-24,1.0956277e-23,2.7165907e-23,6.6765055e-23,1.6264398e-22,3.9272686e-22,9.3995487e-22,2.2299093e-21,5.2436199e-21,1.2221908e-20,2.8236484e-20,6.4661538e-20,1.4677269e-19,3.3022371e-19,7.364361e-19,1.6278924e-18,3.5668111e-18,7.7463717e-18,1.6675557e-17,3.5581659e-17,7.5255081e-17,1.5776449e-16,3.2782835e-16,6.7522351e-16,1.3785179e-15,2.7895945e-15,5.5954309e-15,1.1124739e-14,2.19235e-14,4.2824647e-14,8.2916603e-14,1.5913035e-13,3.0271111e-13,5.7077839e-13,1.0667693e-12,1.9762292e-12,3.628841e-12,6.6048417e-12,1.1915732e-11,2.130801e-11,3.7768428e-11,6.6355786e-11,1.1555602e-10,1.9946662e-10,3.4128075e-10,5.7878503e-10,9.7294152e-10,1.6211387e-09,2.6774268e-09,4.3830769e-09,7.1122116e-09,1.1439167e-08,1.8236787e-08,2.8818179e-08,4.5138706e-08,7.0080333e-08,1.0784693e-07,1.6450692e-07,2.4872843e-07,3.7276214e-07,5.5373695e-07,8.1534391e-07,1.1899922e-06,1.7215265e-06,2.4685966e-06,3.5087618e-06,4.9433989e-06,6.9034502e-06,9.5560063e-06,1.3111652e-05,1.7832429e-05,2.4040149e-05,3.212471e-05,4.255189e-05,5.5869993e-05,7.2714592e-05,9.3810479e-05,0.0001199699,0.00015208611,0.00019112137,0.0002380887,0.00029402678,0.0003599681,0.00043690066,0.00052572409,0.00062720202,0.00074191269,0.00087020094,0.0010121348,0.0011674704,0.0013356297,0.0015156935,0.0017064144,0.0019062518,0.0021134293,0.0023260158,0.0025420279,0.0027595497,0.0029768669,0.0031926054,0.0034058704,0.0036163749,0.0038245501,0.0040316297,0.004239701,0.0044517168,0.0046714663,0.004903502,0.0051530264,0.0054257415,0.0057276686,0.0060649458,0.0064436147,0.0068694054,0.0073475317,0.0078825053,0.0084779783,0.00913662,0.0098600335,0.010648711,0.011502033,0.012418299,0.013394794,0.01442788,0.015513104,0.016645316,0.017818791,0.019027344,0.020264441,0.021523292,0.022796932,0.024078289,0.02536024,0.026635657,0.027897441,0.029138571,0.030352131,0.031531362,0.032669704,0.033760847,0.034798787,0.035777875,0.036692865,0.037538957,0.03831182,0.03900761,0.039622967,0.040155004,0.040601277,0.040959757,0.0412288,0.041407112,0.041493743,0.041488084,0.041389888,0.041199319,0.040917012,0.04054416,0.04008261,0.039534965,0.038904683,0.038196169,0.037414842,0.036567181,0.035660735,0.0347041,0.033706857,0.032679471,0.031633154,0.030579691,0.029531241,0.028500101,0.027498457,0.026538113,0.025630211,0.024784942,0.024011263,0.023316628,0.022706734,0.0221853,0.021753891,0.02141179,0.021155939,0.020980949,0.020879184,0.02084093,0.020854641,0.020907258,0.020984594,0.021071761,0.021153641,0.021215361,0.021242763,0.021222853,0.021144189,0.020997223,0.020774552,0.020471091,0.020084156,0.01961346,0.019061014,0.018430971,0.017729386,0.016963941,0.016143623,0.015278394,0.014378842,0.013455852,0.012520287,0.011582705,0.010653111,0.0097407437,0.0088539148,0.0079998858,0.0071847904,0.0064135963,0.0056901041,0.005016978,0.004395804,0.0038271705,0.0033107659,0.0028454887,0.0024295644,0.0020606664,0.0017360351,0.0014525941,0.001207058,0.00099603172,0.00081609858,0.0006638961,0.00053617897,0.00042986929,0.00034209417,0.00027021167,0.000211826,0.00016479343,0.00012722012,9.7453639e-05,7.4069427e-05,5.5853722e-05,4.1784217e-05,3.1009552e-05,2.282859e-05,1.6670228e-05,1.2074316e-05,8.6740695e-06,6.1802288e-06,4.3670736e-06,3.0603054e-06,2.1267298e-06,1.4656123e-06,1.0015484e-06,6.7866965e-07,4.5600232e-07,3.0379946e-07,2.0068188e-07,1.3143805e-07,8.5352662e-08,5.4952544e-08,3.5077258e-08,2.2198491e-08,1.3927546e-08,8.6630906e-09,5.3421054e-09,3.2657881e-09,1.979222e-09,1.1891244e-09,7.0824257e-10,4.1817172e-10,2.4476056e-10,1.4201651e-10,8.1685251e-11,4.6574994e-11,2.6324704e-11,1.4749358e-11,8.1917973e-12,4.5100306e-12,2.4613415e-12,1.3315406e-12,7.1404442e-13,3.7956194e-13,1.9999775e-13,1.0446027e-13,5.4082819e-14,2.775546e-14,1.4119433e-14,7.1197499e-15,3.5586871e-15,1.7631591e-15,8.6590249e-16,4.2152312e-16,2.0339861e-16,9.7285474e-17,4.6123346e-17,2.1675333e-17,1.0096767e-17,4.6619753e-18,2.1336744e-18,9.6795777e-19,4.3526558e-19,1.9400883e-19,8.5715143e-20,3.7537223e-20,1.6294271e-20,7.0109297e-21,2.9900877e-21,1.2640365e-21,5.2966635e-22,2.1999462e-22,9.0570842e-23,3.6959938e-23,1.4949971e-23,5.9939844e-24,2.3820826e-24,9.3834784e-25,3.6638406e-25,1.4179954e-25,5.4397448e-26,2.068462e-26,7.7961784e-27,2.9126018e-27,1.0785629e-27,3.9589026e-28,1.4403532e-28,5.1943115e-29,1.8567426e-29,6.5786998e-30,2.3104312e-30,8.0428612e-31,2.7751892e-31,9.4915923e-32,3.2177327e-32,1.0812477e-32,3.6013455e-33,1.1889638e-33,3.8907809e-34,1.2620284e-34,4.0575667e-35,1.293083e-35,4.0846161e-36,1.2789107e-36,3.9691117e-37,1.2209854e-37,3.7229886e-38,1.1252188e-38,3.3709031e-39,1.0009666e-39,2.9461637e-40,8.5952431e-41,2.4855553e-41,7.1244713e-42,2.0241645e-42,5.7003683e-43,1.591197e-43,4.4025967e-44,1.2074184e-44,3.2822416e-45,8.8439691e-46],"zorder":1,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726],"zorder":2,"type":"scatter"},{"customdata":[[3.9443552e-27],[1.0535101e-26],[2.7891077e-26],[7.3190671e-26],[1.9037506e-25],[4.9082683e-25],[1.254326e-24],[3.1772872e-24],[7.9774932e-24],[1.985365e-23],[4.8975425e-23],[1.1975125e-22],[2.9023237e-22],[6.9722936e-22],[1.6602347e-21],[3.9185678e-21],[9.1674657e-21],[2.1258632e-20],[4.88636e-20],[1.1132681e-19],[2.514075e-19],[5.6275702e-19],[1.2486131e-18],[2.7459913e-18],[5.9859734e-18],[1.2934059e-17],[2.7701248e-17],[5.8806914e-17],[1.237434e-16],[2.5809549e-16],[5.3358493e-16],[1.0934315e-15],[2.2209796e-15],[4.4715971e-15],[8.9237212e-15],[1.7652031e-14],[3.4610582e-14],[6.7264947e-14],[1.2957899e-13],[2.4742663e-13],[4.6830049e-13],[8.7855577e-13],[1.6337322e-12],[3.0113383e-12],[5.5018109e-12],[9.9636757e-12],[1.7885526e-11],[3.1823832e-11],[5.6127066e-11],[9.8120972e-11],[1.7002843e-10],[2.9204657e-10],[4.9722642e-10],[8.3912869e-10],[1.4037057e-09],[2.3275425e-09],[3.8255531e-09],[6.2325676e-09],[1.0065078e-08],[1.6111872e-08],[2.5565544e-08],[4.0211091e-08],[6.269317e-08],[9.6890255e-08],[1.4843202e-07],[2.2540578e-07],[3.3930874e-07],[5.0631454e-07],[7.4893511e-07],[1.0981706e-06],[1.5962504e-06],[2.3000744e-06],[3.2854654e-06],[4.6523348e-06],[6.5308469e-06],[9.08863e-06],[1.2539038e-05],[1.7150391e-05],[2.3256033e-05],[3.126494e-05],[4.1672474e-05],[5.5070745e-05],[7.2157894e-05],[9.3745465e-05],[0.00012076294],[0.00015425839],[0.00019539422],[0.00024543699],[0.00030574048],[0.00037772126],[0.00046282667],[0.00056249504],[0.00067810907],[0.0008109433],[0.00096210759],[0.0011324887],[0.001322693],[0.001532993],[0.0017632812],[0.0020130345],[0.0022812915],[0.0025666457],[0.0028672564],[0.0031808767],[0.0035049],[0.003836423],[0.0041723233],[0.0045093473],[0.0048442075],[0.0051736819],[0.0054947146],[0.0058045119],[0.0061006316],[0.0063810631],[0.0066442967],[0.0068893823],[0.0071159772],[0.0073243842],[0.0075155828],[0.0076912539],[0.0078538002],[0.0080063646],[0.008152844],[0.0082979013],[0.0084469705],[0.0086062534],[0.0087827032],[0.0089839904],[0.0092184442],[0.0094949665],[0.0098229116],[0.010211931],[0.01067178],[0.011212087],[0.011842092],[0.012570361],[0.013404476],[0.014350731],[0.015413823],[0.016596576],[0.017899699],[0.019321582],[0.020858171],[0.022502897],[0.024246689],[0.026078055],[0.027983246],[0.029946478],[0.03195022],[0.033975523],[0.036002388],[0.03801015],[0.039977869],[0.041884714],[0.043710337],[0.045435212],[0.047040957],[0.048510611],[0.04982889],[0.050982397],[0.051959811],[0.052752032],[0.053352304],[0.053756308],[0.053962212],[0.053970698],[0.053784942],[0.053410555],[0.052855482],[0.052129846],[0.051245753],[0.05021704],[0.04905899],[0.047787997],[0.046421218],[0.044976195],[0.043470476],[0.041921246],[0.040344979],[0.038757118],[0.037171801],[0.035601644],[0.034057571],[0.032548715],[0.03108237],[0.029664003],[0.028297324],[0.026984392],[0.025725768],[0.024520698],[0.023367306],[0.022262818],[0.02120378],[0.020186276],[0.019206144],[0.01825917],[0.017341275],[0.016448673],[0.015578007],[0.014726456],[0.013891817],[0.013072552],[0.012267814],[0.011477432],[0.010701881],[0.0099422152],[0.0091999942],[0.0084771781],[0.0077760187],[0.007098941],[0.0064484223],[0.0058268759],[0.0052365412],[0.004679388],[0.0041570359],[0.0036706922],[0.0032211104],[0.0028085693],[0.0024328719],[0.0020933633],[0.0017889643],[0.0015182194],[0.0012793536],[0.0010703369],[0.00088895093],[0.0007328565],[0.00059965721],[0.00048695826],[0.00039241804],[0.00031379134],[0.00024896371],[0.00019597674],[0.00015304482],[0.00011856385],[9.1113162e-05],[6.9451615e-05],[5.2509109e-05],[3.9374776e-05],[2.9282899e-05],[2.1597585e-05],[1.5797023e-05],[1.1458007e-05],[8.2412414e-06],[5.8777715e-06],[4.1567801e-06],[2.9148368e-06],[2.0266264e-06],[1.3970935e-06],[9.5490557e-07],[6.4709785e-07],[4.3475654e-07],[2.8958865e-07],[1.9123585e-07],[1.2519963e-07],[8.1260009e-08],[5.2285976e-08],[3.3352086e-08],[2.1090432e-08],[1.3221119e-08],[8.2161273e-09],[5.0614913e-09],[3.0909978e-09],[1.8712186e-09],[1.1229306e-09],[6.6800712e-10],[3.9391855e-10],[2.3026425e-10],[1.3342558e-10],[7.6637642e-11],[4.3634867e-11],[2.4627022e-11],[1.3777651e-11],[7.6405038e-12],[4.2000156e-12],[2.288551e-12],[1.2360892e-12],[6.6178583e-13],[3.5120644e-13],[1.8474975e-13],[9.6334248e-14],[4.9791156e-14],[2.5509242e-14],[1.2954363e-14],[6.5208919e-15],[3.2536422e-15],[1.6091771e-15],[7.8887582e-16],[3.8333959e-16],[1.8464114e-16],[8.815412e-17],[4.1718215e-17],[1.9569395e-17],[9.0990765e-18],[4.1935823e-18],[1.915758e-18],[8.6748802e-19],[3.8936188e-19],[1.7322487e-19],[7.6389509e-20],[3.3390555e-20],[1.4467045e-20],[6.2130106e-21],[2.6447845e-21],[1.1159488e-21],[4.6672803e-22],[1.9348576e-22],[7.9505928e-23],[3.2382867e-23],[1.3073632e-23],[5.2316932e-24],[2.0751681e-24],[8.1588546e-25],[3.1795812e-25],[1.2282179e-25],[4.7026817e-26],[1.7847623e-26],[6.7139754e-27],[2.5034771e-27],[9.2527741e-28],[3.3897269e-28],[1.2308974e-28],[4.4304037e-29],[1.5806258e-29],[5.5895786e-30],[1.9592656e-30],[6.807251e-31],[2.3443064e-31],[8.0024163e-32],[2.7076469e-32],[9.0808606e-33],[3.0187425e-33],[9.9469331e-34],[3.2487505e-34],[1.051738e-34],[3.3749143e-35],[1.0734503e-35],[3.3842709e-36],[1.0575776e-36],[3.2758451e-37],[1.0057694e-37],[3.0608172e-38],[9.2329462e-39],[2.7606232e-39],[8.1815931e-40],[2.4034358e-40],[6.9982759e-41],[2.0198238e-41],[5.7782962e-42],[1.6385134e-42],[4.605365e-43],[1.2830453e-43],[3.543103e-44],[9.6981619e-45],[2.6312307e-45],[7.0760728e-46],[1.8862076e-46],[4.9836846e-47],[1.3051951e-47],[3.388162e-48],[8.7179974e-49],[2.2234795e-49],[5.6209972e-50],[1.4085019e-50],[3.4983666e-51],[8.6126547e-52],[2.1017089e-52],[5.0836066e-53],[1.2188075e-53],[2.8964239e-54],[6.8226477e-55],[1.5929699e-55],[3.6866002e-56],[8.4568438e-57],[1.9228898e-57],[4.3337544e-58],[9.6813965e-59],[2.1437569e-59],[4.7051867e-60],[1.0236277e-60],[2.2073488e-61],[4.7180629e-62],[9.9958632e-63],[2.0991365e-63],[4.3694309e-64],[9.0151482e-65],[1.8436763e-65],[3.73732e-66],[7.5093043e-67],[1.4955569e-67],[2.9523644e-68],[5.776979e-69],[1.1204576e-69],[2.1540406e-70],[4.10465e-71],[7.7528643e-72],[1.4514833e-72],[2.6935541e-73],[4.9545381e-74],[9.0332585e-75],[1.6324862e-75]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"February","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164725,-0.018164725,-0.018164725,-0.018164724,-0.018164723,-0.018164722,-0.01816472,-0.018164716,-0.01816471,-0.0181647,-0.018164686,-0.018164663,-0.018164629,-0.018164577,-0.0181645,-0.018164386,-0.018164219,-0.018163977,-0.018163628,-0.01816313,-0.018162426,-0.01816144,-0.018160073,-0.018158195,-0.018155637,-0.018152187,-0.018147575,-0.01814147,-0.018133461,-0.018123053,-0.018109655,-0.018092568,-0.01807098,-0.018043963,-0.018010467,-0.017969332,-0.017919289,-0.017858985,-0.017787005,-0.017701899,-0.017602231,-0.017486617,-0.017353782,-0.017202618,-0.017032237,-0.016842033,-0.016631733,-0.016401445,-0.016151691,-0.015883434,-0.01559808,-0.015297469,-0.014983849,-0.014659826,-0.014328303,-0.013992403,-0.013655378,-0.013320518,-0.012991044,-0.012670011,-0.012360214,-0.012064094,-0.011783663,-0.011520429,-0.011275343,-0.011048749,-0.010840342,-0.010649143,-0.010473472,-0.010310926,-0.010158361,-0.010011882,-0.0098668244,-0.0097177553,-0.0095584724,-0.0093820225,-0.0091807354,-0.0089462816,-0.0086697593,-0.0083418141,-0.0079527946,-0.0074929459,-0.0069526391,-0.0063226336,-0.0055943648,-0.0047602493,-0.003813995,-0.0027509031,-0.0015681493,-0.00026502718,0.0011568559,0.0026934448,0.0043381713,0.0060819632,0.0079133297,0.0098185207,0.011781753,0.013785494,0.015810797,0.017837662,0.019845424,0.021813143,0.023719989,0.025545611,0.027270487,0.028876231,0.030345885,0.031664164,0.032817672,0.033795085,0.034587306,0.035187578,0.035591582,0.035797487,0.035805973,0.035620216,0.03524583,0.034690756,0.03396512,0.033081027,0.032052314,0.030894264,0.029623271,0.028256492,0.026811469,0.02530575,0.02375652,0.022180254,0.020592392,0.019007075,0.017436918,0.015892845,0.01438399,0.012917644,0.011499277,0.010132598,0.0088196658,0.0075610427,0.0063559718,0.0052025799,0.0040980923,0.0030390543,0.0020215506,0.0010414178,9.444372e-05,-0.00082345096,-0.0017160525,-0.0025867186,-0.0034382696,-0.004272909,-0.0050921734,-0.0058969116,-0.0066872934,-0.0074628453,-0.0082225106,-0.0089647316,-0.0096875477,-0.010388707,-0.011065785,-0.011716303,-0.01233785,-0.012928185,-0.013485338,-0.01400769,-0.014494034,-0.014943615,-0.015356156,-0.015731854,-0.016071363,-0.016375761,-0.016646506,-0.016885372,-0.017094389,-0.017275775,-0.017431869,-0.017565069,-0.017677768,-0.017772308,-0.017850934,-0.017915762,-0.017968749,-0.018011681,-0.018046162,-0.018073613,-0.018095274,-0.018112217,-0.018125351,-0.018135443,-0.018143128,-0.018148929,-0.018153268,-0.018156485,-0.018158848,-0.018160569,-0.018161811,-0.018162699,-0.018163329,-0.018163771,-0.018164079,-0.018164291,-0.018164436,-0.018164535,-0.018164601,-0.018164645,-0.018164673,-0.018164692,-0.018164705,-0.018164713,-0.018164718,-0.018164721,-0.018164723,-0.018164724,-0.018164725,-0.018164725,-0.018164725,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726],"zorder":2,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726],"zorder":3,"type":"scatter"},{"customdata":[[4.6812804e-57],[2.0479374e-56],[8.8803996e-56],[3.8169119e-55],[1.6261312e-54],[6.8669329e-54],[2.8743116e-53],[1.1925283e-52],[4.9041904e-52],[1.9990781e-51],[8.0771102e-51],[3.2347897e-50],[1.2841031e-49],[5.0526308e-49],[1.9706024e-48],[7.618058e-48],[2.9191293e-47],[1.108731e-46],[4.1741002e-46],[1.5576266e-45],[5.7613946e-45],[2.1123005e-44],[7.676223e-44],[2.7650518e-43],[9.8724005e-43],[3.4938645e-42],[1.2256124e-41],[4.2615155e-41],[1.4687192e-40],[5.0173836e-40],[1.6989462e-39],[5.7022436e-39],[1.8970366e-38],[6.255607e-38],[2.0446879e-37],[6.6244281e-37],[2.1273237e-36],[6.7714638e-36],[2.136463e-35],[6.6814694e-35],[2.0711541e-34],[6.3638021e-34],[1.9381382e-33],[5.8508184e-33],[1.7507024e-32],[5.1924444e-32],[1.5264944e-31],[4.4481804e-31],[1.2847937e-30],[3.6783093e-30],[1.0438232e-29],[2.9360906e-29],[8.1860767e-29],[2.2622782e-28],[6.1969797e-28],[1.6825888e-27],[4.5283477e-27],[1.2079958e-26],[3.1941472e-26],[8.3715973e-26],[2.1748315e-25],[5.6002422e-25],[1.4293938e-24],[3.6162705e-24],[9.0684665e-24],[2.2540873e-23],[5.5535613e-23],[1.3562395e-22],[3.2829569e-22],[7.8769481e-22],[1.8733323e-21],[4.4160675e-21],[1.0318597e-20],[2.3898449e-20],[5.4863423e-20],[1.2484187e-19],[2.8158e-19],[6.2951721e-19],[1.3950112e-18],[3.0641647e-18],[6.6713067e-18],[1.4397071e-17],[3.0796539e-17],[6.5297154e-17],[1.3723069e-16],[2.8587291e-16],[5.9028207e-16],[1.2081229e-15],[2.4509121e-15],[4.9284405e-15],[9.8232826e-15],[1.9407485e-14],[3.8005593e-14],[7.3772012e-14],[1.4193902e-13],[2.7069377e-13],[5.1170687e-13],[9.588067e-13],[1.7807707e-12],[3.278328e-12],[5.9822514e-12],[1.0820446e-11],[1.9399674e-11],[3.4475684e-11],[6.0729704e-11],[1.0603759e-10],[1.8352263e-10],[3.14841e-10],[5.3538432e-10],[9.0243024e-10],[1.5077742e-09],[2.4970934e-09],[4.0993059e-09],[6.6705917e-09],[1.0759657e-08],[1.7203398e-08],[2.7265515e-08],[4.2835018e-08],[6.6707142e-08],[1.029761e-07],[1.5757749e-07],[2.3902799e-07],[3.5942125e-07],[5.3575113e-07],[7.9164633e-07],[1.1596127e-06],[1.6838904e-06],[2.42404e-06],[3.4593746e-06],[4.8943461e-06],[6.864981e-06],[9.5464256e-06],[1.3161618e-05],[1.7991035e-05],[2.4383389e-05],[3.2767029e-05],[4.3661706e-05],[5.7690231e-05],[7.558941e-05],[9.8219555e-05],[0.00012657176],[0.00016177206],[0.00020508162],[0.00025789217],[0.00032171597],[0.00039816991],[0.00048895351],[0.00059582117],[0.00072054909],[0.00086489802],[0.0010305731],[0.0012191828],[0.001432198],[0.0016709149],[0.0019364212],[0.0022295693],[0.002550956],[0.0029009105],[0.0032794883],[0.0036864726],[0.0041213797],[0.0045834666],[0.0050717387],[0.0055849556],[0.0061216325],[0.0066800352],[0.0072581715],[0.0078537755],[0.0084642913],[0.0090868569],[0.0097182927],[0.010355101],[0.010993481],[0.01162936],[0.012258455],[0.012876348],[0.013478601],[0.014060881],[0.014619111],[0.015149633],[0.015649371],[0.016115996],[0.016548064],[0.016945138],[0.017307866],[0.017638022],[0.017938484],[0.018213172],[0.018466917],[0.018705283],[0.018934342],[0.019160401],[0.019389712],[0.019628159],[0.019880948],[0.020152317],[0.020445279],[0.020761417],[0.02110074],[0.021461626],[0.021840846],[0.022233675],[0.022634107],[0.02303514],[0.02342915],[0.023808306],[0.024165038],[0.024492503],[0.024785045],[0.025038602],[0.025251046],[0.025422424],[0.025555077],[0.02565363],[0.025724837],[0.025777286],[0.025820971],[0.025866752],[0.02592573],[0.026008566],[0.026124789],[0.026282132],[0.026485939],[0.026738685],[0.027039643],[0.027384729],[0.02776654],[0.028174589],[0.028595743],[0.029014831],[0.029415397],[0.029780554],[0.030093901],[0.030340424],[0.030507353],[0.030584892],[0.0305668],[0.030450763],[0.030238548],[0.029935906],[0.029552252],[0.029100121],[0.028594442],[0.028051676],[0.027488866],[0.026922673],[0.026368439],[0.025839354],[0.025345765],[0.024894678],[0.024489469],[0.024129827],[0.023811923],[0.023528778],[0.023270822],[0.023026574],[0.02278342],[0.022528417],[0.022249092],[0.021934162],[0.021574156],[0.021161898],[0.020692825],[0.020165139],[0.019579795],[0.018940328],[0.01825255],[0.017524146],[0.016764199],[0.01598267],[0.015189886],[0.014396049],[0.013610802],[0.012842871],[0.01209979],[0.011387728],[0.010711403],[0.010074091],[0.0094777098],[0.0089229699],[0.0084095653],[0.0079363965],[0.0075018007],[0.0071037742],[0.0067401712],[0.0064088683],[0.0061078854],[0.0058354586],[0.0055900663],[0.0053704095],[0.005175355],[0.0050038495],[0.0048548173],[0.0047270509],[0.0046191104],[0.0045292386],[0.0044553048],[0.0043947809],[0.0043447552],[0.0043019839],[0.0042629777],[0.0042241172],[0.0041817904],[0.0041325405],[0.0040732162],[0.0040011105],[0.0039140819],[0.0038106468],[0.0036900385],[0.0035522295],[0.0033979157],[0.0032284646],[0.0030458322],[0.0028524542],[0.0026511197],[0.0024448348],[0.0022366853],[0.0020297061],[0.0018267632],[0.0016304544],[0.0014430326],[0.0012663524],[0.0011018408],[0.00095049131],[0.00081287762],[0.00068918458],[0.0005792518],[0.0004826261],[0.00039861865],[0.00032636309],[0.00026487162],[0.00021308661],[0.0001699258],[0.00013432034],[0.00010524484],[8.1739934e-05],[6.2927479e-05],[4.8019482e-05],[3.6321556e-05],[2.7232042e-05],[2.023783e-05],[1.4907846e-05],[1.0885101e-05],[7.8780046e-06],[5.6515261e-06],[4.0186545e-06],[2.8324401e-06],[1.9788174e-06],[1.3702992e-06],[9.4056687e-07],[6.3992396e-07],[4.3155027e-07],[2.8846867e-07],[1.9113053e-07],[1.2552366e-07],[8.1711872e-08],[5.2724046e-08],[3.3720676e-08],[2.1377049e-08],[1.3432695e-08],[8.366474e-09],[5.1651823e-09],[3.1607686e-09],[1.9171832e-09],[1.1526524e-09],[6.8690545e-10],[4.057508e-10],[2.3756674e-10],[1.3787189e-10],[7.9310304e-11],[4.5221746e-11],[2.5558117e-11],[1.4317731e-11],[7.9502968e-12],[4.3757883e-12],[2.3872234e-12],[1.2909031e-12],[6.9192339e-13],[3.6760905e-13],[1.9358789e-13],[1.0104945e-13],[5.2282165e-14],[2.6812478e-14],[1.3629633e-14],[6.8674445e-15],[3.4298092e-15],[1.6978862e-15],[8.3312656e-16],[4.0520724e-16],[1.9534721e-16],[9.3347141e-17],[4.4213881e-17],[2.075774e-17],[9.6597365e-18],[4.4556832e-18],[2.0371693e-18],[9.2321692e-19],[4.1470969e-19],[1.8464962e-19],[8.1492275e-20]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"February","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164725,-0.018164725,-0.018164725,-0.018164724,-0.018164723,-0.018164722,-0.018164719,-0.018164715,-0.018164709,-0.018164699,-0.018164683,-0.018164659,-0.018164623,-0.018164568,-0.018164487,-0.018164366,-0.01816419,-0.018163934,-0.018163566,-0.018163042,-0.018162302,-0.018161266,-0.018159831,-0.018157861,-0.018155179,-0.018151564,-0.018146735,-0.018140342,-0.018131959,-0.018121064,-0.018107036,-0.018089136,-0.018066506,-0.018038154,-0.018002954,-0.017959644,-0.017906834,-0.01784301,-0.017766556,-0.017675772,-0.017568905,-0.017444177,-0.017299828,-0.017134153,-0.016945543,-0.016732528,-0.016493811,-0.016228305,-0.015935157,-0.01561377,-0.015263815,-0.014885238,-0.014478253,-0.014043346,-0.013581259,-0.013092987,-0.01257977,-0.012043093,-0.011484691,-0.010906554,-0.01031095,-0.0097004344,-0.0090778689,-0.0084464331,-0.0078096246,-0.0071712449,-0.0065353655,-0.0059062712,-0.0052883778,-0.0046861248,-0.0041038451,-0.003545615,-0.0030150932,-0.0025153543,-0.0020487294,-0.0016166614,-0.0012195877,-0.0008568593,-0.00052670413,-0.00022624193,4.8445944e-05,0.00030219087,0.00054055751,0.00076961619,0.00099567551,0.0012249867,0.0014634333,0.001716222,0.001987591,0.0022805534,0.0025966908,0.0029360141,0.0032969007,0.00367612,0.0040689493,0.0044693809,0.0048704146,0.0052644239,0.00564358,0.0060003118,0.0063277772,0.0066203193,0.0068738764,0.0070863206,0.0072576982,0.0073903511,0.0074889042,0.0075601116,0.0076125606,0.0076562453,0.0077020263,0.0077610042,0.0078438402,0.0079600634,0.0081174065,0.0083212136,0.0085739594,0.0088749175,0.0092200037,0.0096018139,0.010009863,0.010431017,0.010850106,0.011250671,0.011615828,0.011929175,0.012175699,0.012342627,0.012420166,0.012402074,0.012286038,0.012073822,0.01177118,0.011387526,0.010935395,0.010429716,0.0098869498,0.0093241403,0.0087579474,0.0082037137,0.0076746285,0.0071810397,0.0067299525,0.0063247432,0.0059651015,0.0056471968,0.0053640523,0.0051060963,0.0048618484,0.0046186938,0.0043636914,0.0040843665,0.0037694363,0.0034094306,0.0029971725,0.0025280991,0.0020004136,0.0014150697,0.00077560198,8.7823728e-05,-0.00064057938,-0.0014005265,-0.0021820555,-0.0029748398,-0.0037686772,-0.0045539239,-0.0053218549,-0.0060649353,-0.0067769973,-0.0074533227,-0.0080906351,-0.008687016,-0.0092417559,-0.0097551605,-0.010228329,-0.010662925,-0.011060952,-0.011424555,-0.011755857,-0.01205684,-0.012329267,-0.012574659,-0.012794316,-0.012989371,-0.013160876,-0.013309908,-0.013437675,-0.013545615,-0.013635487,-0.013709421,-0.013769945,-0.013819971,-0.013862742,-0.013901748,-0.013940609,-0.013982935,-0.014032185,-0.01409151,-0.014163615,-0.014250644,-0.014354079,-0.014474687,-0.014612496,-0.01476681,-0.014936261,-0.015118894,-0.015312272,-0.015513606,-0.015719891,-0.01592804,-0.01613502,-0.016337963,-0.016534271,-0.016721693,-0.016898373,-0.017062885,-0.017214234,-0.017351848,-0.017475541,-0.017585474,-0.0176821,-0.017766107,-0.017838363,-0.017899854,-0.017951639,-0.0179948,-0.018030405,-0.018059481,-0.018082986,-0.018101798,-0.018116706,-0.018128404,-0.018137494,-0.018144488,-0.018149818,-0.018153841,-0.018156848,-0.018159074,-0.018160707,-0.018161893,-0.018162747,-0.018163355,-0.018163785,-0.018164086,-0.018164294,-0.018164437,-0.018164535,-0.0181646,-0.018164644,-0.018164673,-0.018164692,-0.018164704,-0.018164712,-0.018164717,-0.018164721,-0.018164723,-0.018164724,-0.018164725,-0.018164725,-0.018164725,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726],"zorder":3,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452],"zorder":4,"type":"scatter"},{"customdata":[[5.7655685e-44],[2.0908313e-43],[7.5155956e-43],[2.6777835e-42],[9.4570411e-42],[3.3105711e-41],[1.1487314e-40],[3.9509553e-40],[1.3469574e-39],[4.5517023e-39],[1.524622e-38],[5.0619628e-38],[1.6658822e-37],[5.4342337e-37],[1.7571188e-36],[5.6316136e-36],[1.7890959e-35],[5.6338274e-35],[1.7585016e-34],[5.4406578e-34],[1.6685131e-33],[5.0719802e-33],[1.5282532e-32],[4.5643934e-32],[1.3512664e-31],[3.9652374e-31],[1.1533679e-30],[3.3253486e-30],[9.5033621e-30],[2.6920824e-29],[7.5591084e-29],[2.1038953e-28],[5.8042915e-28],[1.5872525e-27],[4.3024391e-27],[1.155994e-26],[3.0787099e-26],[8.1274538e-26],[2.1267333e-25],[5.5162581e-25],[1.4182388e-24],[3.614329e-24],[9.1301885e-24],[2.2861558e-23],[5.6742206e-23],[1.3959864e-22],[3.4043251e-22],[8.2291702e-22],[1.9717713e-21],[4.6830938e-21],[1.102517e-20],[2.5728488e-20],[5.9514126e-20],[1.3645928e-19],[3.1014425e-19],[6.9871874e-19],[1.5603409e-18],[3.4539453e-18],[7.5786308e-18],[1.6483364e-17],[3.5537038e-17],[7.5944689e-17],[1.6087736e-16],[3.3781143e-16],[7.03131e-16],[1.4507121e-15],[2.9669481e-15],[6.0148259e-15],[1.2087077e-14],[2.4077163e-14],[4.7541837e-14],[9.305378e-14],[1.8054287e-13],[3.4722886e-13],[6.6197469e-13],[1.2510021e-12],[2.3435102e-12],[4.3517995e-12],[8.0106049e-12],[1.4616971e-11],[2.6439082e-11],[4.740604e-11],[8.4259864e-11],[1.4845989e-10],[2.5929879e-10],[4.489485e-10],[7.7054697e-10],[1.3110227e-09],[2.21122e-09],[3.6971453e-09],[6.1279654e-09],[1.0068943e-08],[1.6401059e-08],[2.6483983e-08],[4.2395639e-08],[6.7280444e-08],[1.0584975e-07],[1.6509275e-07],[2.5527446e-07],[3.9132027e-07],[5.9471326e-07],[8.9606243e-07],[1.3385349e-06],[1.9823841e-06],[2.9108433e-06],[4.2376939e-06],[6.1168434e-06],[8.7542722e-06],[1.2422704e-05],[1.7479331e-05],[2.4386862e-05],[3.3738066e-05],[4.6283812e-05],[6.2964417e-05],[8.4943828e-05],[0.00011364584],[0.00015079122],[0.00019843408],[0.00025899562],[0.0003352928],[0.00043055926],[0.0005484555],[0.00069306546],[0.00086887636],[0.0010807395],[0.0013338097],[0.0016334626],[0.0019851895],[0.0023944703],[0.0028666282],[0.0034066687],[0.0040191087],[0.0047078019],[0.0054757668],[0.006325026],[0.0072564629],[0.0082697033],[0.0093630283],[0.010533323],[0.011776061],[0.013085336],[0.014453924],[0.015873388],[0.017334216],[0.018825991],[0.020337577],[0.021857336],[0.023373351],[0.024873659],[0.026346494],[0.027780527],[0.029165101],[0.030490466],[0.031747995],[0.032930389],[0.03403185],[0.035048232],[0.035977143],[0.036818006],[0.037572058],[0.038242288],[0.0388333],[0.039351108],[0.039802863],[0.040196507],[0.040540386],[0.040842817],[0.041111639],[0.041353776],[0.041574823],[0.041778696],[0.041967353],[0.04214063],[0.042296175],[0.042429523],[0.042534285],[0.042602461],[0.042624862],[0.042591606],[0.042492677],[0.04231851],[0.042060564],[0.04171186],[0.041267441],[0.040724743],[0.040083846],[0.039347588],[0.038521553],[0.037613918],[0.036635178],[0.035597762],[0.034515556],[0.033403375],[0.032276388],[0.031149541],[0.030037003],[0.028951651],[0.027904632],[0.026905004],[0.025959485],[0.025072302],[0.024245158],[0.023477311],[0.022765746],[0.022105444],[0.021489726],[0.020910644],[0.020359417],[0.019826869],[0.019303865],[0.01878171],[0.018252509],[0.01770946],[0.017147077],[0.016561341],[0.015949771],[0.01531142],[0.014646809],[0.013957803],[0.013247442],[0.01251974],[0.01177947],[0.011031936],[0.010282755],[0.009537651],[0.0088022647],[0.0080819951],[0.0073818622],[0.0067063999],[0.0060595758],[0.0054447373],[0.0048645803],[0.0043211395],[0.0038157966],[0.0033493046],[0.0029218242],[0.0025329717],[0.0021818746],[0.0018672338],[0.0015873899],[0.0013403911],[0.0011240626],[0.00093607257],[0.00077399684],[0.00063537722],[0.00051777474],[0.00041881553],[0.00033622914],[0.00026787902],[0.00021178492],[0.00016613792],[0.00012930831],[9.9847376e-05],[7.6483908e-05],[5.8116481e-05],[4.38025e-05],[3.2745011e-05],[2.4278177e-05],[1.7852183e-05],[1.3018233e-05],[9.4141444e-06],[6.7508997e-06],[4.8004242e-06],[3.3847069e-06],[2.3663196e-06],[1.6403066e-06],[1.1273669e-06],[7.6821768e-07],[5.1900681e-07],[3.476348e-07],[2.3084858e-07],[1.5197701e-07],[9.9190228e-08],[6.4179185e-08],[4.1166919e-08],[2.617739e-08],[1.6501504e-08],[1.0311828e-08],[6.3879101e-09],[3.9227384e-09],[2.3879431e-09],[1.4409856e-09],[8.6197271e-10],[5.1112015e-10],[3.0043167e-10],[1.7504892e-10],[1.0110256e-10],[5.7883126e-11],[3.284938e-11],[1.8479327e-11],[1.0304512e-11],[5.6957332e-12],[3.1206965e-12],[1.6948527e-12],[9.1240953e-13],[4.8688245e-13],[2.5753364e-13],[1.3502634e-13],[7.017411e-14],[3.6150017e-14],[1.8459188e-14],[9.3430471e-15],[4.6874406e-15],[2.3310617e-15],[1.1490582e-15],[5.6143579e-16],[2.7191147e-16],[1.3053408e-16],[6.2113921e-17],[2.9296938e-17],[1.3696938e-17],[6.3473491e-18],[2.915605e-18],[1.3274926e-18],[5.9910432e-19],[2.6800289e-19],[1.1883462e-19],[5.2229131e-20],[2.2753527e-20],[9.8254085e-21],[4.2055066e-21],[1.7842335e-21],[7.5032704e-22],[3.1276268e-22],[1.2922441e-22],[5.2922385e-23],[2.1483219e-23],[8.6441902e-24],[3.4475788e-24],[1.3629156e-24],[5.3405807e-25],[2.0743055e-25],[7.9858585e-26],[3.0474395e-26],[1.1526915e-26],[4.3217099e-27],[1.6060629e-27],[5.9160781e-28],[2.1600788e-28],[7.8175308e-29],[2.8043608e-29],[9.9715446e-30],[3.5144324e-30],[1.2277562e-30],[4.2514125e-31],[1.4592123e-31],[4.9644125e-32],[1.6740997e-32],[5.5957569e-33],[1.8539603e-33],[6.0884402e-34],[1.9818724e-34],[6.3945403e-35],[2.0450643e-35],[6.4828891e-36],[2.0370148e-36],[6.3443001e-37],[1.9585615e-37],[5.9931428e-38],[1.8177576e-38],[5.4648876e-39],[1.6285099e-39],[4.810204e-40],[1.4083171e-40],[4.0869688e-41],[1.1756176e-41],[3.3519281e-42],[9.4729925e-43],[2.6536495e-43],[7.3682403e-44],[2.0279062e-44],[5.5321737e-45],[1.4959173e-45],[4.0094355e-46],[1.0651793e-46],[2.804956e-47],[7.3213844e-48],[1.8941929e-48],[4.8575698e-49],[1.2347463e-49],[3.1110015e-50],[7.7693831e-51],[1.9232542e-51],[4.7190075e-52],[1.1477002e-52],[2.7667511e-53],[6.6111274e-54],[1.5658306e-54],[3.67602e-55],[8.5541086e-56],[1.9730381e-56],[4.5108667e-57],[1.0222293e-57],[2.2961512e-58],[5.1123013e-59],[1.1282263e-59],[2.4679696e-60],[5.3511509e-61],[1.1500544e-61],[2.4499285e-62]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"March","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.03632945,-0.036329449,-0.036329448,-0.036329445,-0.036329441,-0.036329435,-0.036329425,-0.036329409,-0.036329384,-0.036329346,-0.036329286,-0.036329196,-0.03632906,-0.036328857,-0.036328555,-0.036328113,-0.036327469,-0.036326541,-0.036325214,-0.036323335,-0.036320697,-0.036317029,-0.036311972,-0.036305065,-0.036295713,-0.036283168,-0.036266487,-0.036244508,-0.036215806,-0.03617866,-0.036131017,-0.036070456,-0.035994159,-0.035898892,-0.035780996,-0.035636386,-0.035460575,-0.035248712,-0.034995642,-0.034695989,-0.034344262,-0.033934981,-0.033462823,-0.032922783,-0.032310343,-0.03162165,-0.030853685,-0.030004426,-0.029072989,-0.028059748,-0.026966423,-0.025796129,-0.02455339,-0.023244115,-0.021875528,-0.020456064,-0.018995235,-0.017503461,-0.015991875,-0.014472115,-0.0129561,-0.011455792,-0.0099829571,-0.0085489248,-0.007164351,-0.0058389861,-0.0045814564,-0.0033990624,-0.0022976011,-0.0012812197,-0.00035230902,0.00048855397,0.0012426066,0.0019128368,0.0025038486,0.0030216569,0.0034734113,0.0038670554,0.0042109345,0.0045133651,0.0047821875,0.0050243246,0.0052453719,0.0054492442,0.0056379018,0.0058111784,0.0059667237,0.0061000716,0.0062048331,0.0062730098,0.0062954109,0.0062621545,0.0061632256,0.0059890585,0.0057311128,0.0053824082,0.0049379891,0.0043952918,0.0037543943,0.0030181361,0.0021921009,0.0012844662,0.00030572662,-0.00073169003,-0.0018138956,-0.0029260763,-0.0040530634,-0.0051799102,-0.0062924487,-0.0073778007,-0.0084248199,-0.0094244473,-0.010369967,-0.01125715,-0.012084293,-0.01285214,-0.013563705,-0.014224007,-0.014839726,-0.015418808,-0.015970035,-0.016502583,-0.017025587,-0.017547742,-0.018076942,-0.018619992,-0.019182375,-0.01976811,-0.020379681,-0.021018032,-0.021682643,-0.022371649,-0.02308201,-0.023809711,-0.024549981,-0.025297515,-0.026046696,-0.026791801,-0.027527187,-0.028247456,-0.028947589,-0.029623052,-0.030269876,-0.030884714,-0.031464871,-0.032008312,-0.032513655,-0.032980147,-0.033407627,-0.03379648,-0.034147577,-0.034462218,-0.034742062,-0.03498906,-0.035205389,-0.035393379,-0.035555455,-0.035694074,-0.035811677,-0.035910636,-0.035993222,-0.036061573,-0.036117667,-0.036163314,-0.036200143,-0.036229604,-0.036252968,-0.036271335,-0.036285649,-0.036296707,-0.036305173,-0.036311599,-0.036316433,-0.036320037,-0.036322701,-0.036324651,-0.036326067,-0.036327085,-0.036327811,-0.036328324,-0.036328683,-0.036328933,-0.036329104,-0.036329221,-0.0363293,-0.036329352,-0.036329387,-0.03632941,-0.036329425,-0.036329435,-0.036329441,-0.036329445,-0.036329448,-0.036329449,-0.03632945,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452],"zorder":4,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452],"zorder":5,"type":"scatter"},{"customdata":[[1.7309323e-85],[1.0772002e-84],[6.6447181e-84],[4.0627538e-83],[2.462228e-82],[1.4791077e-81],[8.8071453e-81],[5.1979765e-80],[3.0408659e-79],[1.7632912e-78],[1.0134786e-77],[5.773896e-77],[3.2605219e-76],[1.8250261e-75],[1.0125462e-74],[5.5683232e-74],[3.0352734e-73],[1.6399666e-72],[8.7828603e-72],[4.6623058e-71],[2.4531796e-70],[1.2794453e-69],[6.6142093e-69],[3.3892057e-68],[1.7213997e-67],[8.6662126e-67],[4.3245482e-66],[2.1390255e-65],[1.048709e-64],[5.096333e-64],[2.454847e-63],[1.1720735e-62],[5.546884e-62],[2.601999e-61],[1.2098429e-60],[5.5758955e-60],[2.5472061e-59],[1.1533931e-58],[5.1767169e-58],[2.3030072e-57],[1.0155469e-56],[4.4388295e-56],[1.9230951e-55],[8.2584182e-55],[3.5152546e-54],[1.4831344e-53],[6.2025183e-53],[2.5711026e-52],[1.056415e-51],[4.3024272e-51],[1.736826e-50],[6.9496498e-50],[2.7563435e-49],[1.0835964e-48],[4.2224607e-48],[1.6309005e-47],[6.24386e-47],[2.3694234e-46],[8.9124271e-46],[3.3228684e-45],[1.227988e-44],[4.4982016e-44],[1.6332307e-43],[5.8778704e-43],[2.0967966e-42],[7.4140656e-42],[2.598486e-41],[9.0270987e-41],[3.108421e-40],[1.060951e-39],[3.5893406e-39],[1.2036435e-38],[4.0007822e-38],[1.3181226e-37],[4.304578e-37],[1.3933789e-36],[4.470661e-36],[1.4217988e-35],[4.4819644e-35],[1.4004338e-34],[4.3373117e-34],[1.3315044e-33],[4.0516179e-33],[1.2220199e-32],[3.653356e-32],[1.0826041e-31],[3.1798839e-31],[9.2579926e-31],[2.6716918e-30],[7.642226e-30],[2.1667928e-29],[6.0894617e-29],[1.696307e-28],[4.6837534e-28],[1.2818808e-27],[3.4774858e-27],[9.3507657e-27],[2.4922586e-26],[6.5842022e-26],[1.7241593e-25],[4.4752346e-25],[1.1513794e-24],[2.936198e-24],[7.421924e-24],[1.8595677e-23],[4.6181904e-23],[1.1368314e-22],[2.7738614e-22],[6.7086931e-22],[1.6082577e-21],[3.8215357e-21],[9.0008777e-21],[2.1013409e-20],[4.8626491e-20],[1.1153578e-19],[2.5358316e-19],[5.7146759e-19],[1.2765208e-18],[2.8263724e-18],[6.2029198e-18],[1.3493616e-17],[2.9095514e-17],[6.2185533e-17],[1.3174024e-16],[2.7663906e-16],[5.758039e-16],[1.1879604e-15],[2.4293815e-15],[4.9244315e-15],[9.8942597e-15],[1.970505e-14],[3.8899057e-14],[7.611463e-14],[1.4762673e-13],[2.838115e-13],[5.4083325e-13],[1.0215639e-12],[1.9126559e-12],[3.5495855e-12],[6.5296272e-12],[1.19061e-11],[2.1518974e-11],[3.8551829e-11],[6.846055e-11],[1.2050591e-10],[2.1025656e-10],[3.6363416e-10],[6.2338231e-10],[1.0593019e-09],[1.7842734e-09],[2.9790676e-09],[4.9303484e-09],[8.0882443e-09],[1.3152596e-08],[2.1200717e-08],[3.3874493e-08],[5.3651236e-08],[8.4231184e-08],[1.3108532e-07],[2.0222041e-07],[3.0923436e-07],[4.6875343e-07],[7.0436451e-07],[1.0491783e-06],[1.5491828e-06],[2.2675692e-06],[3.2902291e-06],[4.7326341e-06],[6.7483048e-06],[9.5390591e-06],[1.3367184e-05],[1.8569608e-05],[2.5574034e-05],[3.4916863e-05],[4.7262533e-05],[6.342368e-05],[8.4381278e-05],[0.00011130361],[0.00014556263],[0.00018874612],[0.00024266357],[0.0003093439],[0.00039102292],[0.0004901186],[0.00060919258],[0.00075089696],[0.00091790594],[0.001112833],[0.0013381357],[0.0015960099],[0.0018882795],[0.0022162849],[0.0025807775],[0.0029818274],[0.0034187491],[0.0038900557],[0.004393443],[0.0049258108],[0.0054833236],[0.0060615094],[0.0066553947],[0.0072596723],[0.0078688911],[0.0084776612],[0.0090808615],[0.0096738377],[0.01025258],[0.010813868],[0.011355374],[0.011875724],[0.012374498],[0.01285219],[0.013310115],[0.013750278],[0.014175215],[0.014587815],[0.014991133],[0.015388216],[0.015781951],[0.016174932],[0.016569381],[0.016967099],[0.017369468],[0.017777493],[0.018191878],[0.018613131],[0.019041683],[0.01947801],[0.019922745],[0.020376765],[0.02084124],[0.021317643],[0.021807695],[0.02231327],[0.022836236],[0.023378251],[0.023940526],[0.024523562],[0.025126887],[0.025748805],[0.026386192],[0.027034342],[0.027686899],[0.028335881],[0.028971802],[0.02958391],[0.030160522],[0.030689446],[0.03115849],[0.031555998],[0.031871417],[0.032095845],[0.032222521],[0.032247237],[0.032168637],[0.03198838],[0.031711149],[0.031344518],[0.030898653],[0.030385896],[0.029820224],[0.029216641],[0.028590519],[0.027956942],[0.027330089],[0.026722685],[0.026145566],[0.025607368],[0.025114359],[0.024670423],[0.024277178],[0.023934224],[0.02363948],[0.023389597],[0.023180393],[0.02300729],[0.022865702],[0.022751365],[0.022660565],[0.022590269],[0.022538143],[0.022502472],[0.02248199],[0.022475652],[0.022482361],[0.022500701],[0.022528686],[0.022563568],[0.022601712],[0.022638569],[0.022668733],[0.022686099],[0.022684093],[0.022655968],[0.022595137],[0.02249551],[0.02235182],[0.022159901],[0.0219169],[0.021621405],[0.021273485],[0.020874637],[0.020427647],[0.019936382],[0.019405523],[0.018840276],[0.018246067],[0.01762826],[0.016991913],[0.016341575],[0.015681165],[0.015013906],[0.014342335],[0.013668366],[0.012993413],[0.012318538],[0.011644623],[0.010972536],[0.01030329],[0.0096381671],[0.0089788031],[0.0083272338],[0.007685889],[0.0070575464],[0.0064452467],[0.0058521802],[0.0052815557],[0.0047364617],[0.0042197319],[0.0037338239],[0.0032807201],[0.0028618544],[0.0024780699],[0.0021296067],[0.0018161186],[0.0015367157],[0.0012900268],[0.0010742777],[0.00088737753],[0.00072700952],[0.0005907193],[0.00047599744],[0.00038035273],[0.00030137392],[0.00023677899],[0.00018445155],[0.00014246504],[0.00010909577],[8.2826536e-05],[6.2342274e-05],[4.6519828e-05],[3.4413405e-05],[2.5237364e-05],[1.8347655e-05],[1.3223049e-05],[9.446956e-06],[6.6904727e-06],[4.6970178e-06],[3.2687703e-06],[2.2549664e-06],[1.5420067e-06],[1.0452504e-06],[7.0232781e-07],[4.6778119e-07],[3.088354e-07],[2.0211154e-07],[1.3110924e-07],[8.4304796e-08],[5.3733703e-08],[3.3948114e-08],[2.1259738e-08],[1.3196922e-08],[8.1200554e-09],[4.952406e-09],[2.9939443e-09],[1.7940758e-09],[1.0656313e-09],[6.2739589e-10],[3.6613776e-10],[2.117947e-10],[1.2143755e-10],[6.9017296e-11],[3.8880299e-11],[2.1710394e-11],[1.2016335e-11],[6.5923816e-12],[3.5849114e-12],[1.9323247e-12],[1.0323982e-12],[5.4673845e-13],[2.8699687e-13],[1.4932748e-13],[7.7013563e-14],[3.9369465e-14],[1.9948788e-14],[1.0019318e-14],[4.987976e-15],[2.4613595e-15],[1.2038993e-15],[5.8367306e-16]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"March","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.03632945,-0.036329449,-0.036329447,-0.036329443,-0.036329438,-0.03632943,-0.036329418,-0.036329398,-0.036329367,-0.03632932,-0.036329249,-0.036329142,-0.036328983,-0.036328747,-0.036328402,-0.036327902,-0.036327184,-0.036326161,-0.036324719,-0.036322703,-0.036319913,-0.036316084,-0.036310882,-0.036303878,-0.036294535,-0.036282189,-0.036266028,-0.03624507,-0.036218148,-0.036183889,-0.036140705,-0.036086788,-0.036020108,-0.035938429,-0.035839333,-0.035720259,-0.035578555,-0.035411546,-0.035216619,-0.034991316,-0.034733442,-0.034441172,-0.034113167,-0.033748674,-0.033347624,-0.032910702,-0.032439396,-0.031936009,-0.031403641,-0.030846128,-0.030267942,-0.029674057,-0.029069779,-0.028460561,-0.02785179,-0.02724859,-0.026655614,-0.026076872,-0.025515584,-0.024974077,-0.024453727,-0.023954953,-0.023477261,-0.023019337,-0.022579174,-0.022154236,-0.021741637,-0.021338319,-0.020941235,-0.020547501,-0.02015452,-0.019760071,-0.019362353,-0.018959984,-0.018551958,-0.018137573,-0.01771632,-0.017287769,-0.016851442,-0.016406707,-0.015952687,-0.015488211,-0.015011809,-0.014521757,-0.014016182,-0.013493216,-0.012951201,-0.012388926,-0.01180589,-0.011202565,-0.010580646,-0.0099432596,-0.0092951096,-0.0086425521,-0.0079935707,-0.0073576497,-0.0067455413,-0.0061689301,-0.0056400051,-0.0051709615,-0.004773454,-0.0044580346,-0.0042336067,-0.004106931,-0.0040822147,-0.0041608142,-0.0043410718,-0.0046183023,-0.004984934,-0.0054307986,-0.0059435558,-0.0065092272,-0.0071128101,-0.0077389324,-0.0083725092,-0.0089993628,-0.0096067667,-0.010183886,-0.010722084,-0.011215093,-0.011659029,-0.012052274,-0.012395228,-0.012689972,-0.012939855,-0.013149059,-0.013322162,-0.01346375,-0.013578086,-0.013668886,-0.013739182,-0.013791308,-0.01382698,-0.013847461,-0.0138538,-0.013847091,-0.013828751,-0.013800765,-0.013765884,-0.01372774,-0.013690883,-0.013660719,-0.013643353,-0.013645359,-0.013673483,-0.013734315,-0.013833942,-0.013977632,-0.01416955,-0.014412551,-0.014708046,-0.015055966,-0.015454814,-0.015901804,-0.016393069,-0.016923928,-0.017489176,-0.018083385,-0.018701191,-0.019337539,-0.019987877,-0.020648287,-0.021315545,-0.021987117,-0.022661086,-0.023336039,-0.024010913,-0.024684829,-0.025356916,-0.026026161,-0.026691285,-0.027350648,-0.028002218,-0.028643563,-0.029271905,-0.029884205,-0.030477271,-0.031047896,-0.03159299,-0.03210972,-0.032595628,-0.033048731,-0.033467597,-0.033851382,-0.034199845,-0.034513333,-0.034792736,-0.035039425,-0.035255174,-0.035442074,-0.035602442,-0.035738732,-0.035853454,-0.035949099,-0.036028078,-0.036092673,-0.036145,-0.036186987,-0.036220356,-0.036246625,-0.036267109,-0.036282932,-0.036295038,-0.036304214,-0.036311104,-0.036316229,-0.036320005,-0.036322761,-0.036324755,-0.036326183,-0.036327197,-0.03632791,-0.036328406,-0.036328749,-0.036328984,-0.036329143,-0.036329249,-0.03632932,-0.036329367,-0.036329398,-0.036329418,-0.03632943,-0.036329438,-0.036329443,-0.036329447,-0.036329449,-0.03632945,-0.03632945,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452],"zorder":5,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177],"zorder":6,"type":"scatter"},{"customdata":[[3.0614177e-60],[1.4040049e-59],[6.3823478e-59],[2.8757967e-58],[1.2844045e-57],[5.6860596e-57],[2.4950946e-56],[1.0852472e-55],[4.6788215e-55],[1.9994495e-54],[8.469361e-54],[3.5559621e-53],[1.4798918e-52],[6.1047683e-52],[2.4961741e-51],[1.0116892e-50],[4.0643015e-50],[1.6184206e-49],[6.3879805e-49],[2.4992089e-48],[9.6918886e-48],[3.725471e-47],[1.4194529e-46],[5.3607783e-46],[2.0067897e-45],[7.4463447e-45],[2.7387458e-44],[9.9845316e-44],[3.6080385e-43],[1.2923561e-42],[4.5883959e-42],[1.6147575e-41],[5.6327645e-41],[1.9476181e-40],[6.6750427e-40],[2.2676312e-39],[7.6358788e-39],[2.5486721e-38],[8.4321311e-38],[2.7652174e-37],[8.9885548e-37],[2.8961379e-36],[9.2494837e-36],[2.9280923e-35],[9.1880037e-35],[2.857767e-34],[8.8105265e-34],[2.6924424e-33],[8.1556885e-33],[2.448751e-32],[7.2878354e-32],[2.1499213e-31],[6.2866138e-31],[1.8221385e-30],[5.2349978e-30],[1.4908101e-29],[4.2082253e-29],[1.1774613e-28],[3.2656191e-28],[8.9775071e-28],[2.446344e-27],[6.6077109e-27],[1.7691166e-26],[4.6949825e-26],[1.235048e-25],[3.220373e-25],[8.3234094e-25],[2.132403e-24],[5.4151496e-24],[1.3630915e-23],[3.4010516e-23],[8.4115352e-23],[2.0621081e-22],[5.0109715e-22],[1.2069995e-21],[2.8818216e-21],[6.8202812e-21],[1.599974e-20],[3.7204826e-20],[8.5755442e-20],[1.9592978e-19],[4.43727e-19],[9.9611223e-19],[2.2165525e-18],[4.8890609e-18],[1.0689341e-17],[2.3166201e-17],[4.9766547e-17],[1.0597402e-16],[2.2368708e-16],[4.6801788e-16],[9.7065404e-16],[1.9954802e-15],[4.0664158e-15],[8.2140632e-15],[1.6447001e-14],[3.264362e-14],[6.4223417e-14],[1.2524851e-13],[2.4212318e-13],[4.6396523e-13],[8.8129322e-13],[1.6593653e-12],[3.0970689e-12],[5.7299095e-12],[1.0508324e-11],[1.9103314e-11],[3.4425037e-11],[6.1493813e-11],[1.0888816e-10],[1.9112747e-10],[3.3255215e-10],[5.7357696e-10],[9.806636e-10],[1.6620574e-09],[2.7923563e-09],[4.6504591e-09],[7.6775456e-09],[1.2564698e-08],[2.0383855e-08],[3.2781354e-08],[5.2260738e-08],[8.2591267e-08],[1.2939118e-07],[2.0095061e-07],[3.0937864e-07],[4.7218279e-07],[7.1441634e-07],[1.0715608e-06],[1.5933436e-06],[2.3487267e-06],[3.4323329e-06],[4.9726044e-06],[7.142003e-06],[1.0169558e-05],[1.4356044e-05],[2.0091999e-05],[2.7878712e-05],[3.8352123e-05],[5.23094e-05],[7.0737666e-05],[9.484404e-05],[0.00012608576],[0.00016619879],[0.00021722282],[0.00028152031],[0.00036178672],[0.00046104911],[0.00058265005],[0.00073021398],[0.0009075938],[0.001118796],[0.0013678836],[0.0016588579],[0.0019955204],[0.0023813206],[0.0028191923],[0.0033113884],[0.0038593208],[0.004463415],[0.0051229896],[0.0058361686],[0.0065998365],[0.0074096407],[0.0082600462],[0.0091444433],[0.010055306],[0.010984395],[0.011922998],[0.012862195],[0.013793136],[0.014707319],[0.015596853],[0.016454693],[0.017274846],[0.018052532],[0.018784296],[0.019468089],[0.020103295],[0.020690737],[0.021232656],[0.021732663],[0.022195703],[0.022627992],[0.023036974],[0.023431258],[0.023820564],[0.024215638],[0.024628148],[0.025070537],[0.025555823],[0.026097329],[0.026708348],[0.027401725],[0.028189372],[0.02908172],[0.030087133],[0.031211299],[0.032456644],[0.033821794],[0.035301133],[0.036884475],[0.038556913],[0.040298845],[0.04208621],[0.043890929],[0.045681568],[0.047424173],[0.049083271],[0.050622986],[0.052008222],[0.05320585],[0.05418586],[0.054922398],[0.055394656],[0.055587572],[0.055492295],[0.055106419],[0.054433966],[0.053485131],[0.05227582],[0.050827002],[0.049163913],[0.047315165],[0.045311799],[0.043186318],[0.040971755],[0.038700789],[0.036404951],[0.03411393],[0.031854996],[0.029652542],[0.027527739],[0.025498318],[0.02357845],[0.021778728],[0.020106245],[0.018564739],[0.017154821],[0.015874253],[0.01471828],[0.013680001],[0.012750767],[0.0119206],[0.011178612],[0.010513428],[0.0099135807],[0.0093678819],[0.0088657516],[0.0083974984],[0.0079545423],[0.0075295769],[0.0071166675],[0.0067112867],[0.0063102902],[0.005911839],[0.0055152767],[0.0051209701],[0.0047301252],[0.0043445884],[0.0039666444],[0.0035988193],[0.0032437001],[0.002903774],[0.0025812956],[0.002278183],[0.0019959454],[0.0017356401],[0.0014978583],[0.0012827355],[0.0010899818],[0.00091892926],[0.0007685892],[0.00063771659],[0.00052487637],[0.00042850824],[0.00034698701],[0.00027867622],[0.00022197375],[0.00017534849],[0.00013736815],[0.00010671849],[8.2214769e-05],[6.2806473e-05],[4.7576447e-05],[3.5735675e-05],[2.6614874e-05],[1.9653954e-05],[1.4390299e-05],[1.044662e-05],[7.5190014e-06],[5.365568e-06],[3.796082e-06],[2.662646e-06],[1.8515832e-06],[1.2764956e-06],[8.7244183e-07],[5.9113909e-07],[3.9707659e-07],[2.6441489e-07],[1.7455025e-07],[1.1422841e-07],[7.4104273e-08],[4.7656757e-08],[3.0381881e-08],[1.9200423e-08],[1.2028464e-08],[7.4698196e-09],[4.5984158e-09],[2.8060944e-09],[1.697423e-09],[1.0178169e-09],[6.0497741e-10],[3.5644854e-10],[2.08181e-10],[1.2052312e-10],[6.9164501e-11],[3.9343992e-11],[2.2184756e-11],[1.2399689e-11],[6.8698257e-12],[3.7727538e-12],[2.0537523e-12],[1.1081885e-12],[5.9272658e-13],[3.1424585e-13],[1.6514232e-13],[8.6024118e-14],[4.4417536e-14],[2.2733197e-14],[1.1532882e-14],[5.7994383e-15],[2.8907086e-15],[1.4282116e-15],[6.9943963e-16],[3.3952909e-16],[1.6337005e-16],[7.7917726e-17],[3.6835635e-17],[1.7261075e-17],[8.0174268e-18],[3.6912158e-18],[1.6844995e-18],[7.6197221e-19],[3.4164414e-19],[1.5183617e-19],[6.6887155e-20],[2.9206282e-20],[1.2640835e-20],[5.4230172e-21],[2.3060666e-21],[9.720044e-22],[4.0609721e-22],[1.6817331e-22],[6.9031819e-23],[2.8087084e-23],[1.1327368e-23],[4.5281026e-24],[1.7941897e-24],[7.0466914e-25],[2.7432592e-25],[1.0585542e-25],[4.0487775e-26],[1.5349678e-26],[5.7681843e-27],[2.1485399e-27],[7.9325369e-28],[2.9029873e-28],[1.0530343e-28],[3.7862052e-29],[1.3493668e-29],[4.7667255e-30],[1.6690696e-30],[5.7928584e-31],[1.9928542e-31],[6.7955129e-32],[2.2968523e-32],[7.6949881e-33],[2.5553295e-33],[8.4110438e-34],[2.7442073e-34],[8.8745825e-35],[2.8447424e-35],[9.0386161e-36],[2.8465899e-36],[8.886113e-37],[2.7495568e-37],[8.4329108e-38],[2.5636353e-38],[7.7250072e-39],[2.3073074e-39],[6.8308685e-40],[2.0045195e-40],[5.8305369e-41],[1.6810115e-41],[4.8039304e-42],[1.3607759e-42],[3.8206773e-43],[1.0633053e-43],[2.9331851e-44]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"April","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494176,-0.054494176,-0.054494175,-0.054494173,-0.05449417,-0.054494165,-0.054494157,-0.054494145,-0.054494125,-0.054494095,-0.054494048,-0.054493976,-0.054493868,-0.054493705,-0.054493463,-0.054493106,-0.054492584,-0.054491829,-0.054490745,-0.054489205,-0.054487035,-0.054484008,-0.054479821,-0.054474085,-0.054466299,-0.054455825,-0.054441868,-0.05442344,-0.054399333,-0.054368092,-0.054327979,-0.054276955,-0.054212657,-0.054132391,-0.054033128,-0.053911527,-0.053763963,-0.053586584,-0.053375381,-0.053126294,-0.052835319,-0.052498657,-0.052112857,-0.051674985,-0.051182789,-0.050634857,-0.050030762,-0.049371188,-0.048658009,-0.047894341,-0.047084537,-0.046234131,-0.045349734,-0.044438871,-0.043509782,-0.042571179,-0.041631982,-0.040701041,-0.039786858,-0.038897324,-0.038039484,-0.037219331,-0.036441645,-0.035709881,-0.035026089,-0.034390883,-0.03380344,-0.033261522,-0.032761514,-0.032298474,-0.031866185,-0.031457204,-0.031062919,-0.030673613,-0.03027854,-0.02986603,-0.02942364,-0.028938355,-0.028396848,-0.02778583,-0.027092453,-0.026304806,-0.025412457,-0.024407044,-0.023282878,-0.022037534,-0.020672383,-0.019193045,-0.017609703,-0.015937264,-0.014195332,-0.012407968,-0.010603248,-0.0088126089,-0.0070700041,-0.0054109062,-0.003871191,-0.0024859556,-0.0012883271,-0.00030831701,0.00042822062,0.00090047915,0.0010933949,0.00099811798,0.00061224216,-6.0211611e-05,-0.0010090468,-0.0022183571,-0.0036671751,-0.0053302645,-0.0071790124,-0.0091823788,-0.011307859,-0.013522422,-0.015793388,-0.018089227,-0.020380248,-0.022639181,-0.024841636,-0.026966438,-0.028995859,-0.030915728,-0.032715449,-0.034387933,-0.035929439,-0.037339357,-0.038619925,-0.039775897,-0.040814176,-0.04174341,-0.042573578,-0.043315565,-0.043980749,-0.044580597,-0.045126295,-0.045628426,-0.046096679,-0.046539635,-0.0469646,-0.04737751,-0.047782891,-0.048183887,-0.048582338,-0.048978901,-0.049373207,-0.049764052,-0.050149589,-0.050527533,-0.050895358,-0.051250477,-0.051590403,-0.051912882,-0.052215994,-0.052498232,-0.052758537,-0.052996319,-0.053211442,-0.053404196,-0.053575248,-0.053725588,-0.053856461,-0.053969301,-0.054065669,-0.05414719,-0.054215501,-0.054272204,-0.054318829,-0.054356809,-0.054387459,-0.054411963,-0.054431371,-0.054446601,-0.054458442,-0.054467562,-0.054474523,-0.054479787,-0.054483731,-0.054486658,-0.054488812,-0.054490381,-0.054491515,-0.054492326,-0.054492901,-0.054493305,-0.054493586,-0.05449378,-0.054493913,-0.054494003,-0.054494063,-0.054494103,-0.05449413,-0.054494147,-0.054494158,-0.054494165,-0.05449417,-0.054494173,-0.054494175,-0.054494176,-0.054494176,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177],"zorder":6,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177],"zorder":7,"type":"scatter"},{"customdata":[[1.8433206e-94],[1.2601852e-93],[8.5394847e-93],[5.7357837e-92],[3.8187186e-91],[2.5200338e-90],[1.6483858e-89],[1.0687476e-88],[6.8683952e-88],[4.3752128e-87],[2.7625293e-86],[1.728934e-85],[1.0725406e-84],[6.5949703e-84],[4.0195345e-83],[2.4283008e-82],[1.4540958e-81],[8.6307263e-81],[5.0776817e-80],[2.9610614e-79],[1.711564e-78],[9.8062439e-78],[5.5689848e-77],[3.1348241e-76],[1.749098e-75],[9.6733942e-75],[5.3028268e-74],[2.8813751e-73],[1.5518723e-72],[8.2846839e-72],[4.3838907e-71],[2.2993617e-70],[1.1954149e-69],[6.1601866e-69],[3.1465371e-68],[1.5930729e-67],[7.9947017e-67],[3.9767901e-66],[1.9607711e-65],[9.5826343e-65],[4.6420172e-64],[2.2289092e-63],[1.0608203e-62],[5.0044354e-62],[2.3400878e-61],[1.0846086e-60],[4.9828488e-60],[2.2690612e-59],[1.0241852e-58],[4.5822062e-58],[2.0320508e-57],[8.9321971e-57],[3.8917583e-56],[1.6807272e-55],[7.1946955e-55],[3.0527513e-54],[1.283909e-53],[5.3523056e-53],[2.2116244e-52],[9.0582783e-52],[3.6774246e-51],[1.4798092e-50],[5.9024387e-50],[2.3335713e-49],[9.1448063e-49],[3.5521539e-48],[1.3676434e-47],[5.2193668e-47],[1.9743612e-46],[7.4028547e-46],[2.7512857e-45],[1.0135286e-44],[3.7008391e-44],[1.3394554e-43],[4.8052961e-43],[1.7087398e-42],[6.0227601e-42],[2.1041616e-41],[7.2866263e-41],[2.5011388e-40],[8.5096753e-40],[2.869803e-39],[9.5930144e-39],[3.1784986e-38],[1.0438855e-37],[3.3981902e-37],[1.0964944e-36],[3.5069464e-36],[1.1117722e-35],[3.4935459e-35],[1.0881308e-34],[3.359385e-34],[1.0280221e-33],[3.1182376e-33],[9.3751886e-33],[2.793926e-32],[8.2530387e-32],[2.4164455e-31],[7.0130069e-31],[2.0174171e-30],[5.7524302e-30],[1.6258154e-29],[4.554654e-29],[1.2647476e-28],[3.4811012e-28],[9.4971618e-28],[2.5682391e-27],[6.8840108e-27],[1.8289935e-26],[4.8166751e-26],[1.257324e-25],[3.2532073e-25],[8.3433615e-25],[2.1209734e-24],[5.3443431e-24],[1.3348069e-23],[3.3045146e-23],[8.1089032e-23],[1.9723404e-22],[4.7551811e-22],[1.1363649e-21],[2.6917472e-21],[6.3199927e-21],[1.4708381e-20],[3.3929648e-20],[7.7581862e-20],[1.7583592e-19],[3.9502245e-19],[8.7963593e-19],[1.9415626e-18],[4.2478324e-18],[9.2119414e-18],[1.9801728e-17],[4.2191359e-17],[8.9107198e-17],[1.8653971e-16],[3.8707891e-16],[7.9615545e-16],[1.6231808e-15],[3.2802513e-15],[6.5708134e-15],[1.3046788e-14],[2.5678e-14],[5.0094803e-14],[9.6872129e-14],[1.8568662e-13],[3.5280838e-13],[6.6446902e-13],[1.2404786e-12],[2.2955339e-12],[4.2107492e-12],[7.6562777e-12],[1.3799399e-11],[2.4654064e-11],[4.3662094e-11],[7.6649666e-11],[1.3338524e-10],[2.3009088e-10],[3.9344831e-10],[6.6692248e-10],[1.1206381e-09],[1.8666417e-09],[3.0822343e-09],[5.045256e-09],[8.1868677e-09],[1.3169637e-08],[2.1001785e-08],[3.3202456e-08],[5.2038116e-08],[8.0856787e-08],[1.2455515e-07],[1.9022366e-07],[2.8802681e-07],[4.3238981e-07],[6.435784e-07],[9.4977563e-07],[1.3897769e-06],[2.0164407e-06],[2.9010482e-06],[4.1387324e-06],[5.8551441e-06],[8.2145118e-06],[1.1429236e-05],[1.5771119e-05],[2.1584292e-05],[2.9299793e-05],[3.9451706e-05],[5.2694605e-05],[6.9821946e-05],[9.1784884e-05],[0.00011971086],[0.00015492111],[0.00019894619],[0.00025353837],[0.00032067978],[0.0004025852],[0.00050169806],[0.00062067895],[0.00076238526],[0.00092984149],[0.0011261995],[0.0013546883],[0.0016185544],[0.0019209911],[0.0022650593],[0.0026536005],[0.0030891424],[0.0035737998],[0.0041091721],[0.0046962413],[0.0053352705],[0.00602571],[0.0067661104],[0.0075540499],[0.008386078],[0.0092576812],[0.010163274],[0.011096218],[0.01204888],[0.013012717],[0.013978405],[0.014936002],[0.01587515],[0.016785304],[0.017655989],[0.018477076],[0.019239069],[0.019933395],[0.020552672],[0.02109097],[0.021544029],[0.021909443],[0.022186786],[0.022377688],[0.022485848],[0.022516984],[0.022478719],[0.022380411],[0.02223292],[0.022048332],[0.021839637],[0.021620378],[0.021404274],[0.021204835],[0.021034975],[0.020906641],[0.020830461],[0.020815435],[0.020868663],[0.02099514],[0.021197601],[0.021476449],[0.021829743],[0.022253274],[0.022740698],[0.023283754],[0.023872531],[0.024495796],[0.025141361],[0.025796484],[0.026448284],[0.027084158],[0.027692192],[0.028261538],[0.028782764],[0.029248142],[0.029651879],[0.029990282],[0.030261835],[0.030467206],[0.030609156],[0.030692375],[0.030723235],[0.03070947],[0.030659797],[0.030583486],[0.03048991],[0.030388078],[0.030286189],[0.030191216],[0.030108554],[0.030041747],[0.029992312],[0.02995967],[0.029941195],[0.029932379],[0.029927099],[0.029917977],[0.029896819],[0.029855082],[0.029784372],[0.029676907],[0.02952595],[0.029326153],[0.029073811],[0.028767007],[0.028405637],[0.027991316],[0.027527188],[0.027017639],[0.026467954],[0.025883928],[0.025271476],[0.024636261],[0.023983366],[0.023317039],[0.022640511],[0.021955916],[0.021264294],[0.020565687],[0.019859309],[0.019143774],[0.018417367],[0.017678324],[0.016925125],[0.016156743],[0.015372863],[0.014574049],[0.013761834],[0.012938755],[0.012108314],[0.011274873],[0.010443509],[0.0096198158],[0.0088096829],[0.0080190654],[0.0072537527],[0.0065191534],[0.0058201073],[0.0051607328],[0.0045443145],[0.0039732349],[0.0034489492],[0.0029720011],[0.002542074],[0.0021580725],[0.001818225],[0.0015202024],[0.0012612426],[0.0010382767],[0.00084804906],[0.00068722717],[0.00055249842],[0.00044065085],[0.00034863736],[0.00027362333],[0.00021301856],[0.00016449517],[0.00012599328],[9.5716777e-05],[7.2121348e-05],[5.3896924e-05],[3.9946465e-05],[2.9362793e-05],[2.1404833e-05],[1.5474374e-05],[1.1094119e-05],[7.8875661e-06],[5.5610411e-06],[3.8879867e-06],[2.6955164e-06],[1.8531091e-06],[1.2632673e-06],[8.5392265e-07],[5.7235406e-07],[3.8038915e-07],[2.5067033e-07],[1.6378864e-07],[1.0611221e-07],[6.8162043e-08],[4.3412077e-08],[2.7413501e-08],[1.7163261e-08],[1.0653983e-08],[6.5568735e-09],[4.0008294e-09],[2.4202915e-09],[1.4515962e-09],[8.6313893e-10],[5.0882532e-10],[2.9737628e-10],[1.7230193e-10],[9.897304e-11],[5.6361618e-11],[3.1819015e-11],[1.7808355e-11],[9.8807934e-12],[5.4348564e-12],[2.963534e-12],[1.6019716e-12],[8.5846052e-13],[4.5604122e-13],[2.4016177e-13],[1.2537688e-13],[6.4884771e-14],[3.3287241e-14],[1.6928582e-14],[8.5343274e-15],[4.2650304e-15],[2.1128923e-15]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"April","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494176,-0.054494175,-0.054494174,-0.054494172,-0.054494169,-0.054494164,-0.054494156,-0.054494144,-0.054494125,-0.054494096,-0.054494053,-0.054493987,-0.054493889,-0.054493745,-0.054493534,-0.054493228,-0.054492788,-0.054492161,-0.054491276,-0.054490039,-0.054488322,-0.054485963,-0.054482748,-0.054478406,-0.054472593,-0.054464878,-0.054454726,-0.054441483,-0.054424355,-0.054402392,-0.054374466,-0.054339256,-0.054295231,-0.054240639,-0.054173498,-0.054091592,-0.053992479,-0.053873498,-0.053731792,-0.053564336,-0.053367978,-0.053139489,-0.052875623,-0.052573186,-0.052229118,-0.051840577,-0.051405035,-0.050920378,-0.050385005,-0.049797936,-0.049158907,-0.048468467,-0.047728067,-0.046940127,-0.046108099,-0.045236496,-0.044330904,-0.043397959,-0.042445297,-0.04148146,-0.040515773,-0.039558175,-0.038619027,-0.037708873,-0.036838188,-0.036017102,-0.035255108,-0.034560782,-0.033941505,-0.033403208,-0.032950148,-0.032584734,-0.032307392,-0.03211649,-0.03200833,-0.031977193,-0.032015458,-0.032113766,-0.032261257,-0.032445846,-0.032654541,-0.0328738,-0.033089904,-0.033289343,-0.033459202,-0.033587537,-0.033663716,-0.033678743,-0.033625514,-0.033499037,-0.033296576,-0.033017729,-0.032664434,-0.032240904,-0.031753479,-0.031210423,-0.030621646,-0.029998381,-0.029352816,-0.028697693,-0.028045893,-0.027410019,-0.026801986,-0.026232639,-0.025711413,-0.025246035,-0.024842298,-0.024503896,-0.024232342,-0.024026971,-0.023885022,-0.023801803,-0.023770943,-0.023784707,-0.023834381,-0.023910692,-0.024004268,-0.024106099,-0.024207988,-0.024302961,-0.024385623,-0.02445243,-0.024501866,-0.024534508,-0.024552982,-0.024561798,-0.024567079,-0.0245762,-0.024597359,-0.024639095,-0.024709806,-0.02481727,-0.024968227,-0.025168024,-0.025420366,-0.02572717,-0.026088541,-0.026502862,-0.02696699,-0.027476538,-0.028026223,-0.028610249,-0.029222701,-0.029857916,-0.030510811,-0.031177138,-0.031853666,-0.032538261,-0.033229883,-0.03392849,-0.034634868,-0.035350403,-0.036076811,-0.036815853,-0.037569052,-0.038337435,-0.039121314,-0.039920129,-0.040732343,-0.041555422,-0.042385864,-0.043219304,-0.044050668,-0.044874362,-0.045684494,-0.046475112,-0.047240425,-0.047975024,-0.04867407,-0.049333445,-0.049949863,-0.050520942,-0.051045228,-0.051522176,-0.051952103,-0.052336105,-0.052675952,-0.052973975,-0.053232935,-0.053455901,-0.053646128,-0.05380695,-0.053941679,-0.054053526,-0.05414554,-0.054220554,-0.054281159,-0.054329682,-0.054368184,-0.054398461,-0.054422056,-0.05444028,-0.054454231,-0.054464815,-0.054472773,-0.054478703,-0.054483083,-0.05448629,-0.054488616,-0.054490289,-0.054491482,-0.054492324,-0.054492914,-0.054493323,-0.054493605,-0.054493797,-0.054493927,-0.054494014,-0.054494071,-0.054494109,-0.054494134,-0.05449415,-0.05449416,-0.054494167,-0.054494171,-0.054494173,-0.054494175,-0.054494176,-0.054494176,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177],"zorder":7,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903],"zorder":8,"type":"scatter"},{"customdata":[[1.0267685e-69],[5.2964135e-69],[2.7080588e-68],[1.3724648e-67],[6.8946364e-67],[3.433117e-66],[1.6944666e-65],[8.2898116e-65],[4.0199777e-64],[1.93228e-63],[9.2062755e-63],[4.3477592e-62],[2.0352356e-61],[9.4434714e-61],[4.3432671e-60],[1.9800191e-59],[8.9472654e-59],[4.0075545e-58],[1.7792495e-57],[7.8300166e-57],[3.4155215e-56],[1.4767943e-55],[6.3292423e-55],[2.6887617e-54],[1.1321968e-53],[4.72564e-53],[1.9550984e-52],[8.0176294e-52],[3.2590639e-51],[1.3131352e-50],[5.2444e-50],[2.0761185e-49],[8.1466411e-49],[3.1686575e-48],[1.2216377e-47],[4.6685302e-47],[1.7684332e-46],[6.64e-46],[2.4712609e-45],[9.1167579e-45],[3.3337552e-44],[1.2083665e-43],[4.3414567e-43],[1.5461241e-42],[5.4578989e-42],[1.9097614e-41],[6.6237725e-41],[2.2772181e-40],[7.7602728e-40],[2.6213362e-39],[8.7769185e-39],[2.912965e-38],[9.5830243e-38],[3.1249586e-37],[1.0100912e-36],[3.2363227e-36],[1.0278227e-35],[3.2356393e-35],[1.009666e-34],[3.1229962e-34],[9.5750608e-34],[2.9099687e-33],[8.766215e-33],[2.6176602e-32],[7.7480446e-32],[2.2732595e-31],[6.6112611e-31],[1.9058925e-30],[5.4461755e-30],[1.5426394e-29],[4.3312892e-29],[1.205453e-28],[3.3255554e-28],[9.0940914e-28],[2.4651089e-27],[6.623614e-27],[1.7641541e-26],[4.6575884e-26],[1.2189033e-25],[3.1619974e-25],[8.1308949e-25],[2.0725276e-24],[5.236583e-24],[1.3115411e-23],[3.2561371e-23],[8.0132903e-23],[1.9548216e-22],[4.7270701e-22],[1.1330949e-21],[2.6923438e-21],[6.3414041e-21],[1.4805794e-20],[3.4266527e-20],[7.8614256e-20],[1.7878296e-19],[4.0303739e-19],[9.0065763e-19],[1.9951252e-18],[4.3810423e-18],[9.5363568e-18],[2.0577196e-17],[4.4013861e-17],[9.3323987e-17],[1.9615465e-16],[4.0870174e-16],[8.441467e-16],[1.7283592e-15],[3.5079699e-15],[7.0580479e-15],[1.4077366e-14],[2.783348e-14],[5.455369e-14],[1.0599676e-13],[2.0416166e-13],[3.8982556e-13],[7.3787432e-13],[1.3845604e-12],[2.5754928e-12],[4.7492967e-12],[8.6820124e-12],[1.5733862e-11],[2.8266748e-11],[5.0343541e-11],[8.8887552e-11],[1.5558559e-10],[2.6997969e-10],[4.6443849e-10],[7.9206885e-10],[1.3391758e-09],[2.2446807e-09],[3.730065e-09],[6.1450541e-09],[1.0036569e-08],[1.6251669e-08],[2.6089567e-08],[4.1523614e-08],[6.5521855e-08],[1.0250464e-07],[1.5899042e-07],[2.4449636e-07],[3.7277957e-07],[5.635267e-07],[8.446258e-07],[1.2551819e-06],[1.8494681e-06],[2.7020326e-06],[3.9142091e-06],[5.6222961e-06],[8.0076789e-06],[1.1309161e-05],[1.583773e-05],[2.1993942e-05],[3.0287965e-05],[4.1362246e-05],[5.6016504e-05],[7.5234581e-05],[0.00010021237],[0.00013238575],[0.00017345709],[0.0002254187],[0.00029057103],[0.00037153361],[0.00047124618],[0.00059295775],[0.00074020144],[0.00091675335],[0.0011265741],[0.0013737332],[0.0016623155],[0.0019963136],[0.0023795069],[0.0028153324],[0.0033067519],[0.0038561224],[0.0044650738],[0.0051344031],[0.0058639885],[0.0066527302],[0.0074985215],[0.0083982512],[0.0093478391],[0.010342302],[0.011375846],[0.012441979],[0.013533644],[0.014643345],[0.015763291],[0.016885515],[0.01800199],[0.019104721],[0.020185824],[0.021237578],[0.022252465],[0.023223202],[0.024142762],[0.025004402],[0.025801705],[0.026528634],[0.027179618],[0.027749659],[0.028234474],[0.028630659],[0.028935876],[0.029149052],[0.029270577],[0.029302491],[0.029248638],[0.02911478],[0.028908653],[0.028639948],[0.02832022],[0.027962708],[0.027582077],[0.027194076],[0.026815135],[0.026461907],[0.026150776],[0.025897357],[0.025716005],[0.025619359],[0.025617947],[0.025719856],[0.025930496],[0.026252462],[0.026685484],[0.02722649],[0.02786974],[0.028607051],[0.029428078],[0.030320632],[0.031271042],[0.032264502],[0.033285436],[0.034317821],[0.0353455],[0.036352438],[0.037322959],[0.038241931],[0.039094918],[0.039868303],[0.040549386],[0.041126463],[0.041588903],[0.041927212],[0.042133113],[0.042199621],[0.042121137],[0.041893544],[0.04151431],[0.040982596],[0.040299348],[0.039467384],[0.038491446],[0.037378227],[0.03613635],[0.034776301],[0.033310305],[0.031752153],[0.030116965],[0.028420914],[0.026680904],[0.024914217],[0.023138149],[0.021369632],[0.01962488],[0.017919055],[0.016265966],[0.014677832],[0.013165086],[0.011736254],[0.010397889],[0.0091545723],[0.0080089743],[0.0069619603],[0.006012746],[0.0051590839],[0.004397473],[0.0037233827],[0.0031314798],[0.0026158501],[0.0021702094],[0.001788094],[0.0014630312],[0.0011886831],[0.00095896507],[0.0007681369],[0.00061086993],[0.00048229017],[0.00037800111],[0.00029408872],[0.00022711205],[0.00017408233],[0.00013243365],[9.9988028e-05],[7.4917097e-05],[5.5702519e-05],[4.1096789e-05],[3.0085609e-05],[2.1852787e-05],[1.5748233e-05],[1.1259373e-05],[7.9861055e-06],[5.6192199e-06],[3.9221076e-06],[2.7154917e-06],[1.8648615e-06],[1.2702761e-06],[8.5819918e-07],[5.7504529e-07],[3.8214329e-07],[2.5185323e-07],[1.6460893e-07],[1.06692e-07],[6.8575912e-08],[4.3708086e-08],[2.7624357e-08],[1.7312231e-08],[1.0758089e-08],[6.6287199e-09],[4.0497517e-09],[2.4531463e-09],[1.473355e-09],[8.7735074e-10],[5.179816e-10],[3.0319664e-10],[1.7595333e-10],[1.0123439e-10],[5.7744522e-11],[3.2654326e-11],[1.830683e-11],[1.0174748e-11],[5.6061928e-12],[3.062262e-12],[1.6582228e-12],[8.9015602e-13],[4.7370591e-13],[2.4990087e-13],[1.3068932e-13],[6.7752138e-14],[3.4818809e-14],[1.7738233e-14],[8.9579779e-15],[4.4844652e-15],[2.2254113e-15],[1.0947298e-15],[5.3382485e-16],[2.5803826e-16],[1.2364064e-16],[5.872577e-17],[2.7649357e-17],[1.2904133e-17],[5.9697872e-18],[2.7376243e-18],[1.2444364e-18],[5.6073064e-19],[2.5044804e-19],[1.1088218e-19],[4.8661526e-20],[2.1168433e-20],[9.1278792e-21],[3.901472e-21],[1.6529656e-21],[6.9418486e-22],[2.8897605e-22],[1.1924037e-22],[4.87707e-23],[1.9772805e-23],[7.9460396e-24],[3.1652338e-24],[1.2497785e-24],[4.8913873e-25],[1.89759e-25],[7.2969884e-26],[2.7813491e-26],[1.0508423e-26],[3.9354058e-27],[1.4608683e-27],[5.3752899e-28],[1.9604769e-28],[7.0874546e-29],[2.5397288e-29],[9.0209577e-30],[3.1760401e-30],[1.108376e-30],[3.834033e-31],[1.3145951e-31],[4.4678172e-32],[1.5051017e-32],[5.0257767e-33],[1.6634405e-33],[5.4573017e-34],[1.7746598e-34],[5.7202968e-35],[1.8276298e-35],[5.7879392e-36],[1.8168776e-36],[5.6531854e-37],[1.7435184e-37],[5.3299793e-38],[1.6150653e-38]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"May","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658902,-0.072658902,-0.072658901,-0.072658899,-0.072658897,-0.072658893,-0.072658887,-0.072658877,-0.072658862,-0.072658838,-0.072658801,-0.072658744,-0.072658659,-0.07265853,-0.07265834,-0.072658058,-0.072657648,-0.072657054,-0.072656201,-0.072654989,-0.072653281,-0.072650895,-0.072647594,-0.072643065,-0.072636909,-0.072628615,-0.072617541,-0.072602887,-0.072583669,-0.072558691,-0.072526517,-0.072485446,-0.072433484,-0.072368332,-0.07228737,-0.072187657,-0.072065945,-0.071918702,-0.07174215,-0.071532329,-0.07128517,-0.070996588,-0.07066259,-0.070279396,-0.069843571,-0.069352151,-0.068802781,-0.068193829,-0.0675245,-0.066794915,-0.066006173,-0.065160382,-0.064260652,-0.063311064,-0.062316601,-0.061283058,-0.060216924,-0.059125259,-0.058015558,-0.056895612,-0.055773388,-0.054656913,-0.053554182,-0.052473079,-0.051421325,-0.050406438,-0.049435701,-0.048516141,-0.047654501,-0.046857199,-0.046130269,-0.045479285,-0.044909244,-0.044424429,-0.044028244,-0.043723027,-0.043509852,-0.043388326,-0.043356413,-0.043410265,-0.043544123,-0.04375025,-0.044018955,-0.044338683,-0.044696195,-0.045076826,-0.045464827,-0.045843768,-0.046196996,-0.046508127,-0.046761546,-0.046942898,-0.047039544,-0.047040956,-0.046939047,-0.046728407,-0.046406441,-0.045973419,-0.045432413,-0.044789163,-0.044051852,-0.043230826,-0.042338271,-0.041387862,-0.040394401,-0.039373467,-0.038341082,-0.037313404,-0.036306465,-0.035335944,-0.034416972,-0.033563985,-0.0327906,-0.032109517,-0.03153244,-0.03107,-0.030731691,-0.03052579,-0.030459282,-0.030537766,-0.030765359,-0.031144593,-0.031676307,-0.032359555,-0.033191519,-0.034167457,-0.035280676,-0.036522553,-0.037882602,-0.039348598,-0.04090675,-0.042541938,-0.044237989,-0.045978,-0.047744686,-0.049520754,-0.051289271,-0.053034023,-0.054739848,-0.056392937,-0.057981071,-0.059493817,-0.060922649,-0.062261015,-0.063504331,-0.064649929,-0.065696943,-0.066646157,-0.067499819,-0.06826143,-0.06893552,-0.069527423,-0.070043053,-0.070488694,-0.070870809,-0.071195872,-0.07147022,-0.071699938,-0.071890766,-0.072048033,-0.072176613,-0.072280902,-0.072364814,-0.072431791,-0.072484821,-0.072526469,-0.072558915,-0.072583986,-0.072603201,-0.072617806,-0.072628818,-0.07263705,-0.072643155,-0.072647644,-0.072650917,-0.072653284,-0.072654981,-0.072656188,-0.072657038,-0.072657633,-0.072658045,-0.072658328,-0.072658521,-0.072658651,-0.072658739,-0.072658796,-0.072658835,-0.072658859,-0.072658875,-0.072658886,-0.072658892,-0.072658896,-0.072658899,-0.072658901,-0.072658902,-0.072658902,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903],"zorder":8,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903],"zorder":9,"type":"scatter"},{"customdata":[[1.336092e-120],[1.182816e-119],[1.0379151e-118],[9.0275572e-118],[7.7829187e-117],[6.6508714e-116],[5.6335015e-115],[4.7297926e-114],[3.9361314e-113],[3.24684e-112],[2.6547034e-111],[2.1514683e-110],[1.7282943e-109],[1.3761452e-108],[1.086112e-107],[8.4966713e-107],[6.5885042e-106],[5.0639412e-105],[3.8579296e-104],[2.9132903e-103],[2.1806052e-102],[1.6178347e-101],[1.1897483e-100],[8.6724107e-100],[6.2659714e-99],[4.4874623e-98],[3.1854958e-97],[2.2413882e-96],[1.5632231e-95],[1.080659e-94],[7.4049175e-94],[5.0293933e-93],[3.3859053e-92],[2.2594246e-91],[1.4944615e-90],[9.7979554e-90],[6.3672224e-89],[4.101365e-88],[2.6186091e-87],[1.6572071e-86],[1.0395532e-85],[6.4636899e-85],[3.9836224e-84],[2.4335466e-83],[1.4735505e-82],[8.8441126e-82],[5.2614731e-81],[3.1025895e-80],[1.8134481e-79],[1.0506301e-78],[6.0333487e-78],[3.4342419e-77],[1.9376139e-76],[1.0835962e-75],[6.0066399e-75],[3.3003471e-74],[1.7974282e-73],[9.7030301e-73],[5.1919096e-72],[2.753663e-71],[1.4476327e-70],[7.5434477e-70],[3.8962367e-69],[1.9947328e-68],[1.0122506e-67],[5.0916126e-67],[2.5385552e-66],[1.2545322e-65],[6.1452709e-65],[2.9837623e-64],[1.43599e-63],[6.8501896e-63],[3.239051e-62],[1.5180883e-61],[7.0524543e-61],[3.2474883e-60],[1.4822415e-59],[6.7058586e-59],[3.0071419e-58],[1.3366495e-57],[5.8890503e-57],[2.5717996e-56],[1.1132511e-55],[4.7765384e-55],[2.0314101e-54],[8.563398e-54],[3.5781527e-53],[1.4819578e-52],[6.0838298e-52],[2.4756119e-51],[9.9850983e-51],[3.9919626e-50],[1.5819215e-49],[6.2136638e-49],[2.4192179e-48],[9.3361246e-48],[3.5712706e-47],[1.354077e-46],[5.0889536e-46],[1.8957374e-45],[6.99991e-45],[2.5619543e-44],[9.2942629e-44],[3.3421293e-43],[1.1912319e-42],[4.2085662e-42],[1.4737943e-41],[5.1156931e-41],[1.7600988e-40],[6.0025339e-40],[2.0290711e-39],[6.7986868e-39],[2.2579691e-38],[7.4332069e-38],[2.4254916e-37],[7.8449238e-37],[2.51503e-36],[7.9921414e-36],[2.5173801e-35],[7.8595949e-35],[2.4323012e-34],[7.461059e-34],[2.2685566e-33],[6.8369891e-33],[2.0424263e-32],[6.0477561e-32],[1.775042e-31],[5.1640399e-31],[1.489146e-30],[4.2564926e-30],[1.2059617e-29],[3.3867436e-29],[9.4275423e-29],[2.6012505e-28],[7.1143226e-28],[1.9286473e-27],[5.1825102e-27],[1.3803709e-26],[3.6443487e-26],[9.5370218e-26],[2.473857e-25],[6.3607101e-25],[1.6210861e-24],[4.0952111e-24],[1.0254548e-23],[2.5452303e-23],[6.2619306e-23],[1.527075e-22],[3.6913378e-22],[8.8446136e-22],[2.1006126e-21],[4.9452184e-21],[1.1539788e-20],[2.6692141e-20],[6.1198776e-20],[1.390837e-19],[3.1331733e-19],[6.9962898e-19],[1.548556e-18],[3.3975225e-18],[7.3888132e-18],[1.5928122e-17],[3.4035539e-17],[7.2090755e-17],[1.5135826e-16],[3.1500178e-16],[6.4983191e-16],[1.3288349e-15],[2.6935428e-15],[5.4120333e-15],[1.0779081e-14],[2.1280839e-14],[4.1646883e-14],[8.079121e-14],[1.553584e-13],[2.9613898e-13],[5.5956162e-13],[1.0480768e-12],[1.9459537e-12],[3.581522e-12],[6.5343139e-12],[1.1817653e-11],[2.1186689e-11],[3.7652805e-11],[6.6333948e-11],[1.1584589e-10],[2.0055513e-10],[3.4418942e-10],[5.8556369e-10],[9.8756596e-10],[1.6511101e-09],[2.7365704e-09],[4.4963568e-09],[7.3238852e-09],[1.1826388e-08],[1.8931978e-08],[3.0045312e-08],[4.7271367e-08],[7.3733422e-08],[1.1401966e-07],[1.7480297e-07],[2.6569079e-07],[4.0037599e-07],[5.9817595e-07],[8.8606421e-07],[1.3013171e-06],[1.894914e-06],[2.7358459e-06],[3.916492e-06],[5.5592312e-06],[7.8244362e-06],[1.091998e-05],[1.5112331e-05],[2.0739253e-05],[2.8224015e-05],[3.8090923e-05],[5.0981809e-05],[6.7672954e-05],[8.9091757e-05],[0.00011633223],[0.00015066828],[0.00019356351],[0.00024667623],[0.00031185837],[0.00039114684],[0.00048674633],[0.00060100255],[0.00073636543],[0.00089534228],[0.0010804414],[0.0012941074],[0.0015386497],[0.0018161673],[0.0021284719],[0.0024770126],[0.0028628068],[0.0032863786],[0.0037477088],[0.0042461991],[0.0047806512],[0.0053492622],[0.0059496361],[0.00657881],[0.0072332938],[0.0079091205],[0.0086019049],[0.0093069092],[0.010019111],[0.010733276],[0.011444033],[0.012145948],[0.01283361],[0.013501718],[0.014145177],[0.014759211],[0.015339483],[0.015882235],[0.016384437],[0.01684395],[0.01725969],[0.017631799],[0.017961791],[0.018252688],[0.01850911],[0.018737326],[0.018945239],[0.019142301],[0.019339352],[0.019548375],[0.019782171],[0.020053956],[0.02037689],[0.020763563],[0.021225449],[0.021772346],[0.022411859],[0.023148912],[0.023985356],[0.024919671],[0.025946808],[0.027058157],[0.028241685],[0.029482221],[0.030761888],[0.032060669],[0.033357084],[0.034628943],[0.035854152],[0.037011513],[0.038081506],[0.039046994],[0.039893827],[0.040611321],[0.041192575],[0.04163463],[0.041938455],[0.04210877],[0.042153713],[0.042084365],[0.041914181],[0.041658321],[0.041332947],[0.040954492],[0.040538948],[0.040101198],[0.039654421],[0.039209589],[0.038775073],[0.038356379],[0.037956008],[0.037573457],[0.037205342],[0.036845644],[0.036486065],[0.036116471],[0.035725406],[0.03530066],[0.034829851],[0.034301019],[0.033703184],[0.033026866],[0.032264533],[0.031410962],[0.030463507],[0.029422252],[0.028290061],[0.027072505],[0.025777689],[0.024415987],[0.022999683],[0.021542559],[0.020059434],[0.018565678],[0.017076728],[0.01560762],[0.01417256],[0.012784548],[0.011455073],[0.010193872],[0.0090087822],[0.0079056626],[0.0068883952],[0.0059589559],[0.0051175437],[0.0043627584],[0.0036918137],[0.0031007724],[0.0025847918],[0.0021383675],[0.0017555656],[0.0014302365],[0.0011562029],[0.00092741904],[0.0007380999],[0.00058281921],[0.00045657844],[0.00035484927],[0.00027359256],[0.00020925806],[0.00015876837],[0.00011949141],[8.9204739e-05],[6.6055032e-05],[4.8515376e-05],[3.5342535e-05],[2.5535864e-05],[1.8299035e-05],[1.3005327e-05],[9.1668658e-06],[6.4079398e-06],[4.4422781e-06],[3.0540419e-06],[2.0821818e-06],[1.4077628e-06],[9.4384486e-07],[6.2751679e-07],[4.1371125e-07],[2.7046458e-07],[1.7533098e-07],[1.1270325e-07],[7.1835356e-08],[4.5400312e-08],[2.8450712e-08],[1.7678128e-08],[1.0891395e-08],[6.6531954e-09],[4.0296957e-09],[2.4199432e-09],[1.4408705e-09],[8.5060451e-10],[4.9786262e-10],[2.8891282e-10],[1.6622487e-10],[9.4818626e-11],[5.3623662e-11],[3.0066386e-11],[1.6713402e-11],[9.210948e-12],[5.0326506e-12],[2.726085e-12]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"May","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658902,-0.072658901,-0.0726589,-0.072658899,-0.072658896,-0.072658891,-0.072658884,-0.072658873,-0.072658856,-0.072658829,-0.072658789,-0.072658728,-0.072658637,-0.072658503,-0.072658305,-0.072658017,-0.072657602,-0.072657008,-0.072656167,-0.072654987,-0.072653344,-0.072651079,-0.072647983,-0.072643791,-0.072638164,-0.072630679,-0.072620812,-0.072607921,-0.07259123,-0.072569811,-0.072542571,-0.072508235,-0.07246534,-0.072412227,-0.072347045,-0.072267756,-0.072172157,-0.072057901,-0.071922538,-0.071763561,-0.071578462,-0.071364796,-0.071120253,-0.070842736,-0.070530431,-0.070181891,-0.069796096,-0.069372524,-0.068911194,-0.068412704,-0.067878252,-0.067309641,-0.066709267,-0.066080093,-0.065425609,-0.064749783,-0.064056998,-0.063351994,-0.062639792,-0.061925627,-0.06121487,-0.060512955,-0.059825293,-0.059157185,-0.058513726,-0.057899692,-0.05731942,-0.056776668,-0.056274466,-0.055814954,-0.055399213,-0.055027104,-0.054697112,-0.054406215,-0.054149793,-0.053921577,-0.053713664,-0.053516602,-0.053319551,-0.053110528,-0.052876732,-0.052604948,-0.052282014,-0.05189534,-0.051433455,-0.050886557,-0.050247044,-0.049509991,-0.048673548,-0.047739232,-0.046712095,-0.045600747,-0.044417218,-0.043176682,-0.041897015,-0.040598234,-0.03930182,-0.03802996,-0.036804751,-0.03564739,-0.034577397,-0.033611909,-0.032765076,-0.032047582,-0.031466328,-0.031024274,-0.030720448,-0.030550133,-0.030505191,-0.030574538,-0.030744723,-0.031000582,-0.031325956,-0.031704411,-0.032119955,-0.032557705,-0.033004482,-0.033449314,-0.03388383,-0.034302525,-0.034702895,-0.035085446,-0.035453561,-0.035813259,-0.036172838,-0.036542432,-0.036933497,-0.037358244,-0.037829052,-0.038357884,-0.038955719,-0.039632037,-0.04039437,-0.041247941,-0.042195397,-0.043236651,-0.044368842,-0.045586398,-0.046881214,-0.048242916,-0.049659221,-0.051116344,-0.052599469,-0.054093225,-0.055582175,-0.057051283,-0.058486343,-0.059874355,-0.06120383,-0.062465031,-0.063650121,-0.064753241,-0.065770508,-0.066699947,-0.067541359,-0.068296145,-0.068967089,-0.069558131,-0.070074111,-0.070520536,-0.070903338,-0.071228667,-0.0715027,-0.071731484,-0.071920803,-0.072076084,-0.072202325,-0.072304054,-0.072385311,-0.072449645,-0.072500135,-0.072539412,-0.072569698,-0.072592848,-0.072610388,-0.072623561,-0.072633367,-0.072640604,-0.072645898,-0.072649736,-0.072652495,-0.072654461,-0.072655849,-0.072656821,-0.072657495,-0.072657959,-0.072658276,-0.072658489,-0.072658633,-0.072658728,-0.07265879,-0.072658831,-0.072658858,-0.072658875,-0.072658885,-0.072658892,-0.072658896,-0.072658899,-0.072658901,-0.072658902,-0.072658902,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903],"zorder":9,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629],"zorder":10,"type":"scatter"},{"customdata":[[2.92535e-101],[2.1459726e-100],[1.5603942e-99],[1.1246264e-98],[8.0342629e-98],[5.6891528e-97],[3.9931254e-96],[2.7780631e-95],[1.9157334e-94],[1.3094588e-93],[8.8718135e-93],[5.9579488e-92],[3.965929e-91],[2.6167179e-90],[1.7113257e-89],[1.1093594e-88],[7.1281302e-88],[4.5398636e-87],[2.8659841e-86],[1.7933645e-85],[1.1123133e-84],[6.8383217e-84],[4.1671172e-83],[2.5170144e-82],[1.5069522e-81],[8.9428732e-81],[5.2603963e-80],[3.0670698e-79],[1.7725262e-78],[1.0153726e-77],[5.7653018e-77],[3.244759e-76],[1.810117e-75],[1.0009091e-74],[5.4858819e-74],[2.9803143e-73],[1.604876e-72],[8.5661303e-72],[4.5320187e-71],[2.3766351e-70],[1.2353702e-69],[6.3649579e-69],[3.2505567e-68],[1.6454465e-67],[8.2560743e-67],[4.1060782e-66],[2.0241591e-65],[9.8906736e-65],[4.7903903e-64],[2.2997452e-63],[1.0943402e-62],[5.1616529e-62],[2.4131762e-61],[1.1182865e-60],[5.136661e-60],[2.3386894e-59],[1.0554265e-58],[4.7211439e-58],[2.0932943e-57],[9.1997734e-57],[4.0076315e-56],[1.7304627e-55],[7.4062862e-55],[3.1419737e-54],[1.3211995e-53],[5.5067843e-53],[2.2750531e-52],[9.3164144e-52],[3.7815502e-51],[1.5214397e-50],[6.0674109e-50],[2.3983684e-49],[9.3970636e-49],[3.6494906e-48],[1.40487e-47],[5.3604817e-47],[2.0273807e-46],[7.6002977e-46],[2.8241626e-45],[1.0401898e-44],[3.7975134e-44],[1.3741996e-43],[4.9290604e-43],[1.7524364e-42],[6.1756714e-42],[2.1571975e-41],[7.4689482e-41],[2.5632608e-40],[8.719467e-40],[2.9400241e-39],[9.8259751e-39],[3.2550992e-38],[1.0688496e-37],[3.4788268e-37],[1.1223099e-36],[3.5888609e-36],[1.1375337e-35],[3.5738448e-35],[1.1129379e-34],[3.4353423e-34],[1.0510731e-33],[3.1875692e-33],[9.5818673e-33],[2.8549894e-32],[8.4318463e-32],[2.4683383e-31],[7.1622673e-31],[2.0599667e-30],[5.8726443e-30],[1.6594763e-29],[4.6480654e-29],[1.2904384e-28],[3.5511266e-28],[9.6863221e-28],[2.6188795e-27],[7.0183658e-27],[1.8643195e-26],[4.9087238e-26],[1.2810932e-25],[3.3140325e-25],[8.4976083e-25],[2.1597355e-24],[5.4408704e-24],[1.3586267e-23],[3.3627598e-23],[8.2500303e-23],[2.0062231e-22],[4.8357846e-22],[1.1553637e-21],[2.7361161e-21],[6.4226525e-21],[1.4943711e-20],[3.4464076e-20],[7.878418e-20],[1.7851538e-19],[4.0093735e-19],[8.9256883e-19],[1.9695694e-18],[4.3078971e-18],[9.3395046e-18],[2.006998e-17],[4.2749859e-17],[9.0258307e-17],[1.8888807e-16],[3.9182019e-16],[8.0562728e-16],[1.6419001e-15],[3.3168408e-15],[6.6415286e-15],[1.3181874e-14],[2.5932963e-14],[5.0570034e-14],[9.7746383e-14],[1.8727283e-13],[3.5564422e-13],[6.6945899e-13],[1.2491075e-12],[2.3101687e-12],[4.2350254e-12],[7.6955083e-12],[1.3860794e-11],[2.4746231e-11],[4.3792608e-11],[7.6818198e-11],[1.335672e-10],[2.3020188e-10],[3.932713e-10],[6.6596462e-10],[1.1178585e-09],[1.8599476e-09],[3.067569e-09],[5.0149831e-09],[8.126959e-09],[1.3054861e-08],[2.0787606e-08],[3.2811598e-08],[5.133859e-08],[7.9626468e-08],[1.2242543e-07],[1.8659093e-07],[2.8191537e-07],[4.2224193e-07],[6.2693715e-07],[9.2281146e-07],[1.3465897e-06],[1.948044e-06],[2.7939075e-06],[3.972691e-06],[5.6005124e-06],[7.8280379e-06],[1.0848596e-05],[1.4907484e-05],[2.0312426e-05],[2.7445049e-05],[3.6773178e-05],[4.8863614e-05],[6.4394971e-05],[8.4170042e-05],[0.00010912705],[0.00014034913],[0.00017907121],[0.00022668378],[0.00028473268],[0.00035491455],[0.00043906768],[0.00053915799],[0.00065726053],[0.0007955369],[0.00095620922],[0.0011415317],[0.0013537605],[0.0015951235],[0.0018677896],[0.0021738395],[0.0025152366],[0.0028937988],[0.0033111692],[0.003768786],[0.0042678476],[0.0048092744],[0.0053936624],[0.0060212315],[0.0066917658],[0.0074045494],[0.0081582996],[0.0089511027],[0.0097803574],[0.010642735],[0.01153416],[0.012449827],[0.013384248],[0.014331347],[0.015284603],[0.016237231],[0.017182412],[0.01811355],[0.019024556],[0.019910135],[0.020766066],[0.021589452],[0.022378924],[0.023134782],[0.02385906],[0.024555499],[0.025229436],[0.0258876],[0.026537828],[0.027188706],[0.027849168],[0.028528057],[0.029233689],[0.029973436],[0.030753343],[0.031577829],[0.032449452],[0.033368775],[0.034334332],[0.035342682],[0.036388556],[0.037465075],[0.038564017],[0.039676128],[0.040791428],[0.041899515],[0.042989828],[0.044051866],[0.045075349],[0.046050309],[0.046967126],[0.047816509],[0.048589437],[0.049277073],[0.049870686],[0.050361571],[0.050741023],[0.051000348],[0.051130937],[0.051124408],[0.050972812],[0.050668895],[0.050206403],[0.049580424],[0.048787725],[0.047827087],[0.046699589],[0.045408848],[0.043961168],[0.042365612],[0.04063396],[0.038780573],[0.036822149],[0.034777391],[0.032666583],[0.030511113],[0.028332942],[0.026154061],[0.023995942],[0.021879016],[0.019822203],[0.017842494],[0.015954624],[0.014170829],[0.012500695],[0.01095111],[0.0095262977],[0.0082279419],[0.0070553799],[0.0060058528],[0.0050747997],[0.0042561774],[0.0035427909],[0.0029266201],[0.0023991308],[0.0019515581],[0.0015751565],[0.0012614116],[0.0010022091],[0.00078996368],[0.00061770803],[0.00047914617],[0.00036867516],[0.0002813807],[0.0002130119],[0.00015994035],[0.00011910863],[8.7972449e-05],[6.4440146e-05],[4.6812471e-05],[3.3724955e-05],[2.4094405e-05],[1.7070526e-05],[1.1993195e-05],[8.3554962e-06],[5.7723337e-06],[3.9542621e-06],[2.6860108e-06],[1.8091402e-06],[1.2082397e-06],[8.0010135e-07],[5.2534291e-07],[3.4201251e-07],[2.2076889e-07],[1.4129487e-07],[8.9660999e-08],[5.6411252e-08],[3.5189201e-08],[2.1763627e-08],[1.3345297e-08],[8.1132978e-09],[4.8903053e-09],[2.9224111e-09],[1.7314539e-09],[1.0170503e-09],[5.9228895e-10],[3.4196552e-10],[1.9574311e-10],[1.1108211e-10],[6.2496174e-11],[3.4858811e-11],[1.9276129e-11],[1.0567531e-11],[5.7434407e-12],[3.0946681e-12],[1.6530953e-12],[8.7543138e-13],[4.5960567e-13],[2.3921387e-13],[1.2343085e-13],[6.3138786e-14],[3.2018622e-14],[1.6096881e-14],[8.022549e-15],[3.9638153e-15],[1.9415283e-15],[9.4276233e-16],[4.538244e-16],[2.1657062e-16],[1.0245573e-16],[4.8050405e-17],[2.2339883e-17],[1.0296434e-17],[4.7045044e-18],[2.1308905e-18],[9.5681431e-19],[4.2590482e-19],[1.8793814e-19],[8.2211744e-20],[3.5650739e-20],[1.532562e-20],[6.5310291e-21],[2.7590423e-21],[1.1554402e-21],[4.7967614e-22],[1.9740563e-22],[8.0534306e-23],[3.256953e-23],[1.3057213e-23],[5.1891609e-24],[2.0443286e-24],[7.9838144e-25]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"June","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823628,-0.090823628,-0.090823627,-0.090823626,-0.090823624,-0.090823621,-0.090823616,-0.090823608,-0.090823596,-0.090823578,-0.090823549,-0.090823506,-0.090823442,-0.090823347,-0.090823207,-0.090823002,-0.090822706,-0.090822282,-0.090821681,-0.090820835,-0.090819656,-0.090818028,-0.090815801,-0.09081278,-0.090808721,-0.090803316,-0.090796184,-0.090786856,-0.090774765,-0.090759234,-0.090739459,-0.090714502,-0.09068328,-0.090644558,-0.090596945,-0.090538896,-0.090468714,-0.090384561,-0.090284471,-0.090166368,-0.090028092,-0.08986742,-0.089682097,-0.089469868,-0.089228505,-0.088955839,-0.088649789,-0.088308392,-0.08792983,-0.08751246,-0.087054843,-0.086555781,-0.086014354,-0.085429966,-0.084802397,-0.084131863,-0.08341908,-0.082665329,-0.081872526,-0.081043272,-0.080180894,-0.079289469,-0.078373802,-0.077439381,-0.076492282,-0.075539026,-0.074586398,-0.073641217,-0.072710079,-0.071799073,-0.070913494,-0.070057563,-0.069234177,-0.068444705,-0.067688846,-0.066964569,-0.06626813,-0.065594193,-0.064936029,-0.064285801,-0.063634923,-0.062974461,-0.062295572,-0.06158994,-0.060850193,-0.060070286,-0.0592458,-0.058374177,-0.057454854,-0.056489297,-0.055480947,-0.054435073,-0.053358554,-0.052259612,-0.051147501,-0.050032201,-0.048924114,-0.047833801,-0.046771763,-0.04574828,-0.04477332,-0.043856503,-0.04300712,-0.042234192,-0.041546555,-0.040952943,-0.040462058,-0.040082605,-0.039823281,-0.039692692,-0.039699221,-0.039850817,-0.040154734,-0.040617226,-0.041243205,-0.042035904,-0.042996542,-0.04412404,-0.045414781,-0.046862461,-0.048458017,-0.050189669,-0.052043056,-0.054001479,-0.056046238,-0.058157046,-0.060312516,-0.062490687,-0.064669568,-0.066827687,-0.068944612,-0.071001426,-0.072981135,-0.074869005,-0.0766528,-0.078322934,-0.079872519,-0.081297331,-0.082595687,-0.083768249,-0.084817776,-0.085748829,-0.086567452,-0.087280838,-0.087897009,-0.088424498,-0.088872071,-0.089248472,-0.089562217,-0.08982142,-0.090033665,-0.090205921,-0.090344483,-0.090454954,-0.090542248,-0.090610617,-0.090663689,-0.09070452,-0.090735656,-0.090759189,-0.090776816,-0.090789904,-0.090799534,-0.090806558,-0.090811636,-0.090815273,-0.090817857,-0.090819675,-0.090820943,-0.09082182,-0.090822421,-0.090822829,-0.090823104,-0.090823287,-0.090823408,-0.090823488,-0.090823539,-0.090823572,-0.090823594,-0.090823607,-0.090823616,-0.090823621,-0.090823624,-0.090823626,-0.090823627,-0.090823628,-0.090823628,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629],"zorder":10,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629],"zorder":11,"type":"scatter"},{"customdata":[[7.9597455e-186],[1.2097021e-184],[1.8223069e-183],[2.720999e-182],[4.0271616e-181],[5.9079054e-180],[8.5907643e-179],[1.2382088e-177],[1.7689671e-176],[2.5050099e-175],[3.5161138e-174],[4.8919297e-173],[6.7462323e-172],[9.2215978e-171],[1.2494384e-169],[1.6779822e-168],[2.2336938e-167],[2.9472959e-166],[3.8546738e-165],[4.9970688e-164],[6.4210615e-163],[8.1782829e-162],[1.032479e-160],[1.2920048e-159],[1.6025472e-158],[1.97025e-157],[2.4010193e-156],[2.9002388e-155],[3.4724474e-154],[4.1209883e-153],[4.847646e-152],[5.6522872e-151],[6.5325288e-150],[7.4834568e-149],[8.4974179e-148],[9.5639104e-147],[1.0669592e-145],[1.1798423e-144],[1.2931946e-143],[1.4049718e-142],[1.5129868e-141],[1.6149775e-140],[1.7086834e-139],[1.7919279e-138],[1.8627016e-137],[1.9192423e-136],[1.9601087e-135],[1.9842405e-134],[1.9910045e-133],[1.9802225e-132],[1.9521786e-131],[1.9076069e-130],[1.8476599e-129],[1.7738586e-128],[1.6880284e-127],[1.5922245e-126],[1.4886502e-125],[1.3795734e-124],[1.2672456e-123],[1.1538266e-122],[1.0413197e-121],[9.3151847e-121],[8.2596689e-120],[7.2593478e-119],[6.3240658e-118],[5.4608337e-117],[4.6739636e-116],[3.965295e-115],[3.3344905e-114],[2.7793757e-113],[2.2963011e-112],[1.8805038e-111],[1.5264529e-110],[1.2281641e-109],[9.7947461e-109],[7.7427239e-108],[6.0667788e-107],[4.7117947e-106],[3.6272572e-105],[2.7677964e-104],[2.0934074e-103],[1.5694126e-102],[1.1662304e-101],[8.5900433e-101],[6.2714817e-100],[4.5384627e-99],[3.2554511e-98],[2.3146077e-97],[1.6312007e-96],[1.1394656e-95],[7.8896699e-95],[5.414773e-94],[3.6835407e-93],[2.4837879e-92],[1.6600735e-91],[1.0997753e-90],[7.2217821e-90],[4.7005493e-89],[3.0326106e-88],[1.9393156e-87],[1.2292611e-86],[7.7233117e-86],[4.8097977e-85],[2.969025e-84],[1.8166226e-83],[1.1017406e-82],[6.6230465e-82],[3.9463905e-81],[2.330806e-80],[1.3645077e-79],[7.9178933e-79],[4.5541477e-78],[2.5963808e-77],[1.467214e-76],[8.2183065e-76],[4.5628377e-75],[2.5110277e-74],[1.36972e-73],[7.4058666e-73],[3.9690245e-72],[2.108412e-71],[1.1101738e-70],[5.7941575e-70],[2.9974601e-69],[1.5370229e-68],[7.8121587e-68],[3.9357326e-67],[1.9653682e-66],[9.7280561e-66],[4.7727866e-65],[2.3210354e-64],[1.1188074e-63],[5.3455539e-63],[2.531593e-62],[1.1883897e-61],[5.5295231e-61],[2.5502355e-60],[1.165834e-59],[5.2827121e-59],[2.3726899e-58],[1.0563038e-57],[4.6612297e-57],[2.0388064e-56],[8.8392474e-56],[3.7985549e-55],[1.6180254e-54],[6.8315002e-54],[2.858977e-53],[1.1859573e-52],[4.8763095e-52],[1.9873635e-51],[8.0283662e-51],[3.2147031e-50],[1.2759051e-49],[5.0194917e-49],[1.957334e-48],[7.565436e-48],[2.8984568e-47],[1.1006862e-46],[4.1430873e-46],[1.5457829e-45],[5.716586e-45],[2.0955057e-44],[7.6138587e-44],[2.7421086e-43],[9.7887751e-43],[3.4636653e-42],[1.2148073e-41],[4.2232104e-41],[1.4552645e-40],[4.9705572e-40],[1.6827985e-39],[5.6470686e-39],[1.8783561e-38],[6.192938e-38],[2.0238554e-37],[6.5558071e-37],[2.104926e-36],[6.6990228e-36],[2.1132461e-35],[6.6077362e-35],[2.0479499e-34],[6.2914393e-34],[1.915776e-33],[5.7823388e-33],[1.7299216e-32],[5.1299534e-32],[1.5078723e-31],[4.3931888e-31],[1.2687012e-30],[3.6316424e-30],[1.0304123e-29],[2.8978995e-29],[8.0782986e-29],[2.232137e-28],[6.113448e-28],[1.6596482e-27],[4.4659142e-27],[1.1911577e-26],[3.1491459e-26],[8.2524137e-26],[2.1435517e-25],[5.5188901e-25],[1.4084274e-24],[3.5627238e-24],[8.9329509e-24],[2.220102e-23],[5.4691045e-23],[1.3354417e-22],[3.2322072e-22],[7.7542381e-22],[1.843932e-21],[4.3462698e-21],[1.0154408e-20],[2.3515755e-20],[5.3979617e-20],[1.2281953e-19],[2.7699512e-19],[6.1921869e-19],[1.372093e-18],[3.0136368e-18],[6.5609459e-18],[1.4158281e-17],[3.0284717e-17],[6.4210471e-17],[1.3494536e-16],[2.8111261e-16],[5.804616e-16],[1.188059e-15],[2.4103189e-15],[4.8471187e-15],[9.6619807e-15],[1.9090743e-14],[3.7389916e-14],[7.2587542e-14],[1.3968398e-13],[2.6644597e-13],[5.0379155e-13],[9.4421975e-13],[1.754192e-12],[3.2304614e-12],[5.8970793e-12],[1.067078e-11],[1.9140093e-11],[3.4031626e-11],[5.9981101e-11],[1.0479527e-10],[1.8149604e-10],[3.1159733e-10],[5.3030364e-10],[8.9467067e-10],[1.4962814e-09],[2.4807263e-09],[4.0772222e-09],[6.6431592e-09],[1.0730375e-08],[1.7182675e-08],[2.7277745e-08],[4.2931361e-08],[6.6987943e-08],[1.0362925e-07],[1.5894262e-07],[2.4170191e-07],[3.6442791e-07],[5.4481125e-07],[8.0759826e-07],[1.1870597e-06],[1.730182e-06],[2.5007388e-06],[3.5844195e-06],[5.0952008e-06],[7.183155e-06],[1.0043885e-05],[1.392976e-05],[1.9163093e-05],[2.6151357e-05],[3.540448e-05],[4.7554152e-05],[6.3375021e-05],[8.3807496e-05],[0.00010998181],[0.00014324284],[0.00018517509],[0.00023762716],[0.00030273499],[0.00038294298],[0.00048102241],[0.00060008627],[0.00074359989],[0.00091538689],[0.0011196299],[0.0013608656],[0.001643974],[0.0019741615],[0.0023569366],[0.002798079],[0.0033036],[0.0038796926],[0.0045326704],[0.0052688933],[0.006094675],[0.0070161729],[0.0080392536],[0.0091693349],[0.010411199],[0.011768777],[0.013244909],[0.014841074],[0.016557104],[0.018390885],[0.02033806],[0.022391747],[0.024542289],[0.026777057],[0.029080332],[0.031433278],[0.033814039],[0.036197963],[0.038557985],[0.040865153],[0.043089306],[0.045199901],[0.047166939],[0.048961989],[0.050559239],[0.051936546],[0.053076412],[0.053966839],[0.054601999],[0.054982674],[0.05511642],[0.055017432],[0.054706093],[0.05420822],[0.053554024],[0.052776841],[0.051911677],[0.050993659],[0.050056453],[0.049130751],[0.048242905],[0.047413777],[0.046657877],[0.045982833],[0.045389221],[0.044870756],[0.044414837],[0.044003411],[0.043614094],[0.043221494],[0.042798649],[0.042318509],[0.041755375],[0.041086224],[0.040291849],[0.039357772],[0.038274877],[0.037039764],[0.035654796],[0.034127884],[0.032472005],[0.030704517],[0.028846315],[0.026920874],[0.02495324],[0.022969028],[0.020993465],[0.019050531],[0.017162226],[0.015347976],[0.013624217],[0.012004126],[0.010497523],[0.0091109063],[0.0078476229],[0.0067081293],[0.0056903348],[0.0047899917],[0.0040011108],[0.0033163805],[0.0027275687],[0.0022258951],[0.0018023612],[0.0014480308],[0.0011542598],[0.00091287285],[0.00071629057],[0.00055761159],[0.00043065495],[0.00032996945],[0.00025081661],[0.00018913365],[0.00014148259],[0.00010499065],[7.7286494e-05],[5.6435681e-05],[4.0878326e-05],[2.9370655e-05],[2.0931842e-05],[1.4796764e-05]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"June","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823628,-0.090823628,-0.090823627,-0.090823626,-0.090823625,-0.090823622,-0.090823618,-0.090823612,-0.090823602,-0.090823586,-0.090823562,-0.090823525,-0.09082347,-0.090823387,-0.090823264,-0.090823084,-0.090822821,-0.090822442,-0.090821899,-0.090821128,-0.090820044,-0.090818534,-0.090816446,-0.090813585,-0.090809699,-0.090804466,-0.090797478,-0.090788224,-0.090776075,-0.090760254,-0.090739821,-0.090713647,-0.090680386,-0.090638454,-0.090586002,-0.090520894,-0.090440686,-0.090342606,-0.090223543,-0.090080029,-0.089908242,-0.089703999,-0.089462763,-0.089179655,-0.088849467,-0.088466692,-0.08802555,-0.087520029,-0.086943936,-0.086290958,-0.085554736,-0.084728954,-0.083807456,-0.082784375,-0.081654294,-0.08041243,-0.079054852,-0.07757872,-0.075982555,-0.074266525,-0.072432744,-0.070485569,-0.068431882,-0.06628134,-0.064046572,-0.061743297,-0.059390351,-0.05700959,-0.054625666,-0.052265643,-0.049958476,-0.047734323,-0.045623728,-0.04365669,-0.04186164,-0.04026439,-0.038887083,-0.037747217,-0.03685679,-0.03622163,-0.035840955,-0.035707209,-0.035806197,-0.036117536,-0.036615409,-0.037269605,-0.038046788,-0.038911952,-0.039829969,-0.040767176,-0.041692878,-0.042580724,-0.043409852,-0.044165752,-0.044840796,-0.045434407,-0.045952873,-0.046408792,-0.046820218,-0.047209535,-0.047602134,-0.048024979,-0.04850512,-0.049068254,-0.049737405,-0.05053178,-0.051465857,-0.052548752,-0.053783865,-0.055168833,-0.056695745,-0.058351624,-0.060119112,-0.061977314,-0.063902755,-0.065870389,-0.067854601,-0.069830164,-0.071773097,-0.073661403,-0.075475653,-0.077199412,-0.078819503,-0.080326106,-0.081712723,-0.082976006,-0.0841155,-0.085133294,-0.086033637,-0.086822518,-0.087507248,-0.08809606,-0.088597734,-0.089021268,-0.089375598,-0.089669369,-0.089910756,-0.090107338,-0.090266017,-0.090392974,-0.090493659,-0.090572812,-0.090634495,-0.090682146,-0.090718638,-0.090746342,-0.090767193,-0.090782751,-0.090794258,-0.090802697,-0.090808832],"zorder":11,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835],"zorder":12,"type":"scatter"},{"customdata":[[1.3438253e-120],[1.1898247e-119],[1.0442111e-118],[9.0836191e-118],[7.8323986e-117],[6.694158e-116],[5.671037e-115],[4.7620548e-114],[3.9636172e-113],[3.2700507e-112],[2.6741315e-111],[2.1675871e-110],[1.74155e-109],[1.3869504e-108],[1.0948424e-107],[8.5665893e-107],[6.6440065e-106],[5.1076125e-105],[3.8919897e-104],[2.9396207e-103],[2.2007811e-102],[1.6331587e-101],[1.2012848e-100],[8.7584978e-100],[6.3296461e-99],[4.5341452e-98],[3.2194203e-97],[2.2658243e-96],[1.5806698e-95],[1.0930059e-94],[7.4915268e-94],[5.0896126e-93],[3.4274074e-92],[2.2877755e-91],[1.5136582e-90],[9.9267951e-90],[6.4529333e-89],[4.1578829e-88],[2.6555492e-87],[1.6811387e-86],[1.054921e-85],[6.5615066e-85],[4.0453355e-84],[2.4721393e-83],[1.4974724e-82],[8.9910891e-82],[5.3509816e-81],[3.1566204e-80],[1.8457766e-79],[1.0698031e-78],[6.1460571e-78],[3.4999149e-77],[1.9755436e-76],[1.1053099e-75],[6.1298519e-75],[3.3696472e-74],[1.8360629e-73],[9.9165232e-73],[5.3088468e-72],[2.8171499e-71],[1.4817974e-70],[7.7256838e-70],[3.992587e-69],[2.0452262e-68],[1.0384794e-67],[5.2266594e-67],[2.6074764e-66],[1.2893968e-65],[6.3200851e-65],[3.0706448e-64],[1.4787905e-63],[7.0591815e-63],[3.3402023e-62],[1.5666144e-61],[7.2832042e-61],[3.3562483e-60],[1.5330527e-59],[6.9411531e-59],[3.1151423e-58],[1.3857857e-57],[6.1106346e-57],[2.6708459e-56],[1.1571344e-55],[4.9692564e-55],[2.1152994e-54],[8.9253515e-54],[3.7329489e-53],[1.5475768e-52],[6.3595445e-52],[2.5904409e-51],[1.0459127e-50],[4.1859258e-50],[1.6605889e-49],[6.5299149e-49],[2.5452352e-48],[9.8338493e-48],[3.7661245e-47],[1.4296889e-46],[5.3797788e-46],[2.0066127e-45],[7.4188947e-45],[2.7188901e-44],[9.8769119e-44],[3.5565429e-43],[1.2694411e-42],[4.4913302e-42],[1.5751272e-41],[5.475639e-41],[1.8868302e-40],[6.4448077e-40],[2.1820594e-39],[7.323235e-39],[2.4362367e-38],[8.0337152e-38],[2.6259967e-37],[8.5085012e-37],[2.7327093e-36],[8.6999281e-36],[2.7454915e-35],[8.5882983e-35],[2.6630364e-34],[8.1852216e-34],[2.4938338e-33],[7.5316255e-33],[2.2547296e-32],[6.6909094e-32],[1.9681636e-31],[5.7388259e-31],[1.6587124e-30],[4.7523215e-30],[1.3496701e-29],[3.7995922e-29],[1.0603136e-28],[2.9330548e-28],[8.0425721e-28],[2.1860453e-27],[5.8899727e-27],[1.5731053e-26],[4.1647911e-26],[1.0929997e-25],[2.8434057e-25],[7.3324661e-25],[1.8743655e-24],[4.7495454e-24],[1.1930094e-23],[2.9705055e-23],[7.3318243e-23],[1.793864e-22],[4.3507423e-22],[1.046006e-21],[2.4928866e-21],[5.8893729e-21],[1.3792227e-20],[3.2018365e-20],[7.3682437e-20],[1.6808522e-19],[3.8009878e-19],[8.5205078e-19],[1.8933776e-18],[4.1707334e-18],[9.1073449e-18],[1.9714058e-17],[4.2302485e-17],[8.9983341e-17],[1.8974288e-16],[3.9662199e-16],[8.2185807e-16],[1.6882097e-15],[3.4376871e-15],[6.93933e-15],[1.3886118e-14],[2.7545912e-14],[5.4168576e-14],[1.0559724e-13],[2.0406736e-13],[3.9094116e-13],[7.424499e-13],[1.3977898e-12],[2.608775e-12],[4.8267256e-12],[8.8530102e-12],[1.6097296e-11],[2.9016149e-11],[5.1850484e-11],[9.1853022e-11],[1.6131067e-10],[2.808428e-10],[4.8472518e-10],[8.2939544e-10],[1.4068999e-09],[2.3659311e-09],[3.9443938e-09],[6.5192817e-09],[1.0682249e-08],[1.7352876e-08],[2.7946564e-08],[4.4620682e-08],[7.0631364e-08],[1.1084486e-07],[1.7246195e-07],[2.6603221e-07],[4.068572e-07],[6.1690832e-07],[9.2741556e-07],[1.3823178e-06],[2.0428017e-06],[2.9931933e-06],[4.3485007e-06],[6.2639316e-06],[8.9467279e-06],[1.2670652e-05],[1.7793429e-05],[2.4777394e-05],[3.4213466e-05],[4.6848449e-05],[6.3615423e-05],[8.5666751e-05],[0.00011440892],[0.00015153806],[0.00019907472],[0.00025939603],[0.00033526305],[0.00042984105],[0.00054671022],[0.00068986442],[0.00086369572],[0.0010729633],[0.0013227458],[0.0016183765],[0.0019653637],[0.0023692972],[0.0028357452],[0.0033701456],[0.0039776975],[0.0046632579],[0.0054312491],[0.006285582],[0.007229598],[0.0082660312],[0.0093969902],[0.010623955],[0.011947787],[0.01336873],[0.014886422],[0.016499865],[0.018207385],[0.020006546],[0.021894025],[0.023865446],[0.025915181],[0.028036125],[0.030219466],[0.03245447],[0.034728309],[0.037025955],[0.039330171],[0.041621615],[0.043879081],[0.046079869],[0.0482003],[0.050216344],[0.052104338],[0.053841765],[0.055408041],[0.056785263],[0.057958879],[0.058918209],[0.059656807],[0.060172621],[0.060467931],[0.060549086],[0.060426035],[0.060111699],[0.059621215],[0.058971112],[0.058178469],[0.057260115],[0.056231918],[0.055108202],[0.053901338],[0.052621504],[0.051276637],[0.049872554],[0.048413227],[0.04690117],[0.045337908],[0.043724486],[0.042061976],[0.040351931],[0.03859679],[0.036800168],[0.034967053],[0.033103881],[0.03121851],[0.029320087],[0.027418837],[0.025525788],[0.02365245],[0.021810479],[0.020011331],[0.018265945],[0.016584444],[0.014975888],[0.013448072],[0.012007384],[0.010658709],[0.0094053941],[0.0082492654],[0.007190683],[0.0062286402],[0.0053608925],[0.0045841104],[0.0038940486],[0.0032857243],[0.002753597],[0.002291745],[0.001894031],[0.0015542548],[0.0012662878],[0.0010241882],[0.00082229533],[0.00065530203],[0.00051830732],[0.00040684904],[0.00031691947],[0.00024496569],[0.00018787755],[0.0001429657],[0.00010793236],[8.0837207e-05],[6.0060506e-05],[4.4265396e-05],[3.2360726e-05],[2.346566e-05],[1.6876839e-05],[1.2038643e-05],[8.5168184e-06],[5.975537e-06],[4.157798e-06],[2.8689616e-06],[1.9631336e-06],[1.3320738e-06],[8.9629365e-07],[5.9800782e-07],[3.956302e-07],[2.5953153e-07],[1.688113e-07],[1.0887212e-07],[6.9619224e-08],[4.414006e-08],[2.7747397e-08],[1.7293855e-08],[1.0686529e-08],[6.5471474e-09],[3.9767999e-09],[2.394845e-09],[1.4298129e-09],[8.4632173e-10],[4.9664123e-10],[2.8893342e-10],[1.6664697e-10],[9.5288118e-11],[5.4015575e-11],[3.0355372e-11],[1.6911646e-11],[9.3404465e-12],[5.1142097e-12],[2.7759806e-12],[1.4937546e-12],[7.9682886e-13],[4.2137811e-13],[2.2090126e-13],[1.1480003e-13],[5.9142785e-14],[3.0204797e-14],[1.5291952e-14],[7.6746988e-15],[3.8182976e-15],[1.8831585e-15],[9.2068562e-16],[4.4621274e-16],[2.1437667e-16],[1.020979e-16],[4.8201305e-17],[2.2558091e-17],[1.0465173e-17],[4.8127136e-18],[2.1939775e-18],[9.9145252e-19],[4.4412822e-19],[1.9721531e-19],[8.6809617e-20],[3.7878186e-20],[1.6383392e-20],[7.0244289e-21],[2.9854513e-21],[1.2577665e-21],[5.2526731e-22],[2.1744547e-22],[8.9229683e-23]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"July","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898834,-0.10898834,-0.10898833,-0.10898831,-0.10898828,-0.10898824,-0.10898818,-0.10898809,-0.10898795,-0.10898774,-0.10898743,-0.10898697,-0.10898631,-0.10898536,-0.10898401,-0.10898209,-0.10897941,-0.10897568,-0.10897056,-0.10896358,-0.10895414,-0.10894151,-0.10892474,-0.10890269,-0.10887395,-0.10883682,-0.10878928,-0.10872896,-0.10865309,-0.10855851,-0.10844164,-0.10829849,-0.10812466,-0.10791539,-0.10766561,-0.10736998,-0.10702299,-0.10661906,-0.10615261,-0.10561821,-0.10501066,-0.1043251,-0.10355711,-0.10270277,-0.10175876,-0.10072232,-0.099591364,-0.098364399,-0.097040568,-0.095619624,-0.094101933,-0.09248849,-0.09078097,-0.088981809,-0.08709433,-0.085122909,-0.083073174,-0.08095223,-0.078768889,-0.076533884,-0.074260045,-0.071962399,-0.069658184,-0.067366739,-0.065109274,-0.062908486,-0.060788054,-0.05877201,-0.056884016,-0.055146589,-0.053580314,-0.052203091,-0.051029476,-0.050070146,-0.049331547,-0.048815734,-0.048520424,-0.048439269,-0.048562319,-0.048876655,-0.049367139,-0.050017243,-0.050809886,-0.051728239,-0.052756437,-0.053880152,-0.055087017,-0.056366851,-0.057711718,-0.0591158,-0.060575127,-0.062087185,-0.063650447,-0.065263868,-0.066926379,-0.068636423,-0.070391565,-0.072188186,-0.074021302,-0.075884473,-0.077769844,-0.079668267,-0.081569517,-0.083462567,-0.085335904,-0.087177876,-0.088977023,-0.09072241,-0.092403911,-0.094012467,-0.095540282,-0.09698097,-0.098329646,-0.099582961,-0.10073909,-0.10179767,-0.10275971,-0.10362746,-0.10440424,-0.10509431,-0.10570263,-0.10623476,-0.10669661,-0.10709432,-0.1074341,-0.10772207,-0.10796417,-0.10816606,-0.10833305,-0.10847005,-0.10858151,-0.10867144,-0.10874339,-0.10880048,-0.10884539,-0.10888042,-0.10890752,-0.10892829,-0.10894409,-0.10895599,-0.10896489,-0.10897148,-0.10897632,-0.10897984,-0.10898238,-0.1089842,-0.10898549,-0.10898639,-0.10898702,-0.10898746,-0.10898776,-0.10898796,-0.1089881,-0.10898819,-0.10898825,-0.10898829,-0.10898831,-0.10898833,-0.10898834,-0.10898834,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835],"zorder":12,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835],"zorder":13,"type":"scatter"},{"customdata":[[3.3519376e-147],[3.7533534e-146],[4.1658803e-145],[4.583085e-144],[4.9977307e-143],[5.4019627e-142],[5.7875415e-141],[6.1461118e-140],[6.4694982e-139],[6.7500118e-138],[6.9807531e-137],[7.1558927e-136],[7.2709167e-135],[7.3228192e-134],[7.3102337e-133],[7.2334921e-132],[7.0946106e-131],[6.8972016e-130],[6.6463174e-129],[6.3482355e-128],[6.0101982e-127],[5.6401201e-126],[5.246283e-125],[4.8370311e-124],[4.4204842e-123],[4.0042816e-122],[3.5953666e-121],[3.19982e-120],[2.8227455e-119],[2.4682076e-118],[2.1392201e-117],[1.837778e-116],[1.5649282e-115],[1.3208686e-114],[1.1050669e-113],[9.1639217e-113],[7.5324794e-112],[6.1370313e-111],[4.9561282e-110],[3.9672587e-109],[3.1477651e-108],[2.4755853e-107],[1.9298222e-106],[1.4911471e-105],[1.1420562e-104],[8.6699839e-104],[6.5239841e-103],[4.865991e-102],[3.5974395e-101],[2.636207e-100],[1.914826e-99],[1.3786148e-98],[9.8383062e-98],[6.9592358e-97],[4.8794016e-96],[3.3910593e-95],[2.335974e-94],[1.5950137e-93],[1.079505e-92],[7.2418356e-92],[4.8154457e-91],[3.1738625e-90],[2.0734976e-89],[1.3427117e-88],[8.6183832e-88],[5.4831816e-87],[3.457827e-86],[2.1614127e-85],[1.3391707e-84],[8.2242817e-84],[5.0063801e-83],[3.0207408e-82],[1.8066204e-81],[1.0709869e-80],[6.2931082e-80],[3.6653044e-79],[2.1160148e-78],[1.2108522e-77],[6.8679544e-77],[3.8612459e-76],[2.1517475e-75],[1.1885542e-74],[6.5074439e-74],[3.5315528e-73],[1.8996989e-72],[1.0129025e-71],[5.3532102e-71],[2.8043019e-70],[1.4561263e-69],[7.4944041e-69],[3.8233053e-68],[1.9333241e-67],[9.690231e-67],[4.8142364e-66],[2.3707431e-65],[1.1571919e-64],[5.5987368e-64],[2.6849644e-63],[1.2762943e-62],[6.0134944e-62],[2.8084507e-61],[1.3000813e-60],[5.9653783e-60],[2.7131218e-59],[1.2231068e-58],[5.4654167e-58],[2.4207279e-57],[1.0627533e-56],[4.6246917e-56],[1.9947886e-55],[8.528542e-55],[3.614236e-54],[1.5181756e-53],[6.3210805e-53],[2.6087018e-52],[1.0671399e-51],[4.3269519e-51],[1.739028e-50],[6.927793e-50],[2.7355649e-49],[1.070688e-48],[4.1537722e-48],[1.5972989e-47],[6.0882647e-47],[2.300195e-46],[8.6138953e-46],[3.19741e-45],[1.1764158e-44],[4.2902954e-44],[1.5508769e-43],[5.5568833e-43],[1.973554e-42],[6.947532e-42],[2.4242416e-41],[8.3846522e-41],[2.8744715e-40],[9.7677548e-40],[3.2899955e-39],[1.0983978e-38],[3.6348611e-38],[1.1922842e-37],[3.876462e-37],[1.2492665e-36],[3.9906024e-36],[1.2635302e-35],[3.9654876e-35],[1.2335915e-34],[3.8037323e-34],[1.1625518e-33],[3.521912e-33],[1.0575684e-32],[3.1477648e-32],[9.2866667e-32],[2.7156966e-31],[7.8716621e-31],[2.2615982e-30],[6.4406285e-30],[1.8180459e-29],[5.0868071e-29],[1.4107481e-28],[3.8780866e-28],[1.0566942e-27],[2.8539408e-27],[7.6401944e-27],[2.027345e-26],[5.3323017e-26],[1.3901625e-25],[3.5923633e-25],[9.2015024e-25],[2.3361517e-24],[5.8790501e-24],[1.4664832e-23],[3.6258583e-23],[8.8860427e-23],[2.1585881e-22],[5.1975059e-22],[1.2404636e-21],[2.9345188e-21],[6.8810322e-21],[1.5993154e-20],[3.6844995e-20],[8.4136941e-20],[1.9044027e-19],[4.2726244e-19],[9.5015512e-19],[2.094393e-18],[4.5759969e-18],[9.91008e-18],[2.1273184e-17],[4.5263877e-17],[9.5462968e-17],[1.9956393e-16],[4.1351679e-16],[8.4931387e-16],[1.729049e-15],[3.4890757e-15],[6.9787486e-15],[1.3835944e-14],[2.7189686e-14],[5.2961921e-14],[1.0225569e-13],[1.956931e-13],[3.7121699e-13],[6.9798257e-13],[1.3008456e-12],[2.403098e-12],[4.4002955e-12],[7.9865081e-12],[1.4368019e-11],[2.5621338e-11],[4.5286825e-11],[7.9342746e-11],[1.3778694e-10],[2.371781e-10],[4.0467562e-10],[6.8439321e-10],[1.1472837e-09],[1.9063506e-09],[3.1397997e-09],[5.1258834e-09],[8.2947558e-09],[1.3304762e-08],[2.1153385e-08],[3.3336695e-08],[5.2075791e-08],[8.063447e-08],[1.2375937e-07],[1.8828209e-07],[2.8393224e-07],[4.244207e-07],[6.2886307e-07],[9.236236e-07],[1.3446687e-06],[1.9405243e-06],[2.775932e-06],[3.9362916e-06],[5.5329595e-06],[7.7094424e-06],[1.0648479e-05],[1.4579938e-05],[1.9789378e-05],[2.6627017e-05],[3.5516725e-05],[4.6964559e-05],[6.1566188e-05],[8.0012462e-05],[0.00010309226],[0.00013169172],[0.00016678883],[0.00020944267],[0.00026077642],[0.00032195367],[0.00039414801],[0.00047850593],[0.00057610403],[0.00068790166],[0.00081469084],[0.0009570459],[0.0011152755],[0.0012893798],[0.0014790167],[0.0016834784],[0.0019016831],[0.0021321817],[0.0023731817],[0.0026225884],[0.002878062],[0.0031370892],[0.0033970661],[0.003655388],[0.0039095437],[0.0041572075],[0.0043963259],[0.0046251944],[0.0048425209],[0.0050474726],[0.0052397056],[0.0054193753],[0.0055871274],[0.0057440723],[0.0058917415],[0.0060320307],[0.0061671304],[0.0062994474],[0.0064315205],[0.0065659337],[0.0067052304],[0.0068518331],[0.0070079733],[0.0071756356],[0.0073565209],[0.0075520337],[0.0077632961],[0.0079911924],[0.0082364434],[0.0084997112],[0.0087817301],[0.0090834575],[0.0094062375],[0.009751965],[0.010123241],[0.010523505],[0.01095713],[0.011429474],[0.011946873],[0.012516571],[0.013146587],[0.013845512],[0.014622246],[0.015485687],[0.016444367],[0.017506066],[0.01867741],[0.019963469],[0.021367375],[0.022889969],[0.024529496],[0.02628137],[0.028137993],[0.030088676],[0.032119636],[0.034214094],[0.036352477],[0.038512709],[0.040670615],[0.042800402],[0.044875235],[0.046867873],[0.048751355],[0.050499714],[0.052088689],[0.053496409],[0.054704011],[0.05569617],[0.056461515],[0.056992897],[0.057287503],[0.057346809],[0.057176364],[0.056785424],[0.056186452],[0.055394522],[0.054426645],[0.053301072],[0.052036607],[0.05065197],[0.049165235],[0.047593388],[0.045952004],[0.044255054],[0.042514849],[0.040742096],[0.038946056],[0.037134767],[0.035315315],[0.03349412],[0.031677197],[0.029870396],[0.028079569],[0.026310694],[0.024569906],[0.02286349],[0.02119779],[0.0195791],[0.018013507],[0.016506735],[0.015063983],[0.013689785],[0.012387894],[0.011161195],[0.010011664],[0.0089403543],[0.0079474194],[0.007032165],[0.0061931236],[0.0054281447],[0.0047344947],[0.0041089605],[0.003547953],[0.0030476047],[0.0026038605],[0.0022125597],[0.0018695082],[0.0015705409],[0.0013115757],[0.0010886576],[0.00089799572],[0.00073599306],[0.00059926927],[0.00048467753],[0.00038931575],[0.00031053259],[0.00024592859],[0.00019335294],[0.00015089636],[0.00011688058],[8.9845038e-05],[6.8531394e-05],[5.1866564e-05],[3.8944804e-05]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"July","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898834,-0.10898833,-0.10898832,-0.1089883,-0.10898827,-0.10898823,-0.10898817,-0.10898807,-0.10898793,-0.10898773,-0.10898743,-0.10898701,-0.10898641,-0.10898558,-0.10898442,-0.10898282,-0.10898065,-0.10897771,-0.10897377,-0.10896857,-0.10896173,-0.10895284,-0.10894139,-0.10892679,-0.10890834,-0.10888526,-0.10885666,-0.10882157,-0.10877891,-0.10872758,-0.1086664,-0.10859421,-0.10850985,-0.10841225,-0.10830045,-0.10817366,-0.10803131,-0.10787308,-0.10769897,-0.10750934,-0.10730488,-0.10708667,-0.10685617,-0.10661517,-0.10636577,-0.10611029,-0.10585127,-0.10559129,-0.10533297,-0.10507881,-0.10483115,-0.10459203,-0.10436316,-0.10414583,-0.10394088,-0.10374865,-0.10356898,-0.10340123,-0.10324428,-0.10309661,-0.10295632,-0.10282122,-0.10268891,-0.10255683,-0.10242242,-0.10228312,-0.10213652,-0.10198038,-0.10181272,-0.10163183,-0.10143632,-0.10122506,-0.10099716,-0.10075191,-0.10048864,-0.10020662,-0.099904897,-0.099582117,-0.09923639,-0.098865113,-0.098464849,-0.098031224,-0.09755888,-0.097041481,-0.096471783,-0.095841768,-0.095142843,-0.094366108,-0.093502668,-0.092543988,-0.091482289,-0.090310945,-0.089024885,-0.087620979,-0.086098386,-0.084458858,-0.082706985,-0.080850361,-0.078899678,-0.076868719,-0.07477426,-0.072635878,-0.070475646,-0.06831774,-0.066187953,-0.064113119,-0.062120481,-0.060237,-0.058488641,-0.056899665,-0.055491945,-0.054284344,-0.053292184,-0.05252684,-0.051995458,-0.051700852,-0.051641545,-0.05181199,-0.052202931,-0.052801903,-0.053593833,-0.05456171,-0.055687283,-0.056951747,-0.058336385,-0.05982312,-0.061394966,-0.06303635,-0.064733301,-0.066473506,-0.068246258,-0.070042299,-0.071853588,-0.073673039,-0.075494235,-0.077311157,-0.079117959,-0.080908785,-0.082677661,-0.084418448,-0.086124865,-0.087790565,-0.089409255,-0.090974848,-0.09248162,-0.093924372,-0.095298569,-0.096600461,-0.09782716,-0.098976691,-0.100048,-0.10104094,-0.10195619,-0.10279523,-0.10356021,-0.10425386,-0.10487939,-0.1054404,-0.10594075,-0.10638449,-0.10677579,-0.10711885,-0.10741781,-0.10767678,-0.1078997,-0.10809036,-0.10825236,-0.10838909,-0.10850368,-0.10859904,-0.10867782,-0.10874243,-0.108795,-0.10883746,-0.10887147,-0.10889851,-0.10891982,-0.10893649,-0.10894941],"zorder":13,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308],"zorder":14,"type":"scatter"},{"customdata":[[1.028086e-96],[7.1956035e-96],[4.9919336e-95],[3.4326868e-94],[2.3397171e-93],[1.5807251e-92],[1.0585543e-91],[7.0264135e-91],[4.6229383e-90],[3.014854e-89],[1.9488494e-88],[1.2486884e-87],[7.9303737e-87],[4.9922583e-86],[3.1150444e-85],[1.9266164e-84],[1.1811092e-83],[7.1770942e-83],[4.3228588e-82],[2.5808172e-81],[1.5272399e-80],[8.9582064e-80],[5.2083322e-79],[3.001512e-78],[1.7145308e-77],[9.7076545e-77],[5.4481258e-76],[3.0307056e-75],[1.6711066e-74],[9.1333139e-74],[4.9478487e-73],[2.6568573e-72],[1.4141122e-71],[7.4604201e-71],[3.9012745e-70],[2.0221508e-69],[1.0389254e-68],[5.2907715e-68],[2.6706529e-67],[1.3362253e-66],[6.6268283e-66],[3.2575835e-65],[1.5872641e-64],[7.6659617e-64],[3.6698464e-63],[1.7413775e-62],[8.1903373e-62],[3.8183386e-61],[1.7644562e-60],[8.0818567e-60],[3.6692322e-59],[1.6512128e-58],[7.3653725e-58],[3.2564932e-57],[1.4271494e-56],[6.1994405e-56],[2.6693122e-55],[1.1392264e-54],[4.819306e-54],[2.0207974e-53],[8.398947e-53],[3.4601164e-52],[1.4129292e-51],[5.7189179e-51],[2.2944106e-50],[9.1241459e-50],[3.5964755e-49],[1.40516e-48],[5.4417461e-48],[2.0888851e-47],[7.9479412e-47],[2.9974955e-46],[1.1205371e-45],[4.1520036e-45],[1.5249409e-44],[5.5515226e-44],[2.0032493e-43],[7.165091e-43],[2.5402251e-42],[8.926609e-42],[3.1093142e-41],[1.0735111e-40],[3.6737723e-40],[1.2461828e-39],[4.1900099e-39],[1.3964075e-38],[4.6128898e-38],[1.5104202e-37],[4.9021468e-37],[1.5770252e-36],[5.0286887e-36],[1.5894054e-35],[4.9794159e-35],[1.5462721e-34],[4.7594553e-34],[1.4520861e-33],[4.3912818e-33],[1.3162975e-32],[3.9109348e-32],[1.1517837e-31],[3.3622117e-31],[9.7284353e-31],[2.7901319e-30],[7.931773e-30],[2.2350108e-29],[6.2424169e-29],[1.728183e-28],[4.7423158e-28],[1.289897e-27],[3.47763e-27],[9.2934193e-27],[2.4616794e-26],[6.4632544e-26],[1.6820342e-25],[4.3389254e-25],[1.1094133e-24],[2.8116957e-24],[7.063291e-24],[1.7587725e-23],[4.3408627e-23],[1.0619553e-22],[2.5751363e-22],[6.1895349e-22],[1.4746183e-21],[3.4822906e-21],[8.1510624e-21],[1.8911554e-20],[4.3491466e-20],[9.9139031e-20],[2.2400056e-19],[5.0166909e-19],[1.1136517e-18],[2.4504467e-18],[5.3444736e-18],[1.1553895e-17],[2.475801e-17],[5.2585604e-17],[1.1070872e-16],[2.3102586e-16],[4.7786277e-16],[9.7973728e-16],[1.9910397e-15],[4.0106432e-15],[8.0077775e-15],[1.5847977e-14],[3.1088482e-14],[6.0448994e-14],[1.1650446e-13],[2.2256655e-13],[4.2144525e-13],[7.91018e-13],[1.4716195e-12],[2.7137426e-12],[4.9602755e-12],[8.9868394e-12],[1.6138837e-11],[2.872775e-11],[5.0686831e-11],[8.8644725e-11],[1.5366499e-10],[2.6403491e-10],[4.4968895e-10],[7.5915005e-10],[1.2703041e-09],[2.1069421e-09],[3.463877e-09],[5.6446558e-09],[9.1175431e-09],[1.4597678e-08],[2.3166244e-08],[3.6441286e-08],[5.6819623e-08],[8.7815269e-08],[1.3452694e-07],[2.0427566e-07],[3.0746296e-07],[4.587104e-07],[6.7835167e-07],[9.9435806e-07],[1.444786e-06],[2.0808391e-06],[2.9706358e-06],[4.2037623e-06],[5.8966718e-06],[8.1989536e-06],[1.1300446e-05],[1.5439095e-05],[2.0909388e-05],[2.8071051e-05],[3.7357633e-05],[4.9284421e-05],[6.4455047e-05],[8.3566009e-05],[0.00010740827],[0.00013686504],[0.00017290492],[0.00021656964],[0.00026895586],[0.00033119082],[0.00040440199],[0.00048968143],[0.00058804595],[0.00070039493],[0.00082746818],[0.00096980638],[0.0011277174],[0.0013012519],[0.00149019],[0.0016940441],[0.0019120771],[0.0021433379],[0.0023867151],[0.0026410049],[0.0029049921],[0.003177538],[0.0034576721],[0.0037446792],[0.0040381772],[0.0043381795],[0.0046451365],[0.0049599538],[0.0052839843],[0.005618996],[0.0059671184],[0.0063307707],[0.0067125813],[0.0071153039],[0.0075417396],[0.0079946728],[0.008476827],[0.0089908459],[0.0095393003],[0.010124722],[0.010749661],[0.011416751],[0.012128796],[0.012888836],[0.013700205],[0.014566568],[0.015491908],[0.016480483],[0.017536721],[0.018665073],[0.019869817],[0.021154811],[0.022523229],[0.023977258],[0.025517798],[0.027144171],[0.028853849],[0.030642224],[0.032502427],[0.03442522],[0.036398951],[0.038409595],[0.040440877],[0.042474469],[0.044490282],[0.04646681],[0.04838155],[0.05021147],[0.051933516],[0.053525136],[0.054964825],[0.056232647],[0.057310737],[0.058183766],[0.058839333],[0.059268295],[0.059465009],[0.059427468],[0.059157336],[0.058659879],[0.057943779],[0.057020846],[0.055905637],[0.054614996],[0.053167531],[0.051583051],[0.049881991],[0.048084848],[0.046211647],[0.044281479],[0.042312103],[0.040319656],[0.038318456],[0.036320915],[0.034337556],[0.032377116],[0.030446732],[0.028552174],[0.026698122],[0.024888445],[0.023126472],[0.021415233],[0.01975765],[0.018156673],[0.016615351],[0.015136845],[0.013724375],[0.012381135],[0.011110161],[0.009914181],[0.0087954717],[0.007755711],[0.0067958618],[0.005916084],[0.0051156848],[0.0043931094],[0.0037459713],[0.0031711187],[0.002664731],[0.0022224386],[0.0018394563],[0.0015107235],[0.0012310432],[0.00099521145],[0.0007981341],[0.00063492563],[0.00050098817],[0.00039206998],[0.00030430399],[0.00023422775],[0.0001787872],[0.000135327],[0.0001015703],[7.5590809e-05],[5.5779979e-05],[4.0811552e-05],[2.960552e-05],[2.129303e-05],[1.5183389e-05],[1.0733924e-05],[7.5231477e-06],[5.227396e-06],[3.6008906e-06],[2.459052e-06],[1.664768e-06],[1.1172835e-06],[7.4334855e-07],[4.9027216e-07],[3.2054871e-07],[2.0775892e-07],[1.3348459e-07],[8.5016986e-08],[5.3676083e-08],[3.3593413e-08],[2.0841236e-08],[1.2817014e-08],[7.8134422e-09],[4.7215914e-09],[2.8282856e-09],[1.6793664e-09],[9.8844763e-10],[5.7669548e-10],[3.335208e-10],[1.9119726e-10],[1.08648e-10],[6.1198691e-11],[3.4169763e-11],[1.8911256e-11],[1.0374724e-11],[5.6416965e-12],[3.0410195e-12],[1.6248165e-12],[8.6052695e-13],[4.5175092e-13],[2.3507556e-13],[1.212521e-13],[6.1993183e-14],[3.1417454e-14],[1.5782289e-14],[7.8585162e-15],[3.878665e-15],[1.8975567e-15],[9.2019042e-16],[4.4231407e-16],[2.1074322e-16],[9.9528154e-17],[4.6591588e-17],[2.1619121e-17],[9.943454e-18],[4.5332009e-18],[2.0485232e-18],[9.1758194e-19],[4.0739589e-19],[1.7928999e-19],[7.8210111e-20],[3.3817152e-20],[1.4493666e-20],[6.1572449e-21],[2.5927545e-21],[1.0821888e-21],[4.4772483e-22],[1.8360551e-22],[7.4632249e-23],[3.0070004e-23],[1.200899e-23],[4.7538496e-24],[1.8653065e-24]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"August","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715307,-0.12715307,-0.12715307,-0.12715306,-0.12715304,-0.12715302,-0.12715299,-0.12715295,-0.12715288,-0.12715277,-0.12715262,-0.1271524,-0.12715209,-0.12715164,-0.127151,-0.12715011,-0.12714888,-0.12714718,-0.12714488,-0.12714178,-0.12713764,-0.12713217,-0.12712501,-0.12711572,-0.1271038,-0.12708863,-0.12706951,-0.12704567,-0.12701622,-0.12698018,-0.12693651,-0.12688412,-0.12682189,-0.12674868,-0.1266634,-0.12656503,-0.12645269,-0.12632561,-0.12618327,-0.12602536,-0.12585183,-0.12566289,-0.12545904,-0.125241,-0.12500974,-0.12476637,-0.12451208,-0.12424809,-0.12397554,-0.12369541,-0.1234084,-0.1231149,-0.1228149,-0.12250794,-0.12219313,-0.1218691,-0.12153408,-0.12118596,-0.12082231,-0.1204405,-0.12003778,-0.11961134,-0.11915841,-0.11867625,-0.11816223,-0.11761378,-0.11702836,-0.11640342,-0.11573633,-0.11502428,-0.11426424,-0.11345288,-0.11258651,-0.11166117,-0.1106726,-0.10961636,-0.10848801,-0.10728326,-0.10599827,-0.10462985,-0.10317582,-0.10163528,-0.10000891,-0.098299231,-0.096510857,-0.094650654,-0.092727861,-0.090754129,-0.088743485,-0.086712204,-0.084678611,-0.082662798,-0.08068627,-0.07877153,-0.07694161,-0.075219565,-0.073627944,-0.072188255,-0.070920434,-0.069842343,-0.068969314,-0.068313748,-0.067884785,-0.067688071,-0.067725613,-0.067995745,-0.068493201,-0.069209301,-0.070132234,-0.071247444,-0.072538084,-0.07398555,-0.07557003,-0.077271089,-0.079068233,-0.080941433,-0.082871602,-0.084840977,-0.086833424,-0.088834624,-0.090832165,-0.092815525,-0.094775964,-0.096706349,-0.098600906,-0.10045496,-0.10226464,-0.10402661,-0.10573785,-0.10739543,-0.10899641,-0.11053773,-0.11201624,-0.11342871,-0.11477195,-0.11604292,-0.1172389,-0.11835761,-0.11939737,-0.12035722,-0.121237,-0.1220374,-0.12275997,-0.12340711,-0.12398196,-0.12448835,-0.12493064,-0.12531362,-0.12564236,-0.12592204,-0.12615787,-0.12635495,-0.12651815,-0.12665209,-0.12676101,-0.12684878,-0.12691885,-0.12697429,-0.12701775,-0.12705151,-0.12707749,-0.1270973,-0.12711227,-0.12712347,-0.12713179,-0.1271379,-0.12714235,-0.12714556,-0.12714785,-0.12714948,-0.12715062,-0.12715142,-0.12715196,-0.12715234,-0.12715259,-0.12715276,-0.12715287,-0.12715295,-0.127153,-0.12715303,-0.12715305,-0.12715306,-0.12715307,-0.12715307,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308],"zorder":14,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308],"zorder":15,"type":"scatter"},{"customdata":[[2.6988568e-179],[3.9134754e-178],[5.6248308e-177],[8.0134662e-176],[1.1316066e-174],[1.583925e-173],[2.1975456e-172],[3.0220754e-171],[4.1194271e-170],[5.5658628e-169],[7.4540502e-168],[9.8950111e-167],[1.3019803e-165],[1.6980745e-164],[2.1951956e-163],[2.8128975e-162],[3.5727185e-161],[4.4978803e-160],[5.6128211e-159],[6.9425456e-158],[8.5117826e-157],[1.0343953e-155],[1.2459966e-154],[1.4876864e-153],[1.7606387e-152],[2.0653487e-151],[2.4014902e-150],[2.7677865e-149],[3.1619039e-148],[3.5803798e-147],[4.0185917e-146],[4.4707773e-145],[4.9301095e-144],[5.3888302e-143],[5.8384402e-142],[6.269943e-141],[6.674132e-140],[7.0419096e-139],[7.3646238e-138],[7.6344046e-137],[7.8444821e-136],[7.9894687e-135],[8.0655884e-134],[8.0708405e-133],[8.0050867e-132],[7.8700575e-131],[7.6692762e-130],[7.4079062e-129],[7.0925305e-128],[6.7308764e-127],[6.3315014e-126],[5.9034583e-125],[5.4559581e-124],[4.9980466e-123],[4.5383119e-122],[4.0846343e-121],[3.6439872e-120],[3.2222953e-119],[2.8243512e-118],[2.4537875e-117],[2.1131004e-116],[1.8037164e-115],[1.5260942e-114],[1.2798511e-113],[1.0639043e-112],[8.7661867e-112],[7.1595211e-111],[5.7959195e-110],[4.6507807e-109],[3.6990871e-108],[2.916275e-107],[2.2789124e-106],[1.7651924e-105],[1.3552575e-104],[1.0313757e-103],[7.7799603e-103],[5.8170565e-102],[4.311165e-101],[3.1670251e-100],[2.3060776e-99],[1.6644161e-98],[1.1907361e-97],[8.4437387e-97],[5.934987e-96],[4.1349524e-95],[2.8555322e-94],[1.954652e-93],[1.3262266e-92],[8.9193244e-92],[5.9458259e-91],[3.9287868e-90],[2.573184e-89],[1.6705111e-88],[1.0749645e-87],[6.8565415e-87],[4.3349335e-86],[2.7166029e-85],[1.687471e-84],[1.0389938e-83],[6.3409773e-83],[3.8358893e-82],[2.3000784e-81],[1.3670549e-80],[8.0537128e-80],[4.7029809e-79],[2.7221828e-78],[1.5618107e-77],[8.8819158e-77],[5.0067063e-76],[2.7974663e-75],[1.5493338e-74],[8.5053573e-74],[4.6281527e-73],[2.4962635e-72],[1.3345685e-71],[7.0722752e-71],[3.7148845e-70],[1.9341916e-69],[9.982096e-69],[5.106369e-68],[2.5892319e-67],[1.3013619e-66],[6.4832646e-66],[3.2015333e-65],[1.5670795e-64],[7.6031378e-64],[3.6564839e-63],[1.7430247e-62],[8.2359296e-62],[3.8573677e-61],[1.7907662e-60],[8.2405527e-60],[3.7587505e-59],[1.6994192e-58],[7.6160104e-58],[3.3831767e-57],[1.489677e-56],[6.5017454e-56],[2.8127971e-55],[1.2061952e-54],[5.1270513e-54],[2.1601744e-53],[9.0215503e-53],[3.7346073e-52],[1.5324287e-51],[6.2328599e-51],[2.5128489e-50],[1.0041937e-49],[3.9777817e-49],[1.5618412e-48],[6.0786272e-48],[2.3450226e-47],[8.9672995e-47],[3.3989879e-46],[1.2770594e-45],[4.7560492e-45],[1.7557212e-44],[6.4244944e-44],[2.3302194e-43],[8.3777875e-43],[2.9856356e-42],[1.0546769e-41],[3.6929845e-41],[1.2817733e-40],[4.4098207e-40],[1.5038581e-39],[5.0835757e-39],[1.7033681e-38],[5.6575032e-38],[1.8625952e-37],[6.0784073e-37],[1.9662517e-36],[6.3047332e-36],[2.0038856e-35],[6.3133239e-35],[1.9716167e-34],[6.1033253e-34],[1.8727961e-33],[5.6963254e-33],[1.7174328e-32],[5.1326984e-32],[1.5205236e-31],[4.4650092e-31],[1.2996719e-30],[3.7499693e-30],[1.0725182e-29],[3.0406401e-29],[8.5449433e-29],[2.3803324e-28],[6.5728046e-28],[1.7990738e-27],[4.8812697e-27],[1.3128125e-26],[3.499928e-26],[9.249165e-26],[2.4228886e-25],[6.2914732e-25],[1.619421e-24],[4.1319609e-24],[1.0450623e-23],[2.6201024e-23],[6.5115588e-23],[1.6041422e-22],[3.9173513e-22],[9.4827549e-22],[2.2754613e-21],[5.4125e-21],[1.2762052e-20],[2.9828942e-20],[6.9111545e-20],[1.5873013e-19],[3.6138063e-19],[8.1558214e-19],[1.8246039e-18],[4.0463944e-18],[8.8954368e-18],[1.9385031e-17],[4.1876138e-17],[8.967438e-17],[1.9035862e-16],[4.0057133e-16],[8.35586e-16],[1.7278547e-15],[3.5418392e-15],[7.1970894e-15],[1.449747e-14],[2.8949141e-14],[5.7304425e-14],[1.124477e-13],[2.1873779e-13],[4.2180224e-13],[8.0631862e-13],[1.527982e-12],[2.8704139e-12],[5.3454786e-12],[9.8683715e-12],[1.8060189e-11],[3.2765599e-11],[5.8929681e-11],[1.0506822e-10],[1.8570824e-10],[3.2539787e-10],[5.6522745e-10],[9.7332549e-10],[1.6615775e-09],[2.8119794e-09],[4.7177416e-09],[7.8467191e-09],[1.293825e-08],[2.1149401e-08],[3.4273409e-08],[5.506238e-08],[8.7698645e-08],[1.3847548e-07],[2.1676885e-07],[3.3640849e-07],[5.175892e-07],[7.8950316e-07],[1.1939202e-06],[1.7899956e-06],[2.6606421e-06],[3.9208618e-06],[5.728489e-06],[8.297843e-06],[1.1916815e-05],[1.6967915e-05],[2.3953768e-05],[3.3527426e-05],[4.6527728e-05],[6.4019654e-05],[8.7339266e-05],[0.0001181424],[0.00015845566],[0.0002107277],[0.00027787797],[0.0003633394],[0.00047109089],[0.00060567464],[0.00077219331],[0.00097628147],[0.0012240463],[0.0015219733],[0.0018767936],[0.0022953117],[0.0027841946],[0.0033497256],[0.0039975298],[0.0047322821],[0.0055574081],[0.0064747976],[0.0074845451],[0.0085847374],[0.0097713076],[0.011037972],[0.012376261],[0.013775662],[0.015223865],[0.016707117],[0.018210678],[0.019719343],[0.021218032],[0.022692394],[0.024129407],[0.025517935],[0.026849206],[0.02811718],[0.029318793],[0.030454043],[0.031525921],[0.032540191],[0.03350502],[0.034430487],[0.035328001],[0.036209649],[0.037087525],[0.037973069],[0.038876446],[0.039806009],[0.040767849],[0.041765466],[0.042799557],[0.043867919],[0.044965472],[0.046084376],[0.047214228],[0.048342329],[0.049453997],[0.050532911],[0.051561479],[0.052521214],[0.053393125],[0.05415811],[0.05479736],[0.055292774],[0.055627376],[0.055785754],[0.055754481],[0.055522541],[0.055081726],[0.054426988],[0.053556734],[0.052473038],[0.051181745],[0.049692469],[0.048018459],[0.046176337],[0.044185719],[0.042068717],[0.039849363],[0.03755296],[0.035205403],[0.032832501],[0.030459323],[0.028109604],[0.025805229],[0.02356582],[0.021408427],[0.019347333],[0.017393972],[0.015556945],[0.013842127],[0.012252848],[0.010790125],[0.0094529373],[0.0082385183],[0.0071426558],[0.0061599848],[0.0052842647],[0.004508633],[0.0038258318],[0.0032284049],[0.0027088652],[0.0022598331],[0.0018741485],[0.0015449586],[0.0012657839],[0.0010305654],[0.00083369578],[0.0006700366],[0.00053492342],[0.0004241614],[0.00033401255],[0.00026117639],[0.00020276541],[0.0001562767],[0.0001195608],[9.0789142e-05],[6.8420815e-05],[5.1169715e-05],[3.7972727e-05],[2.7959578e-05],[2.0424798e-05],[1.4802115e-05],[1.064146e-05],[7.5886547e-06],[5.3677337e-06],[3.7658067e-06],[2.6202692e-06],[1.808157e-06],[1.2374043e-06]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"August","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715307,-0.12715307,-0.12715306,-0.12715305,-0.12715303,-0.12715299,-0.12715294,-0.12715286,-0.12715274,-0.12715256,-0.12715229,-0.12715189,-0.12715129,-0.12715042,-0.12714916,-0.12714735,-0.12714478,-0.12714116,-0.12713611,-0.12712913,-0.12711955,-0.12710655,-0.12708906,-0.12706574,-0.12703494,-0.12699462,-0.12694235,-0.1268752,-0.12678974,-0.12668199,-0.12654741,-0.12638089,-0.1261768,-0.12592903,-0.12563111,-0.12527629,-0.12485777,-0.12436889,-0.12380335,-0.12315555,-0.1224208,-0.12159567,-0.12067828,-0.11966854,-0.11856834,-0.11738177,-0.11611511,-0.11477682,-0.11337742,-0.11192922,-0.11044596,-0.1089424,-0.10743374,-0.10593505,-0.10446069,-0.10302367,-0.10163515,-0.10030387,-0.0990359,-0.097834287,-0.096699037,-0.095627159,-0.094612889,-0.093648061,-0.092722593,-0.09182508,-0.090943432,-0.090065555,-0.089180012,-0.088276634,-0.087347072,-0.086385232,-0.085387614,-0.084353524,-0.083285162,-0.082187608,-0.081068704,-0.079938852,-0.078810751,-0.077699083,-0.076620169,-0.075591601,-0.074631866,-0.073759955,-0.07299497,-0.07235572,-0.071860307,-0.071525704,-0.071367326,-0.071398599,-0.071630539,-0.072071355,-0.072726093,-0.073596346,-0.074680043,-0.075971336,-0.077460612,-0.079134622,-0.080976743,-0.082967362,-0.085084363,-0.087303717,-0.089600121,-0.091947678,-0.094320579,-0.096693757,-0.099043477,-0.10134785,-0.10358726,-0.10574465,-0.10780575,-0.10975911,-0.11159614,-0.11331095,-0.11490023,-0.11636296,-0.11770014,-0.11891456,-0.12001042,-0.1209931,-0.12186882,-0.12264445,-0.12332725,-0.12392468,-0.12444422,-0.12489325,-0.12527893,-0.12560812,-0.1258873,-0.12612252,-0.12631938,-0.12648304,-0.12661816,-0.12672892,-0.12681907,-0.1268919,-0.12695032,-0.1269968,-0.12703352,-0.12706229,-0.12708466,-0.12710191,-0.12711511,-0.12712512,-0.12713266,-0.12713828,-0.12714244,-0.12714549,-0.12714771,-0.12714931,-0.12715046,-0.12715127,-0.12715184],"zorder":15,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781],"zorder":16,"type":"scatter"},{"customdata":[[1.6265279e-77],[9.2183506e-77],[5.1786101e-76],[2.8836437e-75],[1.5916167e-74],[8.7077104e-74],[4.7221326e-73],[2.5382898e-72],[1.352425e-71],[7.142565e-71],[3.7390769e-70],[1.9401884e-69],[9.9791333e-69],[5.0875805e-68],[2.5709844e-67],[1.2878266e-66],[6.3941867e-66],[3.1469027e-65],[1.5351525e-64],[7.4231822e-64],[3.557945e-63],[1.6903592e-62],[7.9603031e-62],[3.7157901e-61],[1.7192692e-60],[7.8851127e-60],[3.5846222e-59],[1.61529e-58],[7.2148854e-58],[3.1943342e-57],[1.4018561e-56],[6.0981609e-56],[2.6294618e-55],[1.123848e-54],[4.7612524e-54],[1.9994381e-53],[8.3227734e-53],[3.4340112e-52],[1.4044591e-51],[5.6936457e-51],[2.2879471e-50],[9.1133052e-50],[3.5981602e-49],[1.4081857e-48],[5.4627899e-48],[2.100605e-47],[8.0066325e-47],[3.0250408e-46],[1.1328925e-45],[4.205547e-45],[1.5475081e-44],[5.644432e-44],[2.0407262e-43],[7.313524e-43],[2.5980432e-42],[9.1483774e-42],[3.1931557e-41],[1.1047773e-40],[3.7888577e-40],[1.2880155e-39],[4.3402369e-39],[1.4497251e-38],[4.7999649e-38],[1.575328e-37],[5.1248929e-37],[1.6526458e-36],[5.2827049e-36],[1.6738434e-35],[5.2572127e-35],[1.636737e-34],[5.0510919e-34],[1.5451655e-33],[4.6854198e-33],[1.4083356e-32],[4.1961241e-32],[1.2392971e-31],[3.6281721e-31],[1.0528975e-30],[3.0287989e-30],[8.6365718e-30],[2.4411774e-29],[6.8398212e-29],[1.8996694e-28],[5.2299752e-28],[1.4272827e-27],[3.8610872e-27],[1.0353779e-26],[2.7521896e-26],[7.2518433e-26],[1.8941291e-25],[4.9041339e-25],[1.2586562e-24],[3.2021709e-24],[8.0756025e-24],[2.0188261e-23],[5.0028442e-23],[1.228937e-22],[2.9925219e-22],[7.2233837e-22],[1.7283838e-21],[4.0995515e-21],[9.6389501e-21],[2.2465748e-20],[5.1905134e-20],[1.1887721e-19],[2.6988971e-19],[6.073989e-19],[1.3550715e-18],[2.9967569e-18],[6.569654e-18],[1.427696e-17],[3.0756139e-17],[6.5679723e-17],[1.3903842e-16],[2.9177155e-16],[6.0695471e-16],[1.2516285e-15],[2.558592e-15],[5.18482e-15],[1.0415353e-14],[2.0740663e-14],[4.0943051e-14],[8.0121182e-14],[1.5542638e-13],[2.9889113e-13],[5.6978743e-13],[1.076775e-12],[2.0172047e-12],[3.7461799e-12],[6.8967046e-12],[1.2586636e-11],[2.2771601e-11],[4.0840779e-11],[7.2612573e-11],[1.2798167e-10],[2.2361592e-10],[3.8732673e-10],[6.6507853e-10],[1.1321136e-09],[1.9104234e-09],[3.1958972e-09],[5.3000571e-09],[8.7135262e-09],[1.4201497e-08],[2.2945751e-08],[3.675358e-08],[5.8361655e-08],[9.1872922e-08],[1.4337748e-07],[2.2182448e-07],[3.4023172e-07],[5.1734328e-07],[7.7987227e-07],[1.1654964e-06],[1.7268058e-06],[2.5364348e-06],[3.693637e-06],[5.3325876e-06],[7.6327014e-06],[1.0831248e-05],[1.5238512e-05],[2.1255658e-05],[2.9395379e-05],[4.0305199e-05],[5.4793123e-05],[7.3855018e-05],[9.8702812e-05],[0.0001307922],[0.00017184817],[0.00022388627],[0.00028922721],[0.00037050198],[0.00047064481],[0.000592871],[0.00074063706],[0.00091758117],[0.0011274426],[0.0013739601],[0.0016607494],[0.0019911645],[0.0023681438],[0.0027940502],[0.0032705096],[0.0037982579],[0.0043770045],[0.0050053221],[0.0056805712],[0.0063988661],[0.0071550901],[0.0079429599],[0.008755143],[0.0095834227],[0.010418906],[0.011252268],[0.012074017],[0.012874776],[0.013645558],[0.014378037],[0.01506479],[0.015699506],[0.016277163],[0.016794159],[0.017248405],[0.017639376],[0.017968131],[0.018237297],[0.018451038],[0.018614996],[0.018736223],[0.018823094],[0.018885205],[0.018933258],[0.01897892],[0.019034645],[0.019113474],[0.019228782],[0.019393982],[0.019622185],[0.01992581],[0.020316158],[0.020802958],[0.021393906],[0.022094201],[0.02290613],[0.023828689],[0.024857305],[0.025983649],[0.027195586],[0.028477261],[0.029809348],[0.031169453],[0.032532666],[0.03387226],[0.035160504],[0.036369563],[0.037472458],[0.038444028],[0.039261871],[0.039907209],[0.040365635],[0.040627717],[0.040689419],[0.040552321],[0.040223633],[0.039715984],[0.039047018],[0.038238801],[0.037317057],[0.03631029],[0.035248802],[0.034163666],[0.033085683],[0.032044365],[0.03106698],[0.030177688],[0.029396798],[0.028740158],[0.028218703],[0.027838169],[0.027598971],[0.02749625],[0.02752009],[0.027655885],[0.027884866],[0.02818474],[0.028530463],[0.028895086],[0.029250679],[0.029569284],[0.029823872],[0.029989267],[0.030043013],[0.029966129],[0.02974374],[0.029365553],[0.028826145],[0.028125072],[0.027266775],[0.026260303],[0.025118862],[0.023859217],[0.022500978],[0.021065804],[0.019576567],[0.01805652],[0.016528502],[0.01501421],[0.013533584],[0.012104301],[0.010741411],[0.0094571065],[0.0082606345],[0.0071583234],[0.0061537268],[0.0052478524],[0.0044394607],[0.0037254066],[0.0031010055],[0.0025604013],[0.002096921],[0.0017034016],[0.0013724794],[0.0010968361],[0.00086939752],[0.00068348614],[0.00053292963],[0.00041212909],[0.00031609272],[0.00024044088],[0.00018138844],[0.00013571048],[0.00010069661],[7.4098455e-05],[5.4074393e-05],[3.9134317e-05],[2.8086843e-05],[1.9990456e-05],[1.4109535e-05],[9.8757162e-06],[6.854663e-06],[4.7180335e-06],[3.2202469e-06],[2.1795482e-06],[1.4628132e-06],[9.7353679e-07],[6.424703e-07],[4.2042356e-07],[2.7280387e-07],[1.7552531e-07],[1.1198272e-07],[7.0840341e-08],[4.4434993e-08],[2.7636364e-08],[1.7042942e-08],[1.0421079e-08],[6.3180339e-09],[3.7979489e-09],[2.2636588e-09],[1.3377174e-09],[7.8380181e-10],[4.5533773e-10],[2.6226694e-10],[1.4977286e-10],[8.4800719e-11],[4.7603627e-11],[2.6494269e-11],[1.4619503e-11],[7.9979647e-12],[4.3380049e-12],[2.3327158e-12],[1.2436336e-12],[6.5732416e-13],[3.4444586e-13],[1.7894284e-13],[9.2163197e-14],[4.7059623e-14],[2.3822373e-14],[1.1955431e-14],[5.9482212e-15],[2.9339233e-15],[1.4346577e-15],[6.9547883e-16],[3.3423648e-16],[1.5924153e-16],[7.5212452e-17],[3.5217003e-17],[1.6347175e-17],[7.5224463e-18],[3.4316269e-18],[1.5519014e-18],[6.9574461e-19],[3.0921163e-19],[1.3623248e-19],[5.9500831e-20],[2.5762123e-20],[1.1057456e-20],[4.7048149e-21],[1.9844601e-21],[8.2976207e-22],[3.439339e-22],[1.413206e-22],[5.7563073e-23],[2.3242852e-23],[9.3033801e-24],[3.6914502e-24],[1.4519685e-24],[5.6613541e-25],[2.1881923e-25],[8.3840094e-26],[3.1843314e-26],[1.1989032e-26],[4.474541e-27],[1.655429e-27],[6.0711297e-28],[2.207113e-28],[7.9538055e-29],[2.8413188e-29],[1.0061409e-29],[3.5317571e-30],[1.2288965e-30]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"September","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.1453178,-0.1453178,-0.1453178,-0.1453178,-0.14531779,-0.14531778,-0.14531777,-0.14531775,-0.14531771,-0.14531766,-0.14531758,-0.14531747,-0.14531729,-0.14531703,-0.14531664,-0.14531608,-0.14531527,-0.14531411,-0.14531247,-0.14531017,-0.14530697,-0.14530257,-0.14529655,-0.14528841,-0.1452775,-0.14526301,-0.14524395,-0.1452191,-0.14518701,-0.14514596,-0.14509392,-0.14502858,-0.1449473,-0.14484716,-0.14472494,-0.14457717,-0.14440023,-0.14419036,-0.14394385,-0.14365706,-0.14332664,-0.14294966,-0.14252376,-0.1420473,-0.14151955,-0.1409408,-0.14031248,-0.13963724,-0.13891894,-0.13816272,-0.13737485,-0.13656266,-0.13573438,-0.1348989,-0.13406554,-0.13324379,-0.13244303,-0.13167225,-0.13093977,-0.13025302,-0.1296183,-0.12904064,-0.12852365,-0.1280694,-0.12767843,-0.12734968,-0.12708051,-0.12686677,-0.12670281,-0.12658158,-0.12649471,-0.1264326,-0.12638455,-0.12633889,-0.12628316,-0.12620433,-0.12608902,-0.12592382,-0.12569562,-0.125392,-0.12500165,-0.12451485,-0.1239239,-0.1232236,-0.12241168,-0.12148912,-0.1204605,-0.11933416,-0.11812222,-0.11684055,-0.11550846,-0.11414835,-0.11278514,-0.11144555,-0.1101573,-0.10894824,-0.10784535,-0.10687378,-0.10605593,-0.1054106,-0.10495217,-0.10469009,-0.10462839,-0.10476548,-0.10509417,-0.10560182,-0.10627079,-0.10707901,-0.10800075,-0.10900752,-0.110069,-0.11115414,-0.11223212,-0.11327344,-0.11425083,-0.11514012,-0.11592101,-0.11657765,-0.1170991,-0.11747964,-0.11771883,-0.11782156,-0.11779772,-0.11766192,-0.11743294,-0.11713307,-0.11678734,-0.11642272,-0.11606713,-0.11574852,-0.11549393,-0.11532854,-0.11527479,-0.11535168,-0.11557407,-0.11595225,-0.11649166,-0.11719273,-0.11805103,-0.1190575,-0.12019894,-0.12145859,-0.12281683,-0.124252,-0.12574124,-0.12726129,-0.1287893,-0.1303036,-0.13178422,-0.1332135,-0.1345764,-0.1358607,-0.13705717,-0.13815948,-0.13916408,-0.14006995,-0.14087835,-0.1415924,-0.1422168,-0.1427574,-0.14322089,-0.1436144,-0.14394533,-0.14422097,-0.14444841,-0.14463432,-0.14478488,-0.14490568,-0.14500171,-0.14507737,-0.14513642,-0.1451821,-0.14521711,-0.14524371,-0.14526373,-0.14527867,-0.14528972,-0.14529782,-0.1453037,-0.14530793,-0.14531095,-0.14531309,-0.14531459,-0.14531563,-0.14531634,-0.14531683,-0.14531716,-0.14531739,-0.14531753,-0.14531763,-0.14531769,-0.14531774,-0.14531776,-0.14531778,-0.14531779,-0.1453178,-0.1453178,-0.1453178,-0.1453178,-0.1453178,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781],"zorder":16,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781],"zorder":17,"type":"scatter"},{"customdata":[[6.3782958e-139],[6.6560318e-138],[6.8847777e-137],[7.0587576e-136],[7.1734887e-135],[7.2259736e-134],[7.2148305e-133],[7.1403532e-132],[7.0044989e-131],[6.8108019e-130],[6.5642216e-129],[6.270931e-128],[5.9380605e-127],[5.5734104e-126],[5.185149e-125],[4.7815121e-124],[4.3705197e-123],[3.9597222e-122],[3.555987e-121],[3.1653331e-120],[2.792817e-119],[2.4424707e-118],[2.1172885e-117],[1.819259e-116],[1.5494331e-115],[1.3080217e-114],[1.0945129e-113],[9.0780094e-113],[7.4631845e-112],[6.0816517e-111],[4.9122756e-110],[3.9328531e-109],[3.1210199e-108],[2.4549868e-107],[1.9141043e-106],[1.4792646e-105],[1.1331566e-104],[8.6039492e-104],[6.475444e-103],[4.8306446e-102],[3.5719424e-101],[2.6179879e-100],[1.9019305e-99],[1.3695739e-98],[9.7755255e-98],[6.9160575e-97],[4.8499907e-96],[3.3712196e-95],[2.3227208e-94],[1.586247e-93],[1.073763e-92],[7.2046005e-92],[4.791541e-91],[3.1586707e-90],[2.0639412e-89],[1.3367622e-88],[8.5817295e-88],[5.4608385e-87],[3.4443533e-86],[2.1533761e-85],[1.3344305e-84],[8.1966403e-84],[4.9904493e-83],[3.0116693e-82],[1.8015187e-81],[1.0681546e-80],[6.277596e-80],[3.6569285e-79],[2.1115601e-78],[1.2085213e-77],[6.8559719e-77],[3.8552066e-76],[2.1487712e-75],[1.1871253e-74],[6.5008011e-74],[3.5285891e-73],[1.8984502e-72],[1.0124212e-71],[5.3516438e-71],[2.803994e-70],[1.456233e-69],[7.4963288e-69],[3.8249901e-68],[1.9345322e-67],[9.6980753e-67],[4.8190243e-66],[2.3735405e-65],[1.1587725e-64],[5.6074275e-64],[2.6896339e-63],[1.2787531e-62],[6.0262093e-62],[2.8149182e-61],[1.3033209e-60],[5.9813749e-60],[2.7209135e-59],[1.226853e-58],[5.4832039e-58],[2.4290719e-57],[1.0666218e-56],[4.6424229e-56],[2.0028253e-55],[8.564571e-55],[3.6302149e-54],[1.5251876e-53],[6.3515307e-53],[2.6217893e-52],[1.0727078e-51],[4.3504016e-51],[1.7488058e-50],[6.9681605e-50],[2.7520674e-49],[1.0773687e-48],[4.1805563e-48],[1.607934e-47],[6.1300898e-47],[2.3164875e-46],[8.6767606e-46],[3.2214385e-45],[1.185514e-44],[4.3244229e-44],[1.5635592e-43],[5.6035754e-43],[1.9905858e-42],[7.009086e-42],[2.4462833e-41],[8.4628576e-41],[2.9019658e-40],[9.8635348e-40],[3.3230583e-39],[1.1097074e-38],[3.6731972e-38],[1.2051616e-37],[3.9193285e-37],[1.2634076e-36],[4.0368333e-36],[1.2785088e-35],[4.0135837e-35],[1.2488972e-34],[3.8520055e-34],[1.1776414e-33],[3.5686612e-33],[1.0719233e-32],[3.1914528e-32],[9.4184517e-32],[2.7550985e-31],[7.9884296e-31],[2.2958974e-30],[6.540493e-30],[1.8468668e-29],[5.1692545e-29],[1.4341272e-28],[3.9438009e-28],[1.075004e-27],[2.9045115e-27],[7.7786507e-27],[2.0649227e-26],[5.4334028e-26],[1.4171271e-25],[3.6636563e-25],[9.3883646e-25],[2.3847052e-24],[6.0041189e-24],[1.4984214e-23],[3.7067138e-23],[9.0889738e-23],[2.2090813e-22],[5.322062e-22],[1.2709249e-21],[3.0083752e-21],[7.0585681e-21],[1.6416257e-20],[3.7844698e-20],[8.6478818e-20],[1.9587938e-19],[4.3978709e-19],[9.787494e-19],[2.159118e-18],[4.7212569e-18],[1.0233304e-17],[2.1986277e-17],[4.6823704e-17],[9.8845923e-17],[2.068385e-16],[4.2902672e-16],[8.8210124e-16],[1.7977714e-15],[3.6318947e-15],[7.2730354e-15],[1.4437191e-14],[2.8407646e-14],[5.5408234e-14],[1.0712749e-13],[2.0531289e-13],[3.9005092e-13],[7.3454325e-13],[1.3712154e-12],[2.5373915e-12],[4.6544048e-12],[8.4632487e-12],[1.5254845e-11],[2.7256982e-11],[4.8277925e-11],[8.4766055e-11],[1.4753655e-10],[2.54556e-10],[4.3538657e-10],[7.3820445e-10],[1.2407671e-09],[2.0673689e-09],[3.4147747e-09],[5.5914544e-09],[9.076295e-09],[1.4605486e-08],[2.3299665e-08],[3.6847863e-08],[5.7770588e-08],[8.9791677e-08],[1.383577e-07],[2.1135464e-07],[3.2008465e-07],[4.8058043e-07],[7.1535106e-07],[1.05567e-06],[1.5445326e-06],[2.240424e-06],[3.222049e-06],[4.5941761e-06],[6.49474e-06],[9.1033217e-06],[1.2651082e-05],[1.743216e-05],[2.3816442e-05],[3.2263512e-05],[4.3337403e-05],[5.772163e-05],[7.6233767e-05],[9.9838633e-05],[0.00012965896],[0.00016698223],[0.00021326227],[0.00027011418],[0.00033930109],[0.00042271171],[0.00052232762],[0.00064018006],[0.00077829646],[0.00093863772],[0.0011230282],[0.0013330815],[0.0015701251],[0.0018351294],[0.002128646],[0.0024507592],[0.0028010595],[0.0031786395],[0.0035821202],[0.0040097072],[0.0044592787],[0.0049285031],[0.005414983],[0.0059164165],[0.0064307707],[0.0069564532],[0.0074924717],[0.0080385684],[0.0085953164],[0.0091641684],[0.0097474485],[0.010348281],[0.010970455],[0.011618228],[0.012296077],[0.013008403],[0.013759213],[0.014551791],[0.015388384],[0.016269919],[0.017195776],[0.018163636],[0.019169408],[0.020207264],[0.021269763],[0.022348079],[0.023432313],[0.024511884],[0.025575965],[0.026613952],[0.027615933],[0.028573131],[0.029478301],[0.030326041],[0.031113026],[0.03183813],[0.032502437],[0.033109146],[0.033663378],[0.034171881],[0.034642677],[0.035084649],[0.035507094],[0.03591927],[0.036329946],[0.036746989],[0.037176973],[0.037624858],[0.038093717],[0.038584531],[0.039096057],[0.039624763],[0.040164838],[0.040708281],[0.041245055],[0.04176333],[0.042249789],[0.042690007],[0.043068896],[0.043371201],[0.043582035],[0.043687442],[0.043674949],[0.043534102],[0.043256945],[0.042838423],[0.042276682],[0.041573244],[0.040733047],[0.039764333],[0.038678403],[0.037489221],[0.036212912],[0.034867168],[0.033470579],[0.032041958],[0.030599655],[0.029160932],[0.027741401],[0.026354573],[0.025011523],[0.023720693],[0.022487821],[0.02131601],[0.020205915],[0.019156017],[0.018162995],[0.017222134],[0.016327763],[0.015473699],[0.014653663],[0.013861657],[0.013092276],[0.012340966],[0.011604189],[0.010879525],[0.010165695],[0.0094625187],[0.0087708142],[0.0080922533],[0.0074291828],[0.0067844263],[0.0061610798],[0.0055623111],[0.0049911753],[0.0044504529],[0.0039425171],[0.003469234],[0.0030318974],[0.0026311968],[0.0022672173],[0.0019394667],[0.0016469257],[0.0013881149],[0.0011611748],[0.00096395065],[0.00079407993],[0.00064907614],[0.00052640646],[0.00042356019],[0.0003381065],[0.00026774056],[0.00021031799],[0.00016387814],[0.00012665724],[9.7092708e-05],[7.3820175e-05],[5.5664801e-05],[4.1628387e-05],[3.0873712e-05],[2.2707341e-05],[1.6561911e-05],[1.1978723e-05],[8.5912507e-06],[6.1099616e-06],[4.3087151e-06],[3.0128381e-06],[2.0888848e-06],[1.4360062e-06],[9.7880033e-07],[6.6148671e-07],[4.4323188e-07]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"September","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.1453178,-0.1453178,-0.1453178,-0.1453178,-0.14531779,-0.14531778,-0.14531777,-0.14531775,-0.14531772,-0.14531767,-0.14531759,-0.14531749,-0.14531733,-0.14531709,-0.14531675,-0.14531626,-0.14531557,-0.14531458,-0.14531321,-0.14531131,-0.1453087,-0.14530516,-0.14530037,-0.14529399,-0.14528554,-0.14527447,-0.14526008,-0.14524157,-0.14521797,-0.14518815,-0.14515082,-0.14510454,-0.14504769,-0.14497851,-0.14489509,-0.14479548,-0.14467763,-0.14453951,-0.14437917,-0.14419478,-0.14398472,-0.14374768,-0.14348268,-0.14318916,-0.14286705,-0.14251675,-0.14213917,-0.14173569,-0.1413081,-0.14085853,-0.1403893,-0.13990282,-0.13940139,-0.13888704,-0.13836135,-0.13782533,-0.13727924,-0.13672249,-0.13615364,-0.13557036,-0.13496953,-0.13434735,-0.13369958,-0.13302173,-0.1323094,-0.13155859,-0.13076602,-0.12992942,-0.12904789,-0.12812203,-0.12715417,-0.1261484,-0.12511054,-0.12404804,-0.12296973,-0.12188549,-0.12080592,-0.11974184,-0.11870385,-0.11770187,-0.11674467,-0.11583951,-0.11499177,-0.11420478,-0.11347968,-0.11281537,-0.11220866,-0.11165443,-0.11114593,-0.11067513,-0.11023316,-0.10981071,-0.10939854,-0.10898786,-0.10857082,-0.10814083,-0.10769295,-0.10722409,-0.10673328,-0.10622175,-0.10569304,-0.10515297,-0.10460953,-0.10407275,-0.10355448,-0.10306802,-0.1026278,-0.10224891,-0.10194661,-0.10173577,-0.10163036,-0.10164286,-0.1017837,-0.10206086,-0.10247938,-0.10304112,-0.10374456,-0.10458476,-0.10555347,-0.1066394,-0.10782859,-0.10910489,-0.11045064,-0.11184723,-0.11327585,-0.11471815,-0.11615687,-0.11757641,-0.11896323,-0.12030628,-0.12159711,-0.12282999,-0.1240018,-0.12511189,-0.12616179,-0.12715481,-0.12809567,-0.12899004,-0.12984411,-0.13066414,-0.13145615,-0.13222553,-0.13297684,-0.13371362,-0.13443828,-0.13515211,-0.13585529,-0.13654699,-0.13722555,-0.13788862,-0.13853338,-0.13915673,-0.1397555,-0.14032663,-0.14086735,-0.14137529,-0.14184857,-0.14228591,-0.14268661,-0.14305059,-0.14337834,-0.14367088,-0.14392969,-0.14415663,-0.14435386,-0.14452373,-0.14466873,-0.1447914,-0.14489425,-0.1449797,-0.14505007,-0.14510749,-0.14515393,-0.14519115,-0.14522071,-0.14524399,-0.14526214,-0.14527618,-0.14528693,-0.1452951,-0.14530124,-0.14530583,-0.14530921,-0.1453117,-0.1453135,-0.14531479,-0.14531572,-0.14531637,-0.14531683,-0.14531714,-0.14531736],"zorder":17,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253],"zorder":18,"type":"scatter"},{"customdata":[[2.9630462e-60],[1.3588989e-59],[6.1773445e-59],[2.7834441e-58],[1.2431663e-57],[5.5035393e-57],[2.415022e-56],[1.0504281e-55],[4.5287449e-55],[1.9353332e-54],[8.1978514e-54],[3.4419997e-53],[1.4324786e-52],[5.9092465e-52],[2.4162549e-51],[9.7930991e-51],[3.9342721e-50],[1.5666629e-49],[6.1837754e-49],[2.4193513e-48],[9.3823433e-48],[3.6065417e-47],[1.374162e-46],[5.1898202e-46],[1.9428274e-45],[7.2091445e-45],[2.651557e-44],[9.6668727e-44],[3.4933247e-43],[1.2512956e-42],[4.4427209e-42],[1.5635306e-41],[5.4542129e-41],[1.885933e-40],[6.463817e-40],[2.1959405e-39],[7.3947063e-39],[2.4682565e-38],[8.1663645e-38],[2.6781599e-37],[8.7058998e-37],[2.8051777e-36],[8.9593563e-36],[2.8363715e-35],[8.9006034e-35],[2.7685093e-34],[8.5357739e-34],[2.6086173e-33],[7.90221e-33],[2.3727812e-32],[7.0621662e-32],[2.0834808e-31],[6.0927391e-31],[1.7660679e-30],[5.0742771e-30],[1.4451507e-29],[4.079665e-29],[1.1415857e-28],[3.1663977e-28],[8.7055367e-28],[2.3724609e-27],[6.4087933e-27],[1.7160401e-26],[4.5546277e-26],[1.1982651e-25],[3.1248399e-25],[8.0775165e-25],[2.0696812e-24],[5.2565999e-24],[1.323374e-23],[3.3024548e-23],[8.1689852e-23],[2.0029804e-22],[4.8681397e-22],[1.1728097e-21],[2.8007262e-21],[6.6296839e-21],[1.5555877e-20],[3.6180635e-20],[8.3413887e-20],[1.9062574e-19],[4.318235e-19],[9.6964574e-19],[2.1582542e-18],[4.7618461e-18],[1.0414346e-17],[2.2577362e-17],[4.851763e-17],[1.0335032e-16],[2.1822813e-16],[4.5676936e-16],[9.4770098e-16],[1.9491023e-15],[3.9736328e-15],[8.0302948e-15],[1.6086694e-14],[3.1944394e-14],[6.2880502e-14],[1.2269642e-13],[2.3732494e-13],[4.5504212e-13],[8.6488372e-13],[1.6295322e-12],[3.0434668e-12],[5.6347663e-12],[1.0341567e-11],[1.8814875e-11],[3.393301e-11],[6.0666802e-11],[1.0751997e-10],[1.8890272e-10],[3.2900323e-10],[5.6803734e-10],[9.7223306e-10],[1.6496156e-09],[2.774701e-09],[4.6267177e-09],[7.6481361e-09],[1.2533332e-08],[2.0361441e-08],[3.2793237e-08],[5.2359664e-08],[8.2879917e-08],[1.3006035e-07],[2.0234252e-07],[3.1208986e-07],[4.7722837e-07],[7.2348741e-07],[1.087422e-06],[1.6204371e-06],[2.3940759e-06],[3.5068758e-06],[5.0931319e-06],[7.3339367e-06],[1.0470877e-05],[1.4822758e-05],[2.0805669e-05],[2.8956644e-05],[3.9960987e-05],[5.4683168e-05],[7.4200903e-05],[9.9841677e-05],[0.00013322061],[0.00017627803],[0.00023131469],[0.00030102205],[0.00038850452],[0.00049729036],[0.00063132744],[0.00079496035],[0.0009928854],[0.0012300806],[0.0015117087],[0.0018429923],[0.0022290627],[0.0026747837],[0.0031845562],[0.0037621099],[0.0044102905],[0.0051308531],[0.0059242726],[0.0067895842],[0.0077242648],[0.0087241668],[0.0097835133],[0.01089496],[0.01204973],[0.013237813],[0.014448231],[0.015669365],[0.016889307],[0.018096256],[0.019278908],[0.020426837],[0.021530849],[0.022583282],[0.023578248],[0.024511795],[0.025381997],[0.026188956],[0.02693473],[0.027623182],[0.02825978],[0.028851336],[0.029405724],[0.029931567],[0.030437926],[0.030933992],[0.031428793],[0.031930917],[0.032448271],[0.03298785],[0.033555541],[0.034155952],[0.034792256],[0.035466063],[0.036177309],[0.036924182],[0.037703059],[0.038508496],[0.039333247],[0.040168335],[0.041003177],[0.04182576],[0.042622887],[0.043380466],[0.044083861],[0.044718275],[0.045269173],[0.045722712],[0.046066168],[0.046288347],[0.046379947],[0.046333871],[0.046145459],[0.045812647],[0.045336026],[0.044718802],[0.04396668],[0.04308764],[0.042091653],[0.040990331],[0.039796529],[0.038523935],[0.037186644],[0.035798756],[0.034374012],[0.032925467],[0.03146524],[0.030004315],[0.028552429],[0.027118009],[0.025708188],[0.024328854],[0.022984751],[0.0216796],[0.020416231],[0.019196717],[0.018022505],[0.016894516],[0.015813245],[0.014778821],[0.013791068],[0.012849534],[0.011953518],[0.011102096],[0.010294142],[0.0095283511],[0.0088032782],[0.0081173734],[0.00746903],[0.0068566326],[0.0062786064],[0.0057334612],[0.0052198286],[0.0047364867],[0.0042823734],[0.0038565846],[0.0034583591],[0.0030870525],[0.0027421016],[0.0024229835],[0.0021291738],[0.0018601056],[0.0016151346],[0.0013935119],[0.0011943662],[0.0010166961],[0.00085937274],[0.00072115133],[0.00060069058],[0.00049657752],[0.0004073559],[0.00033155592],[0.00026772331],[0.00021444615],[0.00017037811],[0.00013425731],[0.00010492035],[8.1311442e-05],[6.2486964e-05],[4.7615843e-05],[3.597649e-05],[2.6950979e-05],[2.0017227e-05],[1.4739875e-05],[1.0760506e-05],[7.7877205e-06],[5.5875046e-06],[3.9741786e-06],[2.8021533e-06],[1.9585978e-06],[1.3570697e-06],[9.3208992e-07],[6.3461165e-07],[4.283011e-07],[2.8653522e-07],[1.9001665e-07],[1.2490725e-07],[8.1388629e-08],[5.2567583e-08],[3.3654935e-08],[2.1357699e-08],[1.3434881e-08],[8.3769447e-09],[5.1773666e-09],[3.1717776e-09],[1.9260444e-09],[1.1593082e-09],[6.9167155e-10],[4.0904286e-10],[2.3977567e-10],[1.3931837e-10],[8.0237663e-11],[4.5805161e-11],[2.5918899e-11],[1.4537322e-11],[8.0819798e-12],[4.4536534e-12],[2.4326532e-12],[1.3170703e-12],[7.0680979e-13],[3.7597664e-13],[1.9823657e-13],[1.0360273e-13],[5.3668945e-14],[2.7557466e-14],[1.4025546e-14],[7.0756205e-15],[3.5381273e-15],[1.7536646e-15],[8.6155638e-16],[4.1955118e-16],[2.0251175e-16],[9.6890123e-17],[4.5948653e-17],[2.159882e-17],[1.006355e-17],[4.6476809e-18],[2.1275772e-18],[9.653799e-19],[4.3418525e-19],[1.9356007e-19],[8.5530365e-20],[3.746181e-20],[1.6263763e-20],[6.9986967e-21],[2.9852255e-21],[1.2621209e-21],[5.2891833e-22],[2.1970508e-22],[9.0459755e-23],[3.6917692e-23],[1.4934046e-23],[5.9880342e-24],[2.3798789e-24],[9.3753886e-25],[3.6608969e-25],[1.4169337e-25],[5.4359491e-26],[2.0671169e-26],[7.791454e-27],[2.910957e-27],[1.0779953e-27],[3.956961e-28],[1.4396949e-28],[5.192099e-29],[1.8560056e-29],[6.5762663e-30],[2.3096348e-30],[8.0402774e-31],[2.7743584e-31],[9.4889441e-32],[3.216896e-32],[1.0809857e-32],[3.6005322e-33],[1.1887136e-33],[3.8900178e-34],[1.2617977e-34],[4.0568756e-35],[1.2928777e-35],[4.0840119e-36],[1.2787344e-36],[3.9686018e-37],[1.2208393e-37],[3.7225732e-38],[1.1251018e-38],[3.3705765e-39],[1.0008762e-39],[2.9459158e-40],[8.5945691e-41],[2.4853736e-41],[7.1239861e-42],[2.024036e-42],[5.7000311e-43],[1.5911093e-43],[4.4023705e-44],[1.2073605e-44],[3.2820952e-45],[8.8436014e-46]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"October","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348252,-0.16348252,-0.16348251,-0.1634825,-0.16348248,-0.16348245,-0.1634824,-0.16348233,-0.16348222,-0.16348205,-0.16348181,-0.16348144,-0.16348091,-0.16348014,-0.16347903,-0.16347744,-0.1634752,-0.16347206,-0.16346771,-0.16346173,-0.16345358,-0.16344257,-0.16342785,-0.16340833,-0.16338269,-0.16334931,-0.16330625,-0.16325122,-0.16318151,-0.16309403,-0.16298524,-0.1628512,-0.16268757,-0.16248965,-0.16225245,-0.16197082,-0.16163954,-0.16125347,-0.16080775,-0.16029798,-0.15972042,-0.15907224,-0.15835168,-0.15755826,-0.15669295,-0.15575827,-0.15475837,-0.15369902,-0.15258757,-0.1514328,-0.15024472,-0.1490343,-0.14781317,-0.14659323,-0.14538628,-0.14420362,-0.1430557,-0.14195168,-0.14089925,-0.13990428,-0.13897074,-0.13810054,-0.13729358,-0.1365478,-0.13585935,-0.13522275,-0.1346312,-0.13407681,-0.13355096,-0.13304461,-0.13254854,-0.13205374,-0.13155161,-0.13103426,-0.13049468,-0.12992699,-0.12932658,-0.12869028,-0.12801647,-0.12730522,-0.12655835,-0.12577947,-0.12497404,-0.12414928,-0.1233142,-0.12247936,-0.12165677,-0.12085964,-0.12010207,-0.11939867,-0.11876426,-0.11821336,-0.11775982,-0.11741636,-0.11719418,-0.11710258,-0.11714866,-0.11733707,-0.11766988,-0.11814651,-0.11876373,-0.11951585,-0.12039489,-0.12139088,-0.1224922,-0.123686,-0.1249586,-0.12629589,-0.12768378,-0.12910852,-0.13055706,-0.13201729,-0.13347822,-0.1349301,-0.13636452,-0.13777434,-0.13915368,-0.14049778,-0.14180293,-0.1430663,-0.14428581,-0.14546003,-0.14658802,-0.14766929,-0.14870371,-0.14969146,-0.150633,-0.15152901,-0.15238044,-0.15318839,-0.15395418,-0.15467925,-0.15536516,-0.1560135,-0.1566259,-0.15720393,-0.15774907,-0.1582627,-0.15874605,-0.15920016,-0.15962595,-0.16002417,-0.16039548,-0.16074043,-0.16105955,-0.16135336,-0.16162243,-0.1618674,-0.16208902,-0.16228817,-0.16246584,-0.16262316,-0.16276138,-0.16288184,-0.16298595,-0.16307518,-0.16315098,-0.16321481,-0.16326809,-0.16331215,-0.16334827,-0.16337761,-0.16340122,-0.16342005,-0.16343492,-0.16344656,-0.16345558,-0.16346251,-0.16346779,-0.16347177,-0.16347474,-0.16347694,-0.16347856,-0.16347973,-0.16348057,-0.16348117,-0.1634816,-0.1634819,-0.1634821,-0.16348225,-0.16348234,-0.16348241,-0.16348245,-0.16348248,-0.1634825,-0.16348251,-0.16348252,-0.16348252,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253],"zorder":18,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253],"zorder":19,"type":"scatter"},{"customdata":[[1.0139871e-110],[8.1713898e-110],[6.5271446e-109],[5.1679028e-108],[4.055732e-107],[3.1549171e-106],[2.4325987e-105],[1.85916e-104],[1.4084028e-103],[1.0575498e-102],[7.8711561e-102],[5.8068425e-101],[4.2462481e-100],[3.0777581e-99],[2.2111969e-98],[1.5746504e-97],[1.1114877e-96],[7.7765864e-96],[5.3930834e-95],[3.7072261e-94],[2.5259503e-93],[1.7059423e-92],[1.1420042e-91],[7.577655e-91],[4.9838593e-90],[3.2490809e-89],[2.0995154e-88],[1.3447496e-87],[8.5374383e-87],[5.3725137e-86],[3.3511301e-85],[2.0719003e-84],[1.2697266e-83],[7.7128589e-83],[4.643916e-82],[2.7715143e-81],[1.6395086e-80],[9.613335e-80],[5.5872519e-79],[3.2187425e-78],[1.8379683e-77],[1.0402881e-76],[5.8362381e-76],[3.2454595e-75],[1.7888882e-74],[9.7735874e-74],[5.2928381e-73],[2.8411033e-72],[1.511643e-71],[7.9721462e-71],[4.167399e-70],[2.1593285e-69],[1.1090117e-68],[5.6456946e-68],[2.848803e-67],[1.424857e-66],[7.06389e-66],[3.471206e-65],[1.6907549e-64],[8.1629049e-64],[3.9063632e-63],[1.8529526e-62],[8.7120391e-62],[4.0601224e-61],[1.8755223e-60],[8.5875479e-60],[3.8974443e-59],[1.7532929e-58],[7.8179489e-58],[3.4553735e-57],[1.5137738e-56],[6.5734111e-56],[2.8293353e-55],[1.2070961e-54],[5.1046163e-54],[2.1396768e-53],[8.8899039e-53],[3.6610847e-52],[1.4944669e-51],[6.0468149e-51],[2.4251067e-50],[9.6404847e-50],[3.7986625e-49],[1.4836327e-48],[5.7436226e-48],[2.2039881e-47],[8.3829412e-47],[3.1604392e-46],[1.1810338e-45],[4.374627e-45],[1.6061407e-44],[5.8450739e-44],[2.1084353e-43],[7.5386647e-43],[2.6717292e-42],[9.3854329e-42],[3.267985e-41],[1.1278977e-40],[3.8585419e-40],[1.3084003e-39],[4.3976631e-39],[1.4650997e-38],[4.8381164e-38],[1.5836142e-37],[5.1379086e-37],[1.652294e-36],[5.2668653e-36],[1.6641063e-35],[5.2116338e-35],[1.6178219e-34],[4.9779615e-34],[1.5182258e-33],[4.58971e-33],[1.3753023e-32],[4.0848409e-32],[1.2025862e-31],[3.5093073e-31],[1.0150577e-30],[2.9102089e-30],[8.2703105e-30],[2.3296124e-29],[6.5044375e-29],[1.8001144e-28],[4.9380417e-28],[1.3426838e-27],[3.6187378e-27],[9.6672936e-27],[2.5598656e-26],[6.7188344e-26],[1.7479752e-25],[4.507557e-25],[1.1521575e-24],[2.9190884e-24],[7.3307337e-24],[1.8247885e-23],[4.5023845e-23],[1.1011277e-22],[2.6693033e-22],[6.4139181e-22],[1.5276162e-21],[3.6063721e-21],[8.4390277e-21],[1.9574018e-20],[4.5002166e-20],[1.0255406e-19],[2.3165327e-19],[5.1866907e-19],[1.1510887e-18],[2.5321762e-18],[5.5213589e-18],[1.1933427e-17],[2.5565353e-17],[5.4288278e-17],[1.1426896e-16],[2.3840684e-16],[4.9303495e-16],[1.0106613e-15],[2.0535383e-15],[4.1358965e-15],[8.2567025e-15],[1.6338575e-14],[3.2047396e-14],[6.2307872e-14],[1.2007849e-13],[2.293825e-13],[4.3433893e-13],[8.1521341e-13],[1.5166617e-12],[2.7969311e-12],[5.1127119e-12],[9.2639947e-12],[1.6638864e-11],[2.9622965e-11],[5.22774e-11],[9.144948e-11],[1.5857387e-10],[2.7256275e-10],[4.6439483e-10],[7.8432466e-10],[1.3130875e-09],[2.1791275e-09],[3.5847984e-09],[5.8457746e-09],[9.4496754e-09],[1.5142293e-08],[2.405298e-08],[3.7874896e-08],[5.9121068e-08],[9.1483875e-08],[1.4033361e-07],[2.1340147e-07],[3.2170332e-07],[4.8077332e-07],[7.1228916e-07],[1.0461846e-06],[1.5233561e-06],[2.1990814e-06],[3.1472688e-06],[4.4656577e-06],[6.2820725e-06],[8.7618082e-06],[1.211618e-05],[1.661221e-05],[2.2583329e-05],[3.0440881e-05],[4.0686076e-05],[5.3921898e-05],[7.0864332e-05],[9.2352095e-05],[0.00011935395],[0.00015297257],[0.00019444378],[0.00024513017],[0.00030650805],[0.00038014685],[0.00046768055],[0.000570771],[0.00069106352],[0.00083013577],[0.0009894415],[0.0011702515],[0.0013735943],[0.0016002005],[0.0018504536],[0.0021243517],[0.0024214827],[0.0027410171],[0.0030817194],[0.0034419802],[0.0038198683],[0.0042132014],[0.0046196326],[0.0050367477],[0.005462169],[0.0058936575],[0.0063292089],[0.0067671346],[0.0072061236],[0.0076452798],[0.0080841315],[0.0085226124],[0.0089610153],[0.0093999221],[0.0098401149],[0.010282476],[0.010727884],[0.011177117],[0.011630769],[0.012089182],[0.012552412],[0.013020218],[0.013492081],[0.01396725],[0.01444481],[0.014923763],[0.015403118],[0.015881974],[0.016359603],[0.016835501],[0.017309429],[0.017781418],[0.018251763],[0.018720976],[0.019189732],[0.019658803],[0.02012898],[0.020601004],[0.021075501],[0.021552934],[0.022033571],[0.022517472],[0.023004492],[0.023494302],[0.023986419],[0.024480247],[0.024975116],[0.025470323],[0.025965167],[0.026458983],[0.026951164],[0.027441184],[0.027928612],[0.028413126],[0.028894529],[0.029372759],[0.029847905],[0.03032021],[0.030790083],[0.031258087],[0.031724921],[0.032191383],[0.032658315],[0.033126521],[0.033596664],[0.03406915],[0.034543992],[0.035020671],[0.035497993],[0.035973971],[0.03644571],[0.03690934],[0.037359979],[0.037791742],[0.0381978],[0.038570487],[0.038901454],[0.039181863],[0.039402619],[0.039554624],[0.039629042],[0.039617575],[0.039512722],[0.039308022],[0.03899827],[0.038579688],[0.038050063],[0.03740883],[0.036657104],[0.035797673],[0.034834938],[0.033774811],[0.032624582],[0.031392754],[0.030088862],[0.02872327],[0.027306969],[0.025851371],[0.024368109],[0.022868844],[0.021365086],[0.019868027],[0.018388388],[0.016936281],[0.015521089],[0.014151358],[0.012834703],[0.011577735],[0.010386004],[0.0092639563],[0.0082149178],[0.0072410933],[0.0063435899],[0.005522461],[0.0047767719],[0.0041046843],[0.0035035577],[0.0029700643],[0.0025003134],[0.0020899812],[0.0017344403],[0.0014288859],[0.0011684542],[0.00094832903],[0.0007638347],[0.00061051302],[0.00048418384],[0.00038098897],[0.00029742017],[0.00023033271],[0.00017694622],[0.00013483501],[0.00010190999],[7.6394524e-05],[5.6796218e-05],[4.1876471e-05],[3.0619449e-05],[2.2201675e-05],[1.5963231e-05],[1.1381233e-05],[8.0459812e-06],[5.6399938e-06],[3.9199248e-06],[2.701262e-06],[1.8455962e-06],[1.2501999e-06],[8.3962915e-07],[5.5905407e-07],[3.6903873e-07],[2.4151046e-07],[1.5668964e-07],[1.0078129e-07],[6.4261381e-08],[4.0620605e-08],[2.5454518e-08],[1.5812544e-08],[9.7376365e-09],[5.9445237e-09],[3.5974045e-09],[2.1580794e-09],[1.2833612e-09],[7.5653904e-10],[4.4209182e-10],[2.5608859e-10],[1.470492e-10],[8.3700483e-11],[4.7226356e-11],[2.6413777e-11],[1.4644167e-11],[8.0479562e-12],[4.3842163e-12]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"October","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348252,-0.16348252,-0.16348251,-0.16348249,-0.16348247,-0.16348244,-0.16348239,-0.16348232,-0.16348221,-0.16348205,-0.16348182,-0.16348149,-0.16348101,-0.16348033,-0.16347938,-0.16347807,-0.16347625,-0.16347377,-0.16347042,-0.16346592,-0.16345995,-0.16345209,-0.16344185,-0.16342861,-0.16341167,-0.16339018,-0.16336318,-0.16332956,-0.16328809,-0.1632374,-0.16317602,-0.16310239,-0.16301485,-0.16291176,-0.16279147,-0.1626524,-0.16249309,-0.16231228,-0.16210894,-0.16188233,-0.16163208,-0.16135818,-0.16106105,-0.16074151,-0.16040081,-0.16004055,-0.15966266,-0.15926933,-0.1588629,-0.15844578,-0.15802036,-0.15758887,-0.15715332,-0.1567154,-0.15627641,-0.15583725,-0.1553984,-0.15495992,-0.15452152,-0.15408261,-0.15364242,-0.15320006,-0.15275465,-0.15230541,-0.15185176,-0.15139335,-0.15093012,-0.15046231,-0.14999045,-0.14951528,-0.14903772,-0.14855877,-0.14807941,-0.14760056,-0.14712293,-0.14664703,-0.1461731,-0.14570111,-0.14523077,-0.14476156,-0.1442928,-0.14382373,-0.14335355,-0.14288153,-0.14240703,-0.1419296,-0.14144896,-0.14096506,-0.14047804,-0.13998823,-0.13949611,-0.13900228,-0.13850742,-0.13801221,-0.13751736,-0.13702355,-0.13653137,-0.13604135,-0.13555392,-0.13506941,-0.134588,-0.13410977,-0.13363463,-0.13316232,-0.13269245,-0.13222445,-0.13175761,-0.13129115,-0.13082422,-0.13035601,-0.12988587,-0.12941338,-0.12893854,-0.12846186,-0.12798454,-0.12750856,-0.12703682,-0.12657319,-0.12612255,-0.12569079,-0.12528473,-0.12491204,-0.12458108,-0.12430067,-0.12407991,-0.12392791,-0.12385349,-0.12386496,-0.12396981,-0.12417451,-0.12448426,-0.12490284,-0.12543247,-0.1260737,-0.12682543,-0.12768486,-0.12864759,-0.12970772,-0.13085795,-0.13208978,-0.13339367,-0.13475926,-0.13617556,-0.13763116,-0.13911442,-0.14061369,-0.14211745,-0.14361451,-0.14509414,-0.14654625,-0.14796144,-0.14933117,-0.15064783,-0.1519048,-0.15309653,-0.15421858,-0.15526761,-0.15624144,-0.15713894,-0.15796007,-0.15870576,-0.15937785,-0.15997897,-0.16051247,-0.16098222,-0.16139255,-0.16174809,-0.16205365,-0.16231408,-0.1625342,-0.1627187,-0.16287202,-0.16299835,-0.16310154,-0.16318511,-0.1632522,-0.16330559,-0.1633477,-0.16338062,-0.16340614,-0.16342574,-0.16344066,-0.16345191,-0.16346033,-0.16346657,-0.16347115,-0.16347449,-0.16347689,-0.16347861,-0.16347983,-0.16348069,-0.16348128,-0.16348169,-0.16348197,-0.16348216,-0.16348229,-0.16348238,-0.16348243,-0.16348247,-0.16348249,-0.16348251,-0.16348252,-0.16348252,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253],"zorder":19,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726],"zorder":20,"type":"scatter"},{"customdata":[[3.9126628e-37],[1.2611557e-36],[4.0292924e-36],[1.2760059e-35],[4.005349e-35],[1.2462118e-34],[3.8433253e-34],[1.1748603e-33],[3.5598289e-33],[1.0691431e-32],[3.1827778e-32],[9.3916224e-32],[2.7468739e-31],[7.9634384e-31],[2.2883704e-30],[6.5180222e-30],[1.8402174e-29],[5.1497512e-29],[1.428457e-28],[3.9274609e-28],[1.0703366e-27],[2.891297e-27],[7.741566e-27],[2.0546069e-26],[5.4049597e-26],[1.4093536e-25],[3.6425985e-25],[9.3318217e-25],[2.3696563e-24],[5.9644182e-24],[1.48804e-23],[3.6798062e-23],[9.0198452e-23],[2.1914775e-22],[5.2776278e-22],[1.2598078e-21],[2.9808055e-21],[6.9907984e-21],[1.6251136e-20],[3.7445916e-20],[8.5524198e-20],[1.9361427e-19],[4.3445971e-19],[9.6633e-19],[2.1304199e-18],[4.6555261e-18],[1.0084076e-17],[2.1650468e-17],[4.6074671e-17],[9.7189871e-17],[2.032093e-16],[4.2114334e-16],[8.6512747e-16],[1.7615463e-15],[3.5552639e-15],[7.1123548e-15],[1.4103237e-14],[2.7719664e-14],[5.400338e-14],[1.0428401e-13],[1.9960817e-13],[3.7870644e-13],[7.1218182e-13],[1.3275255e-12],[2.4527804e-12],[4.4919847e-12],[8.1542059e-12],[1.4671985e-11],[2.6167359e-11],[4.6258838e-11],[8.1057527e-11],[1.4078481e-10],[2.4237177e-10],[4.1359198e-10],[6.9956164e-10],[1.1728533e-09],[1.9490601e-09],[3.2104845e-09],[5.2417919e-09],[8.4830654e-09],[1.3607856e-08],[2.1636673e-08],[3.410006e-08],[5.3270123e-08],[8.248523e-08],[1.2659969e-07],[1.9259858e-07],[2.904274e-07],[4.3409641e-07],[6.431303e-07],[9.4444359e-07],[1.3747301e-06],[1.9834597e-06],[2.8365733e-06],[4.0209581e-06],[5.649763e-06],[7.8685807e-06],[1.0862467e-05],[1.4863699e-05],[2.0160085e-05],[2.7103512e-05],[3.6118319e-05],[4.7708897e-05],[6.2465843e-05],[8.1069784e-05],[0.00010429197],[0.0001329906],[0.00016810195],[0.00021062531],[0.00026160118],[0.00032208228],[0.00039309738],[0.00047560878],[0.00057046448],[0.00067834724],[0.00079972311],[0.00093479295],[0.0010834508],[0.0012452534],[0.0014194057],[0.0016047659],[0.0017998741],[0.0020030071],[0.0022122606],[0.0024256583],[0.0026412848],[0.0028574392],[0.0030728009],[0.0032866007],[0.0034987856],[0.003710167],[0.0039225404],[0.0041387658],[0.004362798],[0.00459966],[0.0048553539],[0.0051367084],[0.0054511648],[0.005806509],[0.0062105603],[0.0066708302],[0.0071941722],[0.0077864386],[0.0084521676],[0.0091943201],[0.010014085],[0.010910765],[0.011881762],[0.012922652],[0.014027366],[0.015188453],[0.016397422],[0.017645141],[0.018922264],[0.020219671],[0.021528882],[0.022842432],[0.024154165],[0.025459457],[0.026755324],[0.028040433],[0.029315003],[0.030580608],[0.03183989],[0.033096204],[0.03435321],[0.035614442],[0.036882858],[0.038160424],[0.039447712],[0.040743565],[0.042044824],[0.043346138],[0.044639856],[0.045916021],[0.047162463],[0.048364983],[0.049507647],[0.050573159],[0.051543319],[0.052399555],[0.053123495],[0.053697579],[0.054105672],[0.054333659],[0.054369998],[0.054206202],[0.053837223],[0.053261735],[0.052482275],[0.05150526],[0.050340865],[0.049002764],[0.047507755],[0.045875281],[0.044126863],[0.042285484],[0.040374931],[0.038419134],[0.03644153],[0.034464459],[0.032508629],[0.03059266],[0.028732713],[0.02694223],[0.025231768],[0.023608947],[0.022078497],[0.020642404],[0.019300134],[0.018048944],[0.016884238],[0.01579997],[0.014789069],[0.013843864],[0.012956494],[0.012119288],[0.011325092],[0.01056754],[0.0098412524],[0.0091419653],[0.0084665803],[0.0078131501],[0.0071807982],[0.0065695886],[0.0059803554],[0.0054145075],[0.0048738226],[0.0043602428],[0.0038756851],[0.0034218755],[0.0030002144],[0.002611677],[0.0022567504],[0.0019354069],[0.0016471092],[0.001390844],[0.001165177],[0.00096832328],[0.00079822775],[0.00065264776],[0.00052923453],[0.00042560824],[0.00033942416],[0.00026842773],[0.00021049767],[0.00016367709],[0.00012619332],[9.6467581e-05],[7.3116108e-05],[5.4944294e-05],[4.0935701e-05],[3.0237445e-05],[2.214344e-05],[1.6076695e-05],[1.157165e-05],[8.2572681e-06],[5.841389e-06],[4.0966707e-06],[2.8482495e-06],[1.9631534e-06],[1.3413963e-06],[9.0862423e-07],[6.1014593e-07],[4.0616584e-07],[2.6803503e-07],[1.7534628e-07],[1.1371477e-07],[7.3105675e-08],[4.6590558e-08],[2.9434463e-08],[1.843421e-08],[1.1444639e-08],[7.0434875e-09],[4.2971504e-09],[2.5988403e-09],[1.5580592e-09],[9.2596129e-10],[5.4551337e-10],[3.1858174e-10],[1.8443295e-10],[1.0584189e-10],[6.021122e-11],[3.3954497e-11],[1.8980891e-11],[1.0518035e-11],[5.7776437e-12],[3.1460412e-12],[1.6981457e-12],[9.0861903e-13],[4.8193052e-13],[2.5338576e-13],[1.32061e-13],[6.822775e-14],[3.4941459e-14],[1.7738383e-14],[8.9264647e-15],[4.4528384e-15],[2.2018404e-15],[1.0792591e-15],[5.2439203e-16],[2.525669e-16],[1.2058307e-16],[5.706703e-17],[2.6771507e-17],[1.2449402e-17],[5.7386783e-18],[2.6221801e-18],[1.1876814e-18],[5.3324135e-19],[2.3731962e-19],[1.0469574e-19],[4.5783556e-20],[1.9846082e-20],[8.527552e-21],[3.632101e-21],[1.5334691e-21],[6.4176396e-22],[2.6623088e-22],[1.0947727e-22],[4.4624319e-23],[1.8030217e-23],[7.2212382e-24],[2.8668397e-24],[1.1281734e-24],[4.4007695e-25],[1.7016155e-25],[6.5218968e-26],[2.4777974e-26],[9.3311838e-27],[3.4832645e-27],[1.2888863e-27],[4.7273845e-28],[1.7187199e-28],[6.1939384e-29],[2.2126155e-29],[7.834694e-30],[2.7498872e-30],[9.5671855e-31],[3.2993602e-31],[1.1278497e-31],[3.8216283e-32],[1.2835746e-32],[4.2733554e-33],[1.4102363e-33],[4.6130641e-34],[1.495759e-34],[4.8073753e-35],[1.5315406e-35],[4.8364069e-36],[1.5138777e-36],[4.6971256e-37],[1.4445972e-37],[4.4038691e-38],[1.330745e-38],[3.9859139e-39],[1.1834051e-39],[3.4826609e-40],[1.0159235e-40],[2.937533e-41],[8.419304e-42],[2.3918899e-42],[6.7356194e-43],[1.880118e-43],[5.2019209e-44],[1.4266363e-44],[3.8782296e-45],[1.0450194e-45],[2.7911659e-46],[7.3895369e-47],[1.9391837e-47],[5.0441812e-48],[1.3005657e-48],[3.323867e-49],[8.4202423e-50],[2.114341e-50],[5.2625328e-51],[1.2983263e-51],[3.1749872e-52],[7.6960716e-53],[1.84912e-53],[4.4038232e-54],[1.0395929e-54],[2.4325696e-55],[5.6420338e-56],[1.2971029e-56],[2.9558434e-57],[6.6766181e-58],[1.4948572e-58],[3.317499e-59],[7.2977631e-60],[1.5912429e-60],[3.439148e-61],[7.3677155e-62],[1.5645243e-62],[3.2930567e-63],[6.8704224e-64],[1.4208064e-64],[2.9124171e-65],[5.9175146e-66]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"November","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164725,-0.18164725,-0.18164725,-0.18164724,-0.18164724,-0.18164722,-0.1816472,-0.18164718,-0.18164713,-0.18164707,-0.18164697,-0.18164682,-0.18164661,-0.18164631,-0.18164588,-0.18164527,-0.18164442,-0.18164324,-0.18164161,-0.18163939,-0.1816364,-0.18163239,-0.1816271,-0.18162015,-0.18161114,-0.18159955,-0.18158479,-0.18156619,-0.18154297,-0.18151427,-0.18147916,-0.18143663,-0.18138566,-0.18132518,-0.18125416,-0.18117165,-0.18107679,-0.18096891,-0.18084753,-0.18071246,-0.18056381,-0.180402,-0.18022785,-0.18004249,-0.17984738,-0.17964425,-0.179435,-0.1792216,-0.17900597,-0.17878982,-0.17857446,-0.17836066,-0.17814847,-0.17793709,-0.17772472,-0.17750849,-0.17728446,-0.1770476,-0.1767919,-0.17651055,-0.17619609,-0.17584075,-0.1754367,-0.17497643,-0.17445309,-0.17386082,-0.17319509,-0.17245294,-0.17163317,-0.17073649,-0.1697655,-0.16872461,-0.16761989,-0.1664588,-0.16524984,-0.16400212,-0.16272499,-0.16142759,-0.16011838,-0.15880483,-0.15749309,-0.1561878,-0.15489193,-0.15360683,-0.15233225,-0.15106665,-0.14980737,-0.14855105,-0.14729405,-0.14603282,-0.1447644,-0.14348683,-0.14219955,-0.14090369,-0.13960243,-0.13830112,-0.1370074,-0.13573124,-0.1344848,-0.13328227,-0.13213961,-0.1310741,-0.13010394,-0.1292477,-0.12852376,-0.12794968,-0.12754159,-0.1273136,-0.12727726,-0.12744106,-0.12781003,-0.12838552,-0.12916498,-0.130142,-0.13130639,-0.13264449,-0.1341395,-0.13577198,-0.13752039,-0.13936177,-0.14127233,-0.14322812,-0.14520573,-0.1471828,-0.14913863,-0.1510546,-0.15291454,-0.15470503,-0.15641549,-0.15803831,-0.15956876,-0.16100485,-0.16234712,-0.16359831,-0.16476302,-0.16584729,-0.16685819,-0.16780339,-0.16869076,-0.16952797,-0.17032217,-0.17107972,-0.17180601,-0.17250529,-0.17318068,-0.17383411,-0.17446646,-0.17507767,-0.1756669,-0.17623275,-0.17677344,-0.17728701,-0.17777157,-0.17822538,-0.17864704,-0.17903558,-0.17939051,-0.17971185,-0.18000015,-0.18025641,-0.18048208,-0.18067893,-0.18084903,-0.18099461,-0.18111802,-0.18122165,-0.18130783,-0.18137883,-0.18143676,-0.18148358,-0.18152106,-0.18155079,-0.18157414,-0.18159231,-0.18160632,-0.18161702,-0.18162511,-0.18163118,-0.18163569,-0.181639,-0.18164142,-0.18164316,-0.18164441,-0.18164529,-0.18164592,-0.18164635,-0.18164665,-0.18164685,-0.18164699,-0.18164708,-0.18164714,-0.18164718,-0.18164721,-0.18164723,-0.18164724,-0.18164725,-0.18164725,-0.18164725,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726],"zorder":20,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726],"zorder":21,"type":"scatter"},{"customdata":[[1.4814053e-73],[8.0089297e-73],[4.2918195e-72],[2.2796852e-71],[1.2002585e-70],[6.2638493e-70],[3.2402196e-69],[1.6614003e-68],[8.4438573e-68],[4.2537732e-67],[2.1240987e-66],[1.0513372e-65],[5.1579414e-65],[2.508291e-64],[1.2090566e-63],[5.7767377e-63],[2.7358105e-62],[1.2842715e-61],[5.975788e-61],[2.7561392e-60],[1.2600124e-59],[5.7097391e-59],[2.5646353e-58],[1.1418339e-57],[5.0390461e-57],[2.2042553e-56],[9.5574874e-56],[4.1076549e-55],[1.7498976e-54],[7.3892425e-54],[3.0928289e-53],[1.2831596e-52],[5.2768454e-52],[2.1509836e-51],[8.6909848e-51],[3.4807285e-50],[1.3817858e-49],[5.4372688e-49],[2.1207552e-48],[8.1991736e-48],[3.1420966e-47],[1.1935457e-46],[4.4939554e-46],[1.6772153e-45],[6.2046797e-45],[2.2752051e-44],[8.2697531e-44],[2.9794457e-43],[1.0640193e-42],[3.7664728e-42],[1.3215743e-41],[4.5964224e-41],[1.5846015e-40],[5.4149215e-40],[1.8341565e-39],[6.1581879e-39],[2.049472e-38],[6.7608879e-38],[2.2107436e-37],[7.1654935e-37],[2.3021156e-36],[7.3313113e-36],[2.314248e-35],[7.2412252e-35],[2.2458894e-34],[6.9046082e-34],[2.10409e-33],[6.3557149e-33],[1.9030034e-32],[5.6479394e-32],[1.6615601e-31],[4.8452687e-31],[1.4005407e-30],[4.0128222e-30],[1.1396741e-29],[3.2083984e-29],[8.9530914e-29],[2.4764819e-28],[6.7900811e-28],[1.8454095e-27],[4.9715155e-27],[1.3275883e-26],[3.5141226e-26],[9.220396e-26],[2.3980693e-25],[6.1823517e-25],[1.5798863e-24],[4.0020122e-24],[1.0048744e-23],[2.5010729e-23],[6.1705289e-23],[1.5090384e-22],[3.6581405e-22],[8.7902873e-22],[2.0937687e-21],[4.9435354e-21],[1.1569919e-20],[2.6841517e-20],[6.1726022e-20],[1.4070658e-19],[3.1794049e-19],[7.1213606e-19],[1.5811251e-18],[3.4798142e-18],[7.5915919e-18],[1.6417124e-17],[3.5192424e-17],[7.4780712e-17],[1.5751387e-16],[3.2887983e-16],[6.8068377e-16],[1.3965091e-15],[2.8400946e-15],[5.725495e-15],[1.1441552e-14],[2.2664653e-14],[4.4504704e-14],[8.6627545e-14],[1.671475e-13],[3.1969667e-13],[6.0613763e-13],[1.1391997e-12],[2.1223868e-12],[3.9196371e-12],[7.1757033e-12],[1.3022099e-11],[2.3425888e-11],[4.1774413e-11],[7.3845589e-11],[1.2940152e-10],[2.247789e-10],[3.87056e-10],[6.6068583e-10],[1.1179436e-09],[1.8752079e-09],[3.1180598e-09],[5.1395599e-09],[8.3979813e-09],[1.3602929e-08],[2.1842364e-08],[3.4767846e-08],[5.4861558e-08],[8.5816761e-08],[1.330734e-07],[2.0456303e-07],[3.1173217e-07],[4.7093028e-07],[7.0526811e-07],[1.0470727e-06],[1.5410865e-06],[2.2485758e-06],[3.2525318e-06],[4.6641506e-06],[6.6307768e-06],[9.3454752e-06],[1.305835e-05],[1.8089663e-05],[2.484471e-05],[3.3830263e-05],[4.5672242e-05],[6.1134061e-05],[8.1134886e-05],[0.00010676679],[0.00013930955],[0.00018024172],[0.00023124625],[0.00029420916],[0.0003712095],[0.00046449935],[0.00057647266],[0.00070962244],[0.00086648649],[0.0010495826],[0.0012613351],[0.0015039956],[0.0017795613],[0.0020896959],[0.0024356574],[0.0028182378],[0.0032377191],[0.00369385],[0.0041858455],[0.0047124101],[0.005271784],[0.0058618085],[0.0064800071],[0.0071236732],[0.0077899579],[0.0084759487],[0.0091787307],[0.0098954229],[0.010623184],[0.011359186],[0.012100555],[0.012844287],[0.013587138],[0.014325512],[0.015055347],[0.015772024],[0.016470302],[0.017144304],[0.017787551],[0.018393058],[0.018953492],[0.019461384],[0.019909388],[0.020290572],[0.02059873],[0.020828685],[0.020976569],[0.021040059],[0.02101856],[0.020913303],[0.020727376],[0.020465662],[0.020134701],[0.01974249],[0.019298213],[0.018811944],[0.018294328],[0.017756257],[0.017208571],[0.016661795],[0.016125917],[0.015610229],[0.01512322],[0.014672528],[0.014264935],[0.013906406],[0.013602146],[0.013356668],[0.013173854],[0.013056999],[0.013008825],[0.013031463],[0.013126399],[0.013294378],[0.0135353],[0.013848078],[0.014230516],[0.014679179],[0.015189306],[0.015754754],[0.016367995],[0.017020173],[0.017701219],[0.018400033],[0.019104715],[0.019802852],[0.020481837],[0.021129209],[0.021733008],[0.02228212],[0.0227666],[0.023177966],[0.02350945],[0.023756192],[0.023915386],[0.023986359],[0.023970586],[0.02387166],[0.023695188],[0.023448653],[0.023141216],[0.022783492],[0.022387293],[0.021965346],[0.021530997],[0.021097914],[0.020679779],[0.020289991],[0.019941381],[0.019645927],[0.019414499],[0.019256609],[0.01918019],[0.019191386],[0.019294376],[0.019491217],[0.019781725],[0.020163395],[0.020631358],[0.021178403],[0.021795046],[0.022469667],[0.023188718],[0.023936991],[0.024697956],[0.025454145],[0.026187596],[0.026880307],[0.02751472],[0.028074183],[0.028543393],[0.028908792],[0.029158902],[0.029284584],[0.029279219],[0.029138807],[0.028861974],[0.028449917],[0.027906266],[0.027236897],[0.026449704],[0.025554333],[0.0245619],[0.023484699],[0.02233591],[0.02112931],[0.019878995],[0.018599115],[0.017303623],[0.016006039],[0.014719232],[0.013455225],[0.012225015],[0.011038426],[0.0099039837],[0.008828827],[0.0078186491],[0.0068776786],[0.006008695],[0.0052130815],[0.0044909108],[0.0038410608],[0.0032613547],[0.0027487191],[0.0022993538],[0.0019089045],[0.0015726344],[0.0012855856],[0.0010427268],[0.00083908381],[0.0006698482],[0.000530465],[0.00041669793],[0.00032467363],[0.00025090672],[0.00019230798],[0.00014617858],[0.00011019317],[8.2374825e-05],[6.1064511e-05],[4.4887411e-05],[3.2718195e-05],[2.364678e-05],[1.6945806e-05],[1.2040665e-05],[8.4825805e-06],[5.9249775e-06],[4.1031669e-06],[2.8172058e-06],[1.9176907e-06],[1.2941759e-06],[8.6587945e-07],[5.7433592e-07],[3.7767161e-07],[2.462058e-07],[1.59116e-07],[1.01943e-07],[6.4747891e-08],[4.0767616e-08],[2.5446238e-08],[1.5745184e-08],[9.6579562e-09],[5.8726449e-09],[3.5399007e-09],[2.1152184e-09],[1.2529225e-09],[7.3569248e-10],[4.2822285e-10],[2.4708321e-10],[1.413237e-10],[8.0127906e-11],[4.5034806e-11],[2.5090382e-11],[1.3856693e-11],[7.5858489e-12],[4.1166125e-12],[2.2144508e-12],[1.1808138e-12],[6.2414466e-13],[3.2702182e-13],[1.6984589e-13],[8.7441872e-14],[4.4624076e-14],[2.2573752e-14],[1.1319371e-14],[5.6263183e-15],[2.7721016e-15],[1.3538679e-15],[6.5542825e-16],[3.1452507e-16],[1.4961188e-16],[7.0543528e-17],[3.2970691e-17],[1.5274897e-17],[7.0146731e-18],[3.193119e-18],[1.4407907e-18]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"November","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164725,-0.18164725,-0.18164725,-0.18164724,-0.18164724,-0.18164722,-0.1816472,-0.18164717,-0.18164712,-0.18164705,-0.18164695,-0.18164679,-0.18164655,-0.18164621,-0.18164572,-0.18164501,-0.18164401,-0.18164259,-0.18164063,-0.18163791,-0.1816342,-0.18162917,-0.18162241,-0.18161343,-0.18160159,-0.18158612,-0.18156612,-0.18154049,-0.18150795,-0.18146702,-0.18141601,-0.18135305,-0.18127605,-0.18118276,-0.18107079,-0.18093764,-0.18078077,-0.18059768,-0.18038592,-0.18014326,-0.1798677,-0.17955756,-0.1792116,-0.17882902,-0.17840954,-0.17795341,-0.17746141,-0.17693485,-0.17637547,-0.17578545,-0.17516725,-0.17452358,-0.1738573,-0.17317131,-0.17246853,-0.17175183,-0.17102407,-0.17028807,-0.1695467,-0.16880297,-0.16806012,-0.16732175,-0.16659191,-0.16587523,-0.16517696,-0.16450295,-0.16385971,-0.1632542,-0.16269377,-0.16218587,-0.16173787,-0.16135669,-0.16104853,-0.16081857,-0.16067069,-0.1606072,-0.1606287,-0.16073395,-0.16091988,-0.1611816,-0.16151256,-0.16190477,-0.16234905,-0.16283531,-0.16335293,-0.163891,-0.16443869,-0.16498546,-0.16552134,-0.16603703,-0.16652404,-0.16697473,-0.16738232,-0.16774085,-0.16804511,-0.16829059,-0.1684734,-0.16859026,-0.16863843,-0.16861579,-0.16852086,-0.16835288,-0.16811196,-0.16779918,-0.16741674,-0.16696808,-0.16645795,-0.1658925,-0.16527926,-0.16462708,-0.16394604,-0.16324723,-0.16254254,-0.16184441,-0.16116542,-0.16051805,-0.15991425,-0.15936514,-0.15888066,-0.15846929,-0.15813781,-0.15789107,-0.15773187,-0.1576609,-0.15767667,-0.1577756,-0.15795207,-0.1581986,-0.15850604,-0.15886377,-0.15925996,-0.15968191,-0.16011626,-0.16054934,-0.16096748,-0.16135727,-0.16170588,-0.16200133,-0.16223276,-0.16239065,-0.16246707,-0.16245587,-0.16235288,-0.16215604,-0.16186553,-0.16148386,-0.1610159,-0.16046885,-0.15985221,-0.15917759,-0.15845854,-0.15771027,-0.1569493,-0.15619311,-0.15545966,-0.15476695,-0.15413254,-0.15357307,-0.15310386,-0.15273847,-0.15248836,-0.15236267,-0.15236804,-0.15250845,-0.15278528,-0.15319734,-0.15374099,-0.15441036,-0.15519755,-0.15609292,-0.15708536,-0.15816256,-0.15931135,-0.16051795,-0.16176826,-0.16304814,-0.16434363,-0.16564122,-0.16692803,-0.16819203,-0.16942224,-0.17060883,-0.17174327,-0.17281843,-0.17382861,-0.17476958,-0.17563856,-0.17643418,-0.17715635,-0.1778062,-0.1783859,-0.17889854,-0.1793479,-0.17973835,-0.18007462,-0.18036167,-0.18060453,-0.18080817,-0.18097741,-0.18111679,-0.18123056,-0.18132258,-0.18139635,-0.18145495,-0.18150108,-0.18153706,-0.18156488,-0.18158619,-0.18160237,-0.18161454,-0.18162361,-0.18163031,-0.18163522,-0.18163878,-0.18164133,-0.18164315,-0.18164444,-0.18164534,-0.18164596,-0.18164639,-0.18164668,-0.18164688,-0.18164701,-0.1816471,-0.18164716,-0.18164719,-0.18164722,-0.18164723,-0.18164724,-0.18164725,-0.18164725,-0.18164725,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726],"zorder":21,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198],"zorder":22,"type":"scatter"},{"customdata":[[7.0497533e-06],[9.7550087e-06],[1.3380184e-05],[1.8191971e-05],[2.4517919e-05],[3.2754953e-05],[4.3377424e-05],[5.6944053e-05],[7.4103029e-05],[9.5594379e-05],[0.00012224872],[0.00015498139],[0.00019478115],[0.00024269264],[0.00029979212],[0.00036715636],[0.00044582496],[0.00053675679],[0.00064078217],[0.0007585524],[0.00089048943],[0.0010367383],[0.0011971259],[0.0013711286],[0.0015578527],[0.0017560296],[0.0019640273],[0.0021798804],[0.0024013359],[0.0026259156],[0.0028509906],[0.0030738641],[0.0032918579],[0.0035023972],[0.0037030878],[0.0038917802],[0.0040666181],[0.0042260664],[0.0043689187],[0.0044942843],[0.004601558],[0.0046903757],[0.0047605618],[0.0048120739],[0.0048449525],[0.0048592797],[0.0048551533],[0.0048326787],[0.0047919809],[0.0047332355],[0.0046567162],[0.0045628552],[0.0044523099],[0.0043260306],[0.004185322],[0.0040318925],[0.003867886],[0.0036958921],[0.0035189337],[0.0033404299],[0.0031641366],[0.0029940675],[0.0028344001],[0.0026893704],[0.0025631637],[0.0024598048],[0.0023830548],[0.0023363183],[0.0023225635],[0.0023442607],[0.0024033385],[0.00250116],[0.0026385179],[0.0028156493],[0.0030322663],[0.0032876026],[0.0035804716],[0.0039093344],[0.0042723735],[0.0046675691],[0.0050927752],[0.0055457908],[0.006024425],[0.00652655],[0.0070501441],[0.0075933174],[0.0081543239],[0.0087315556],[0.0093235211],[0.0099288077],[0.010546031],[0.011173772],[0.011810508],[0.012454539],[0.01310392],[0.013756394],[0.014409343],[0.015059767],[0.015704276],[0.016339121],[0.016960267],[0.017563489],[0.018144523],[0.018699232],[0.019223817],[0.019715028],[0.020170394],[0.020588427],[0.020968808],[0.021312528],[0.02162196],[0.021900871],[0.022154346],[0.022388629],[0.02261089],[0.02282891],[0.023050728],[0.023284235],[0.023536774],[0.023814748],[0.024123273],[0.024465899],[0.024844419],[0.025258777],[0.025707086],[0.026185757],[0.026689715],[0.027212719],[0.027747724],[0.028287293],[0.028824021],[0.02935093],[0.029861836],[0.030351637],[0.030816536],[0.031254154],[0.031663559],[0.032045187],[0.032400686],[0.032732668],[0.033044411],[0.033339508],[0.033621506],[0.033893526],[0.034157924],[0.034415973],[0.034667613],[0.034911269],[0.035143747],[0.03536023],[0.035554349],[0.035718359],[0.035843384],[0.035919738],[0.035937299],[0.035885921],[0.03575586],[0.03553819],[0.035225199],[0.034810735],[0.034290485],[0.033662184],[0.032925733],[0.032083239],[0.031138957],[0.030099165],[0.028971966],[0.027767031],[0.026495311],[0.025168713],[0.023799782],[0.022401373],[0.020986351],[0.01956731],[0.018156329],[0.016764764],[0.015403074],[0.014080694],[0.012805933],[0.011585913],[0.010426538],[0.0093324897],[0.008307242],[0.0073531046],[0.0064712796],[0.0056619349],[0.0049242917],[0.0042567215],[0.0036568534],[0.003121686],[0.0026477029],[0.0022309895],[0.0018673469],[0.0015524009],[0.0012817046],[0.00105083],[0.0008554497],[0.00069140544],[0.00055476371],[0.00044185798],[0.00034931808],[0.00027408751],[0.00021342985],[0.00016492572],[0.00012646206],[9.6215186e-05],[7.2629484e-05],[5.4393143e-05],[4.0412389e-05],[2.9785348e-05],[2.1776521e-05],[1.5792579e-05],[1.1360006e-05],[8.1049099e-06],[5.7351689e-06],[4.0249247e-06],[2.8013597e-06],[1.933599e-06],[1.3235427e-06],[8.9840445e-07],[6.0472403e-07],[4.0363016e-07],[2.6714147e-07],[1.7531584e-07],[1.140813e-07],[7.360598e-08],[4.7087904e-08],[2.9867302e-08],[1.8783051e-08],[1.1711522e-08],[7.2398828e-09],[4.4372605e-09],[2.6962372e-09],[1.6242614e-09],[9.7007102e-10],[5.7437611e-10],[3.3715539e-10],[1.9620074e-10],[1.1318898e-10],[6.4734668e-11],[3.6702493e-11],[2.0628934e-11],[1.1494167e-11],[6.3488461e-12],[3.4763694e-12],[1.8869841e-12],[1.0153583e-12],[5.4159767e-13],[2.8637721e-13],[1.5010744e-13],[7.7994881e-14],[4.0172441e-14],[2.0510999e-14],[1.0381024e-14],[5.2081897e-15],[2.5901509e-15],[1.2768903e-15],[6.2398054e-16],[3.0225683e-16],[1.4513348e-16],[6.9078737e-17],[3.2591574e-17],[1.5242262e-17],[7.0660332e-18],[3.2470066e-18],[1.4790097e-18],[6.677877e-19],[2.9887153e-19],[1.3258935e-19],[5.830557e-20],[2.5414879e-20],[1.0981003e-20],[4.7029603e-21],[1.996528e-21],[8.4014403e-22],[3.5043364e-22],[1.4488755e-22],[5.9378485e-23],[2.4121231e-23],[9.7127391e-24],[3.87664e-24],[1.5336997e-24],[6.0144507e-25],[2.3378789e-25],[9.007788e-26],[3.4402031e-26],[1.3023254e-26],[4.8867951e-27],[1.8175975e-27],[6.7010057e-28],[2.4487854e-28],[8.8701243e-29],[3.1847599e-29],[1.1334217e-29],[3.9982868e-30],[1.3980535e-30],[4.845526e-31],[1.6646585e-31],[5.6686064e-32],[1.9133492e-32],[6.4014567e-33],[2.1229017e-33],[6.978263e-34],[2.2736889e-34],[7.3431241e-35],[2.3506974e-35],[7.4589636e-36],[2.3459895e-36],[7.3137375e-37],[2.2600513e-37],[6.9224966e-38],[2.1017094e-38],[6.324817e-39],[1.8866379e-39],[5.578204e-40],[1.6348028e-40],[4.7489924e-41],[1.3674221e-41],[3.9027318e-42],[1.1040779e-42],[3.095962e-43],[8.6051083e-44],[2.3707285e-44],[6.4739902e-45],[1.7523745e-45],[4.7016085e-46],[1.2503471e-46],[3.2959399e-47],[8.6117718e-48],[2.2303357e-48],[5.7254866e-49],[1.456864e-49],[3.6744302e-50],[9.1859776e-51],[2.276277e-51],[5.5909955e-52],[1.361186e-52],[3.2848087e-53],[7.8571842e-54],[1.8628935e-54],[4.3779754e-55],[1.0198183e-55],[2.3547047e-56],[5.3890754e-57],[1.2225207e-57],[2.7489211e-58],[6.1267824e-59],[1.3535264e-59],[2.9639104e-60],[6.4332064e-61],[1.3840569e-61],[2.9515114e-62],[6.2387705e-63],[1.3071264e-63],[2.7145644e-64],[5.5878755e-65],[1.1401376e-65],[2.3058541e-66],[4.6224301e-67],[9.1848663e-68],[1.809003e-68],[3.5315851e-69],[6.8338276e-70],[1.3107573e-70],[2.4919797e-71],[4.6960276e-72],[8.7716379e-73],[1.6240323e-73],[2.9803862e-74],[5.4214358e-75],[9.7750728e-76],[1.7469866e-76],[3.0947319e-77],[5.4340094e-78],[9.4576148e-79],[1.6315738e-79],[2.7899455e-80],[4.7287742e-81],[7.9444768e-82],[1.3229575e-82],[2.1836868e-83],[3.5727173e-84],[5.7938977e-85],[9.3133698e-86],[1.4839071e-86],[2.3435296e-87],[3.6685802e-88],[5.6923217e-89],[8.7547691e-90],[1.334639e-90],[2.0167253e-91],[3.0206021e-92],[4.4843978e-93],[6.5990069e-94],[9.6253574e-95],[1.3916146e-95],[1.9942744e-96],[2.8327921e-97],[3.9884881e-98],[5.5662886e-99]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"December","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.19980493,-0.19980223,-0.1997986,-0.19979379,-0.19978747,-0.19977923,-0.19976861,-0.19975504,-0.19973788,-0.19971639,-0.19968973,-0.199657,-0.1996172,-0.19956929,-0.19951219,-0.19944483,-0.19936616,-0.19927523,-0.1991712,-0.19905343,-0.19892149,-0.19877525,-0.19861486,-0.19844085,-0.19825413,-0.19805595,-0.19784796,-0.1976321,-0.19741065,-0.19718607,-0.19696099,-0.19673812,-0.19652013,-0.19630959,-0.1961089,-0.1959202,-0.19574537,-0.19558592,-0.19544306,-0.1953177,-0.19521043,-0.19512161,-0.19505142,-0.19499991,-0.19496703,-0.1949527,-0.19495683,-0.1949793,-0.19502,-0.19507875,-0.19515527,-0.19524913,-0.19535967,-0.19548595,-0.19562666,-0.19578009,-0.1959441,-0.19611609,-0.19629305,-0.19647155,-0.19664785,-0.19681792,-0.19697758,-0.19712261,-0.19724882,-0.19735218,-0.19742893,-0.19747567,-0.19748942,-0.19746772,-0.19740865,-0.19731082,-0.19717347,-0.19699633,-0.19677972,-0.19652438,-0.19623151,-0.19590265,-0.19553961,-0.19514441,-0.19471921,-0.19426619,-0.19378756,-0.19328543,-0.19276184,-0.19221867,-0.19165766,-0.19108043,-0.19048846,-0.18988318,-0.18926595,-0.18863821,-0.18800148,-0.18735744,-0.18670806,-0.18605559,-0.18540264,-0.18475222,-0.18410771,-0.18347286,-0.18285172,-0.18224849,-0.18166746,-0.18111275,-0.18058817,-0.18009696,-0.17964159,-0.17922356,-0.17884318,-0.17849946,-0.17819002,-0.17791111,-0.17765764,-0.17742335,-0.17720109,-0.17698307,-0.17676126,-0.17652775,-0.17627521,-0.17599724,-0.17568871,-0.17534608,-0.17496756,-0.17455321,-0.1741049,-0.17362623,-0.17312227,-0.17259926,-0.17206426,-0.17152469,-0.17098796,-0.17046105,-0.16995015,-0.16946035,-0.16899545,-0.16855783,-0.16814843,-0.1677668,-0.1674113,-0.16707932,-0.16676757,-0.16647248,-0.16619048,-0.16591846,-0.16565406,-0.16539601,-0.16514437,-0.16490072,-0.16466824,-0.16445175,-0.16425763,-0.16409362,-0.1639686,-0.16389225,-0.16387468,-0.16392606,-0.16405612,-0.16427379,-0.16458678,-0.16500125,-0.1655215,-0.1661498,-0.16688625,-0.16772874,-0.16867303,-0.16971282,-0.17084002,-0.17204495,-0.17331667,-0.17464327,-0.1760122,-0.17741061,-0.17882563,-0.18024467,-0.18165565,-0.18304722,-0.18440891,-0.18573129,-0.18700605,-0.18822607,-0.18938545,-0.19047949,-0.19150474,-0.19245888,-0.1933407,-0.19415005,-0.19488769,-0.19555526,-0.19615513,-0.1966903,-0.19716428,-0.19758099,-0.19794464,-0.19825958,-0.19853028,-0.19876115,-0.19895653,-0.19912058,-0.19925722,-0.19937013,-0.19946267,-0.1995379,-0.19959855,-0.19964706,-0.19968552,-0.19971577,-0.19973935,-0.19975759,-0.19977157,-0.1997822,-0.19979021,-0.19979619,-0.19980062,-0.19980388,-0.19980625,-0.19980796,-0.19980918,-0.19981005,-0.19981066,-0.19981109,-0.19981138,-0.19981158,-0.19981172,-0.19981181,-0.19981187,-0.19981191,-0.19981194,-0.19981195,-0.19981196,-0.19981197,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198],"zorder":22,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198],"zorder":23,"type":"scatter"},{"customdata":[[1.7309546e-34],[5.3232074e-34],[1.6226502e-33],[4.9027552e-33],[1.4683153e-32],[4.3587528e-32],[1.2825342e-31],[3.7405845e-31],[1.0813687e-30],[3.0986456e-30],[8.8010367e-30],[2.4777618e-29],[6.9143137e-29],[1.9125042e-28],[5.2434791e-28],[1.4249528e-27],[3.8383555e-27],[1.0248345e-26],[2.7122272e-26],[7.114792e-26],[1.8499592e-25],[4.7678862e-25],[1.2180172e-24],[3.0842159e-24],[7.7410508e-24],[1.9258341e-23],[4.7489939e-23],[1.1607753e-22],[2.8122797e-22],[6.7535585e-22],[1.6075727e-21],[3.7929086e-21],[8.8702924e-21],[2.0562092e-20],[4.7245501e-20],[1.0760128e-19],[2.4290597e-19],[5.4352904e-19],[1.2055108e-18],[2.6502283e-18],[5.7750967e-18],[1.2473807e-17],[2.6705617e-17],[5.6672189e-17],[1.1920684e-16],[2.4853991e-16],[5.1363537e-16],[1.0521496e-15],[2.1363081e-15],[4.2994616e-15],[8.576855e-15],[1.6959219e-14],[3.3238962e-14],[6.4573279e-14],[1.243432e-13],[2.3733131e-13],[4.4900567e-13],[8.4200065e-13],[1.565081e-12],[2.8835337e-12],[5.2659537e-12],[9.5321933e-12],[1.7103006e-11],[3.0416964e-11],[5.3619538e-11],[9.3690181e-11],[1.6226651e-10],[2.7856562e-10],[4.7401264e-10],[7.9949573e-10],[1.3366145e-09],[2.2149299e-09],[3.638125e-09],[5.923236e-09],[9.5588196e-09],[1.5290205e-08],[2.4242987e-08],[3.8099805e-08],[5.9350337e-08],[9.1640495e-08],[1.4025407e-07],[2.1276849e-07],[3.1993588e-07],[4.7685066e-07],[7.0447507e-07],[1.0316032e-06],[1.4973507e-06],[2.1542603e-06],[3.0721091e-06],[4.3424906e-06],[6.0842206e-06],[8.449574e-06],[1.1631306e-05],[1.587033e-05],[2.1463831e-05],[2.8773477e-05],[3.8233253e-05],[5.035632e-05],[6.5740127e-05],[8.5068922e-05],[0.00010911266],[0.00013872134],[0.00017481361],[0.00021835902],[0.00027035288],[0.00033178357],[0.00040359228],[0.00048662569],[0.00058158283],[0.00068895791],[0.00080898163],[0.00094156408],[0.0010862428],[0.0012421398],[0.0014079319],[0.0015818373],[0.0017616231],[0.0019446341],[0.0021278465],[0.0023079448],[0.002481421],[0.0026446939],[0.0027942427],[0.0029267508],[0.0030392527],[0.0031292777],[0.0031949828],[0.0032352704],[0.0032498826],[0.0032394719],[0.0032056422],[0.0031509624],[0.0030789515],[0.0029940391],[0.0029015037],[0.0028073928],[0.0027184304],[0.0026419134],[0.002585602],[0.0025576046],[0.0025662572],[0.002619998],[0.002727233],[0.0028961906],[0.0031347618],[0.0034503228],[0.0038495379],[0.0043381436],[0.0049207142],[0.005600416],[0.0063787569],[0.0072553419],[0.0082276496],[0.0092908442],[0.010437639],[0.011658228],[0.012940305],[0.014269166],[0.015627932],[0.016997862],[0.018358775],[0.01968956],[0.02096877],[0.022175254],[0.023288828],[0.024290929],[0.025165247],[0.025898268],[0.026479732],[0.026902971],[0.027165092],[0.027267029],[0.02721343],[0.027012408],[0.026675169],[0.026215525],[0.025649347],[0.024993961],[0.024267549],[0.02348856],[0.022675179],[0.021844867],[0.021013991],[0.020197551],[0.019409008],[0.018660205],[0.017961366],[0.017321163],[0.016746818],[0.016244244],[0.015818174],[0.015472287],[0.015209306],[0.01503107],[0.014938559],[0.014931904],[0.01501036],[0.015172278],[0.015415076],[0.015735218],[0.016128229],[0.01658875],[0.01711063],[0.017687068],[0.018310808],[0.018974357],[0.019670239],[0.020391259],[0.021130754],[0.021882824],[0.022642518],[0.023405962],[0.024170417],[0.024934246],[0.025696813],[0.026458286],[0.027219371],[0.027980983],[0.028743871],[0.029508224],[0.030273272],[0.031036921],[0.031795434],[0.032543192],[0.033272554],[0.033973826],[0.034635354],[0.035243748],[0.03578423],[0.036241083],[0.036598212],[0.036839759],[0.036950765],[0.036917838],[0.036729794],[0.036378229],[0.035858008],[0.035167627],[0.034309435],[0.033289703],[0.032118532],[0.030809616],[0.02937985],[0.027848826],[0.026238223],[0.024571139],[0.022871382],[0.021162753],[0.019468367],[0.017810017],[0.016207619],[0.014678755],[0.013238317],[0.011898259],[0.010667474],[0.0095517622],[0.0085539097],[0.0076738493],[0.0069088966],[0.0062540446],[0.005702303],[0.0052450674],[0.0048725035],[0.0045739344],[0.0043382199],[0.0041541163],[0.0040106084],[0.003897207],[0.003804204],[0.0037228822],[0.0036456748],[0.0035662747],[0.003479691],[0.0033822567],[0.0032715893],[0.0031465094],[0.0030069231],[0.0028536769],[0.0026883914],[0.0025132834],[0.0023309855],[0.0021443702],[0.0019563859],[0.0017699117],[0.0015876347],[0.0014119531],[0.0012449057],[0.0010881294],[0.00094284015],[0.00080983751],[0.00068952714],[0.00058195824],[0.00048687119],[0.00040375147],[0.00033188592],[0.00027041813],[0.00021840027],[0.00017483946],[0.0001387374],[0.00010912256],[8.507497e-05],[6.574379e-05],[5.035852e-05],[3.8234563e-05],[2.877425e-05],[2.1464284e-05],[1.5870593e-05],[1.1631457e-05],[8.4496602e-06],[6.0842693e-06],[4.3425179e-06],[3.0721243e-06],[2.1542687e-06],[1.4973553e-06],[1.0316057e-06],[7.044764e-07],[4.7685137e-07],[3.1993625e-07],[2.1276868e-07],[1.4025417e-07],[9.1640547e-08],[5.9350364e-08],[3.8099819e-08],[2.4242994e-08],[1.5290208e-08],[9.5588212e-09],[5.9232368e-09],[3.6381254e-09],[2.2149301e-09],[1.3366146e-09],[7.9949577e-10],[4.7401266e-10],[2.7856563e-10],[1.6226651e-10],[9.3690183e-11],[5.3619539e-11],[3.0416964e-11],[1.7103006e-11],[9.5321934e-12],[5.2659537e-12],[2.8835337e-12],[1.565081e-12],[8.4200065e-13],[4.4900567e-13],[2.3733131e-13],[1.243432e-13],[6.4573279e-14],[3.3238962e-14],[1.6959219e-14],[8.576855e-15],[4.2994616e-15],[2.1363081e-15],[1.0521496e-15],[5.1363537e-16],[2.4853991e-16],[1.1920684e-16],[5.6672189e-17],[2.6705617e-17],[1.2473807e-17],[5.7750967e-18],[2.6502283e-18],[1.2055108e-18],[5.4352904e-19],[2.4290597e-19],[1.0760128e-19],[4.7245501e-20],[2.0562092e-20],[8.8702924e-21],[3.7929086e-21],[1.6075727e-21],[6.7535585e-22],[2.8122797e-22],[1.1607753e-22],[4.7489939e-23],[1.9258341e-23],[7.7410508e-24],[3.0842159e-24],[1.2180172e-24],[4.7678862e-25],[1.8499592e-25],[7.114792e-26],[2.7122272e-26],[1.0248345e-26],[3.8383555e-27],[1.4249528e-27],[5.2434791e-28],[1.9125042e-28],[6.9143137e-29],[2.4777618e-29],[8.8010367e-30],[3.0986456e-30],[1.0813687e-30],[3.7405845e-31],[1.2825342e-31],[4.3587528e-32],[1.4683153e-32],[4.9027552e-33],[1.6226502e-33],[5.3232074e-34],[1.7309546e-34]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"December","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981197,-0.19981197,-0.19981196,-0.19981195,-0.19981192,-0.19981189,-0.19981184,-0.19981177,-0.19981166,-0.19981151,-0.19981128,-0.19981095,-0.19981049,-0.19980983,-0.19980891,-0.19980764,-0.1998059,-0.19980353,-0.19980035,-0.19979611,-0.19979052,-0.19978321,-0.19977375,-0.19976163,-0.19974624,-0.19972691,-0.19970287,-0.19967326,-0.19963717,-0.19959362,-0.19954163,-0.1994802,-0.19940839,-0.19932536,-0.1992304,-0.19912303,-0.199003,-0.19887042,-0.19872574,-0.19856984,-0.19840405,-0.19823015,-0.19805036,-0.19786735,-0.19768414,-0.19750404,-0.19733056,-0.19716729,-0.19701774,-0.19688523,-0.19677273,-0.19668271,-0.196617,-0.19657671,-0.1965621,-0.19657251,-0.19660634,-0.19666102,-0.19673303,-0.19681794,-0.19691048,-0.19700459,-0.19709355,-0.19717007,-0.19722638,-0.19725438,-0.19724573,-0.19719199,-0.19708475,-0.19691579,-0.19667722,-0.19636166,-0.19596245,-0.19547384,-0.19489127,-0.19421157,-0.19343323,-0.19255664,-0.19158433,-0.19052114,-0.18937434,-0.18815376,-0.18687168,-0.18554282,-0.18418405,-0.18281412,-0.18145321,-0.18012242,-0.17884321,-0.17763673,-0.17652316,-0.17552105,-0.17464674,-0.17391372,-0.17333225,-0.17290901,-0.17264689,-0.17254495,-0.17259855,-0.17279958,-0.17313681,-0.17359646,-0.17416264,-0.17481802,-0.17554443,-0.17632342,-0.1771368,-0.17796712,-0.17879799,-0.17961443,-0.18040298,-0.18115178,-0.18185062,-0.18249082,-0.18306517,-0.18356774,-0.18399381,-0.1843397,-0.18460268,-0.18478091,-0.18487342,-0.18488008,-0.18480162,-0.18463971,-0.18439691,-0.18407677,-0.18368375,-0.18322323,-0.18270135,-0.18212492,-0.18150118,-0.18083763,-0.18014174,-0.17942072,-0.17868123,-0.17792916,-0.17716947,-0.17640602,-0.17564157,-0.17487774,-0.17411517,-0.1733537,-0.17259261,-0.171831,-0.17106811,-0.17030376,-0.16953871,-0.16877506,-0.16801655,-0.16726879,-0.16653943,-0.16583816,-0.16517663,-0.16456824,-0.16402775,-0.1635709,-0.16321377,-0.16297222,-0.16286122,-0.16289415,-0.16308219,-0.16343376,-0.16395398,-0.16464436,-0.16550255,-0.16652228,-0.16769345,-0.16900237,-0.17043213,-0.17196316,-0.17357376,-0.17524084,-0.1769406,-0.17864923,-0.18034362,-0.18200197,-0.18360436,-0.18513323,-0.18657367,-0.18791372,-0.18914451,-0.19026022,-0.19125807,-0.19213813,-0.19290309,-0.19355794,-0.19410968,-0.19456692,-0.19493948,-0.19523805,-0.19547376,-0.19565787,-0.19580138,-0.19591478,-0.19600778,-0.1960891,-0.19616631,-0.19624571,-0.19633229,-0.19642973,-0.19654039,-0.19666547,-0.19680506,-0.19695831,-0.19712359,-0.1972987,-0.197481,-0.19766761,-0.1978556,-0.19804207,-0.19822435,-0.19840003,-0.19856708,-0.19872385,-0.19886914,-0.19900215,-0.19912246,-0.19923003,-0.19932511,-0.19940823,-0.1994801,-0.19954157,-0.19959358,-0.19963714,-0.19967325,-0.19970286,-0.19972691,-0.19974624,-0.19976163,-0.19977375,-0.19978321,-0.19979052,-0.19979611,-0.19980035,-0.19980353,-0.1998059,-0.19980764,-0.19980891,-0.19980983,-0.19981049,-0.19981095,-0.19981128,-0.19981151,-0.19981166,-0.19981177,-0.19981184,-0.19981189,-0.19981192,-0.19981195,-0.19981196,-0.19981197,-0.19981197,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198],"zorder":23,"type":"scatter"}],"layout":{"template":{"data":{"histogram2dcontour":[{"type":"histogram2dcontour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"choropleth":[{"type":"choropleth","colorbar":{"outlinewidth":0,"ticks":""}}],"histogram2d":[{"type":"histogram2d","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmap":[{"type":"heatmap","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmapgl":[{"type":"heatmapgl","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"contourcarpet":[{"type":"contourcarpet","colorbar":{"outlinewidth":0,"ticks":""}}],"contour":[{"type":"contour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"surface":[{"type":"surface","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"mesh3d":[{"type":"mesh3d","colorbar":{"outlinewidth":0,"ticks":""}}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"parcoords":[{"type":"parcoords","line":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolargl":[{"type":"scatterpolargl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"scattergeo":[{"type":"scattergeo","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolar":[{"type":"scatterpolar","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"scattergl":[{"type":"scattergl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatter3d":[{"type":"scatter3d","line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattermapbox":[{"type":"scattermapbox","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterternary":[{"type":"scatterternary","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattercarpet":[{"type":"scattercarpet","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"type":"carpet"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}],"barpolar":[{"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"pie":[{"automargin":true,"type":"pie"}]},"layout":{"autotypenumbers":"strict","colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"hovermode":"closest","hoverlabel":{"align":"left"},"paper_bgcolor":"white","plot_bgcolor":"#E5ECF6","polar":{"bgcolor":"#E5ECF6","angularaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"radialaxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"ternary":{"bgcolor":"#E5ECF6","aaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"baxis":{"gridcolor":"white","linecolor":"white","ticks":""},"caxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]]},"xaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"yaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"scene":{"xaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"yaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"zaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"geo":{"bgcolor":"white","landcolor":"#E5ECF6","subunitcolor":"white","showland":true,"showlakes":true,"lakecolor":"white"},"title":{"x":0.05},"mapbox":{"style":"light"}}},"legend":{"traceorder":"normal"},"yaxis":{"showticklabels":true,"tickvals":[0.0,-0.018164725780515447,-0.036329451561030894,-0.05449417734154635,-0.07265890312206179,-0.09082362890257724,-0.1089883546830927,-0.12715308046360815,-0.14531780624412358,-0.16348253202463903,-0.18164725780515448,-0.19981198358566993],"ticktext":[["January"],["February"],["March"],["April"],["May"],["June"],["July"],["August"],["September"],["October"],["November"],["December"]],"zeroline":false,"showgrid":true,"gridcolor":"white","title":{"text":"Month"}},"xaxis":{"range":[-47.5,117.5],"showticklabels":true,"zeroline":false,"showgrid":true,"gridcolor":"white","gridwidth":2,"title":{"text":"Temperature [F]"}},"barmode":"stack","bargap":0,"bargroupgap":0,"font":{"size":14},"title":{"text":"Minimum and maximum daily temperatures in Lincoln, NE (2016)"},"height":600,"width":800,"plot_bgcolor":"rgb(245, 245, 245)","showlegend":false}} +{"data":[{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"zorder":0,"type":"scatter"},{"customdata":[[2.9189075e-16],[6.0207336e-16],[1.2309595e-15],[2.4946152e-15],[5.0110528e-15],[9.9774646e-15],[1.9691438e-14],[3.8521299e-14],[7.4694895e-14],[1.4356472e-13],[2.73509e-13],[5.1649129e-13],[9.6676793e-13],[1.7936998e-12],[3.2987245e-12],[6.0132827e-12],[1.0865434e-11],[1.9460458e-11],[3.4548587e-11],[6.0796636e-11],[1.0604782e-10],[1.8335714e-10],[3.1424539e-10],[5.3384622e-10],[8.9896118e-10],[1.50053e-09],[2.4827275e-09],[4.0718883e-09],[6.6198338e-09],[1.0668048e-08],[1.7041662e-08],[2.698552e-08],[4.2358881e-08],[6.5910767e-08],[1.016647e-07],[1.5544973e-07],[2.3562443e-07],[3.5405135e-07],[5.2739173e-07],[7.7880307e-07],[1.1401345e-06],[1.6547259e-06],[2.3809263e-06],[3.3964471e-06],[4.8036669e-06],[6.7359858e-06],[9.3653052e-06],[1.2910667e-05],[1.7648028e-05],[2.3921075e-05],[3.215289e-05],[4.285817e-05],[5.665559e-05],[7.4279785e-05],[9.6592284e-05],[0.00012459067],[0.00015941511],[0.00020235141],[0.00025482974],[0.0003184182],[0.00039481057],[0.00048580775],[0.00059329254],[0.00071919784],[0.00086546838],[0.0010340165],[0.0012266727],[0.0014451323],[0.0016908978],[0.0019652203],[0.0022690389],[0.0026029207],[0.002967001],[0.0033609266],[0.0037838016],[0.0042341383],[0.0047098137],[0.0052080356],[0.005725319],[0.0062574778],[0.006799634],[0.0073462505],[0.0078911896],[0.0084278028],[0.0089490536],[0.009447675],[0.0099163618],[0.010347994],[0.010735883],[0.011074043],[0.011357455],[0.011582333],[0.011746361],[0.011848895],[0.011891105],[0.011876052],[0.011808684],[0.01169575],[0.01154562],[0.011368029],[0.011173738],[0.010974137],[0.010780809],[0.010605062],[0.010457477],[0.010347465],[0.010282891],[0.010269751],[0.010311949],[0.010411159],[0.010566802],[0.010776124],[0.011034372],[0.011335069],[0.011670355],[0.012031398],[0.012408835],[0.012793232],[0.013175545],[0.013547554],[0.013902251],[0.014234179],[0.014539695],[0.014817159],[0.015067041],[0.015291945],[0.015496555],[0.015687502],[0.015873168],[0.016063429],[0.016269353],[0.016502851],[0.016776312],[0.017102209],[0.0174927],[0.017959225],[0.018512112],[0.019160196],[0.019910458],[0.020767691],[0.021734215],[0.022809624],[0.023990597],[0.025270782],[0.026640745],[0.028088019],[0.029597237],[0.03115037],[0.032727074],[0.034305119],[0.035860928],[0.037370183],[0.038808495],[0.040152109],[0.041378619],[0.042467658],[0.043401539],[0.04416581],[0.044749698],[0.045146418],[0.045353325],[0.045371916],[0.045207661],[0.044869678],[0.044370281],[0.043724398],[0.042948919],[0.042061987],[0.041082271],[0.040028272],[0.038917671],[0.037766778],[0.036590075],[0.035399891],[0.034206214],[0.033016626],[0.031836373],[0.030668541],[0.029514328],[0.02837338],[0.02724418],[0.026124443],[0.025011516],[0.023902747],[0.022795809],[0.02168897],[0.020581292],[0.019472765],[0.018364373],[0.017258086],[0.016156806],[0.015064254],[0.013984823],[0.012923404],[0.011885192],[0.010875489],[0.0098995094],[0.0089621983],[0.0080680673],[0.0072210567],[0.0064244247],[0.0056806692],[0.0049914802],[0.0043577242],[0.0037794586],[0.0032559719],[0.0027858479],[0.0023670477],[0.0019970051],[0.0016727312],[0.0013909215],[0.0011480629],[0.00094053466],[0.00076470104],[0.00061699303],[0.0004939769],[0.00039240901],[0.00030927687],[0.00024182663],[0.00018757845],[0.00014433098],[0.00011015681],[8.3390615e-05],[6.2611984e-05],[4.6624483e-05],[3.4432614e-05],[2.5217948e-05],[1.83155e-05],[1.3191182e-05],[9.4208954e-06],[6.6716421e-06],[4.6848405e-06],[3.2618849e-06],[2.2518798e-06],[1.541403e-06],[1.0461018e-06],[7.0390059e-07],[4.6959324e-07],[3.1059855e-07],[2.0367536e-07],[1.32414e-07],[8.5345554e-08],[5.4534968e-08],[3.4547157e-08],[2.169646e-08],[1.3508318e-08],[8.3376999e-09],[5.1017692e-09],[3.0947255e-09],[1.8610054e-09],[1.1094172e-09],[6.5563431e-10],[3.8410135e-10],[2.2307219e-10],[1.2842767e-10],[7.3296571e-11],[4.146856e-11],[2.3257498e-11],[1.293047e-11],[7.1264228e-12],[3.8934405e-12],[2.1086231e-12],[1.1320529e-12],[6.0247042e-13],[3.1783737e-13],[1.6621623e-13],[8.6166851e-14],[4.4279676e-14],[2.2556162e-14],[1.1389948e-14],[5.7012917e-15],[2.8289092e-15],[1.39142e-15],[6.7840696e-16],[3.2787966e-16],[1.5708335e-16],[7.4599634e-17],[3.5118301e-17],[1.6387774e-17],[7.5804598e-18],[3.4758393e-18],[1.5798354e-18],[7.1178936e-19],[3.1789093e-19],[1.4073149e-19],[6.1757603e-20],[2.6864276e-20],[1.1583637e-20],[4.9510735e-21],[2.0976741e-21],[8.8096866e-22],[3.6674674e-22],[1.5134045e-22],[6.190509e-23],[2.5100355e-23],[1.0088234e-23],[4.0191283e-24],[1.5871927e-24],[6.2130968e-25],[2.4108319e-25],[9.2726904e-26],[3.5352836e-26],[1.3360481e-26],[5.0049407e-27],[1.8584654e-27],[6.840509e-28],[2.4957464e-28],[9.0258946e-29],[3.2356204e-29],[1.1497465e-29],[4.0497063e-30],[1.4139095e-30],[4.8932354e-31],[1.678598e-31],[5.7078581e-32],[1.9238678e-32],[6.4276563e-33],[2.1286545e-33],[6.987673e-34],[2.2737076e-34],[7.3334957e-35],[2.3445617e-35],[7.4299558e-36],[2.3339124e-36],[7.2670206e-37],[2.2428568e-37],[6.861512e-38],[2.0807074e-38],[6.2542455e-39],[1.8634226e-39],[5.5032613e-40],[1.6110205e-40],[4.6747023e-41],[1.3445552e-41],[3.833319e-42],[1.083285e-42],[3.0344624e-43],[8.4254273e-44],[2.3188522e-44],[6.3259389e-45],[1.7105965e-45],[4.585014e-46],[1.2181593e-46],[3.208025e-47],[8.3741641e-48],[2.1667815e-48],[5.5572323e-49],[1.4127706e-49],[3.5600352e-50],[8.892141e-51],[2.2015455e-51],[5.4027908e-52],[1.3142491e-52],[3.1688825e-53],[7.5736181e-54],[1.7941939e-54],[4.2131209e-55],[9.8063404e-56],[2.2624468e-56],[5.1739006e-57],[1.1728054e-57],[2.6351291e-58],[5.868753e-59],[1.2955604e-59],[2.8348969e-60],[6.1487184e-61],[1.3219029e-61],[2.8169688e-62],[5.9502055e-63],[1.2458027e-63],[2.5854363e-64],[5.3184569e-65],[1.0844376e-65],[2.1917477e-66],[4.3907986e-67],[8.7189342e-68],[1.7161297e-68],[3.34814e-69],[6.4747619e-70],[1.241111e-70],[2.3581099e-71],[4.4410326e-72],[8.2903017e-73],[1.533992e-73],[2.8134693e-74],[5.114787e-75],[9.2167781e-76],[1.6462541e-76],[2.9146118e-77],[5.1148233e-78],[8.8970606e-79],[1.5340108e-79],[2.6216589e-80],[4.4410925e-81],[7.4570878e-82],[1.241122e-82],[2.0475069e-83],[3.3481275e-84],[5.426805e-85],[8.7187061e-86]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"January","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[2.9189075e-16,6.0207336e-16,1.2309595e-15,2.4946152e-15,5.0110528e-15,9.9774646e-15,1.9691438e-14,3.8521299e-14,7.4694895e-14,1.4356472e-13,2.73509e-13,5.1649129e-13,9.6676793e-13,1.7936998e-12,3.2987245e-12,6.0132827e-12,1.0865434e-11,1.9460458e-11,3.4548587e-11,6.0796636e-11,1.0604782e-10,1.8335714e-10,3.1424539e-10,5.3384622e-10,8.9896118e-10,1.50053e-09,2.4827275e-09,4.0718883e-09,6.6198338e-09,1.0668048e-08,1.7041662e-08,2.698552e-08,4.2358881e-08,6.5910767e-08,1.016647e-07,1.5544973e-07,2.3562443e-07,3.5405135e-07,5.2739173e-07,7.7880307e-07,1.1401345e-06,1.6547259e-06,2.3809263e-06,3.3964471e-06,4.8036669e-06,6.7359858e-06,9.3653052e-06,1.2910667e-05,1.7648028e-05,2.3921075e-05,3.215289e-05,4.285817e-05,5.665559e-05,7.4279785e-05,9.6592284e-05,0.00012459067,0.00015941511,0.00020235141,0.00025482974,0.0003184182,0.00039481057,0.00048580775,0.00059329254,0.00071919784,0.00086546838,0.0010340165,0.0012266727,0.0014451323,0.0016908978,0.0019652203,0.0022690389,0.0026029207,0.002967001,0.0033609266,0.0037838016,0.0042341383,0.0047098137,0.0052080356,0.005725319,0.0062574778,0.006799634,0.0073462505,0.0078911896,0.0084278028,0.0089490536,0.009447675,0.0099163618,0.010347994,0.010735883,0.011074043,0.011357455,0.011582333,0.011746361,0.011848895,0.011891105,0.011876052,0.011808684,0.01169575,0.01154562,0.011368029,0.011173738,0.010974137,0.010780809,0.010605062,0.010457477,0.010347465,0.010282891,0.010269751,0.010311949,0.010411159,0.010566802,0.010776124,0.011034372,0.011335069,0.011670355,0.012031398,0.012408835,0.012793232,0.013175545,0.013547554,0.013902251,0.014234179,0.014539695,0.014817159,0.015067041,0.015291945,0.015496555,0.015687502,0.015873168,0.016063429,0.016269353,0.016502851,0.016776312,0.017102209,0.0174927,0.017959225,0.018512112,0.019160196,0.019910458,0.020767691,0.021734215,0.022809624,0.023990597,0.025270782,0.026640745,0.028088019,0.029597237,0.03115037,0.032727074,0.034305119,0.035860928,0.037370183,0.038808495,0.040152109,0.041378619,0.042467658,0.043401539,0.04416581,0.044749698,0.045146418,0.045353325,0.045371916,0.045207661,0.044869678,0.044370281,0.043724398,0.042948919,0.042061987,0.041082271,0.040028272,0.038917671,0.037766778,0.036590075,0.035399891,0.034206214,0.033016626,0.031836373,0.030668541,0.029514328,0.02837338,0.02724418,0.026124443,0.025011516,0.023902747,0.022795809,0.02168897,0.020581292,0.019472765,0.018364373,0.017258086,0.016156806,0.015064254,0.013984823,0.012923404,0.011885192,0.010875489,0.0098995094,0.0089621983,0.0080680673,0.0072210567,0.0064244247,0.0056806692,0.0049914802,0.0043577242,0.0037794586,0.0032559719,0.0027858479,0.0023670477,0.0019970051,0.0016727312,0.0013909215,0.0011480629,0.00094053466,0.00076470104,0.00061699303,0.0004939769,0.00039240901,0.00030927687,0.00024182663,0.00018757845,0.00014433098,0.00011015681,8.3390615e-05,6.2611984e-05,4.6624483e-05,3.4432614e-05,2.5217948e-05,1.83155e-05,1.3191182e-05,9.4208954e-06,6.6716421e-06,4.6848405e-06,3.2618849e-06,2.2518798e-06,1.541403e-06,1.0461018e-06,7.0390059e-07,4.6959324e-07,3.1059855e-07,2.0367536e-07,1.32414e-07,8.5345554e-08,5.4534968e-08,3.4547157e-08,2.169646e-08,1.3508318e-08,8.3376999e-09,5.1017692e-09,3.0947255e-09,1.8610054e-09,1.1094172e-09,6.5563431e-10,3.8410135e-10,2.2307219e-10,1.2842767e-10,7.3296571e-11,4.146856e-11,2.3257498e-11,1.293047e-11,7.1264228e-12,3.8934405e-12,2.1086231e-12,1.1320529e-12,6.0247042e-13,3.1783737e-13,1.6621623e-13,8.6166851e-14,4.4279676e-14,2.2556162e-14,1.1389948e-14,5.7012917e-15,2.8289092e-15,1.39142e-15,6.7840696e-16,3.2787966e-16,1.5708335e-16,7.4599634e-17,3.5118301e-17,1.6387774e-17,7.5804598e-18,3.4758393e-18,1.5798354e-18,7.1178936e-19,3.1789093e-19,1.4073149e-19,6.1757603e-20,2.6864276e-20,1.1583637e-20,4.9510735e-21,2.0976741e-21,8.8096866e-22,3.6674674e-22,1.5134045e-22,6.190509e-23,2.5100355e-23,1.0088234e-23,4.0191283e-24,1.5871927e-24,6.2130968e-25,2.4108319e-25,9.2726904e-26,3.5352836e-26,1.3360481e-26,5.0049407e-27,1.8584654e-27,6.840509e-28,2.4957464e-28,9.0258946e-29,3.2356204e-29,1.1497465e-29,4.0497063e-30,1.4139095e-30,4.8932354e-31,1.678598e-31,5.7078581e-32,1.9238678e-32,6.4276563e-33,2.1286545e-33,6.987673e-34,2.2737076e-34,7.3334957e-35,2.3445617e-35,7.4299558e-36,2.3339124e-36,7.2670206e-37,2.2428568e-37,6.861512e-38,2.0807074e-38,6.2542455e-39,1.8634226e-39,5.5032613e-40,1.6110205e-40,4.6747023e-41,1.3445552e-41,3.833319e-42,1.083285e-42,3.0344624e-43,8.4254273e-44,2.3188522e-44,6.3259389e-45,1.7105965e-45,4.585014e-46,1.2181593e-46,3.208025e-47,8.3741641e-48,2.1667815e-48,5.5572323e-49,1.4127706e-49,3.5600352e-50,8.892141e-51,2.2015455e-51,5.4027908e-52,1.3142491e-52,3.1688825e-53,7.5736181e-54,1.7941939e-54,4.2131209e-55,9.8063404e-56,2.2624468e-56,5.1739006e-57,1.1728054e-57,2.6351291e-58,5.868753e-59,1.2955604e-59,2.8348969e-60,6.1487184e-61,1.3219029e-61,2.8169688e-62,5.9502055e-63,1.2458027e-63,2.5854363e-64,5.3184569e-65,1.0844376e-65,2.1917477e-66,4.3907986e-67,8.7189342e-68,1.7161297e-68,3.34814e-69,6.4747619e-70,1.241111e-70,2.3581099e-71,4.4410326e-72,8.2903017e-73,1.533992e-73,2.8134693e-74,5.114787e-75,9.2167781e-76,1.6462541e-76,2.9146118e-77,5.1148233e-78,8.8970606e-79,1.5340108e-79,2.6216589e-80,4.4410925e-81,7.4570878e-82,1.241122e-82,2.0475069e-83,3.3481275e-84,5.426805e-85,8.7187061e-86],"zorder":0,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"zorder":1,"type":"scatter"},{"customdata":[[2.838495e-44],[1.0289775e-43],[3.6973229e-43],[1.3168391e-42],[4.6488104e-42],[1.6267273e-41],[5.6422391e-41],[1.939778e-40],[6.6102267e-40],[2.2327726e-39],[7.4754342e-39],[2.4808023e-38],[8.1604047e-38],[2.6606947e-37],[8.5988858e-37],[2.7545656e-36],[8.7463705e-36],[2.7527478e-35],[8.5875399e-35],[2.6554304e-34],[8.1388842e-34],[2.4726271e-33],[7.4458825e-33],[2.2224783e-32],[6.5754078e-32],[1.9282869e-31],[5.6051136e-31],[1.6149571e-30],[4.6121279e-30],[1.3055861e-29],[3.6633084e-29],[1.0188383e-28],[2.8086707e-28],[7.6746786e-28],[2.0786596e-27],[5.5804645e-27],[1.4849818e-26],[3.9168389e-26],[1.0240333e-25],[2.6537272e-25],[6.8165128e-25],[1.7355297e-24],[4.3799145e-24],[1.0956277e-23],[2.7165907e-23],[6.6765055e-23],[1.6264398e-22],[3.9272686e-22],[9.3995487e-22],[2.2299093e-21],[5.2436199e-21],[1.2221908e-20],[2.8236484e-20],[6.4661538e-20],[1.4677269e-19],[3.3022371e-19],[7.364361e-19],[1.6278924e-18],[3.5668111e-18],[7.7463717e-18],[1.6675557e-17],[3.5581659e-17],[7.5255081e-17],[1.5776449e-16],[3.2782835e-16],[6.7522351e-16],[1.3785179e-15],[2.7895945e-15],[5.5954309e-15],[1.1124739e-14],[2.19235e-14],[4.2824647e-14],[8.2916603e-14],[1.5913035e-13],[3.0271111e-13],[5.7077839e-13],[1.0667693e-12],[1.9762292e-12],[3.628841e-12],[6.6048417e-12],[1.1915732e-11],[2.130801e-11],[3.7768428e-11],[6.6355786e-11],[1.1555602e-10],[1.9946662e-10],[3.4128075e-10],[5.7878503e-10],[9.7294152e-10],[1.6211387e-09],[2.6774268e-09],[4.3830769e-09],[7.1122116e-09],[1.1439167e-08],[1.8236787e-08],[2.8818179e-08],[4.5138706e-08],[7.0080333e-08],[1.0784693e-07],[1.6450692e-07],[2.4872843e-07],[3.7276214e-07],[5.5373695e-07],[8.1534391e-07],[1.1899922e-06],[1.7215265e-06],[2.4685966e-06],[3.5087618e-06],[4.9433989e-06],[6.9034502e-06],[9.5560063e-06],[1.3111652e-05],[1.7832429e-05],[2.4040149e-05],[3.212471e-05],[4.255189e-05],[5.5869993e-05],[7.2714592e-05],[9.3810479e-05],[0.0001199699],[0.00015208611],[0.00019112137],[0.0002380887],[0.00029402678],[0.0003599681],[0.00043690066],[0.00052572409],[0.00062720202],[0.00074191269],[0.00087020094],[0.0010121348],[0.0011674704],[0.0013356297],[0.0015156935],[0.0017064144],[0.0019062518],[0.0021134293],[0.0023260158],[0.0025420279],[0.0027595497],[0.0029768669],[0.0031926054],[0.0034058704],[0.0036163749],[0.0038245501],[0.0040316297],[0.004239701],[0.0044517168],[0.0046714663],[0.004903502],[0.0051530264],[0.0054257415],[0.0057276686],[0.0060649458],[0.0064436147],[0.0068694054],[0.0073475317],[0.0078825053],[0.0084779783],[0.00913662],[0.0098600335],[0.010648711],[0.011502033],[0.012418299],[0.013394794],[0.01442788],[0.015513104],[0.016645316],[0.017818791],[0.019027344],[0.020264441],[0.021523292],[0.022796932],[0.024078289],[0.02536024],[0.026635657],[0.027897441],[0.029138571],[0.030352131],[0.031531362],[0.032669704],[0.033760847],[0.034798787],[0.035777875],[0.036692865],[0.037538957],[0.03831182],[0.03900761],[0.039622967],[0.040155004],[0.040601277],[0.040959757],[0.0412288],[0.041407112],[0.041493743],[0.041488084],[0.041389888],[0.041199319],[0.040917012],[0.04054416],[0.04008261],[0.039534965],[0.038904683],[0.038196169],[0.037414842],[0.036567181],[0.035660735],[0.0347041],[0.033706857],[0.032679471],[0.031633154],[0.030579691],[0.029531241],[0.028500101],[0.027498457],[0.026538113],[0.025630211],[0.024784942],[0.024011263],[0.023316628],[0.022706734],[0.0221853],[0.021753891],[0.02141179],[0.021155939],[0.020980949],[0.020879184],[0.02084093],[0.020854641],[0.020907258],[0.020984594],[0.021071761],[0.021153641],[0.021215361],[0.021242763],[0.021222853],[0.021144189],[0.020997223],[0.020774552],[0.020471091],[0.020084156],[0.01961346],[0.019061014],[0.018430971],[0.017729386],[0.016963941],[0.016143623],[0.015278394],[0.014378842],[0.013455852],[0.012520287],[0.011582705],[0.010653111],[0.0097407437],[0.0088539148],[0.0079998858],[0.0071847904],[0.0064135963],[0.0056901041],[0.005016978],[0.004395804],[0.0038271705],[0.0033107659],[0.0028454887],[0.0024295644],[0.0020606664],[0.0017360351],[0.0014525941],[0.001207058],[0.00099603172],[0.00081609858],[0.0006638961],[0.00053617897],[0.00042986929],[0.00034209417],[0.00027021167],[0.000211826],[0.00016479343],[0.00012722012],[9.7453639e-05],[7.4069427e-05],[5.5853722e-05],[4.1784217e-05],[3.1009552e-05],[2.282859e-05],[1.6670228e-05],[1.2074316e-05],[8.6740695e-06],[6.1802288e-06],[4.3670736e-06],[3.0603054e-06],[2.1267298e-06],[1.4656123e-06],[1.0015484e-06],[6.7866965e-07],[4.5600232e-07],[3.0379946e-07],[2.0068188e-07],[1.3143805e-07],[8.5352662e-08],[5.4952544e-08],[3.5077258e-08],[2.2198491e-08],[1.3927546e-08],[8.6630906e-09],[5.3421054e-09],[3.2657881e-09],[1.979222e-09],[1.1891244e-09],[7.0824257e-10],[4.1817172e-10],[2.4476056e-10],[1.4201651e-10],[8.1685251e-11],[4.6574994e-11],[2.6324704e-11],[1.4749358e-11],[8.1917973e-12],[4.5100306e-12],[2.4613415e-12],[1.3315406e-12],[7.1404442e-13],[3.7956194e-13],[1.9999775e-13],[1.0446027e-13],[5.4082819e-14],[2.775546e-14],[1.4119433e-14],[7.1197499e-15],[3.5586871e-15],[1.7631591e-15],[8.6590249e-16],[4.2152312e-16],[2.0339861e-16],[9.7285474e-17],[4.6123346e-17],[2.1675333e-17],[1.0096767e-17],[4.6619753e-18],[2.1336744e-18],[9.6795777e-19],[4.3526558e-19],[1.9400883e-19],[8.5715143e-20],[3.7537223e-20],[1.6294271e-20],[7.0109297e-21],[2.9900877e-21],[1.2640365e-21],[5.2966635e-22],[2.1999462e-22],[9.0570842e-23],[3.6959938e-23],[1.4949971e-23],[5.9939844e-24],[2.3820826e-24],[9.3834784e-25],[3.6638406e-25],[1.4179954e-25],[5.4397448e-26],[2.068462e-26],[7.7961784e-27],[2.9126018e-27],[1.0785629e-27],[3.9589026e-28],[1.4403532e-28],[5.1943115e-29],[1.8567426e-29],[6.5786998e-30],[2.3104312e-30],[8.0428612e-31],[2.7751892e-31],[9.4915923e-32],[3.2177327e-32],[1.0812477e-32],[3.6013455e-33],[1.1889638e-33],[3.8907809e-34],[1.2620284e-34],[4.0575667e-35],[1.293083e-35],[4.0846161e-36],[1.2789107e-36],[3.9691117e-37],[1.2209854e-37],[3.7229886e-38],[1.1252188e-38],[3.3709031e-39],[1.0009666e-39],[2.9461637e-40],[8.5952431e-41],[2.4855553e-41],[7.1244713e-42],[2.0241645e-42],[5.7003683e-43],[1.591197e-43],[4.4025967e-44],[1.2074184e-44],[3.2822416e-45],[8.8439691e-46]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"January","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[2.838495e-44,1.0289775e-43,3.6973229e-43,1.3168391e-42,4.6488104e-42,1.6267273e-41,5.6422391e-41,1.939778e-40,6.6102267e-40,2.2327726e-39,7.4754342e-39,2.4808023e-38,8.1604047e-38,2.6606947e-37,8.5988858e-37,2.7545656e-36,8.7463705e-36,2.7527478e-35,8.5875399e-35,2.6554304e-34,8.1388842e-34,2.4726271e-33,7.4458825e-33,2.2224783e-32,6.5754078e-32,1.9282869e-31,5.6051136e-31,1.6149571e-30,4.6121279e-30,1.3055861e-29,3.6633084e-29,1.0188383e-28,2.8086707e-28,7.6746786e-28,2.0786596e-27,5.5804645e-27,1.4849818e-26,3.9168389e-26,1.0240333e-25,2.6537272e-25,6.8165128e-25,1.7355297e-24,4.3799145e-24,1.0956277e-23,2.7165907e-23,6.6765055e-23,1.6264398e-22,3.9272686e-22,9.3995487e-22,2.2299093e-21,5.2436199e-21,1.2221908e-20,2.8236484e-20,6.4661538e-20,1.4677269e-19,3.3022371e-19,7.364361e-19,1.6278924e-18,3.5668111e-18,7.7463717e-18,1.6675557e-17,3.5581659e-17,7.5255081e-17,1.5776449e-16,3.2782835e-16,6.7522351e-16,1.3785179e-15,2.7895945e-15,5.5954309e-15,1.1124739e-14,2.19235e-14,4.2824647e-14,8.2916603e-14,1.5913035e-13,3.0271111e-13,5.7077839e-13,1.0667693e-12,1.9762292e-12,3.628841e-12,6.6048417e-12,1.1915732e-11,2.130801e-11,3.7768428e-11,6.6355786e-11,1.1555602e-10,1.9946662e-10,3.4128075e-10,5.7878503e-10,9.7294152e-10,1.6211387e-09,2.6774268e-09,4.3830769e-09,7.1122116e-09,1.1439167e-08,1.8236787e-08,2.8818179e-08,4.5138706e-08,7.0080333e-08,1.0784693e-07,1.6450692e-07,2.4872843e-07,3.7276214e-07,5.5373695e-07,8.1534391e-07,1.1899922e-06,1.7215265e-06,2.4685966e-06,3.5087618e-06,4.9433989e-06,6.9034502e-06,9.5560063e-06,1.3111652e-05,1.7832429e-05,2.4040149e-05,3.212471e-05,4.255189e-05,5.5869993e-05,7.2714592e-05,9.3810479e-05,0.0001199699,0.00015208611,0.00019112137,0.0002380887,0.00029402678,0.0003599681,0.00043690066,0.00052572409,0.00062720202,0.00074191269,0.00087020094,0.0010121348,0.0011674704,0.0013356297,0.0015156935,0.0017064144,0.0019062518,0.0021134293,0.0023260158,0.0025420279,0.0027595497,0.0029768669,0.0031926054,0.0034058704,0.0036163749,0.0038245501,0.0040316297,0.004239701,0.0044517168,0.0046714663,0.004903502,0.0051530264,0.0054257415,0.0057276686,0.0060649458,0.0064436147,0.0068694054,0.0073475317,0.0078825053,0.0084779783,0.00913662,0.0098600335,0.010648711,0.011502033,0.012418299,0.013394794,0.01442788,0.015513104,0.016645316,0.017818791,0.019027344,0.020264441,0.021523292,0.022796932,0.024078289,0.02536024,0.026635657,0.027897441,0.029138571,0.030352131,0.031531362,0.032669704,0.033760847,0.034798787,0.035777875,0.036692865,0.037538957,0.03831182,0.03900761,0.039622967,0.040155004,0.040601277,0.040959757,0.0412288,0.041407112,0.041493743,0.041488084,0.041389888,0.041199319,0.040917012,0.04054416,0.04008261,0.039534965,0.038904683,0.038196169,0.037414842,0.036567181,0.035660735,0.0347041,0.033706857,0.032679471,0.031633154,0.030579691,0.029531241,0.028500101,0.027498457,0.026538113,0.025630211,0.024784942,0.024011263,0.023316628,0.022706734,0.0221853,0.021753891,0.02141179,0.021155939,0.020980949,0.020879184,0.02084093,0.020854641,0.020907258,0.020984594,0.021071761,0.021153641,0.021215361,0.021242763,0.021222853,0.021144189,0.020997223,0.020774552,0.020471091,0.020084156,0.01961346,0.019061014,0.018430971,0.017729386,0.016963941,0.016143623,0.015278394,0.014378842,0.013455852,0.012520287,0.011582705,0.010653111,0.0097407437,0.0088539148,0.0079998858,0.0071847904,0.0064135963,0.0056901041,0.005016978,0.004395804,0.0038271705,0.0033107659,0.0028454887,0.0024295644,0.0020606664,0.0017360351,0.0014525941,0.001207058,0.00099603172,0.00081609858,0.0006638961,0.00053617897,0.00042986929,0.00034209417,0.00027021167,0.000211826,0.00016479343,0.00012722012,9.7453639e-05,7.4069427e-05,5.5853722e-05,4.1784217e-05,3.1009552e-05,2.282859e-05,1.6670228e-05,1.2074316e-05,8.6740695e-06,6.1802288e-06,4.3670736e-06,3.0603054e-06,2.1267298e-06,1.4656123e-06,1.0015484e-06,6.7866965e-07,4.5600232e-07,3.0379946e-07,2.0068188e-07,1.3143805e-07,8.5352662e-08,5.4952544e-08,3.5077258e-08,2.2198491e-08,1.3927546e-08,8.6630906e-09,5.3421054e-09,3.2657881e-09,1.979222e-09,1.1891244e-09,7.0824257e-10,4.1817172e-10,2.4476056e-10,1.4201651e-10,8.1685251e-11,4.6574994e-11,2.6324704e-11,1.4749358e-11,8.1917973e-12,4.5100306e-12,2.4613415e-12,1.3315406e-12,7.1404442e-13,3.7956194e-13,1.9999775e-13,1.0446027e-13,5.4082819e-14,2.775546e-14,1.4119433e-14,7.1197499e-15,3.5586871e-15,1.7631591e-15,8.6590249e-16,4.2152312e-16,2.0339861e-16,9.7285474e-17,4.6123346e-17,2.1675333e-17,1.0096767e-17,4.6619753e-18,2.1336744e-18,9.6795777e-19,4.3526558e-19,1.9400883e-19,8.5715143e-20,3.7537223e-20,1.6294271e-20,7.0109297e-21,2.9900877e-21,1.2640365e-21,5.2966635e-22,2.1999462e-22,9.0570842e-23,3.6959938e-23,1.4949971e-23,5.9939844e-24,2.3820826e-24,9.3834784e-25,3.6638406e-25,1.4179954e-25,5.4397448e-26,2.068462e-26,7.7961784e-27,2.9126018e-27,1.0785629e-27,3.9589026e-28,1.4403532e-28,5.1943115e-29,1.8567426e-29,6.5786998e-30,2.3104312e-30,8.0428612e-31,2.7751892e-31,9.4915923e-32,3.2177327e-32,1.0812477e-32,3.6013455e-33,1.1889638e-33,3.8907809e-34,1.2620284e-34,4.0575667e-35,1.293083e-35,4.0846161e-36,1.2789107e-36,3.9691117e-37,1.2209854e-37,3.7229886e-38,1.1252188e-38,3.3709031e-39,1.0009666e-39,2.9461637e-40,8.5952431e-41,2.4855553e-41,7.1244713e-42,2.0241645e-42,5.7003683e-43,1.591197e-43,4.4025967e-44,1.2074184e-44,3.2822416e-45,8.8439691e-46],"zorder":1,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726],"zorder":2,"type":"scatter"},{"customdata":[[3.9443552e-27],[1.0535101e-26],[2.7891077e-26],[7.3190671e-26],[1.9037506e-25],[4.9082683e-25],[1.254326e-24],[3.1772872e-24],[7.9774932e-24],[1.985365e-23],[4.8975425e-23],[1.1975125e-22],[2.9023237e-22],[6.9722936e-22],[1.6602347e-21],[3.9185678e-21],[9.1674657e-21],[2.1258632e-20],[4.88636e-20],[1.1132681e-19],[2.514075e-19],[5.6275702e-19],[1.2486131e-18],[2.7459913e-18],[5.9859734e-18],[1.2934059e-17],[2.7701248e-17],[5.8806914e-17],[1.237434e-16],[2.5809549e-16],[5.3358493e-16],[1.0934315e-15],[2.2209796e-15],[4.4715971e-15],[8.9237212e-15],[1.7652031e-14],[3.4610582e-14],[6.7264947e-14],[1.2957899e-13],[2.4742663e-13],[4.6830049e-13],[8.7855577e-13],[1.6337322e-12],[3.0113383e-12],[5.5018109e-12],[9.9636757e-12],[1.7885526e-11],[3.1823832e-11],[5.6127066e-11],[9.8120972e-11],[1.7002843e-10],[2.9204657e-10],[4.9722642e-10],[8.3912869e-10],[1.4037057e-09],[2.3275425e-09],[3.8255531e-09],[6.2325676e-09],[1.0065078e-08],[1.6111872e-08],[2.5565544e-08],[4.0211091e-08],[6.269317e-08],[9.6890255e-08],[1.4843202e-07],[2.2540578e-07],[3.3930874e-07],[5.0631454e-07],[7.4893511e-07],[1.0981706e-06],[1.5962504e-06],[2.3000744e-06],[3.2854654e-06],[4.6523348e-06],[6.5308469e-06],[9.08863e-06],[1.2539038e-05],[1.7150391e-05],[2.3256033e-05],[3.126494e-05],[4.1672474e-05],[5.5070745e-05],[7.2157894e-05],[9.3745465e-05],[0.00012076294],[0.00015425839],[0.00019539422],[0.00024543699],[0.00030574048],[0.00037772126],[0.00046282667],[0.00056249504],[0.00067810907],[0.0008109433],[0.00096210759],[0.0011324887],[0.001322693],[0.001532993],[0.0017632812],[0.0020130345],[0.0022812915],[0.0025666457],[0.0028672564],[0.0031808767],[0.0035049],[0.003836423],[0.0041723233],[0.0045093473],[0.0048442075],[0.0051736819],[0.0054947146],[0.0058045119],[0.0061006316],[0.0063810631],[0.0066442967],[0.0068893823],[0.0071159772],[0.0073243842],[0.0075155828],[0.0076912539],[0.0078538002],[0.0080063646],[0.008152844],[0.0082979013],[0.0084469705],[0.0086062534],[0.0087827032],[0.0089839904],[0.0092184442],[0.0094949665],[0.0098229116],[0.010211931],[0.01067178],[0.011212087],[0.011842092],[0.012570361],[0.013404476],[0.014350731],[0.015413823],[0.016596576],[0.017899699],[0.019321582],[0.020858171],[0.022502897],[0.024246689],[0.026078055],[0.027983246],[0.029946478],[0.03195022],[0.033975523],[0.036002388],[0.03801015],[0.039977869],[0.041884714],[0.043710337],[0.045435212],[0.047040957],[0.048510611],[0.04982889],[0.050982397],[0.051959811],[0.052752032],[0.053352304],[0.053756308],[0.053962212],[0.053970698],[0.053784942],[0.053410555],[0.052855482],[0.052129846],[0.051245753],[0.05021704],[0.04905899],[0.047787997],[0.046421218],[0.044976195],[0.043470476],[0.041921246],[0.040344979],[0.038757118],[0.037171801],[0.035601644],[0.034057571],[0.032548715],[0.03108237],[0.029664003],[0.028297324],[0.026984392],[0.025725768],[0.024520698],[0.023367306],[0.022262818],[0.02120378],[0.020186276],[0.019206144],[0.01825917],[0.017341275],[0.016448673],[0.015578007],[0.014726456],[0.013891817],[0.013072552],[0.012267814],[0.011477432],[0.010701881],[0.0099422152],[0.0091999942],[0.0084771781],[0.0077760187],[0.007098941],[0.0064484223],[0.0058268759],[0.0052365412],[0.004679388],[0.0041570359],[0.0036706922],[0.0032211104],[0.0028085693],[0.0024328719],[0.0020933633],[0.0017889643],[0.0015182194],[0.0012793536],[0.0010703369],[0.00088895093],[0.0007328565],[0.00059965721],[0.00048695826],[0.00039241804],[0.00031379134],[0.00024896371],[0.00019597674],[0.00015304482],[0.00011856385],[9.1113162e-05],[6.9451615e-05],[5.2509109e-05],[3.9374776e-05],[2.9282899e-05],[2.1597585e-05],[1.5797023e-05],[1.1458007e-05],[8.2412414e-06],[5.8777715e-06],[4.1567801e-06],[2.9148368e-06],[2.0266264e-06],[1.3970935e-06],[9.5490557e-07],[6.4709785e-07],[4.3475654e-07],[2.8958865e-07],[1.9123585e-07],[1.2519963e-07],[8.1260009e-08],[5.2285976e-08],[3.3352086e-08],[2.1090432e-08],[1.3221119e-08],[8.2161273e-09],[5.0614913e-09],[3.0909978e-09],[1.8712186e-09],[1.1229306e-09],[6.6800712e-10],[3.9391855e-10],[2.3026425e-10],[1.3342558e-10],[7.6637642e-11],[4.3634867e-11],[2.4627022e-11],[1.3777651e-11],[7.6405038e-12],[4.2000156e-12],[2.288551e-12],[1.2360892e-12],[6.6178583e-13],[3.5120644e-13],[1.8474975e-13],[9.6334248e-14],[4.9791156e-14],[2.5509242e-14],[1.2954363e-14],[6.5208919e-15],[3.2536422e-15],[1.6091771e-15],[7.8887582e-16],[3.8333959e-16],[1.8464114e-16],[8.815412e-17],[4.1718215e-17],[1.9569395e-17],[9.0990765e-18],[4.1935823e-18],[1.915758e-18],[8.6748802e-19],[3.8936188e-19],[1.7322487e-19],[7.6389509e-20],[3.3390555e-20],[1.4467045e-20],[6.2130106e-21],[2.6447845e-21],[1.1159488e-21],[4.6672803e-22],[1.9348576e-22],[7.9505928e-23],[3.2382867e-23],[1.3073632e-23],[5.2316932e-24],[2.0751681e-24],[8.1588546e-25],[3.1795812e-25],[1.2282179e-25],[4.7026817e-26],[1.7847623e-26],[6.7139754e-27],[2.5034771e-27],[9.2527741e-28],[3.3897269e-28],[1.2308974e-28],[4.4304037e-29],[1.5806258e-29],[5.5895786e-30],[1.9592656e-30],[6.807251e-31],[2.3443064e-31],[8.0024163e-32],[2.7076469e-32],[9.0808606e-33],[3.0187425e-33],[9.9469331e-34],[3.2487505e-34],[1.051738e-34],[3.3749143e-35],[1.0734503e-35],[3.3842709e-36],[1.0575776e-36],[3.2758451e-37],[1.0057694e-37],[3.0608172e-38],[9.2329462e-39],[2.7606232e-39],[8.1815931e-40],[2.4034358e-40],[6.9982759e-41],[2.0198238e-41],[5.7782962e-42],[1.6385134e-42],[4.605365e-43],[1.2830453e-43],[3.543103e-44],[9.6981619e-45],[2.6312307e-45],[7.0760728e-46],[1.8862076e-46],[4.9836846e-47],[1.3051951e-47],[3.388162e-48],[8.7179974e-49],[2.2234795e-49],[5.6209972e-50],[1.4085019e-50],[3.4983666e-51],[8.6126547e-52],[2.1017089e-52],[5.0836066e-53],[1.2188075e-53],[2.8964239e-54],[6.8226477e-55],[1.5929699e-55],[3.6866002e-56],[8.4568438e-57],[1.9228898e-57],[4.3337544e-58],[9.6813965e-59],[2.1437569e-59],[4.7051867e-60],[1.0236277e-60],[2.2073488e-61],[4.7180629e-62],[9.9958632e-63],[2.0991365e-63],[4.3694309e-64],[9.0151482e-65],[1.8436763e-65],[3.73732e-66],[7.5093043e-67],[1.4955569e-67],[2.9523644e-68],[5.776979e-69],[1.1204576e-69],[2.1540406e-70],[4.10465e-71],[7.7528643e-72],[1.4514833e-72],[2.6935541e-73],[4.9545381e-74],[9.0332585e-75],[1.6324862e-75]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"February","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164725,-0.018164725,-0.018164725,-0.018164724,-0.018164723,-0.018164722,-0.01816472,-0.018164716,-0.01816471,-0.0181647,-0.018164686,-0.018164663,-0.018164629,-0.018164577,-0.0181645,-0.018164386,-0.018164219,-0.018163977,-0.018163628,-0.01816313,-0.018162426,-0.01816144,-0.018160073,-0.018158195,-0.018155637,-0.018152187,-0.018147575,-0.01814147,-0.018133461,-0.018123053,-0.018109655,-0.018092568,-0.01807098,-0.018043963,-0.018010467,-0.017969332,-0.017919289,-0.017858985,-0.017787005,-0.017701899,-0.017602231,-0.017486617,-0.017353782,-0.017202618,-0.017032237,-0.016842033,-0.016631733,-0.016401445,-0.016151691,-0.015883434,-0.01559808,-0.015297469,-0.014983849,-0.014659826,-0.014328303,-0.013992403,-0.013655378,-0.013320518,-0.012991044,-0.012670011,-0.012360214,-0.012064094,-0.011783663,-0.011520429,-0.011275343,-0.011048749,-0.010840342,-0.010649143,-0.010473472,-0.010310926,-0.010158361,-0.010011882,-0.0098668244,-0.0097177553,-0.0095584724,-0.0093820225,-0.0091807354,-0.0089462816,-0.0086697593,-0.0083418141,-0.0079527946,-0.0074929459,-0.0069526391,-0.0063226336,-0.0055943648,-0.0047602493,-0.003813995,-0.0027509031,-0.0015681493,-0.00026502718,0.0011568559,0.0026934448,0.0043381713,0.0060819632,0.0079133297,0.0098185207,0.011781753,0.013785494,0.015810797,0.017837662,0.019845424,0.021813143,0.023719989,0.025545611,0.027270487,0.028876231,0.030345885,0.031664164,0.032817672,0.033795085,0.034587306,0.035187578,0.035591582,0.035797487,0.035805973,0.035620216,0.03524583,0.034690756,0.03396512,0.033081027,0.032052314,0.030894264,0.029623271,0.028256492,0.026811469,0.02530575,0.02375652,0.022180254,0.020592392,0.019007075,0.017436918,0.015892845,0.01438399,0.012917644,0.011499277,0.010132598,0.0088196658,0.0075610427,0.0063559718,0.0052025799,0.0040980923,0.0030390543,0.0020215506,0.0010414178,9.444372e-05,-0.00082345096,-0.0017160525,-0.0025867186,-0.0034382696,-0.004272909,-0.0050921734,-0.0058969116,-0.0066872934,-0.0074628453,-0.0082225106,-0.0089647316,-0.0096875477,-0.010388707,-0.011065785,-0.011716303,-0.01233785,-0.012928185,-0.013485338,-0.01400769,-0.014494034,-0.014943615,-0.015356156,-0.015731854,-0.016071363,-0.016375761,-0.016646506,-0.016885372,-0.017094389,-0.017275775,-0.017431869,-0.017565069,-0.017677768,-0.017772308,-0.017850934,-0.017915762,-0.017968749,-0.018011681,-0.018046162,-0.018073613,-0.018095274,-0.018112217,-0.018125351,-0.018135443,-0.018143128,-0.018148929,-0.018153268,-0.018156485,-0.018158848,-0.018160569,-0.018161811,-0.018162699,-0.018163329,-0.018163771,-0.018164079,-0.018164291,-0.018164436,-0.018164535,-0.018164601,-0.018164645,-0.018164673,-0.018164692,-0.018164705,-0.018164713,-0.018164718,-0.018164721,-0.018164723,-0.018164724,-0.018164725,-0.018164725,-0.018164725,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726],"zorder":2,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726],"zorder":3,"type":"scatter"},{"customdata":[[4.6812804e-57],[2.0479374e-56],[8.8803996e-56],[3.8169119e-55],[1.6261312e-54],[6.8669329e-54],[2.8743116e-53],[1.1925283e-52],[4.9041904e-52],[1.9990781e-51],[8.0771102e-51],[3.2347897e-50],[1.2841031e-49],[5.0526308e-49],[1.9706024e-48],[7.618058e-48],[2.9191293e-47],[1.108731e-46],[4.1741002e-46],[1.5576266e-45],[5.7613946e-45],[2.1123005e-44],[7.676223e-44],[2.7650518e-43],[9.8724005e-43],[3.4938645e-42],[1.2256124e-41],[4.2615155e-41],[1.4687192e-40],[5.0173836e-40],[1.6989462e-39],[5.7022436e-39],[1.8970366e-38],[6.255607e-38],[2.0446879e-37],[6.6244281e-37],[2.1273237e-36],[6.7714638e-36],[2.136463e-35],[6.6814694e-35],[2.0711541e-34],[6.3638021e-34],[1.9381382e-33],[5.8508184e-33],[1.7507024e-32],[5.1924444e-32],[1.5264944e-31],[4.4481804e-31],[1.2847937e-30],[3.6783093e-30],[1.0438232e-29],[2.9360906e-29],[8.1860767e-29],[2.2622782e-28],[6.1969797e-28],[1.6825888e-27],[4.5283477e-27],[1.2079958e-26],[3.1941472e-26],[8.3715973e-26],[2.1748315e-25],[5.6002422e-25],[1.4293938e-24],[3.6162705e-24],[9.0684665e-24],[2.2540873e-23],[5.5535613e-23],[1.3562395e-22],[3.2829569e-22],[7.8769481e-22],[1.8733323e-21],[4.4160675e-21],[1.0318597e-20],[2.3898449e-20],[5.4863423e-20],[1.2484187e-19],[2.8158e-19],[6.2951721e-19],[1.3950112e-18],[3.0641647e-18],[6.6713067e-18],[1.4397071e-17],[3.0796539e-17],[6.5297154e-17],[1.3723069e-16],[2.8587291e-16],[5.9028207e-16],[1.2081229e-15],[2.4509121e-15],[4.9284405e-15],[9.8232826e-15],[1.9407485e-14],[3.8005593e-14],[7.3772012e-14],[1.4193902e-13],[2.7069377e-13],[5.1170687e-13],[9.588067e-13],[1.7807707e-12],[3.278328e-12],[5.9822514e-12],[1.0820446e-11],[1.9399674e-11],[3.4475684e-11],[6.0729704e-11],[1.0603759e-10],[1.8352263e-10],[3.14841e-10],[5.3538432e-10],[9.0243024e-10],[1.5077742e-09],[2.4970934e-09],[4.0993059e-09],[6.6705917e-09],[1.0759657e-08],[1.7203398e-08],[2.7265515e-08],[4.2835018e-08],[6.6707142e-08],[1.029761e-07],[1.5757749e-07],[2.3902799e-07],[3.5942125e-07],[5.3575113e-07],[7.9164633e-07],[1.1596127e-06],[1.6838904e-06],[2.42404e-06],[3.4593746e-06],[4.8943461e-06],[6.864981e-06],[9.5464256e-06],[1.3161618e-05],[1.7991035e-05],[2.4383389e-05],[3.2767029e-05],[4.3661706e-05],[5.7690231e-05],[7.558941e-05],[9.8219555e-05],[0.00012657176],[0.00016177206],[0.00020508162],[0.00025789217],[0.00032171597],[0.00039816991],[0.00048895351],[0.00059582117],[0.00072054909],[0.00086489802],[0.0010305731],[0.0012191828],[0.001432198],[0.0016709149],[0.0019364212],[0.0022295693],[0.002550956],[0.0029009105],[0.0032794883],[0.0036864726],[0.0041213797],[0.0045834666],[0.0050717387],[0.0055849556],[0.0061216325],[0.0066800352],[0.0072581715],[0.0078537755],[0.0084642913],[0.0090868569],[0.0097182927],[0.010355101],[0.010993481],[0.01162936],[0.012258455],[0.012876348],[0.013478601],[0.014060881],[0.014619111],[0.015149633],[0.015649371],[0.016115996],[0.016548064],[0.016945138],[0.017307866],[0.017638022],[0.017938484],[0.018213172],[0.018466917],[0.018705283],[0.018934342],[0.019160401],[0.019389712],[0.019628159],[0.019880948],[0.020152317],[0.020445279],[0.020761417],[0.02110074],[0.021461626],[0.021840846],[0.022233675],[0.022634107],[0.02303514],[0.02342915],[0.023808306],[0.024165038],[0.024492503],[0.024785045],[0.025038602],[0.025251046],[0.025422424],[0.025555077],[0.02565363],[0.025724837],[0.025777286],[0.025820971],[0.025866752],[0.02592573],[0.026008566],[0.026124789],[0.026282132],[0.026485939],[0.026738685],[0.027039643],[0.027384729],[0.02776654],[0.028174589],[0.028595743],[0.029014831],[0.029415397],[0.029780554],[0.030093901],[0.030340424],[0.030507353],[0.030584892],[0.0305668],[0.030450763],[0.030238548],[0.029935906],[0.029552252],[0.029100121],[0.028594442],[0.028051676],[0.027488866],[0.026922673],[0.026368439],[0.025839354],[0.025345765],[0.024894678],[0.024489469],[0.024129827],[0.023811923],[0.023528778],[0.023270822],[0.023026574],[0.02278342],[0.022528417],[0.022249092],[0.021934162],[0.021574156],[0.021161898],[0.020692825],[0.020165139],[0.019579795],[0.018940328],[0.01825255],[0.017524146],[0.016764199],[0.01598267],[0.015189886],[0.014396049],[0.013610802],[0.012842871],[0.01209979],[0.011387728],[0.010711403],[0.010074091],[0.0094777098],[0.0089229699],[0.0084095653],[0.0079363965],[0.0075018007],[0.0071037742],[0.0067401712],[0.0064088683],[0.0061078854],[0.0058354586],[0.0055900663],[0.0053704095],[0.005175355],[0.0050038495],[0.0048548173],[0.0047270509],[0.0046191104],[0.0045292386],[0.0044553048],[0.0043947809],[0.0043447552],[0.0043019839],[0.0042629777],[0.0042241172],[0.0041817904],[0.0041325405],[0.0040732162],[0.0040011105],[0.0039140819],[0.0038106468],[0.0036900385],[0.0035522295],[0.0033979157],[0.0032284646],[0.0030458322],[0.0028524542],[0.0026511197],[0.0024448348],[0.0022366853],[0.0020297061],[0.0018267632],[0.0016304544],[0.0014430326],[0.0012663524],[0.0011018408],[0.00095049131],[0.00081287762],[0.00068918458],[0.0005792518],[0.0004826261],[0.00039861865],[0.00032636309],[0.00026487162],[0.00021308661],[0.0001699258],[0.00013432034],[0.00010524484],[8.1739934e-05],[6.2927479e-05],[4.8019482e-05],[3.6321556e-05],[2.7232042e-05],[2.023783e-05],[1.4907846e-05],[1.0885101e-05],[7.8780046e-06],[5.6515261e-06],[4.0186545e-06],[2.8324401e-06],[1.9788174e-06],[1.3702992e-06],[9.4056687e-07],[6.3992396e-07],[4.3155027e-07],[2.8846867e-07],[1.9113053e-07],[1.2552366e-07],[8.1711872e-08],[5.2724046e-08],[3.3720676e-08],[2.1377049e-08],[1.3432695e-08],[8.366474e-09],[5.1651823e-09],[3.1607686e-09],[1.9171832e-09],[1.1526524e-09],[6.8690545e-10],[4.057508e-10],[2.3756674e-10],[1.3787189e-10],[7.9310304e-11],[4.5221746e-11],[2.5558117e-11],[1.4317731e-11],[7.9502968e-12],[4.3757883e-12],[2.3872234e-12],[1.2909031e-12],[6.9192339e-13],[3.6760905e-13],[1.9358789e-13],[1.0104945e-13],[5.2282165e-14],[2.6812478e-14],[1.3629633e-14],[6.8674445e-15],[3.4298092e-15],[1.6978862e-15],[8.3312656e-16],[4.0520724e-16],[1.9534721e-16],[9.3347141e-17],[4.4213881e-17],[2.075774e-17],[9.6597365e-18],[4.4556832e-18],[2.0371693e-18],[9.2321692e-19],[4.1470969e-19],[1.8464962e-19],[8.1492275e-20]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"February","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164725,-0.018164725,-0.018164725,-0.018164724,-0.018164723,-0.018164722,-0.018164719,-0.018164715,-0.018164709,-0.018164699,-0.018164683,-0.018164659,-0.018164623,-0.018164568,-0.018164487,-0.018164366,-0.01816419,-0.018163934,-0.018163566,-0.018163042,-0.018162302,-0.018161266,-0.018159831,-0.018157861,-0.018155179,-0.018151564,-0.018146735,-0.018140342,-0.018131959,-0.018121064,-0.018107036,-0.018089136,-0.018066506,-0.018038154,-0.018002954,-0.017959644,-0.017906834,-0.01784301,-0.017766556,-0.017675772,-0.017568905,-0.017444177,-0.017299828,-0.017134153,-0.016945543,-0.016732528,-0.016493811,-0.016228305,-0.015935157,-0.01561377,-0.015263815,-0.014885238,-0.014478253,-0.014043346,-0.013581259,-0.013092987,-0.01257977,-0.012043093,-0.011484691,-0.010906554,-0.01031095,-0.0097004344,-0.0090778689,-0.0084464331,-0.0078096246,-0.0071712449,-0.0065353655,-0.0059062712,-0.0052883778,-0.0046861248,-0.0041038451,-0.003545615,-0.0030150932,-0.0025153543,-0.0020487294,-0.0016166614,-0.0012195877,-0.0008568593,-0.00052670413,-0.00022624193,4.8445944e-05,0.00030219087,0.00054055751,0.00076961619,0.00099567551,0.0012249867,0.0014634333,0.001716222,0.001987591,0.0022805534,0.0025966908,0.0029360141,0.0032969007,0.00367612,0.0040689493,0.0044693809,0.0048704146,0.0052644239,0.00564358,0.0060003118,0.0063277772,0.0066203193,0.0068738764,0.0070863206,0.0072576982,0.0073903511,0.0074889042,0.0075601116,0.0076125606,0.0076562453,0.0077020263,0.0077610042,0.0078438402,0.0079600634,0.0081174065,0.0083212136,0.0085739594,0.0088749175,0.0092200037,0.0096018139,0.010009863,0.010431017,0.010850106,0.011250671,0.011615828,0.011929175,0.012175699,0.012342627,0.012420166,0.012402074,0.012286038,0.012073822,0.01177118,0.011387526,0.010935395,0.010429716,0.0098869498,0.0093241403,0.0087579474,0.0082037137,0.0076746285,0.0071810397,0.0067299525,0.0063247432,0.0059651015,0.0056471968,0.0053640523,0.0051060963,0.0048618484,0.0046186938,0.0043636914,0.0040843665,0.0037694363,0.0034094306,0.0029971725,0.0025280991,0.0020004136,0.0014150697,0.00077560198,8.7823728e-05,-0.00064057938,-0.0014005265,-0.0021820555,-0.0029748398,-0.0037686772,-0.0045539239,-0.0053218549,-0.0060649353,-0.0067769973,-0.0074533227,-0.0080906351,-0.008687016,-0.0092417559,-0.0097551605,-0.010228329,-0.010662925,-0.011060952,-0.011424555,-0.011755857,-0.01205684,-0.012329267,-0.012574659,-0.012794316,-0.012989371,-0.013160876,-0.013309908,-0.013437675,-0.013545615,-0.013635487,-0.013709421,-0.013769945,-0.013819971,-0.013862742,-0.013901748,-0.013940609,-0.013982935,-0.014032185,-0.01409151,-0.014163615,-0.014250644,-0.014354079,-0.014474687,-0.014612496,-0.01476681,-0.014936261,-0.015118894,-0.015312272,-0.015513606,-0.015719891,-0.01592804,-0.01613502,-0.016337963,-0.016534271,-0.016721693,-0.016898373,-0.017062885,-0.017214234,-0.017351848,-0.017475541,-0.017585474,-0.0176821,-0.017766107,-0.017838363,-0.017899854,-0.017951639,-0.0179948,-0.018030405,-0.018059481,-0.018082986,-0.018101798,-0.018116706,-0.018128404,-0.018137494,-0.018144488,-0.018149818,-0.018153841,-0.018156848,-0.018159074,-0.018160707,-0.018161893,-0.018162747,-0.018163355,-0.018163785,-0.018164086,-0.018164294,-0.018164437,-0.018164535,-0.0181646,-0.018164644,-0.018164673,-0.018164692,-0.018164704,-0.018164712,-0.018164717,-0.018164721,-0.018164723,-0.018164724,-0.018164725,-0.018164725,-0.018164725,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726],"zorder":3,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452],"zorder":4,"type":"scatter"},{"customdata":[[5.7655685e-44],[2.0908313e-43],[7.5155956e-43],[2.6777835e-42],[9.4570411e-42],[3.3105711e-41],[1.1487314e-40],[3.9509553e-40],[1.3469574e-39],[4.5517023e-39],[1.524622e-38],[5.0619628e-38],[1.6658822e-37],[5.4342337e-37],[1.7571188e-36],[5.6316136e-36],[1.7890959e-35],[5.6338274e-35],[1.7585016e-34],[5.4406578e-34],[1.6685131e-33],[5.0719802e-33],[1.5282532e-32],[4.5643934e-32],[1.3512664e-31],[3.9652374e-31],[1.1533679e-30],[3.3253486e-30],[9.5033621e-30],[2.6920824e-29],[7.5591084e-29],[2.1038953e-28],[5.8042915e-28],[1.5872525e-27],[4.3024391e-27],[1.155994e-26],[3.0787099e-26],[8.1274538e-26],[2.1267333e-25],[5.5162581e-25],[1.4182388e-24],[3.614329e-24],[9.1301885e-24],[2.2861558e-23],[5.6742206e-23],[1.3959864e-22],[3.4043251e-22],[8.2291702e-22],[1.9717713e-21],[4.6830938e-21],[1.102517e-20],[2.5728488e-20],[5.9514126e-20],[1.3645928e-19],[3.1014425e-19],[6.9871874e-19],[1.5603409e-18],[3.4539453e-18],[7.5786308e-18],[1.6483364e-17],[3.5537038e-17],[7.5944689e-17],[1.6087736e-16],[3.3781143e-16],[7.03131e-16],[1.4507121e-15],[2.9669481e-15],[6.0148259e-15],[1.2087077e-14],[2.4077163e-14],[4.7541837e-14],[9.305378e-14],[1.8054287e-13],[3.4722886e-13],[6.6197469e-13],[1.2510021e-12],[2.3435102e-12],[4.3517995e-12],[8.0106049e-12],[1.4616971e-11],[2.6439082e-11],[4.740604e-11],[8.4259864e-11],[1.4845989e-10],[2.5929879e-10],[4.489485e-10],[7.7054697e-10],[1.3110227e-09],[2.21122e-09],[3.6971453e-09],[6.1279654e-09],[1.0068943e-08],[1.6401059e-08],[2.6483983e-08],[4.2395639e-08],[6.7280444e-08],[1.0584975e-07],[1.6509275e-07],[2.5527446e-07],[3.9132027e-07],[5.9471326e-07],[8.9606243e-07],[1.3385349e-06],[1.9823841e-06],[2.9108433e-06],[4.2376939e-06],[6.1168434e-06],[8.7542722e-06],[1.2422704e-05],[1.7479331e-05],[2.4386862e-05],[3.3738066e-05],[4.6283812e-05],[6.2964417e-05],[8.4943828e-05],[0.00011364584],[0.00015079122],[0.00019843408],[0.00025899562],[0.0003352928],[0.00043055926],[0.0005484555],[0.00069306546],[0.00086887636],[0.0010807395],[0.0013338097],[0.0016334626],[0.0019851895],[0.0023944703],[0.0028666282],[0.0034066687],[0.0040191087],[0.0047078019],[0.0054757668],[0.006325026],[0.0072564629],[0.0082697033],[0.0093630283],[0.010533323],[0.011776061],[0.013085336],[0.014453924],[0.015873388],[0.017334216],[0.018825991],[0.020337577],[0.021857336],[0.023373351],[0.024873659],[0.026346494],[0.027780527],[0.029165101],[0.030490466],[0.031747995],[0.032930389],[0.03403185],[0.035048232],[0.035977143],[0.036818006],[0.037572058],[0.038242288],[0.0388333],[0.039351108],[0.039802863],[0.040196507],[0.040540386],[0.040842817],[0.041111639],[0.041353776],[0.041574823],[0.041778696],[0.041967353],[0.04214063],[0.042296175],[0.042429523],[0.042534285],[0.042602461],[0.042624862],[0.042591606],[0.042492677],[0.04231851],[0.042060564],[0.04171186],[0.041267441],[0.040724743],[0.040083846],[0.039347588],[0.038521553],[0.037613918],[0.036635178],[0.035597762],[0.034515556],[0.033403375],[0.032276388],[0.031149541],[0.030037003],[0.028951651],[0.027904632],[0.026905004],[0.025959485],[0.025072302],[0.024245158],[0.023477311],[0.022765746],[0.022105444],[0.021489726],[0.020910644],[0.020359417],[0.019826869],[0.019303865],[0.01878171],[0.018252509],[0.01770946],[0.017147077],[0.016561341],[0.015949771],[0.01531142],[0.014646809],[0.013957803],[0.013247442],[0.01251974],[0.01177947],[0.011031936],[0.010282755],[0.009537651],[0.0088022647],[0.0080819951],[0.0073818622],[0.0067063999],[0.0060595758],[0.0054447373],[0.0048645803],[0.0043211395],[0.0038157966],[0.0033493046],[0.0029218242],[0.0025329717],[0.0021818746],[0.0018672338],[0.0015873899],[0.0013403911],[0.0011240626],[0.00093607257],[0.00077399684],[0.00063537722],[0.00051777474],[0.00041881553],[0.00033622914],[0.00026787902],[0.00021178492],[0.00016613792],[0.00012930831],[9.9847376e-05],[7.6483908e-05],[5.8116481e-05],[4.38025e-05],[3.2745011e-05],[2.4278177e-05],[1.7852183e-05],[1.3018233e-05],[9.4141444e-06],[6.7508997e-06],[4.8004242e-06],[3.3847069e-06],[2.3663196e-06],[1.6403066e-06],[1.1273669e-06],[7.6821768e-07],[5.1900681e-07],[3.476348e-07],[2.3084858e-07],[1.5197701e-07],[9.9190228e-08],[6.4179185e-08],[4.1166919e-08],[2.617739e-08],[1.6501504e-08],[1.0311828e-08],[6.3879101e-09],[3.9227384e-09],[2.3879431e-09],[1.4409856e-09],[8.6197271e-10],[5.1112015e-10],[3.0043167e-10],[1.7504892e-10],[1.0110256e-10],[5.7883126e-11],[3.284938e-11],[1.8479327e-11],[1.0304512e-11],[5.6957332e-12],[3.1206965e-12],[1.6948527e-12],[9.1240953e-13],[4.8688245e-13],[2.5753364e-13],[1.3502634e-13],[7.017411e-14],[3.6150017e-14],[1.8459188e-14],[9.3430471e-15],[4.6874406e-15],[2.3310617e-15],[1.1490582e-15],[5.6143579e-16],[2.7191147e-16],[1.3053408e-16],[6.2113921e-17],[2.9296938e-17],[1.3696938e-17],[6.3473491e-18],[2.915605e-18],[1.3274926e-18],[5.9910432e-19],[2.6800289e-19],[1.1883462e-19],[5.2229131e-20],[2.2753527e-20],[9.8254085e-21],[4.2055066e-21],[1.7842335e-21],[7.5032704e-22],[3.1276268e-22],[1.2922441e-22],[5.2922385e-23],[2.1483219e-23],[8.6441902e-24],[3.4475788e-24],[1.3629156e-24],[5.3405807e-25],[2.0743055e-25],[7.9858585e-26],[3.0474395e-26],[1.1526915e-26],[4.3217099e-27],[1.6060629e-27],[5.9160781e-28],[2.1600788e-28],[7.8175308e-29],[2.8043608e-29],[9.9715446e-30],[3.5144324e-30],[1.2277562e-30],[4.2514125e-31],[1.4592123e-31],[4.9644125e-32],[1.6740997e-32],[5.5957569e-33],[1.8539603e-33],[6.0884402e-34],[1.9818724e-34],[6.3945403e-35],[2.0450643e-35],[6.4828891e-36],[2.0370148e-36],[6.3443001e-37],[1.9585615e-37],[5.9931428e-38],[1.8177576e-38],[5.4648876e-39],[1.6285099e-39],[4.810204e-40],[1.4083171e-40],[4.0869688e-41],[1.1756176e-41],[3.3519281e-42],[9.4729925e-43],[2.6536495e-43],[7.3682403e-44],[2.0279062e-44],[5.5321737e-45],[1.4959173e-45],[4.0094355e-46],[1.0651793e-46],[2.804956e-47],[7.3213844e-48],[1.8941929e-48],[4.8575698e-49],[1.2347463e-49],[3.1110015e-50],[7.7693831e-51],[1.9232542e-51],[4.7190075e-52],[1.1477002e-52],[2.7667511e-53],[6.6111274e-54],[1.5658306e-54],[3.67602e-55],[8.5541086e-56],[1.9730381e-56],[4.5108667e-57],[1.0222293e-57],[2.2961512e-58],[5.1123013e-59],[1.1282263e-59],[2.4679696e-60],[5.3511509e-61],[1.1500544e-61],[2.4499285e-62]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"March","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.03632945,-0.036329449,-0.036329448,-0.036329445,-0.036329441,-0.036329435,-0.036329425,-0.036329409,-0.036329384,-0.036329346,-0.036329286,-0.036329196,-0.03632906,-0.036328857,-0.036328555,-0.036328113,-0.036327469,-0.036326541,-0.036325214,-0.036323335,-0.036320697,-0.036317029,-0.036311972,-0.036305065,-0.036295713,-0.036283168,-0.036266487,-0.036244508,-0.036215806,-0.03617866,-0.036131017,-0.036070456,-0.035994159,-0.035898892,-0.035780996,-0.035636386,-0.035460575,-0.035248712,-0.034995642,-0.034695989,-0.034344262,-0.033934981,-0.033462823,-0.032922783,-0.032310343,-0.03162165,-0.030853685,-0.030004426,-0.029072989,-0.028059748,-0.026966423,-0.025796129,-0.02455339,-0.023244115,-0.021875528,-0.020456064,-0.018995235,-0.017503461,-0.015991875,-0.014472115,-0.0129561,-0.011455792,-0.0099829571,-0.0085489248,-0.007164351,-0.0058389861,-0.0045814564,-0.0033990624,-0.0022976011,-0.0012812197,-0.00035230902,0.00048855397,0.0012426066,0.0019128368,0.0025038486,0.0030216569,0.0034734113,0.0038670554,0.0042109345,0.0045133651,0.0047821875,0.0050243246,0.0052453719,0.0054492442,0.0056379018,0.0058111784,0.0059667237,0.0061000716,0.0062048331,0.0062730098,0.0062954109,0.0062621545,0.0061632256,0.0059890585,0.0057311128,0.0053824082,0.0049379891,0.0043952918,0.0037543943,0.0030181361,0.0021921009,0.0012844662,0.00030572662,-0.00073169003,-0.0018138956,-0.0029260763,-0.0040530634,-0.0051799102,-0.0062924487,-0.0073778007,-0.0084248199,-0.0094244473,-0.010369967,-0.01125715,-0.012084293,-0.01285214,-0.013563705,-0.014224007,-0.014839726,-0.015418808,-0.015970035,-0.016502583,-0.017025587,-0.017547742,-0.018076942,-0.018619992,-0.019182375,-0.01976811,-0.020379681,-0.021018032,-0.021682643,-0.022371649,-0.02308201,-0.023809711,-0.024549981,-0.025297515,-0.026046696,-0.026791801,-0.027527187,-0.028247456,-0.028947589,-0.029623052,-0.030269876,-0.030884714,-0.031464871,-0.032008312,-0.032513655,-0.032980147,-0.033407627,-0.03379648,-0.034147577,-0.034462218,-0.034742062,-0.03498906,-0.035205389,-0.035393379,-0.035555455,-0.035694074,-0.035811677,-0.035910636,-0.035993222,-0.036061573,-0.036117667,-0.036163314,-0.036200143,-0.036229604,-0.036252968,-0.036271335,-0.036285649,-0.036296707,-0.036305173,-0.036311599,-0.036316433,-0.036320037,-0.036322701,-0.036324651,-0.036326067,-0.036327085,-0.036327811,-0.036328324,-0.036328683,-0.036328933,-0.036329104,-0.036329221,-0.0363293,-0.036329352,-0.036329387,-0.03632941,-0.036329425,-0.036329435,-0.036329441,-0.036329445,-0.036329448,-0.036329449,-0.03632945,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452],"zorder":4,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452],"zorder":5,"type":"scatter"},{"customdata":[[1.7309323e-85],[1.0772002e-84],[6.6447181e-84],[4.0627538e-83],[2.462228e-82],[1.4791077e-81],[8.8071453e-81],[5.1979765e-80],[3.0408659e-79],[1.7632912e-78],[1.0134786e-77],[5.773896e-77],[3.2605219e-76],[1.8250261e-75],[1.0125462e-74],[5.5683232e-74],[3.0352734e-73],[1.6399666e-72],[8.7828603e-72],[4.6623058e-71],[2.4531796e-70],[1.2794453e-69],[6.6142093e-69],[3.3892057e-68],[1.7213997e-67],[8.6662126e-67],[4.3245482e-66],[2.1390255e-65],[1.048709e-64],[5.096333e-64],[2.454847e-63],[1.1720735e-62],[5.546884e-62],[2.601999e-61],[1.2098429e-60],[5.5758955e-60],[2.5472061e-59],[1.1533931e-58],[5.1767169e-58],[2.3030072e-57],[1.0155469e-56],[4.4388295e-56],[1.9230951e-55],[8.2584182e-55],[3.5152546e-54],[1.4831344e-53],[6.2025183e-53],[2.5711026e-52],[1.056415e-51],[4.3024272e-51],[1.736826e-50],[6.9496498e-50],[2.7563435e-49],[1.0835964e-48],[4.2224607e-48],[1.6309005e-47],[6.24386e-47],[2.3694234e-46],[8.9124271e-46],[3.3228684e-45],[1.227988e-44],[4.4982016e-44],[1.6332307e-43],[5.8778704e-43],[2.0967966e-42],[7.4140656e-42],[2.598486e-41],[9.0270987e-41],[3.108421e-40],[1.060951e-39],[3.5893406e-39],[1.2036435e-38],[4.0007822e-38],[1.3181226e-37],[4.304578e-37],[1.3933789e-36],[4.470661e-36],[1.4217988e-35],[4.4819644e-35],[1.4004338e-34],[4.3373117e-34],[1.3315044e-33],[4.0516179e-33],[1.2220199e-32],[3.653356e-32],[1.0826041e-31],[3.1798839e-31],[9.2579926e-31],[2.6716918e-30],[7.642226e-30],[2.1667928e-29],[6.0894617e-29],[1.696307e-28],[4.6837534e-28],[1.2818808e-27],[3.4774858e-27],[9.3507657e-27],[2.4922586e-26],[6.5842022e-26],[1.7241593e-25],[4.4752346e-25],[1.1513794e-24],[2.936198e-24],[7.421924e-24],[1.8595677e-23],[4.6181904e-23],[1.1368314e-22],[2.7738614e-22],[6.7086931e-22],[1.6082577e-21],[3.8215357e-21],[9.0008777e-21],[2.1013409e-20],[4.8626491e-20],[1.1153578e-19],[2.5358316e-19],[5.7146759e-19],[1.2765208e-18],[2.8263724e-18],[6.2029198e-18],[1.3493616e-17],[2.9095514e-17],[6.2185533e-17],[1.3174024e-16],[2.7663906e-16],[5.758039e-16],[1.1879604e-15],[2.4293815e-15],[4.9244315e-15],[9.8942597e-15],[1.970505e-14],[3.8899057e-14],[7.611463e-14],[1.4762673e-13],[2.838115e-13],[5.4083325e-13],[1.0215639e-12],[1.9126559e-12],[3.5495855e-12],[6.5296272e-12],[1.19061e-11],[2.1518974e-11],[3.8551829e-11],[6.846055e-11],[1.2050591e-10],[2.1025656e-10],[3.6363416e-10],[6.2338231e-10],[1.0593019e-09],[1.7842734e-09],[2.9790676e-09],[4.9303484e-09],[8.0882443e-09],[1.3152596e-08],[2.1200717e-08],[3.3874493e-08],[5.3651236e-08],[8.4231184e-08],[1.3108532e-07],[2.0222041e-07],[3.0923436e-07],[4.6875343e-07],[7.0436451e-07],[1.0491783e-06],[1.5491828e-06],[2.2675692e-06],[3.2902291e-06],[4.7326341e-06],[6.7483048e-06],[9.5390591e-06],[1.3367184e-05],[1.8569608e-05],[2.5574034e-05],[3.4916863e-05],[4.7262533e-05],[6.342368e-05],[8.4381278e-05],[0.00011130361],[0.00014556263],[0.00018874612],[0.00024266357],[0.0003093439],[0.00039102292],[0.0004901186],[0.00060919258],[0.00075089696],[0.00091790594],[0.001112833],[0.0013381357],[0.0015960099],[0.0018882795],[0.0022162849],[0.0025807775],[0.0029818274],[0.0034187491],[0.0038900557],[0.004393443],[0.0049258108],[0.0054833236],[0.0060615094],[0.0066553947],[0.0072596723],[0.0078688911],[0.0084776612],[0.0090808615],[0.0096738377],[0.01025258],[0.010813868],[0.011355374],[0.011875724],[0.012374498],[0.01285219],[0.013310115],[0.013750278],[0.014175215],[0.014587815],[0.014991133],[0.015388216],[0.015781951],[0.016174932],[0.016569381],[0.016967099],[0.017369468],[0.017777493],[0.018191878],[0.018613131],[0.019041683],[0.01947801],[0.019922745],[0.020376765],[0.02084124],[0.021317643],[0.021807695],[0.02231327],[0.022836236],[0.023378251],[0.023940526],[0.024523562],[0.025126887],[0.025748805],[0.026386192],[0.027034342],[0.027686899],[0.028335881],[0.028971802],[0.02958391],[0.030160522],[0.030689446],[0.03115849],[0.031555998],[0.031871417],[0.032095845],[0.032222521],[0.032247237],[0.032168637],[0.03198838],[0.031711149],[0.031344518],[0.030898653],[0.030385896],[0.029820224],[0.029216641],[0.028590519],[0.027956942],[0.027330089],[0.026722685],[0.026145566],[0.025607368],[0.025114359],[0.024670423],[0.024277178],[0.023934224],[0.02363948],[0.023389597],[0.023180393],[0.02300729],[0.022865702],[0.022751365],[0.022660565],[0.022590269],[0.022538143],[0.022502472],[0.02248199],[0.022475652],[0.022482361],[0.022500701],[0.022528686],[0.022563568],[0.022601712],[0.022638569],[0.022668733],[0.022686099],[0.022684093],[0.022655968],[0.022595137],[0.02249551],[0.02235182],[0.022159901],[0.0219169],[0.021621405],[0.021273485],[0.020874637],[0.020427647],[0.019936382],[0.019405523],[0.018840276],[0.018246067],[0.01762826],[0.016991913],[0.016341575],[0.015681165],[0.015013906],[0.014342335],[0.013668366],[0.012993413],[0.012318538],[0.011644623],[0.010972536],[0.01030329],[0.0096381671],[0.0089788031],[0.0083272338],[0.007685889],[0.0070575464],[0.0064452467],[0.0058521802],[0.0052815557],[0.0047364617],[0.0042197319],[0.0037338239],[0.0032807201],[0.0028618544],[0.0024780699],[0.0021296067],[0.0018161186],[0.0015367157],[0.0012900268],[0.0010742777],[0.00088737753],[0.00072700952],[0.0005907193],[0.00047599744],[0.00038035273],[0.00030137392],[0.00023677899],[0.00018445155],[0.00014246504],[0.00010909577],[8.2826536e-05],[6.2342274e-05],[4.6519828e-05],[3.4413405e-05],[2.5237364e-05],[1.8347655e-05],[1.3223049e-05],[9.446956e-06],[6.6904727e-06],[4.6970178e-06],[3.2687703e-06],[2.2549664e-06],[1.5420067e-06],[1.0452504e-06],[7.0232781e-07],[4.6778119e-07],[3.088354e-07],[2.0211154e-07],[1.3110924e-07],[8.4304796e-08],[5.3733703e-08],[3.3948114e-08],[2.1259738e-08],[1.3196922e-08],[8.1200554e-09],[4.952406e-09],[2.9939443e-09],[1.7940758e-09],[1.0656313e-09],[6.2739589e-10],[3.6613776e-10],[2.117947e-10],[1.2143755e-10],[6.9017296e-11],[3.8880299e-11],[2.1710394e-11],[1.2016335e-11],[6.5923816e-12],[3.5849114e-12],[1.9323247e-12],[1.0323982e-12],[5.4673845e-13],[2.8699687e-13],[1.4932748e-13],[7.7013563e-14],[3.9369465e-14],[1.9948788e-14],[1.0019318e-14],[4.987976e-15],[2.4613595e-15],[1.2038993e-15],[5.8367306e-16]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"March","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.03632945,-0.036329449,-0.036329447,-0.036329443,-0.036329438,-0.03632943,-0.036329418,-0.036329398,-0.036329367,-0.03632932,-0.036329249,-0.036329142,-0.036328983,-0.036328747,-0.036328402,-0.036327902,-0.036327184,-0.036326161,-0.036324719,-0.036322703,-0.036319913,-0.036316084,-0.036310882,-0.036303878,-0.036294535,-0.036282189,-0.036266028,-0.03624507,-0.036218148,-0.036183889,-0.036140705,-0.036086788,-0.036020108,-0.035938429,-0.035839333,-0.035720259,-0.035578555,-0.035411546,-0.035216619,-0.034991316,-0.034733442,-0.034441172,-0.034113167,-0.033748674,-0.033347624,-0.032910702,-0.032439396,-0.031936009,-0.031403641,-0.030846128,-0.030267942,-0.029674057,-0.029069779,-0.028460561,-0.02785179,-0.02724859,-0.026655614,-0.026076872,-0.025515584,-0.024974077,-0.024453727,-0.023954953,-0.023477261,-0.023019337,-0.022579174,-0.022154236,-0.021741637,-0.021338319,-0.020941235,-0.020547501,-0.02015452,-0.019760071,-0.019362353,-0.018959984,-0.018551958,-0.018137573,-0.01771632,-0.017287769,-0.016851442,-0.016406707,-0.015952687,-0.015488211,-0.015011809,-0.014521757,-0.014016182,-0.013493216,-0.012951201,-0.012388926,-0.01180589,-0.011202565,-0.010580646,-0.0099432596,-0.0092951096,-0.0086425521,-0.0079935707,-0.0073576497,-0.0067455413,-0.0061689301,-0.0056400051,-0.0051709615,-0.004773454,-0.0044580346,-0.0042336067,-0.004106931,-0.0040822147,-0.0041608142,-0.0043410718,-0.0046183023,-0.004984934,-0.0054307986,-0.0059435558,-0.0065092272,-0.0071128101,-0.0077389324,-0.0083725092,-0.0089993628,-0.0096067667,-0.010183886,-0.010722084,-0.011215093,-0.011659029,-0.012052274,-0.012395228,-0.012689972,-0.012939855,-0.013149059,-0.013322162,-0.01346375,-0.013578086,-0.013668886,-0.013739182,-0.013791308,-0.01382698,-0.013847461,-0.0138538,-0.013847091,-0.013828751,-0.013800765,-0.013765884,-0.01372774,-0.013690883,-0.013660719,-0.013643353,-0.013645359,-0.013673483,-0.013734315,-0.013833942,-0.013977632,-0.01416955,-0.014412551,-0.014708046,-0.015055966,-0.015454814,-0.015901804,-0.016393069,-0.016923928,-0.017489176,-0.018083385,-0.018701191,-0.019337539,-0.019987877,-0.020648287,-0.021315545,-0.021987117,-0.022661086,-0.023336039,-0.024010913,-0.024684829,-0.025356916,-0.026026161,-0.026691285,-0.027350648,-0.028002218,-0.028643563,-0.029271905,-0.029884205,-0.030477271,-0.031047896,-0.03159299,-0.03210972,-0.032595628,-0.033048731,-0.033467597,-0.033851382,-0.034199845,-0.034513333,-0.034792736,-0.035039425,-0.035255174,-0.035442074,-0.035602442,-0.035738732,-0.035853454,-0.035949099,-0.036028078,-0.036092673,-0.036145,-0.036186987,-0.036220356,-0.036246625,-0.036267109,-0.036282932,-0.036295038,-0.036304214,-0.036311104,-0.036316229,-0.036320005,-0.036322761,-0.036324755,-0.036326183,-0.036327197,-0.03632791,-0.036328406,-0.036328749,-0.036328984,-0.036329143,-0.036329249,-0.03632932,-0.036329367,-0.036329398,-0.036329418,-0.03632943,-0.036329438,-0.036329443,-0.036329447,-0.036329449,-0.03632945,-0.03632945,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452],"zorder":5,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177],"zorder":6,"type":"scatter"},{"customdata":[[3.0614177e-60],[1.4040049e-59],[6.3823478e-59],[2.8757967e-58],[1.2844045e-57],[5.6860596e-57],[2.4950946e-56],[1.0852472e-55],[4.6788215e-55],[1.9994495e-54],[8.469361e-54],[3.5559621e-53],[1.4798918e-52],[6.1047683e-52],[2.4961741e-51],[1.0116892e-50],[4.0643015e-50],[1.6184206e-49],[6.3879805e-49],[2.4992089e-48],[9.6918886e-48],[3.725471e-47],[1.4194529e-46],[5.3607783e-46],[2.0067897e-45],[7.4463447e-45],[2.7387458e-44],[9.9845316e-44],[3.6080385e-43],[1.2923561e-42],[4.5883959e-42],[1.6147575e-41],[5.6327645e-41],[1.9476181e-40],[6.6750427e-40],[2.2676312e-39],[7.6358788e-39],[2.5486721e-38],[8.4321311e-38],[2.7652174e-37],[8.9885548e-37],[2.8961379e-36],[9.2494837e-36],[2.9280923e-35],[9.1880037e-35],[2.857767e-34],[8.8105265e-34],[2.6924424e-33],[8.1556885e-33],[2.448751e-32],[7.2878354e-32],[2.1499213e-31],[6.2866138e-31],[1.8221385e-30],[5.2349978e-30],[1.4908101e-29],[4.2082253e-29],[1.1774613e-28],[3.2656191e-28],[8.9775071e-28],[2.446344e-27],[6.6077109e-27],[1.7691166e-26],[4.6949825e-26],[1.235048e-25],[3.220373e-25],[8.3234094e-25],[2.132403e-24],[5.4151496e-24],[1.3630915e-23],[3.4010516e-23],[8.4115352e-23],[2.0621081e-22],[5.0109715e-22],[1.2069995e-21],[2.8818216e-21],[6.8202812e-21],[1.599974e-20],[3.7204826e-20],[8.5755442e-20],[1.9592978e-19],[4.43727e-19],[9.9611223e-19],[2.2165525e-18],[4.8890609e-18],[1.0689341e-17],[2.3166201e-17],[4.9766547e-17],[1.0597402e-16],[2.2368708e-16],[4.6801788e-16],[9.7065404e-16],[1.9954802e-15],[4.0664158e-15],[8.2140632e-15],[1.6447001e-14],[3.264362e-14],[6.4223417e-14],[1.2524851e-13],[2.4212318e-13],[4.6396523e-13],[8.8129322e-13],[1.6593653e-12],[3.0970689e-12],[5.7299095e-12],[1.0508324e-11],[1.9103314e-11],[3.4425037e-11],[6.1493813e-11],[1.0888816e-10],[1.9112747e-10],[3.3255215e-10],[5.7357696e-10],[9.806636e-10],[1.6620574e-09],[2.7923563e-09],[4.6504591e-09],[7.6775456e-09],[1.2564698e-08],[2.0383855e-08],[3.2781354e-08],[5.2260738e-08],[8.2591267e-08],[1.2939118e-07],[2.0095061e-07],[3.0937864e-07],[4.7218279e-07],[7.1441634e-07],[1.0715608e-06],[1.5933436e-06],[2.3487267e-06],[3.4323329e-06],[4.9726044e-06],[7.142003e-06],[1.0169558e-05],[1.4356044e-05],[2.0091999e-05],[2.7878712e-05],[3.8352123e-05],[5.23094e-05],[7.0737666e-05],[9.484404e-05],[0.00012608576],[0.00016619879],[0.00021722282],[0.00028152031],[0.00036178672],[0.00046104911],[0.00058265005],[0.00073021398],[0.0009075938],[0.001118796],[0.0013678836],[0.0016588579],[0.0019955204],[0.0023813206],[0.0028191923],[0.0033113884],[0.0038593208],[0.004463415],[0.0051229896],[0.0058361686],[0.0065998365],[0.0074096407],[0.0082600462],[0.0091444433],[0.010055306],[0.010984395],[0.011922998],[0.012862195],[0.013793136],[0.014707319],[0.015596853],[0.016454693],[0.017274846],[0.018052532],[0.018784296],[0.019468089],[0.020103295],[0.020690737],[0.021232656],[0.021732663],[0.022195703],[0.022627992],[0.023036974],[0.023431258],[0.023820564],[0.024215638],[0.024628148],[0.025070537],[0.025555823],[0.026097329],[0.026708348],[0.027401725],[0.028189372],[0.02908172],[0.030087133],[0.031211299],[0.032456644],[0.033821794],[0.035301133],[0.036884475],[0.038556913],[0.040298845],[0.04208621],[0.043890929],[0.045681568],[0.047424173],[0.049083271],[0.050622986],[0.052008222],[0.05320585],[0.05418586],[0.054922398],[0.055394656],[0.055587572],[0.055492295],[0.055106419],[0.054433966],[0.053485131],[0.05227582],[0.050827002],[0.049163913],[0.047315165],[0.045311799],[0.043186318],[0.040971755],[0.038700789],[0.036404951],[0.03411393],[0.031854996],[0.029652542],[0.027527739],[0.025498318],[0.02357845],[0.021778728],[0.020106245],[0.018564739],[0.017154821],[0.015874253],[0.01471828],[0.013680001],[0.012750767],[0.0119206],[0.011178612],[0.010513428],[0.0099135807],[0.0093678819],[0.0088657516],[0.0083974984],[0.0079545423],[0.0075295769],[0.0071166675],[0.0067112867],[0.0063102902],[0.005911839],[0.0055152767],[0.0051209701],[0.0047301252],[0.0043445884],[0.0039666444],[0.0035988193],[0.0032437001],[0.002903774],[0.0025812956],[0.002278183],[0.0019959454],[0.0017356401],[0.0014978583],[0.0012827355],[0.0010899818],[0.00091892926],[0.0007685892],[0.00063771659],[0.00052487637],[0.00042850824],[0.00034698701],[0.00027867622],[0.00022197375],[0.00017534849],[0.00013736815],[0.00010671849],[8.2214769e-05],[6.2806473e-05],[4.7576447e-05],[3.5735675e-05],[2.6614874e-05],[1.9653954e-05],[1.4390299e-05],[1.044662e-05],[7.5190014e-06],[5.365568e-06],[3.796082e-06],[2.662646e-06],[1.8515832e-06],[1.2764956e-06],[8.7244183e-07],[5.9113909e-07],[3.9707659e-07],[2.6441489e-07],[1.7455025e-07],[1.1422841e-07],[7.4104273e-08],[4.7656757e-08],[3.0381881e-08],[1.9200423e-08],[1.2028464e-08],[7.4698196e-09],[4.5984158e-09],[2.8060944e-09],[1.697423e-09],[1.0178169e-09],[6.0497741e-10],[3.5644854e-10],[2.08181e-10],[1.2052312e-10],[6.9164501e-11],[3.9343992e-11],[2.2184756e-11],[1.2399689e-11],[6.8698257e-12],[3.7727538e-12],[2.0537523e-12],[1.1081885e-12],[5.9272658e-13],[3.1424585e-13],[1.6514232e-13],[8.6024118e-14],[4.4417536e-14],[2.2733197e-14],[1.1532882e-14],[5.7994383e-15],[2.8907086e-15],[1.4282116e-15],[6.9943963e-16],[3.3952909e-16],[1.6337005e-16],[7.7917726e-17],[3.6835635e-17],[1.7261075e-17],[8.0174268e-18],[3.6912158e-18],[1.6844995e-18],[7.6197221e-19],[3.4164414e-19],[1.5183617e-19],[6.6887155e-20],[2.9206282e-20],[1.2640835e-20],[5.4230172e-21],[2.3060666e-21],[9.720044e-22],[4.0609721e-22],[1.6817331e-22],[6.9031819e-23],[2.8087084e-23],[1.1327368e-23],[4.5281026e-24],[1.7941897e-24],[7.0466914e-25],[2.7432592e-25],[1.0585542e-25],[4.0487775e-26],[1.5349678e-26],[5.7681843e-27],[2.1485399e-27],[7.9325369e-28],[2.9029873e-28],[1.0530343e-28],[3.7862052e-29],[1.3493668e-29],[4.7667255e-30],[1.6690696e-30],[5.7928584e-31],[1.9928542e-31],[6.7955129e-32],[2.2968523e-32],[7.6949881e-33],[2.5553295e-33],[8.4110438e-34],[2.7442073e-34],[8.8745825e-35],[2.8447424e-35],[9.0386161e-36],[2.8465899e-36],[8.886113e-37],[2.7495568e-37],[8.4329108e-38],[2.5636353e-38],[7.7250072e-39],[2.3073074e-39],[6.8308685e-40],[2.0045195e-40],[5.8305369e-41],[1.6810115e-41],[4.8039304e-42],[1.3607759e-42],[3.8206773e-43],[1.0633053e-43],[2.9331851e-44]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"April","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494176,-0.054494176,-0.054494175,-0.054494173,-0.05449417,-0.054494165,-0.054494157,-0.054494145,-0.054494125,-0.054494095,-0.054494048,-0.054493976,-0.054493868,-0.054493705,-0.054493463,-0.054493106,-0.054492584,-0.054491829,-0.054490745,-0.054489205,-0.054487035,-0.054484008,-0.054479821,-0.054474085,-0.054466299,-0.054455825,-0.054441868,-0.05442344,-0.054399333,-0.054368092,-0.054327979,-0.054276955,-0.054212657,-0.054132391,-0.054033128,-0.053911527,-0.053763963,-0.053586584,-0.053375381,-0.053126294,-0.052835319,-0.052498657,-0.052112857,-0.051674985,-0.051182789,-0.050634857,-0.050030762,-0.049371188,-0.048658009,-0.047894341,-0.047084537,-0.046234131,-0.045349734,-0.044438871,-0.043509782,-0.042571179,-0.041631982,-0.040701041,-0.039786858,-0.038897324,-0.038039484,-0.037219331,-0.036441645,-0.035709881,-0.035026089,-0.034390883,-0.03380344,-0.033261522,-0.032761514,-0.032298474,-0.031866185,-0.031457204,-0.031062919,-0.030673613,-0.03027854,-0.02986603,-0.02942364,-0.028938355,-0.028396848,-0.02778583,-0.027092453,-0.026304806,-0.025412457,-0.024407044,-0.023282878,-0.022037534,-0.020672383,-0.019193045,-0.017609703,-0.015937264,-0.014195332,-0.012407968,-0.010603248,-0.0088126089,-0.0070700041,-0.0054109062,-0.003871191,-0.0024859556,-0.0012883271,-0.00030831701,0.00042822062,0.00090047915,0.0010933949,0.00099811798,0.00061224216,-6.0211611e-05,-0.0010090468,-0.0022183571,-0.0036671751,-0.0053302645,-0.0071790124,-0.0091823788,-0.011307859,-0.013522422,-0.015793388,-0.018089227,-0.020380248,-0.022639181,-0.024841636,-0.026966438,-0.028995859,-0.030915728,-0.032715449,-0.034387933,-0.035929439,-0.037339357,-0.038619925,-0.039775897,-0.040814176,-0.04174341,-0.042573578,-0.043315565,-0.043980749,-0.044580597,-0.045126295,-0.045628426,-0.046096679,-0.046539635,-0.0469646,-0.04737751,-0.047782891,-0.048183887,-0.048582338,-0.048978901,-0.049373207,-0.049764052,-0.050149589,-0.050527533,-0.050895358,-0.051250477,-0.051590403,-0.051912882,-0.052215994,-0.052498232,-0.052758537,-0.052996319,-0.053211442,-0.053404196,-0.053575248,-0.053725588,-0.053856461,-0.053969301,-0.054065669,-0.05414719,-0.054215501,-0.054272204,-0.054318829,-0.054356809,-0.054387459,-0.054411963,-0.054431371,-0.054446601,-0.054458442,-0.054467562,-0.054474523,-0.054479787,-0.054483731,-0.054486658,-0.054488812,-0.054490381,-0.054491515,-0.054492326,-0.054492901,-0.054493305,-0.054493586,-0.05449378,-0.054493913,-0.054494003,-0.054494063,-0.054494103,-0.05449413,-0.054494147,-0.054494158,-0.054494165,-0.05449417,-0.054494173,-0.054494175,-0.054494176,-0.054494176,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177],"zorder":6,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177],"zorder":7,"type":"scatter"},{"customdata":[[1.8433206e-94],[1.2601852e-93],[8.5394847e-93],[5.7357837e-92],[3.8187186e-91],[2.5200338e-90],[1.6483858e-89],[1.0687476e-88],[6.8683952e-88],[4.3752128e-87],[2.7625293e-86],[1.728934e-85],[1.0725406e-84],[6.5949703e-84],[4.0195345e-83],[2.4283008e-82],[1.4540958e-81],[8.6307263e-81],[5.0776817e-80],[2.9610614e-79],[1.711564e-78],[9.8062439e-78],[5.5689848e-77],[3.1348241e-76],[1.749098e-75],[9.6733942e-75],[5.3028268e-74],[2.8813751e-73],[1.5518723e-72],[8.2846839e-72],[4.3838907e-71],[2.2993617e-70],[1.1954149e-69],[6.1601866e-69],[3.1465371e-68],[1.5930729e-67],[7.9947017e-67],[3.9767901e-66],[1.9607711e-65],[9.5826343e-65],[4.6420172e-64],[2.2289092e-63],[1.0608203e-62],[5.0044354e-62],[2.3400878e-61],[1.0846086e-60],[4.9828488e-60],[2.2690612e-59],[1.0241852e-58],[4.5822062e-58],[2.0320508e-57],[8.9321971e-57],[3.8917583e-56],[1.6807272e-55],[7.1946955e-55],[3.0527513e-54],[1.283909e-53],[5.3523056e-53],[2.2116244e-52],[9.0582783e-52],[3.6774246e-51],[1.4798092e-50],[5.9024387e-50],[2.3335713e-49],[9.1448063e-49],[3.5521539e-48],[1.3676434e-47],[5.2193668e-47],[1.9743612e-46],[7.4028547e-46],[2.7512857e-45],[1.0135286e-44],[3.7008391e-44],[1.3394554e-43],[4.8052961e-43],[1.7087398e-42],[6.0227601e-42],[2.1041616e-41],[7.2866263e-41],[2.5011388e-40],[8.5096753e-40],[2.869803e-39],[9.5930144e-39],[3.1784986e-38],[1.0438855e-37],[3.3981902e-37],[1.0964944e-36],[3.5069464e-36],[1.1117722e-35],[3.4935459e-35],[1.0881308e-34],[3.359385e-34],[1.0280221e-33],[3.1182376e-33],[9.3751886e-33],[2.793926e-32],[8.2530387e-32],[2.4164455e-31],[7.0130069e-31],[2.0174171e-30],[5.7524302e-30],[1.6258154e-29],[4.554654e-29],[1.2647476e-28],[3.4811012e-28],[9.4971618e-28],[2.5682391e-27],[6.8840108e-27],[1.8289935e-26],[4.8166751e-26],[1.257324e-25],[3.2532073e-25],[8.3433615e-25],[2.1209734e-24],[5.3443431e-24],[1.3348069e-23],[3.3045146e-23],[8.1089032e-23],[1.9723404e-22],[4.7551811e-22],[1.1363649e-21],[2.6917472e-21],[6.3199927e-21],[1.4708381e-20],[3.3929648e-20],[7.7581862e-20],[1.7583592e-19],[3.9502245e-19],[8.7963593e-19],[1.9415626e-18],[4.2478324e-18],[9.2119414e-18],[1.9801728e-17],[4.2191359e-17],[8.9107198e-17],[1.8653971e-16],[3.8707891e-16],[7.9615545e-16],[1.6231808e-15],[3.2802513e-15],[6.5708134e-15],[1.3046788e-14],[2.5678e-14],[5.0094803e-14],[9.6872129e-14],[1.8568662e-13],[3.5280838e-13],[6.6446902e-13],[1.2404786e-12],[2.2955339e-12],[4.2107492e-12],[7.6562777e-12],[1.3799399e-11],[2.4654064e-11],[4.3662094e-11],[7.6649666e-11],[1.3338524e-10],[2.3009088e-10],[3.9344831e-10],[6.6692248e-10],[1.1206381e-09],[1.8666417e-09],[3.0822343e-09],[5.045256e-09],[8.1868677e-09],[1.3169637e-08],[2.1001785e-08],[3.3202456e-08],[5.2038116e-08],[8.0856787e-08],[1.2455515e-07],[1.9022366e-07],[2.8802681e-07],[4.3238981e-07],[6.435784e-07],[9.4977563e-07],[1.3897769e-06],[2.0164407e-06],[2.9010482e-06],[4.1387324e-06],[5.8551441e-06],[8.2145118e-06],[1.1429236e-05],[1.5771119e-05],[2.1584292e-05],[2.9299793e-05],[3.9451706e-05],[5.2694605e-05],[6.9821946e-05],[9.1784884e-05],[0.00011971086],[0.00015492111],[0.00019894619],[0.00025353837],[0.00032067978],[0.0004025852],[0.00050169806],[0.00062067895],[0.00076238526],[0.00092984149],[0.0011261995],[0.0013546883],[0.0016185544],[0.0019209911],[0.0022650593],[0.0026536005],[0.0030891424],[0.0035737998],[0.0041091721],[0.0046962413],[0.0053352705],[0.00602571],[0.0067661104],[0.0075540499],[0.008386078],[0.0092576812],[0.010163274],[0.011096218],[0.01204888],[0.013012717],[0.013978405],[0.014936002],[0.01587515],[0.016785304],[0.017655989],[0.018477076],[0.019239069],[0.019933395],[0.020552672],[0.02109097],[0.021544029],[0.021909443],[0.022186786],[0.022377688],[0.022485848],[0.022516984],[0.022478719],[0.022380411],[0.02223292],[0.022048332],[0.021839637],[0.021620378],[0.021404274],[0.021204835],[0.021034975],[0.020906641],[0.020830461],[0.020815435],[0.020868663],[0.02099514],[0.021197601],[0.021476449],[0.021829743],[0.022253274],[0.022740698],[0.023283754],[0.023872531],[0.024495796],[0.025141361],[0.025796484],[0.026448284],[0.027084158],[0.027692192],[0.028261538],[0.028782764],[0.029248142],[0.029651879],[0.029990282],[0.030261835],[0.030467206],[0.030609156],[0.030692375],[0.030723235],[0.03070947],[0.030659797],[0.030583486],[0.03048991],[0.030388078],[0.030286189],[0.030191216],[0.030108554],[0.030041747],[0.029992312],[0.02995967],[0.029941195],[0.029932379],[0.029927099],[0.029917977],[0.029896819],[0.029855082],[0.029784372],[0.029676907],[0.02952595],[0.029326153],[0.029073811],[0.028767007],[0.028405637],[0.027991316],[0.027527188],[0.027017639],[0.026467954],[0.025883928],[0.025271476],[0.024636261],[0.023983366],[0.023317039],[0.022640511],[0.021955916],[0.021264294],[0.020565687],[0.019859309],[0.019143774],[0.018417367],[0.017678324],[0.016925125],[0.016156743],[0.015372863],[0.014574049],[0.013761834],[0.012938755],[0.012108314],[0.011274873],[0.010443509],[0.0096198158],[0.0088096829],[0.0080190654],[0.0072537527],[0.0065191534],[0.0058201073],[0.0051607328],[0.0045443145],[0.0039732349],[0.0034489492],[0.0029720011],[0.002542074],[0.0021580725],[0.001818225],[0.0015202024],[0.0012612426],[0.0010382767],[0.00084804906],[0.00068722717],[0.00055249842],[0.00044065085],[0.00034863736],[0.00027362333],[0.00021301856],[0.00016449517],[0.00012599328],[9.5716777e-05],[7.2121348e-05],[5.3896924e-05],[3.9946465e-05],[2.9362793e-05],[2.1404833e-05],[1.5474374e-05],[1.1094119e-05],[7.8875661e-06],[5.5610411e-06],[3.8879867e-06],[2.6955164e-06],[1.8531091e-06],[1.2632673e-06],[8.5392265e-07],[5.7235406e-07],[3.8038915e-07],[2.5067033e-07],[1.6378864e-07],[1.0611221e-07],[6.8162043e-08],[4.3412077e-08],[2.7413501e-08],[1.7163261e-08],[1.0653983e-08],[6.5568735e-09],[4.0008294e-09],[2.4202915e-09],[1.4515962e-09],[8.6313893e-10],[5.0882532e-10],[2.9737628e-10],[1.7230193e-10],[9.897304e-11],[5.6361618e-11],[3.1819015e-11],[1.7808355e-11],[9.8807934e-12],[5.4348564e-12],[2.963534e-12],[1.6019716e-12],[8.5846052e-13],[4.5604122e-13],[2.4016177e-13],[1.2537688e-13],[6.4884771e-14],[3.3287241e-14],[1.6928582e-14],[8.5343274e-15],[4.2650304e-15],[2.1128923e-15]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"April","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494176,-0.054494175,-0.054494174,-0.054494172,-0.054494169,-0.054494164,-0.054494156,-0.054494144,-0.054494125,-0.054494096,-0.054494053,-0.054493987,-0.054493889,-0.054493745,-0.054493534,-0.054493228,-0.054492788,-0.054492161,-0.054491276,-0.054490039,-0.054488322,-0.054485963,-0.054482748,-0.054478406,-0.054472593,-0.054464878,-0.054454726,-0.054441483,-0.054424355,-0.054402392,-0.054374466,-0.054339256,-0.054295231,-0.054240639,-0.054173498,-0.054091592,-0.053992479,-0.053873498,-0.053731792,-0.053564336,-0.053367978,-0.053139489,-0.052875623,-0.052573186,-0.052229118,-0.051840577,-0.051405035,-0.050920378,-0.050385005,-0.049797936,-0.049158907,-0.048468467,-0.047728067,-0.046940127,-0.046108099,-0.045236496,-0.044330904,-0.043397959,-0.042445297,-0.04148146,-0.040515773,-0.039558175,-0.038619027,-0.037708873,-0.036838188,-0.036017102,-0.035255108,-0.034560782,-0.033941505,-0.033403208,-0.032950148,-0.032584734,-0.032307392,-0.03211649,-0.03200833,-0.031977193,-0.032015458,-0.032113766,-0.032261257,-0.032445846,-0.032654541,-0.0328738,-0.033089904,-0.033289343,-0.033459202,-0.033587537,-0.033663716,-0.033678743,-0.033625514,-0.033499037,-0.033296576,-0.033017729,-0.032664434,-0.032240904,-0.031753479,-0.031210423,-0.030621646,-0.029998381,-0.029352816,-0.028697693,-0.028045893,-0.027410019,-0.026801986,-0.026232639,-0.025711413,-0.025246035,-0.024842298,-0.024503896,-0.024232342,-0.024026971,-0.023885022,-0.023801803,-0.023770943,-0.023784707,-0.023834381,-0.023910692,-0.024004268,-0.024106099,-0.024207988,-0.024302961,-0.024385623,-0.02445243,-0.024501866,-0.024534508,-0.024552982,-0.024561798,-0.024567079,-0.0245762,-0.024597359,-0.024639095,-0.024709806,-0.02481727,-0.024968227,-0.025168024,-0.025420366,-0.02572717,-0.026088541,-0.026502862,-0.02696699,-0.027476538,-0.028026223,-0.028610249,-0.029222701,-0.029857916,-0.030510811,-0.031177138,-0.031853666,-0.032538261,-0.033229883,-0.03392849,-0.034634868,-0.035350403,-0.036076811,-0.036815853,-0.037569052,-0.038337435,-0.039121314,-0.039920129,-0.040732343,-0.041555422,-0.042385864,-0.043219304,-0.044050668,-0.044874362,-0.045684494,-0.046475112,-0.047240425,-0.047975024,-0.04867407,-0.049333445,-0.049949863,-0.050520942,-0.051045228,-0.051522176,-0.051952103,-0.052336105,-0.052675952,-0.052973975,-0.053232935,-0.053455901,-0.053646128,-0.05380695,-0.053941679,-0.054053526,-0.05414554,-0.054220554,-0.054281159,-0.054329682,-0.054368184,-0.054398461,-0.054422056,-0.05444028,-0.054454231,-0.054464815,-0.054472773,-0.054478703,-0.054483083,-0.05448629,-0.054488616,-0.054490289,-0.054491482,-0.054492324,-0.054492914,-0.054493323,-0.054493605,-0.054493797,-0.054493927,-0.054494014,-0.054494071,-0.054494109,-0.054494134,-0.05449415,-0.05449416,-0.054494167,-0.054494171,-0.054494173,-0.054494175,-0.054494176,-0.054494176,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177],"zorder":7,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903],"zorder":8,"type":"scatter"},{"customdata":[[1.0267685e-69],[5.2964135e-69],[2.7080588e-68],[1.3724648e-67],[6.8946364e-67],[3.433117e-66],[1.6944666e-65],[8.2898116e-65],[4.0199777e-64],[1.93228e-63],[9.2062755e-63],[4.3477592e-62],[2.0352356e-61],[9.4434714e-61],[4.3432671e-60],[1.9800191e-59],[8.9472654e-59],[4.0075545e-58],[1.7792495e-57],[7.8300166e-57],[3.4155215e-56],[1.4767943e-55],[6.3292423e-55],[2.6887617e-54],[1.1321968e-53],[4.72564e-53],[1.9550984e-52],[8.0176294e-52],[3.2590639e-51],[1.3131352e-50],[5.2444e-50],[2.0761185e-49],[8.1466411e-49],[3.1686575e-48],[1.2216377e-47],[4.6685302e-47],[1.7684332e-46],[6.64e-46],[2.4712609e-45],[9.1167579e-45],[3.3337552e-44],[1.2083665e-43],[4.3414567e-43],[1.5461241e-42],[5.4578989e-42],[1.9097614e-41],[6.6237725e-41],[2.2772181e-40],[7.7602728e-40],[2.6213362e-39],[8.7769185e-39],[2.912965e-38],[9.5830243e-38],[3.1249586e-37],[1.0100912e-36],[3.2363227e-36],[1.0278227e-35],[3.2356393e-35],[1.009666e-34],[3.1229962e-34],[9.5750608e-34],[2.9099687e-33],[8.766215e-33],[2.6176602e-32],[7.7480446e-32],[2.2732595e-31],[6.6112611e-31],[1.9058925e-30],[5.4461755e-30],[1.5426394e-29],[4.3312892e-29],[1.205453e-28],[3.3255554e-28],[9.0940914e-28],[2.4651089e-27],[6.623614e-27],[1.7641541e-26],[4.6575884e-26],[1.2189033e-25],[3.1619974e-25],[8.1308949e-25],[2.0725276e-24],[5.236583e-24],[1.3115411e-23],[3.2561371e-23],[8.0132903e-23],[1.9548216e-22],[4.7270701e-22],[1.1330949e-21],[2.6923438e-21],[6.3414041e-21],[1.4805794e-20],[3.4266527e-20],[7.8614256e-20],[1.7878296e-19],[4.0303739e-19],[9.0065763e-19],[1.9951252e-18],[4.3810423e-18],[9.5363568e-18],[2.0577196e-17],[4.4013861e-17],[9.3323987e-17],[1.9615465e-16],[4.0870174e-16],[8.441467e-16],[1.7283592e-15],[3.5079699e-15],[7.0580479e-15],[1.4077366e-14],[2.783348e-14],[5.455369e-14],[1.0599676e-13],[2.0416166e-13],[3.8982556e-13],[7.3787432e-13],[1.3845604e-12],[2.5754928e-12],[4.7492967e-12],[8.6820124e-12],[1.5733862e-11],[2.8266748e-11],[5.0343541e-11],[8.8887552e-11],[1.5558559e-10],[2.6997969e-10],[4.6443849e-10],[7.9206885e-10],[1.3391758e-09],[2.2446807e-09],[3.730065e-09],[6.1450541e-09],[1.0036569e-08],[1.6251669e-08],[2.6089567e-08],[4.1523614e-08],[6.5521855e-08],[1.0250464e-07],[1.5899042e-07],[2.4449636e-07],[3.7277957e-07],[5.635267e-07],[8.446258e-07],[1.2551819e-06],[1.8494681e-06],[2.7020326e-06],[3.9142091e-06],[5.6222961e-06],[8.0076789e-06],[1.1309161e-05],[1.583773e-05],[2.1993942e-05],[3.0287965e-05],[4.1362246e-05],[5.6016504e-05],[7.5234581e-05],[0.00010021237],[0.00013238575],[0.00017345709],[0.0002254187],[0.00029057103],[0.00037153361],[0.00047124618],[0.00059295775],[0.00074020144],[0.00091675335],[0.0011265741],[0.0013737332],[0.0016623155],[0.0019963136],[0.0023795069],[0.0028153324],[0.0033067519],[0.0038561224],[0.0044650738],[0.0051344031],[0.0058639885],[0.0066527302],[0.0074985215],[0.0083982512],[0.0093478391],[0.010342302],[0.011375846],[0.012441979],[0.013533644],[0.014643345],[0.015763291],[0.016885515],[0.01800199],[0.019104721],[0.020185824],[0.021237578],[0.022252465],[0.023223202],[0.024142762],[0.025004402],[0.025801705],[0.026528634],[0.027179618],[0.027749659],[0.028234474],[0.028630659],[0.028935876],[0.029149052],[0.029270577],[0.029302491],[0.029248638],[0.02911478],[0.028908653],[0.028639948],[0.02832022],[0.027962708],[0.027582077],[0.027194076],[0.026815135],[0.026461907],[0.026150776],[0.025897357],[0.025716005],[0.025619359],[0.025617947],[0.025719856],[0.025930496],[0.026252462],[0.026685484],[0.02722649],[0.02786974],[0.028607051],[0.029428078],[0.030320632],[0.031271042],[0.032264502],[0.033285436],[0.034317821],[0.0353455],[0.036352438],[0.037322959],[0.038241931],[0.039094918],[0.039868303],[0.040549386],[0.041126463],[0.041588903],[0.041927212],[0.042133113],[0.042199621],[0.042121137],[0.041893544],[0.04151431],[0.040982596],[0.040299348],[0.039467384],[0.038491446],[0.037378227],[0.03613635],[0.034776301],[0.033310305],[0.031752153],[0.030116965],[0.028420914],[0.026680904],[0.024914217],[0.023138149],[0.021369632],[0.01962488],[0.017919055],[0.016265966],[0.014677832],[0.013165086],[0.011736254],[0.010397889],[0.0091545723],[0.0080089743],[0.0069619603],[0.006012746],[0.0051590839],[0.004397473],[0.0037233827],[0.0031314798],[0.0026158501],[0.0021702094],[0.001788094],[0.0014630312],[0.0011886831],[0.00095896507],[0.0007681369],[0.00061086993],[0.00048229017],[0.00037800111],[0.00029408872],[0.00022711205],[0.00017408233],[0.00013243365],[9.9988028e-05],[7.4917097e-05],[5.5702519e-05],[4.1096789e-05],[3.0085609e-05],[2.1852787e-05],[1.5748233e-05],[1.1259373e-05],[7.9861055e-06],[5.6192199e-06],[3.9221076e-06],[2.7154917e-06],[1.8648615e-06],[1.2702761e-06],[8.5819918e-07],[5.7504529e-07],[3.8214329e-07],[2.5185323e-07],[1.6460893e-07],[1.06692e-07],[6.8575912e-08],[4.3708086e-08],[2.7624357e-08],[1.7312231e-08],[1.0758089e-08],[6.6287199e-09],[4.0497517e-09],[2.4531463e-09],[1.473355e-09],[8.7735074e-10],[5.179816e-10],[3.0319664e-10],[1.7595333e-10],[1.0123439e-10],[5.7744522e-11],[3.2654326e-11],[1.830683e-11],[1.0174748e-11],[5.6061928e-12],[3.062262e-12],[1.6582228e-12],[8.9015602e-13],[4.7370591e-13],[2.4990087e-13],[1.3068932e-13],[6.7752138e-14],[3.4818809e-14],[1.7738233e-14],[8.9579779e-15],[4.4844652e-15],[2.2254113e-15],[1.0947298e-15],[5.3382485e-16],[2.5803826e-16],[1.2364064e-16],[5.872577e-17],[2.7649357e-17],[1.2904133e-17],[5.9697872e-18],[2.7376243e-18],[1.2444364e-18],[5.6073064e-19],[2.5044804e-19],[1.1088218e-19],[4.8661526e-20],[2.1168433e-20],[9.1278792e-21],[3.901472e-21],[1.6529656e-21],[6.9418486e-22],[2.8897605e-22],[1.1924037e-22],[4.87707e-23],[1.9772805e-23],[7.9460396e-24],[3.1652338e-24],[1.2497785e-24],[4.8913873e-25],[1.89759e-25],[7.2969884e-26],[2.7813491e-26],[1.0508423e-26],[3.9354058e-27],[1.4608683e-27],[5.3752899e-28],[1.9604769e-28],[7.0874546e-29],[2.5397288e-29],[9.0209577e-30],[3.1760401e-30],[1.108376e-30],[3.834033e-31],[1.3145951e-31],[4.4678172e-32],[1.5051017e-32],[5.0257767e-33],[1.6634405e-33],[5.4573017e-34],[1.7746598e-34],[5.7202968e-35],[1.8276298e-35],[5.7879392e-36],[1.8168776e-36],[5.6531854e-37],[1.7435184e-37],[5.3299793e-38],[1.6150653e-38]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"May","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658902,-0.072658902,-0.072658901,-0.072658899,-0.072658897,-0.072658893,-0.072658887,-0.072658877,-0.072658862,-0.072658838,-0.072658801,-0.072658744,-0.072658659,-0.07265853,-0.07265834,-0.072658058,-0.072657648,-0.072657054,-0.072656201,-0.072654989,-0.072653281,-0.072650895,-0.072647594,-0.072643065,-0.072636909,-0.072628615,-0.072617541,-0.072602887,-0.072583669,-0.072558691,-0.072526517,-0.072485446,-0.072433484,-0.072368332,-0.07228737,-0.072187657,-0.072065945,-0.071918702,-0.07174215,-0.071532329,-0.07128517,-0.070996588,-0.07066259,-0.070279396,-0.069843571,-0.069352151,-0.068802781,-0.068193829,-0.0675245,-0.066794915,-0.066006173,-0.065160382,-0.064260652,-0.063311064,-0.062316601,-0.061283058,-0.060216924,-0.059125259,-0.058015558,-0.056895612,-0.055773388,-0.054656913,-0.053554182,-0.052473079,-0.051421325,-0.050406438,-0.049435701,-0.048516141,-0.047654501,-0.046857199,-0.046130269,-0.045479285,-0.044909244,-0.044424429,-0.044028244,-0.043723027,-0.043509852,-0.043388326,-0.043356413,-0.043410265,-0.043544123,-0.04375025,-0.044018955,-0.044338683,-0.044696195,-0.045076826,-0.045464827,-0.045843768,-0.046196996,-0.046508127,-0.046761546,-0.046942898,-0.047039544,-0.047040956,-0.046939047,-0.046728407,-0.046406441,-0.045973419,-0.045432413,-0.044789163,-0.044051852,-0.043230826,-0.042338271,-0.041387862,-0.040394401,-0.039373467,-0.038341082,-0.037313404,-0.036306465,-0.035335944,-0.034416972,-0.033563985,-0.0327906,-0.032109517,-0.03153244,-0.03107,-0.030731691,-0.03052579,-0.030459282,-0.030537766,-0.030765359,-0.031144593,-0.031676307,-0.032359555,-0.033191519,-0.034167457,-0.035280676,-0.036522553,-0.037882602,-0.039348598,-0.04090675,-0.042541938,-0.044237989,-0.045978,-0.047744686,-0.049520754,-0.051289271,-0.053034023,-0.054739848,-0.056392937,-0.057981071,-0.059493817,-0.060922649,-0.062261015,-0.063504331,-0.064649929,-0.065696943,-0.066646157,-0.067499819,-0.06826143,-0.06893552,-0.069527423,-0.070043053,-0.070488694,-0.070870809,-0.071195872,-0.07147022,-0.071699938,-0.071890766,-0.072048033,-0.072176613,-0.072280902,-0.072364814,-0.072431791,-0.072484821,-0.072526469,-0.072558915,-0.072583986,-0.072603201,-0.072617806,-0.072628818,-0.07263705,-0.072643155,-0.072647644,-0.072650917,-0.072653284,-0.072654981,-0.072656188,-0.072657038,-0.072657633,-0.072658045,-0.072658328,-0.072658521,-0.072658651,-0.072658739,-0.072658796,-0.072658835,-0.072658859,-0.072658875,-0.072658886,-0.072658892,-0.072658896,-0.072658899,-0.072658901,-0.072658902,-0.072658902,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903],"zorder":8,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903],"zorder":9,"type":"scatter"},{"customdata":[[1.336092e-120],[1.182816e-119],[1.0379151e-118],[9.0275572e-118],[7.7829187e-117],[6.6508714e-116],[5.6335015e-115],[4.7297926e-114],[3.9361314e-113],[3.24684e-112],[2.6547034e-111],[2.1514683e-110],[1.7282943e-109],[1.3761452e-108],[1.086112e-107],[8.4966713e-107],[6.5885042e-106],[5.0639412e-105],[3.8579296e-104],[2.9132903e-103],[2.1806052e-102],[1.6178347e-101],[1.1897483e-100],[8.6724107e-100],[6.2659714e-99],[4.4874623e-98],[3.1854958e-97],[2.2413882e-96],[1.5632231e-95],[1.080659e-94],[7.4049175e-94],[5.0293933e-93],[3.3859053e-92],[2.2594246e-91],[1.4944615e-90],[9.7979554e-90],[6.3672224e-89],[4.101365e-88],[2.6186091e-87],[1.6572071e-86],[1.0395532e-85],[6.4636899e-85],[3.9836224e-84],[2.4335466e-83],[1.4735505e-82],[8.8441126e-82],[5.2614731e-81],[3.1025895e-80],[1.8134481e-79],[1.0506301e-78],[6.0333487e-78],[3.4342419e-77],[1.9376139e-76],[1.0835962e-75],[6.0066399e-75],[3.3003471e-74],[1.7974282e-73],[9.7030301e-73],[5.1919096e-72],[2.753663e-71],[1.4476327e-70],[7.5434477e-70],[3.8962367e-69],[1.9947328e-68],[1.0122506e-67],[5.0916126e-67],[2.5385552e-66],[1.2545322e-65],[6.1452709e-65],[2.9837623e-64],[1.43599e-63],[6.8501896e-63],[3.239051e-62],[1.5180883e-61],[7.0524543e-61],[3.2474883e-60],[1.4822415e-59],[6.7058586e-59],[3.0071419e-58],[1.3366495e-57],[5.8890503e-57],[2.5717996e-56],[1.1132511e-55],[4.7765384e-55],[2.0314101e-54],[8.563398e-54],[3.5781527e-53],[1.4819578e-52],[6.0838298e-52],[2.4756119e-51],[9.9850983e-51],[3.9919626e-50],[1.5819215e-49],[6.2136638e-49],[2.4192179e-48],[9.3361246e-48],[3.5712706e-47],[1.354077e-46],[5.0889536e-46],[1.8957374e-45],[6.99991e-45],[2.5619543e-44],[9.2942629e-44],[3.3421293e-43],[1.1912319e-42],[4.2085662e-42],[1.4737943e-41],[5.1156931e-41],[1.7600988e-40],[6.0025339e-40],[2.0290711e-39],[6.7986868e-39],[2.2579691e-38],[7.4332069e-38],[2.4254916e-37],[7.8449238e-37],[2.51503e-36],[7.9921414e-36],[2.5173801e-35],[7.8595949e-35],[2.4323012e-34],[7.461059e-34],[2.2685566e-33],[6.8369891e-33],[2.0424263e-32],[6.0477561e-32],[1.775042e-31],[5.1640399e-31],[1.489146e-30],[4.2564926e-30],[1.2059617e-29],[3.3867436e-29],[9.4275423e-29],[2.6012505e-28],[7.1143226e-28],[1.9286473e-27],[5.1825102e-27],[1.3803709e-26],[3.6443487e-26],[9.5370218e-26],[2.473857e-25],[6.3607101e-25],[1.6210861e-24],[4.0952111e-24],[1.0254548e-23],[2.5452303e-23],[6.2619306e-23],[1.527075e-22],[3.6913378e-22],[8.8446136e-22],[2.1006126e-21],[4.9452184e-21],[1.1539788e-20],[2.6692141e-20],[6.1198776e-20],[1.390837e-19],[3.1331733e-19],[6.9962898e-19],[1.548556e-18],[3.3975225e-18],[7.3888132e-18],[1.5928122e-17],[3.4035539e-17],[7.2090755e-17],[1.5135826e-16],[3.1500178e-16],[6.4983191e-16],[1.3288349e-15],[2.6935428e-15],[5.4120333e-15],[1.0779081e-14],[2.1280839e-14],[4.1646883e-14],[8.079121e-14],[1.553584e-13],[2.9613898e-13],[5.5956162e-13],[1.0480768e-12],[1.9459537e-12],[3.581522e-12],[6.5343139e-12],[1.1817653e-11],[2.1186689e-11],[3.7652805e-11],[6.6333948e-11],[1.1584589e-10],[2.0055513e-10],[3.4418942e-10],[5.8556369e-10],[9.8756596e-10],[1.6511101e-09],[2.7365704e-09],[4.4963568e-09],[7.3238852e-09],[1.1826388e-08],[1.8931978e-08],[3.0045312e-08],[4.7271367e-08],[7.3733422e-08],[1.1401966e-07],[1.7480297e-07],[2.6569079e-07],[4.0037599e-07],[5.9817595e-07],[8.8606421e-07],[1.3013171e-06],[1.894914e-06],[2.7358459e-06],[3.916492e-06],[5.5592312e-06],[7.8244362e-06],[1.091998e-05],[1.5112331e-05],[2.0739253e-05],[2.8224015e-05],[3.8090923e-05],[5.0981809e-05],[6.7672954e-05],[8.9091757e-05],[0.00011633223],[0.00015066828],[0.00019356351],[0.00024667623],[0.00031185837],[0.00039114684],[0.00048674633],[0.00060100255],[0.00073636543],[0.00089534228],[0.0010804414],[0.0012941074],[0.0015386497],[0.0018161673],[0.0021284719],[0.0024770126],[0.0028628068],[0.0032863786],[0.0037477088],[0.0042461991],[0.0047806512],[0.0053492622],[0.0059496361],[0.00657881],[0.0072332938],[0.0079091205],[0.0086019049],[0.0093069092],[0.010019111],[0.010733276],[0.011444033],[0.012145948],[0.01283361],[0.013501718],[0.014145177],[0.014759211],[0.015339483],[0.015882235],[0.016384437],[0.01684395],[0.01725969],[0.017631799],[0.017961791],[0.018252688],[0.01850911],[0.018737326],[0.018945239],[0.019142301],[0.019339352],[0.019548375],[0.019782171],[0.020053956],[0.02037689],[0.020763563],[0.021225449],[0.021772346],[0.022411859],[0.023148912],[0.023985356],[0.024919671],[0.025946808],[0.027058157],[0.028241685],[0.029482221],[0.030761888],[0.032060669],[0.033357084],[0.034628943],[0.035854152],[0.037011513],[0.038081506],[0.039046994],[0.039893827],[0.040611321],[0.041192575],[0.04163463],[0.041938455],[0.04210877],[0.042153713],[0.042084365],[0.041914181],[0.041658321],[0.041332947],[0.040954492],[0.040538948],[0.040101198],[0.039654421],[0.039209589],[0.038775073],[0.038356379],[0.037956008],[0.037573457],[0.037205342],[0.036845644],[0.036486065],[0.036116471],[0.035725406],[0.03530066],[0.034829851],[0.034301019],[0.033703184],[0.033026866],[0.032264533],[0.031410962],[0.030463507],[0.029422252],[0.028290061],[0.027072505],[0.025777689],[0.024415987],[0.022999683],[0.021542559],[0.020059434],[0.018565678],[0.017076728],[0.01560762],[0.01417256],[0.012784548],[0.011455073],[0.010193872],[0.0090087822],[0.0079056626],[0.0068883952],[0.0059589559],[0.0051175437],[0.0043627584],[0.0036918137],[0.0031007724],[0.0025847918],[0.0021383675],[0.0017555656],[0.0014302365],[0.0011562029],[0.00092741904],[0.0007380999],[0.00058281921],[0.00045657844],[0.00035484927],[0.00027359256],[0.00020925806],[0.00015876837],[0.00011949141],[8.9204739e-05],[6.6055032e-05],[4.8515376e-05],[3.5342535e-05],[2.5535864e-05],[1.8299035e-05],[1.3005327e-05],[9.1668658e-06],[6.4079398e-06],[4.4422781e-06],[3.0540419e-06],[2.0821818e-06],[1.4077628e-06],[9.4384486e-07],[6.2751679e-07],[4.1371125e-07],[2.7046458e-07],[1.7533098e-07],[1.1270325e-07],[7.1835356e-08],[4.5400312e-08],[2.8450712e-08],[1.7678128e-08],[1.0891395e-08],[6.6531954e-09],[4.0296957e-09],[2.4199432e-09],[1.4408705e-09],[8.5060451e-10],[4.9786262e-10],[2.8891282e-10],[1.6622487e-10],[9.4818626e-11],[5.3623662e-11],[3.0066386e-11],[1.6713402e-11],[9.210948e-12],[5.0326506e-12],[2.726085e-12]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"May","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658902,-0.072658901,-0.0726589,-0.072658899,-0.072658896,-0.072658891,-0.072658884,-0.072658873,-0.072658856,-0.072658829,-0.072658789,-0.072658728,-0.072658637,-0.072658503,-0.072658305,-0.072658017,-0.072657602,-0.072657008,-0.072656167,-0.072654987,-0.072653344,-0.072651079,-0.072647983,-0.072643791,-0.072638164,-0.072630679,-0.072620812,-0.072607921,-0.07259123,-0.072569811,-0.072542571,-0.072508235,-0.07246534,-0.072412227,-0.072347045,-0.072267756,-0.072172157,-0.072057901,-0.071922538,-0.071763561,-0.071578462,-0.071364796,-0.071120253,-0.070842736,-0.070530431,-0.070181891,-0.069796096,-0.069372524,-0.068911194,-0.068412704,-0.067878252,-0.067309641,-0.066709267,-0.066080093,-0.065425609,-0.064749783,-0.064056998,-0.063351994,-0.062639792,-0.061925627,-0.06121487,-0.060512955,-0.059825293,-0.059157185,-0.058513726,-0.057899692,-0.05731942,-0.056776668,-0.056274466,-0.055814954,-0.055399213,-0.055027104,-0.054697112,-0.054406215,-0.054149793,-0.053921577,-0.053713664,-0.053516602,-0.053319551,-0.053110528,-0.052876732,-0.052604948,-0.052282014,-0.05189534,-0.051433455,-0.050886557,-0.050247044,-0.049509991,-0.048673548,-0.047739232,-0.046712095,-0.045600747,-0.044417218,-0.043176682,-0.041897015,-0.040598234,-0.03930182,-0.03802996,-0.036804751,-0.03564739,-0.034577397,-0.033611909,-0.032765076,-0.032047582,-0.031466328,-0.031024274,-0.030720448,-0.030550133,-0.030505191,-0.030574538,-0.030744723,-0.031000582,-0.031325956,-0.031704411,-0.032119955,-0.032557705,-0.033004482,-0.033449314,-0.03388383,-0.034302525,-0.034702895,-0.035085446,-0.035453561,-0.035813259,-0.036172838,-0.036542432,-0.036933497,-0.037358244,-0.037829052,-0.038357884,-0.038955719,-0.039632037,-0.04039437,-0.041247941,-0.042195397,-0.043236651,-0.044368842,-0.045586398,-0.046881214,-0.048242916,-0.049659221,-0.051116344,-0.052599469,-0.054093225,-0.055582175,-0.057051283,-0.058486343,-0.059874355,-0.06120383,-0.062465031,-0.063650121,-0.064753241,-0.065770508,-0.066699947,-0.067541359,-0.068296145,-0.068967089,-0.069558131,-0.070074111,-0.070520536,-0.070903338,-0.071228667,-0.0715027,-0.071731484,-0.071920803,-0.072076084,-0.072202325,-0.072304054,-0.072385311,-0.072449645,-0.072500135,-0.072539412,-0.072569698,-0.072592848,-0.072610388,-0.072623561,-0.072633367,-0.072640604,-0.072645898,-0.072649736,-0.072652495,-0.072654461,-0.072655849,-0.072656821,-0.072657495,-0.072657959,-0.072658276,-0.072658489,-0.072658633,-0.072658728,-0.07265879,-0.072658831,-0.072658858,-0.072658875,-0.072658885,-0.072658892,-0.072658896,-0.072658899,-0.072658901,-0.072658902,-0.072658902,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903],"zorder":9,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629],"zorder":10,"type":"scatter"},{"customdata":[[2.92535e-101],[2.1459726e-100],[1.5603942e-99],[1.1246264e-98],[8.0342629e-98],[5.6891528e-97],[3.9931254e-96],[2.7780631e-95],[1.9157334e-94],[1.3094588e-93],[8.8718135e-93],[5.9579488e-92],[3.965929e-91],[2.6167179e-90],[1.7113257e-89],[1.1093594e-88],[7.1281302e-88],[4.5398636e-87],[2.8659841e-86],[1.7933645e-85],[1.1123133e-84],[6.8383217e-84],[4.1671172e-83],[2.5170144e-82],[1.5069522e-81],[8.9428732e-81],[5.2603963e-80],[3.0670698e-79],[1.7725262e-78],[1.0153726e-77],[5.7653018e-77],[3.244759e-76],[1.810117e-75],[1.0009091e-74],[5.4858819e-74],[2.9803143e-73],[1.604876e-72],[8.5661303e-72],[4.5320187e-71],[2.3766351e-70],[1.2353702e-69],[6.3649579e-69],[3.2505567e-68],[1.6454465e-67],[8.2560743e-67],[4.1060782e-66],[2.0241591e-65],[9.8906736e-65],[4.7903903e-64],[2.2997452e-63],[1.0943402e-62],[5.1616529e-62],[2.4131762e-61],[1.1182865e-60],[5.136661e-60],[2.3386894e-59],[1.0554265e-58],[4.7211439e-58],[2.0932943e-57],[9.1997734e-57],[4.0076315e-56],[1.7304627e-55],[7.4062862e-55],[3.1419737e-54],[1.3211995e-53],[5.5067843e-53],[2.2750531e-52],[9.3164144e-52],[3.7815502e-51],[1.5214397e-50],[6.0674109e-50],[2.3983684e-49],[9.3970636e-49],[3.6494906e-48],[1.40487e-47],[5.3604817e-47],[2.0273807e-46],[7.6002977e-46],[2.8241626e-45],[1.0401898e-44],[3.7975134e-44],[1.3741996e-43],[4.9290604e-43],[1.7524364e-42],[6.1756714e-42],[2.1571975e-41],[7.4689482e-41],[2.5632608e-40],[8.719467e-40],[2.9400241e-39],[9.8259751e-39],[3.2550992e-38],[1.0688496e-37],[3.4788268e-37],[1.1223099e-36],[3.5888609e-36],[1.1375337e-35],[3.5738448e-35],[1.1129379e-34],[3.4353423e-34],[1.0510731e-33],[3.1875692e-33],[9.5818673e-33],[2.8549894e-32],[8.4318463e-32],[2.4683383e-31],[7.1622673e-31],[2.0599667e-30],[5.8726443e-30],[1.6594763e-29],[4.6480654e-29],[1.2904384e-28],[3.5511266e-28],[9.6863221e-28],[2.6188795e-27],[7.0183658e-27],[1.8643195e-26],[4.9087238e-26],[1.2810932e-25],[3.3140325e-25],[8.4976083e-25],[2.1597355e-24],[5.4408704e-24],[1.3586267e-23],[3.3627598e-23],[8.2500303e-23],[2.0062231e-22],[4.8357846e-22],[1.1553637e-21],[2.7361161e-21],[6.4226525e-21],[1.4943711e-20],[3.4464076e-20],[7.878418e-20],[1.7851538e-19],[4.0093735e-19],[8.9256883e-19],[1.9695694e-18],[4.3078971e-18],[9.3395046e-18],[2.006998e-17],[4.2749859e-17],[9.0258307e-17],[1.8888807e-16],[3.9182019e-16],[8.0562728e-16],[1.6419001e-15],[3.3168408e-15],[6.6415286e-15],[1.3181874e-14],[2.5932963e-14],[5.0570034e-14],[9.7746383e-14],[1.8727283e-13],[3.5564422e-13],[6.6945899e-13],[1.2491075e-12],[2.3101687e-12],[4.2350254e-12],[7.6955083e-12],[1.3860794e-11],[2.4746231e-11],[4.3792608e-11],[7.6818198e-11],[1.335672e-10],[2.3020188e-10],[3.932713e-10],[6.6596462e-10],[1.1178585e-09],[1.8599476e-09],[3.067569e-09],[5.0149831e-09],[8.126959e-09],[1.3054861e-08],[2.0787606e-08],[3.2811598e-08],[5.133859e-08],[7.9626468e-08],[1.2242543e-07],[1.8659093e-07],[2.8191537e-07],[4.2224193e-07],[6.2693715e-07],[9.2281146e-07],[1.3465897e-06],[1.948044e-06],[2.7939075e-06],[3.972691e-06],[5.6005124e-06],[7.8280379e-06],[1.0848596e-05],[1.4907484e-05],[2.0312426e-05],[2.7445049e-05],[3.6773178e-05],[4.8863614e-05],[6.4394971e-05],[8.4170042e-05],[0.00010912705],[0.00014034913],[0.00017907121],[0.00022668378],[0.00028473268],[0.00035491455],[0.00043906768],[0.00053915799],[0.00065726053],[0.0007955369],[0.00095620922],[0.0011415317],[0.0013537605],[0.0015951235],[0.0018677896],[0.0021738395],[0.0025152366],[0.0028937988],[0.0033111692],[0.003768786],[0.0042678476],[0.0048092744],[0.0053936624],[0.0060212315],[0.0066917658],[0.0074045494],[0.0081582996],[0.0089511027],[0.0097803574],[0.010642735],[0.01153416],[0.012449827],[0.013384248],[0.014331347],[0.015284603],[0.016237231],[0.017182412],[0.01811355],[0.019024556],[0.019910135],[0.020766066],[0.021589452],[0.022378924],[0.023134782],[0.02385906],[0.024555499],[0.025229436],[0.0258876],[0.026537828],[0.027188706],[0.027849168],[0.028528057],[0.029233689],[0.029973436],[0.030753343],[0.031577829],[0.032449452],[0.033368775],[0.034334332],[0.035342682],[0.036388556],[0.037465075],[0.038564017],[0.039676128],[0.040791428],[0.041899515],[0.042989828],[0.044051866],[0.045075349],[0.046050309],[0.046967126],[0.047816509],[0.048589437],[0.049277073],[0.049870686],[0.050361571],[0.050741023],[0.051000348],[0.051130937],[0.051124408],[0.050972812],[0.050668895],[0.050206403],[0.049580424],[0.048787725],[0.047827087],[0.046699589],[0.045408848],[0.043961168],[0.042365612],[0.04063396],[0.038780573],[0.036822149],[0.034777391],[0.032666583],[0.030511113],[0.028332942],[0.026154061],[0.023995942],[0.021879016],[0.019822203],[0.017842494],[0.015954624],[0.014170829],[0.012500695],[0.01095111],[0.0095262977],[0.0082279419],[0.0070553799],[0.0060058528],[0.0050747997],[0.0042561774],[0.0035427909],[0.0029266201],[0.0023991308],[0.0019515581],[0.0015751565],[0.0012614116],[0.0010022091],[0.00078996368],[0.00061770803],[0.00047914617],[0.00036867516],[0.0002813807],[0.0002130119],[0.00015994035],[0.00011910863],[8.7972449e-05],[6.4440146e-05],[4.6812471e-05],[3.3724955e-05],[2.4094405e-05],[1.7070526e-05],[1.1993195e-05],[8.3554962e-06],[5.7723337e-06],[3.9542621e-06],[2.6860108e-06],[1.8091402e-06],[1.2082397e-06],[8.0010135e-07],[5.2534291e-07],[3.4201251e-07],[2.2076889e-07],[1.4129487e-07],[8.9660999e-08],[5.6411252e-08],[3.5189201e-08],[2.1763627e-08],[1.3345297e-08],[8.1132978e-09],[4.8903053e-09],[2.9224111e-09],[1.7314539e-09],[1.0170503e-09],[5.9228895e-10],[3.4196552e-10],[1.9574311e-10],[1.1108211e-10],[6.2496174e-11],[3.4858811e-11],[1.9276129e-11],[1.0567531e-11],[5.7434407e-12],[3.0946681e-12],[1.6530953e-12],[8.7543138e-13],[4.5960567e-13],[2.3921387e-13],[1.2343085e-13],[6.3138786e-14],[3.2018622e-14],[1.6096881e-14],[8.022549e-15],[3.9638153e-15],[1.9415283e-15],[9.4276233e-16],[4.538244e-16],[2.1657062e-16],[1.0245573e-16],[4.8050405e-17],[2.2339883e-17],[1.0296434e-17],[4.7045044e-18],[2.1308905e-18],[9.5681431e-19],[4.2590482e-19],[1.8793814e-19],[8.2211744e-20],[3.5650739e-20],[1.532562e-20],[6.5310291e-21],[2.7590423e-21],[1.1554402e-21],[4.7967614e-22],[1.9740563e-22],[8.0534306e-23],[3.256953e-23],[1.3057213e-23],[5.1891609e-24],[2.0443286e-24],[7.9838144e-25]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"June","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823628,-0.090823628,-0.090823627,-0.090823626,-0.090823624,-0.090823621,-0.090823616,-0.090823608,-0.090823596,-0.090823578,-0.090823549,-0.090823506,-0.090823442,-0.090823347,-0.090823207,-0.090823002,-0.090822706,-0.090822282,-0.090821681,-0.090820835,-0.090819656,-0.090818028,-0.090815801,-0.09081278,-0.090808721,-0.090803316,-0.090796184,-0.090786856,-0.090774765,-0.090759234,-0.090739459,-0.090714502,-0.09068328,-0.090644558,-0.090596945,-0.090538896,-0.090468714,-0.090384561,-0.090284471,-0.090166368,-0.090028092,-0.08986742,-0.089682097,-0.089469868,-0.089228505,-0.088955839,-0.088649789,-0.088308392,-0.08792983,-0.08751246,-0.087054843,-0.086555781,-0.086014354,-0.085429966,-0.084802397,-0.084131863,-0.08341908,-0.082665329,-0.081872526,-0.081043272,-0.080180894,-0.079289469,-0.078373802,-0.077439381,-0.076492282,-0.075539026,-0.074586398,-0.073641217,-0.072710079,-0.071799073,-0.070913494,-0.070057563,-0.069234177,-0.068444705,-0.067688846,-0.066964569,-0.06626813,-0.065594193,-0.064936029,-0.064285801,-0.063634923,-0.062974461,-0.062295572,-0.06158994,-0.060850193,-0.060070286,-0.0592458,-0.058374177,-0.057454854,-0.056489297,-0.055480947,-0.054435073,-0.053358554,-0.052259612,-0.051147501,-0.050032201,-0.048924114,-0.047833801,-0.046771763,-0.04574828,-0.04477332,-0.043856503,-0.04300712,-0.042234192,-0.041546555,-0.040952943,-0.040462058,-0.040082605,-0.039823281,-0.039692692,-0.039699221,-0.039850817,-0.040154734,-0.040617226,-0.041243205,-0.042035904,-0.042996542,-0.04412404,-0.045414781,-0.046862461,-0.048458017,-0.050189669,-0.052043056,-0.054001479,-0.056046238,-0.058157046,-0.060312516,-0.062490687,-0.064669568,-0.066827687,-0.068944612,-0.071001426,-0.072981135,-0.074869005,-0.0766528,-0.078322934,-0.079872519,-0.081297331,-0.082595687,-0.083768249,-0.084817776,-0.085748829,-0.086567452,-0.087280838,-0.087897009,-0.088424498,-0.088872071,-0.089248472,-0.089562217,-0.08982142,-0.090033665,-0.090205921,-0.090344483,-0.090454954,-0.090542248,-0.090610617,-0.090663689,-0.09070452,-0.090735656,-0.090759189,-0.090776816,-0.090789904,-0.090799534,-0.090806558,-0.090811636,-0.090815273,-0.090817857,-0.090819675,-0.090820943,-0.09082182,-0.090822421,-0.090822829,-0.090823104,-0.090823287,-0.090823408,-0.090823488,-0.090823539,-0.090823572,-0.090823594,-0.090823607,-0.090823616,-0.090823621,-0.090823624,-0.090823626,-0.090823627,-0.090823628,-0.090823628,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629],"zorder":10,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629],"zorder":11,"type":"scatter"},{"customdata":[[7.9597455e-186],[1.2097021e-184],[1.8223069e-183],[2.720999e-182],[4.0271616e-181],[5.9079054e-180],[8.5907643e-179],[1.2382088e-177],[1.7689671e-176],[2.5050099e-175],[3.5161138e-174],[4.8919297e-173],[6.7462323e-172],[9.2215978e-171],[1.2494384e-169],[1.6779822e-168],[2.2336938e-167],[2.9472959e-166],[3.8546738e-165],[4.9970688e-164],[6.4210615e-163],[8.1782829e-162],[1.032479e-160],[1.2920048e-159],[1.6025472e-158],[1.97025e-157],[2.4010193e-156],[2.9002388e-155],[3.4724474e-154],[4.1209883e-153],[4.847646e-152],[5.6522872e-151],[6.5325288e-150],[7.4834568e-149],[8.4974179e-148],[9.5639104e-147],[1.0669592e-145],[1.1798423e-144],[1.2931946e-143],[1.4049718e-142],[1.5129868e-141],[1.6149775e-140],[1.7086834e-139],[1.7919279e-138],[1.8627016e-137],[1.9192423e-136],[1.9601087e-135],[1.9842405e-134],[1.9910045e-133],[1.9802225e-132],[1.9521786e-131],[1.9076069e-130],[1.8476599e-129],[1.7738586e-128],[1.6880284e-127],[1.5922245e-126],[1.4886502e-125],[1.3795734e-124],[1.2672456e-123],[1.1538266e-122],[1.0413197e-121],[9.3151847e-121],[8.2596689e-120],[7.2593478e-119],[6.3240658e-118],[5.4608337e-117],[4.6739636e-116],[3.965295e-115],[3.3344905e-114],[2.7793757e-113],[2.2963011e-112],[1.8805038e-111],[1.5264529e-110],[1.2281641e-109],[9.7947461e-109],[7.7427239e-108],[6.0667788e-107],[4.7117947e-106],[3.6272572e-105],[2.7677964e-104],[2.0934074e-103],[1.5694126e-102],[1.1662304e-101],[8.5900433e-101],[6.2714817e-100],[4.5384627e-99],[3.2554511e-98],[2.3146077e-97],[1.6312007e-96],[1.1394656e-95],[7.8896699e-95],[5.414773e-94],[3.6835407e-93],[2.4837879e-92],[1.6600735e-91],[1.0997753e-90],[7.2217821e-90],[4.7005493e-89],[3.0326106e-88],[1.9393156e-87],[1.2292611e-86],[7.7233117e-86],[4.8097977e-85],[2.969025e-84],[1.8166226e-83],[1.1017406e-82],[6.6230465e-82],[3.9463905e-81],[2.330806e-80],[1.3645077e-79],[7.9178933e-79],[4.5541477e-78],[2.5963808e-77],[1.467214e-76],[8.2183065e-76],[4.5628377e-75],[2.5110277e-74],[1.36972e-73],[7.4058666e-73],[3.9690245e-72],[2.108412e-71],[1.1101738e-70],[5.7941575e-70],[2.9974601e-69],[1.5370229e-68],[7.8121587e-68],[3.9357326e-67],[1.9653682e-66],[9.7280561e-66],[4.7727866e-65],[2.3210354e-64],[1.1188074e-63],[5.3455539e-63],[2.531593e-62],[1.1883897e-61],[5.5295231e-61],[2.5502355e-60],[1.165834e-59],[5.2827121e-59],[2.3726899e-58],[1.0563038e-57],[4.6612297e-57],[2.0388064e-56],[8.8392474e-56],[3.7985549e-55],[1.6180254e-54],[6.8315002e-54],[2.858977e-53],[1.1859573e-52],[4.8763095e-52],[1.9873635e-51],[8.0283662e-51],[3.2147031e-50],[1.2759051e-49],[5.0194917e-49],[1.957334e-48],[7.565436e-48],[2.8984568e-47],[1.1006862e-46],[4.1430873e-46],[1.5457829e-45],[5.716586e-45],[2.0955057e-44],[7.6138587e-44],[2.7421086e-43],[9.7887751e-43],[3.4636653e-42],[1.2148073e-41],[4.2232104e-41],[1.4552645e-40],[4.9705572e-40],[1.6827985e-39],[5.6470686e-39],[1.8783561e-38],[6.192938e-38],[2.0238554e-37],[6.5558071e-37],[2.104926e-36],[6.6990228e-36],[2.1132461e-35],[6.6077362e-35],[2.0479499e-34],[6.2914393e-34],[1.915776e-33],[5.7823388e-33],[1.7299216e-32],[5.1299534e-32],[1.5078723e-31],[4.3931888e-31],[1.2687012e-30],[3.6316424e-30],[1.0304123e-29],[2.8978995e-29],[8.0782986e-29],[2.232137e-28],[6.113448e-28],[1.6596482e-27],[4.4659142e-27],[1.1911577e-26],[3.1491459e-26],[8.2524137e-26],[2.1435517e-25],[5.5188901e-25],[1.4084274e-24],[3.5627238e-24],[8.9329509e-24],[2.220102e-23],[5.4691045e-23],[1.3354417e-22],[3.2322072e-22],[7.7542381e-22],[1.843932e-21],[4.3462698e-21],[1.0154408e-20],[2.3515755e-20],[5.3979617e-20],[1.2281953e-19],[2.7699512e-19],[6.1921869e-19],[1.372093e-18],[3.0136368e-18],[6.5609459e-18],[1.4158281e-17],[3.0284717e-17],[6.4210471e-17],[1.3494536e-16],[2.8111261e-16],[5.804616e-16],[1.188059e-15],[2.4103189e-15],[4.8471187e-15],[9.6619807e-15],[1.9090743e-14],[3.7389916e-14],[7.2587542e-14],[1.3968398e-13],[2.6644597e-13],[5.0379155e-13],[9.4421975e-13],[1.754192e-12],[3.2304614e-12],[5.8970793e-12],[1.067078e-11],[1.9140093e-11],[3.4031626e-11],[5.9981101e-11],[1.0479527e-10],[1.8149604e-10],[3.1159733e-10],[5.3030364e-10],[8.9467067e-10],[1.4962814e-09],[2.4807263e-09],[4.0772222e-09],[6.6431592e-09],[1.0730375e-08],[1.7182675e-08],[2.7277745e-08],[4.2931361e-08],[6.6987943e-08],[1.0362925e-07],[1.5894262e-07],[2.4170191e-07],[3.6442791e-07],[5.4481125e-07],[8.0759826e-07],[1.1870597e-06],[1.730182e-06],[2.5007388e-06],[3.5844195e-06],[5.0952008e-06],[7.183155e-06],[1.0043885e-05],[1.392976e-05],[1.9163093e-05],[2.6151357e-05],[3.540448e-05],[4.7554152e-05],[6.3375021e-05],[8.3807496e-05],[0.00010998181],[0.00014324284],[0.00018517509],[0.00023762716],[0.00030273499],[0.00038294298],[0.00048102241],[0.00060008627],[0.00074359989],[0.00091538689],[0.0011196299],[0.0013608656],[0.001643974],[0.0019741615],[0.0023569366],[0.002798079],[0.0033036],[0.0038796926],[0.0045326704],[0.0052688933],[0.006094675],[0.0070161729],[0.0080392536],[0.0091693349],[0.010411199],[0.011768777],[0.013244909],[0.014841074],[0.016557104],[0.018390885],[0.02033806],[0.022391747],[0.024542289],[0.026777057],[0.029080332],[0.031433278],[0.033814039],[0.036197963],[0.038557985],[0.040865153],[0.043089306],[0.045199901],[0.047166939],[0.048961989],[0.050559239],[0.051936546],[0.053076412],[0.053966839],[0.054601999],[0.054982674],[0.05511642],[0.055017432],[0.054706093],[0.05420822],[0.053554024],[0.052776841],[0.051911677],[0.050993659],[0.050056453],[0.049130751],[0.048242905],[0.047413777],[0.046657877],[0.045982833],[0.045389221],[0.044870756],[0.044414837],[0.044003411],[0.043614094],[0.043221494],[0.042798649],[0.042318509],[0.041755375],[0.041086224],[0.040291849],[0.039357772],[0.038274877],[0.037039764],[0.035654796],[0.034127884],[0.032472005],[0.030704517],[0.028846315],[0.026920874],[0.02495324],[0.022969028],[0.020993465],[0.019050531],[0.017162226],[0.015347976],[0.013624217],[0.012004126],[0.010497523],[0.0091109063],[0.0078476229],[0.0067081293],[0.0056903348],[0.0047899917],[0.0040011108],[0.0033163805],[0.0027275687],[0.0022258951],[0.0018023612],[0.0014480308],[0.0011542598],[0.00091287285],[0.00071629057],[0.00055761159],[0.00043065495],[0.00032996945],[0.00025081661],[0.00018913365],[0.00014148259],[0.00010499065],[7.7286494e-05],[5.6435681e-05],[4.0878326e-05],[2.9370655e-05],[2.0931842e-05],[1.4796764e-05]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"June","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823628,-0.090823628,-0.090823627,-0.090823626,-0.090823625,-0.090823622,-0.090823618,-0.090823612,-0.090823602,-0.090823586,-0.090823562,-0.090823525,-0.09082347,-0.090823387,-0.090823264,-0.090823084,-0.090822821,-0.090822442,-0.090821899,-0.090821128,-0.090820044,-0.090818534,-0.090816446,-0.090813585,-0.090809699,-0.090804466,-0.090797478,-0.090788224,-0.090776075,-0.090760254,-0.090739821,-0.090713647,-0.090680386,-0.090638454,-0.090586002,-0.090520894,-0.090440686,-0.090342606,-0.090223543,-0.090080029,-0.089908242,-0.089703999,-0.089462763,-0.089179655,-0.088849467,-0.088466692,-0.08802555,-0.087520029,-0.086943936,-0.086290958,-0.085554736,-0.084728954,-0.083807456,-0.082784375,-0.081654294,-0.08041243,-0.079054852,-0.07757872,-0.075982555,-0.074266525,-0.072432744,-0.070485569,-0.068431882,-0.06628134,-0.064046572,-0.061743297,-0.059390351,-0.05700959,-0.054625666,-0.052265643,-0.049958476,-0.047734323,-0.045623728,-0.04365669,-0.04186164,-0.04026439,-0.038887083,-0.037747217,-0.03685679,-0.03622163,-0.035840955,-0.035707209,-0.035806197,-0.036117536,-0.036615409,-0.037269605,-0.038046788,-0.038911952,-0.039829969,-0.040767176,-0.041692878,-0.042580724,-0.043409852,-0.044165752,-0.044840796,-0.045434407,-0.045952873,-0.046408792,-0.046820218,-0.047209535,-0.047602134,-0.048024979,-0.04850512,-0.049068254,-0.049737405,-0.05053178,-0.051465857,-0.052548752,-0.053783865,-0.055168833,-0.056695745,-0.058351624,-0.060119112,-0.061977314,-0.063902755,-0.065870389,-0.067854601,-0.069830164,-0.071773097,-0.073661403,-0.075475653,-0.077199412,-0.078819503,-0.080326106,-0.081712723,-0.082976006,-0.0841155,-0.085133294,-0.086033637,-0.086822518,-0.087507248,-0.08809606,-0.088597734,-0.089021268,-0.089375598,-0.089669369,-0.089910756,-0.090107338,-0.090266017,-0.090392974,-0.090493659,-0.090572812,-0.090634495,-0.090682146,-0.090718638,-0.090746342,-0.090767193,-0.090782751,-0.090794258,-0.090802697,-0.090808832],"zorder":11,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835],"zorder":12,"type":"scatter"},{"customdata":[[1.3438253e-120],[1.1898247e-119],[1.0442111e-118],[9.0836191e-118],[7.8323986e-117],[6.694158e-116],[5.671037e-115],[4.7620548e-114],[3.9636172e-113],[3.2700507e-112],[2.6741315e-111],[2.1675871e-110],[1.74155e-109],[1.3869504e-108],[1.0948424e-107],[8.5665893e-107],[6.6440065e-106],[5.1076125e-105],[3.8919897e-104],[2.9396207e-103],[2.2007811e-102],[1.6331587e-101],[1.2012848e-100],[8.7584978e-100],[6.3296461e-99],[4.5341452e-98],[3.2194203e-97],[2.2658243e-96],[1.5806698e-95],[1.0930059e-94],[7.4915268e-94],[5.0896126e-93],[3.4274074e-92],[2.2877755e-91],[1.5136582e-90],[9.9267951e-90],[6.4529333e-89],[4.1578829e-88],[2.6555492e-87],[1.6811387e-86],[1.054921e-85],[6.5615066e-85],[4.0453355e-84],[2.4721393e-83],[1.4974724e-82],[8.9910891e-82],[5.3509816e-81],[3.1566204e-80],[1.8457766e-79],[1.0698031e-78],[6.1460571e-78],[3.4999149e-77],[1.9755436e-76],[1.1053099e-75],[6.1298519e-75],[3.3696472e-74],[1.8360629e-73],[9.9165232e-73],[5.3088468e-72],[2.8171499e-71],[1.4817974e-70],[7.7256838e-70],[3.992587e-69],[2.0452262e-68],[1.0384794e-67],[5.2266594e-67],[2.6074764e-66],[1.2893968e-65],[6.3200851e-65],[3.0706448e-64],[1.4787905e-63],[7.0591815e-63],[3.3402023e-62],[1.5666144e-61],[7.2832042e-61],[3.3562483e-60],[1.5330527e-59],[6.9411531e-59],[3.1151423e-58],[1.3857857e-57],[6.1106346e-57],[2.6708459e-56],[1.1571344e-55],[4.9692564e-55],[2.1152994e-54],[8.9253515e-54],[3.7329489e-53],[1.5475768e-52],[6.3595445e-52],[2.5904409e-51],[1.0459127e-50],[4.1859258e-50],[1.6605889e-49],[6.5299149e-49],[2.5452352e-48],[9.8338493e-48],[3.7661245e-47],[1.4296889e-46],[5.3797788e-46],[2.0066127e-45],[7.4188947e-45],[2.7188901e-44],[9.8769119e-44],[3.5565429e-43],[1.2694411e-42],[4.4913302e-42],[1.5751272e-41],[5.475639e-41],[1.8868302e-40],[6.4448077e-40],[2.1820594e-39],[7.323235e-39],[2.4362367e-38],[8.0337152e-38],[2.6259967e-37],[8.5085012e-37],[2.7327093e-36],[8.6999281e-36],[2.7454915e-35],[8.5882983e-35],[2.6630364e-34],[8.1852216e-34],[2.4938338e-33],[7.5316255e-33],[2.2547296e-32],[6.6909094e-32],[1.9681636e-31],[5.7388259e-31],[1.6587124e-30],[4.7523215e-30],[1.3496701e-29],[3.7995922e-29],[1.0603136e-28],[2.9330548e-28],[8.0425721e-28],[2.1860453e-27],[5.8899727e-27],[1.5731053e-26],[4.1647911e-26],[1.0929997e-25],[2.8434057e-25],[7.3324661e-25],[1.8743655e-24],[4.7495454e-24],[1.1930094e-23],[2.9705055e-23],[7.3318243e-23],[1.793864e-22],[4.3507423e-22],[1.046006e-21],[2.4928866e-21],[5.8893729e-21],[1.3792227e-20],[3.2018365e-20],[7.3682437e-20],[1.6808522e-19],[3.8009878e-19],[8.5205078e-19],[1.8933776e-18],[4.1707334e-18],[9.1073449e-18],[1.9714058e-17],[4.2302485e-17],[8.9983341e-17],[1.8974288e-16],[3.9662199e-16],[8.2185807e-16],[1.6882097e-15],[3.4376871e-15],[6.93933e-15],[1.3886118e-14],[2.7545912e-14],[5.4168576e-14],[1.0559724e-13],[2.0406736e-13],[3.9094116e-13],[7.424499e-13],[1.3977898e-12],[2.608775e-12],[4.8267256e-12],[8.8530102e-12],[1.6097296e-11],[2.9016149e-11],[5.1850484e-11],[9.1853022e-11],[1.6131067e-10],[2.808428e-10],[4.8472518e-10],[8.2939544e-10],[1.4068999e-09],[2.3659311e-09],[3.9443938e-09],[6.5192817e-09],[1.0682249e-08],[1.7352876e-08],[2.7946564e-08],[4.4620682e-08],[7.0631364e-08],[1.1084486e-07],[1.7246195e-07],[2.6603221e-07],[4.068572e-07],[6.1690832e-07],[9.2741556e-07],[1.3823178e-06],[2.0428017e-06],[2.9931933e-06],[4.3485007e-06],[6.2639316e-06],[8.9467279e-06],[1.2670652e-05],[1.7793429e-05],[2.4777394e-05],[3.4213466e-05],[4.6848449e-05],[6.3615423e-05],[8.5666751e-05],[0.00011440892],[0.00015153806],[0.00019907472],[0.00025939603],[0.00033526305],[0.00042984105],[0.00054671022],[0.00068986442],[0.00086369572],[0.0010729633],[0.0013227458],[0.0016183765],[0.0019653637],[0.0023692972],[0.0028357452],[0.0033701456],[0.0039776975],[0.0046632579],[0.0054312491],[0.006285582],[0.007229598],[0.0082660312],[0.0093969902],[0.010623955],[0.011947787],[0.01336873],[0.014886422],[0.016499865],[0.018207385],[0.020006546],[0.021894025],[0.023865446],[0.025915181],[0.028036125],[0.030219466],[0.03245447],[0.034728309],[0.037025955],[0.039330171],[0.041621615],[0.043879081],[0.046079869],[0.0482003],[0.050216344],[0.052104338],[0.053841765],[0.055408041],[0.056785263],[0.057958879],[0.058918209],[0.059656807],[0.060172621],[0.060467931],[0.060549086],[0.060426035],[0.060111699],[0.059621215],[0.058971112],[0.058178469],[0.057260115],[0.056231918],[0.055108202],[0.053901338],[0.052621504],[0.051276637],[0.049872554],[0.048413227],[0.04690117],[0.045337908],[0.043724486],[0.042061976],[0.040351931],[0.03859679],[0.036800168],[0.034967053],[0.033103881],[0.03121851],[0.029320087],[0.027418837],[0.025525788],[0.02365245],[0.021810479],[0.020011331],[0.018265945],[0.016584444],[0.014975888],[0.013448072],[0.012007384],[0.010658709],[0.0094053941],[0.0082492654],[0.007190683],[0.0062286402],[0.0053608925],[0.0045841104],[0.0038940486],[0.0032857243],[0.002753597],[0.002291745],[0.001894031],[0.0015542548],[0.0012662878],[0.0010241882],[0.00082229533],[0.00065530203],[0.00051830732],[0.00040684904],[0.00031691947],[0.00024496569],[0.00018787755],[0.0001429657],[0.00010793236],[8.0837207e-05],[6.0060506e-05],[4.4265396e-05],[3.2360726e-05],[2.346566e-05],[1.6876839e-05],[1.2038643e-05],[8.5168184e-06],[5.975537e-06],[4.157798e-06],[2.8689616e-06],[1.9631336e-06],[1.3320738e-06],[8.9629365e-07],[5.9800782e-07],[3.956302e-07],[2.5953153e-07],[1.688113e-07],[1.0887212e-07],[6.9619224e-08],[4.414006e-08],[2.7747397e-08],[1.7293855e-08],[1.0686529e-08],[6.5471474e-09],[3.9767999e-09],[2.394845e-09],[1.4298129e-09],[8.4632173e-10],[4.9664123e-10],[2.8893342e-10],[1.6664697e-10],[9.5288118e-11],[5.4015575e-11],[3.0355372e-11],[1.6911646e-11],[9.3404465e-12],[5.1142097e-12],[2.7759806e-12],[1.4937546e-12],[7.9682886e-13],[4.2137811e-13],[2.2090126e-13],[1.1480003e-13],[5.9142785e-14],[3.0204797e-14],[1.5291952e-14],[7.6746988e-15],[3.8182976e-15],[1.8831585e-15],[9.2068562e-16],[4.4621274e-16],[2.1437667e-16],[1.020979e-16],[4.8201305e-17],[2.2558091e-17],[1.0465173e-17],[4.8127136e-18],[2.1939775e-18],[9.9145252e-19],[4.4412822e-19],[1.9721531e-19],[8.6809617e-20],[3.7878186e-20],[1.6383392e-20],[7.0244289e-21],[2.9854513e-21],[1.2577665e-21],[5.2526731e-22],[2.1744547e-22],[8.9229683e-23]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"July","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898834,-0.10898834,-0.10898833,-0.10898831,-0.10898828,-0.10898824,-0.10898818,-0.10898809,-0.10898795,-0.10898774,-0.10898743,-0.10898697,-0.10898631,-0.10898536,-0.10898401,-0.10898209,-0.10897941,-0.10897568,-0.10897056,-0.10896358,-0.10895414,-0.10894151,-0.10892474,-0.10890269,-0.10887395,-0.10883682,-0.10878928,-0.10872896,-0.10865309,-0.10855851,-0.10844164,-0.10829849,-0.10812466,-0.10791539,-0.10766561,-0.10736998,-0.10702299,-0.10661906,-0.10615261,-0.10561821,-0.10501066,-0.1043251,-0.10355711,-0.10270277,-0.10175876,-0.10072232,-0.099591364,-0.098364399,-0.097040568,-0.095619624,-0.094101933,-0.09248849,-0.09078097,-0.088981809,-0.08709433,-0.085122909,-0.083073174,-0.08095223,-0.078768889,-0.076533884,-0.074260045,-0.071962399,-0.069658184,-0.067366739,-0.065109274,-0.062908486,-0.060788054,-0.05877201,-0.056884016,-0.055146589,-0.053580314,-0.052203091,-0.051029476,-0.050070146,-0.049331547,-0.048815734,-0.048520424,-0.048439269,-0.048562319,-0.048876655,-0.049367139,-0.050017243,-0.050809886,-0.051728239,-0.052756437,-0.053880152,-0.055087017,-0.056366851,-0.057711718,-0.0591158,-0.060575127,-0.062087185,-0.063650447,-0.065263868,-0.066926379,-0.068636423,-0.070391565,-0.072188186,-0.074021302,-0.075884473,-0.077769844,-0.079668267,-0.081569517,-0.083462567,-0.085335904,-0.087177876,-0.088977023,-0.09072241,-0.092403911,-0.094012467,-0.095540282,-0.09698097,-0.098329646,-0.099582961,-0.10073909,-0.10179767,-0.10275971,-0.10362746,-0.10440424,-0.10509431,-0.10570263,-0.10623476,-0.10669661,-0.10709432,-0.1074341,-0.10772207,-0.10796417,-0.10816606,-0.10833305,-0.10847005,-0.10858151,-0.10867144,-0.10874339,-0.10880048,-0.10884539,-0.10888042,-0.10890752,-0.10892829,-0.10894409,-0.10895599,-0.10896489,-0.10897148,-0.10897632,-0.10897984,-0.10898238,-0.1089842,-0.10898549,-0.10898639,-0.10898702,-0.10898746,-0.10898776,-0.10898796,-0.1089881,-0.10898819,-0.10898825,-0.10898829,-0.10898831,-0.10898833,-0.10898834,-0.10898834,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835],"zorder":12,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835],"zorder":13,"type":"scatter"},{"customdata":[[3.3519376e-147],[3.7533534e-146],[4.1658803e-145],[4.583085e-144],[4.9977307e-143],[5.4019627e-142],[5.7875415e-141],[6.1461118e-140],[6.4694982e-139],[6.7500118e-138],[6.9807531e-137],[7.1558927e-136],[7.2709167e-135],[7.3228192e-134],[7.3102337e-133],[7.2334921e-132],[7.0946106e-131],[6.8972016e-130],[6.6463174e-129],[6.3482355e-128],[6.0101982e-127],[5.6401201e-126],[5.246283e-125],[4.8370311e-124],[4.4204842e-123],[4.0042816e-122],[3.5953666e-121],[3.19982e-120],[2.8227455e-119],[2.4682076e-118],[2.1392201e-117],[1.837778e-116],[1.5649282e-115],[1.3208686e-114],[1.1050669e-113],[9.1639217e-113],[7.5324794e-112],[6.1370313e-111],[4.9561282e-110],[3.9672587e-109],[3.1477651e-108],[2.4755853e-107],[1.9298222e-106],[1.4911471e-105],[1.1420562e-104],[8.6699839e-104],[6.5239841e-103],[4.865991e-102],[3.5974395e-101],[2.636207e-100],[1.914826e-99],[1.3786148e-98],[9.8383062e-98],[6.9592358e-97],[4.8794016e-96],[3.3910593e-95],[2.335974e-94],[1.5950137e-93],[1.079505e-92],[7.2418356e-92],[4.8154457e-91],[3.1738625e-90],[2.0734976e-89],[1.3427117e-88],[8.6183832e-88],[5.4831816e-87],[3.457827e-86],[2.1614127e-85],[1.3391707e-84],[8.2242817e-84],[5.0063801e-83],[3.0207408e-82],[1.8066204e-81],[1.0709869e-80],[6.2931082e-80],[3.6653044e-79],[2.1160148e-78],[1.2108522e-77],[6.8679544e-77],[3.8612459e-76],[2.1517475e-75],[1.1885542e-74],[6.5074439e-74],[3.5315528e-73],[1.8996989e-72],[1.0129025e-71],[5.3532102e-71],[2.8043019e-70],[1.4561263e-69],[7.4944041e-69],[3.8233053e-68],[1.9333241e-67],[9.690231e-67],[4.8142364e-66],[2.3707431e-65],[1.1571919e-64],[5.5987368e-64],[2.6849644e-63],[1.2762943e-62],[6.0134944e-62],[2.8084507e-61],[1.3000813e-60],[5.9653783e-60],[2.7131218e-59],[1.2231068e-58],[5.4654167e-58],[2.4207279e-57],[1.0627533e-56],[4.6246917e-56],[1.9947886e-55],[8.528542e-55],[3.614236e-54],[1.5181756e-53],[6.3210805e-53],[2.6087018e-52],[1.0671399e-51],[4.3269519e-51],[1.739028e-50],[6.927793e-50],[2.7355649e-49],[1.070688e-48],[4.1537722e-48],[1.5972989e-47],[6.0882647e-47],[2.300195e-46],[8.6138953e-46],[3.19741e-45],[1.1764158e-44],[4.2902954e-44],[1.5508769e-43],[5.5568833e-43],[1.973554e-42],[6.947532e-42],[2.4242416e-41],[8.3846522e-41],[2.8744715e-40],[9.7677548e-40],[3.2899955e-39],[1.0983978e-38],[3.6348611e-38],[1.1922842e-37],[3.876462e-37],[1.2492665e-36],[3.9906024e-36],[1.2635302e-35],[3.9654876e-35],[1.2335915e-34],[3.8037323e-34],[1.1625518e-33],[3.521912e-33],[1.0575684e-32],[3.1477648e-32],[9.2866667e-32],[2.7156966e-31],[7.8716621e-31],[2.2615982e-30],[6.4406285e-30],[1.8180459e-29],[5.0868071e-29],[1.4107481e-28],[3.8780866e-28],[1.0566942e-27],[2.8539408e-27],[7.6401944e-27],[2.027345e-26],[5.3323017e-26],[1.3901625e-25],[3.5923633e-25],[9.2015024e-25],[2.3361517e-24],[5.8790501e-24],[1.4664832e-23],[3.6258583e-23],[8.8860427e-23],[2.1585881e-22],[5.1975059e-22],[1.2404636e-21],[2.9345188e-21],[6.8810322e-21],[1.5993154e-20],[3.6844995e-20],[8.4136941e-20],[1.9044027e-19],[4.2726244e-19],[9.5015512e-19],[2.094393e-18],[4.5759969e-18],[9.91008e-18],[2.1273184e-17],[4.5263877e-17],[9.5462968e-17],[1.9956393e-16],[4.1351679e-16],[8.4931387e-16],[1.729049e-15],[3.4890757e-15],[6.9787486e-15],[1.3835944e-14],[2.7189686e-14],[5.2961921e-14],[1.0225569e-13],[1.956931e-13],[3.7121699e-13],[6.9798257e-13],[1.3008456e-12],[2.403098e-12],[4.4002955e-12],[7.9865081e-12],[1.4368019e-11],[2.5621338e-11],[4.5286825e-11],[7.9342746e-11],[1.3778694e-10],[2.371781e-10],[4.0467562e-10],[6.8439321e-10],[1.1472837e-09],[1.9063506e-09],[3.1397997e-09],[5.1258834e-09],[8.2947558e-09],[1.3304762e-08],[2.1153385e-08],[3.3336695e-08],[5.2075791e-08],[8.063447e-08],[1.2375937e-07],[1.8828209e-07],[2.8393224e-07],[4.244207e-07],[6.2886307e-07],[9.236236e-07],[1.3446687e-06],[1.9405243e-06],[2.775932e-06],[3.9362916e-06],[5.5329595e-06],[7.7094424e-06],[1.0648479e-05],[1.4579938e-05],[1.9789378e-05],[2.6627017e-05],[3.5516725e-05],[4.6964559e-05],[6.1566188e-05],[8.0012462e-05],[0.00010309226],[0.00013169172],[0.00016678883],[0.00020944267],[0.00026077642],[0.00032195367],[0.00039414801],[0.00047850593],[0.00057610403],[0.00068790166],[0.00081469084],[0.0009570459],[0.0011152755],[0.0012893798],[0.0014790167],[0.0016834784],[0.0019016831],[0.0021321817],[0.0023731817],[0.0026225884],[0.002878062],[0.0031370892],[0.0033970661],[0.003655388],[0.0039095437],[0.0041572075],[0.0043963259],[0.0046251944],[0.0048425209],[0.0050474726],[0.0052397056],[0.0054193753],[0.0055871274],[0.0057440723],[0.0058917415],[0.0060320307],[0.0061671304],[0.0062994474],[0.0064315205],[0.0065659337],[0.0067052304],[0.0068518331],[0.0070079733],[0.0071756356],[0.0073565209],[0.0075520337],[0.0077632961],[0.0079911924],[0.0082364434],[0.0084997112],[0.0087817301],[0.0090834575],[0.0094062375],[0.009751965],[0.010123241],[0.010523505],[0.01095713],[0.011429474],[0.011946873],[0.012516571],[0.013146587],[0.013845512],[0.014622246],[0.015485687],[0.016444367],[0.017506066],[0.01867741],[0.019963469],[0.021367375],[0.022889969],[0.024529496],[0.02628137],[0.028137993],[0.030088676],[0.032119636],[0.034214094],[0.036352477],[0.038512709],[0.040670615],[0.042800402],[0.044875235],[0.046867873],[0.048751355],[0.050499714],[0.052088689],[0.053496409],[0.054704011],[0.05569617],[0.056461515],[0.056992897],[0.057287503],[0.057346809],[0.057176364],[0.056785424],[0.056186452],[0.055394522],[0.054426645],[0.053301072],[0.052036607],[0.05065197],[0.049165235],[0.047593388],[0.045952004],[0.044255054],[0.042514849],[0.040742096],[0.038946056],[0.037134767],[0.035315315],[0.03349412],[0.031677197],[0.029870396],[0.028079569],[0.026310694],[0.024569906],[0.02286349],[0.02119779],[0.0195791],[0.018013507],[0.016506735],[0.015063983],[0.013689785],[0.012387894],[0.011161195],[0.010011664],[0.0089403543],[0.0079474194],[0.007032165],[0.0061931236],[0.0054281447],[0.0047344947],[0.0041089605],[0.003547953],[0.0030476047],[0.0026038605],[0.0022125597],[0.0018695082],[0.0015705409],[0.0013115757],[0.0010886576],[0.00089799572],[0.00073599306],[0.00059926927],[0.00048467753],[0.00038931575],[0.00031053259],[0.00024592859],[0.00019335294],[0.00015089636],[0.00011688058],[8.9845038e-05],[6.8531394e-05],[5.1866564e-05],[3.8944804e-05]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"July","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898834,-0.10898833,-0.10898832,-0.1089883,-0.10898827,-0.10898823,-0.10898817,-0.10898807,-0.10898793,-0.10898773,-0.10898743,-0.10898701,-0.10898641,-0.10898558,-0.10898442,-0.10898282,-0.10898065,-0.10897771,-0.10897377,-0.10896857,-0.10896173,-0.10895284,-0.10894139,-0.10892679,-0.10890834,-0.10888526,-0.10885666,-0.10882157,-0.10877891,-0.10872758,-0.1086664,-0.10859421,-0.10850985,-0.10841225,-0.10830045,-0.10817366,-0.10803131,-0.10787308,-0.10769897,-0.10750934,-0.10730488,-0.10708667,-0.10685617,-0.10661517,-0.10636577,-0.10611029,-0.10585127,-0.10559129,-0.10533297,-0.10507881,-0.10483115,-0.10459203,-0.10436316,-0.10414583,-0.10394088,-0.10374865,-0.10356898,-0.10340123,-0.10324428,-0.10309661,-0.10295632,-0.10282122,-0.10268891,-0.10255683,-0.10242242,-0.10228312,-0.10213652,-0.10198038,-0.10181272,-0.10163183,-0.10143632,-0.10122506,-0.10099716,-0.10075191,-0.10048864,-0.10020662,-0.099904897,-0.099582117,-0.09923639,-0.098865113,-0.098464849,-0.098031224,-0.09755888,-0.097041481,-0.096471783,-0.095841768,-0.095142843,-0.094366108,-0.093502668,-0.092543988,-0.091482289,-0.090310945,-0.089024885,-0.087620979,-0.086098386,-0.084458858,-0.082706985,-0.080850361,-0.078899678,-0.076868719,-0.07477426,-0.072635878,-0.070475646,-0.06831774,-0.066187953,-0.064113119,-0.062120481,-0.060237,-0.058488641,-0.056899665,-0.055491945,-0.054284344,-0.053292184,-0.05252684,-0.051995458,-0.051700852,-0.051641545,-0.05181199,-0.052202931,-0.052801903,-0.053593833,-0.05456171,-0.055687283,-0.056951747,-0.058336385,-0.05982312,-0.061394966,-0.06303635,-0.064733301,-0.066473506,-0.068246258,-0.070042299,-0.071853588,-0.073673039,-0.075494235,-0.077311157,-0.079117959,-0.080908785,-0.082677661,-0.084418448,-0.086124865,-0.087790565,-0.089409255,-0.090974848,-0.09248162,-0.093924372,-0.095298569,-0.096600461,-0.09782716,-0.098976691,-0.100048,-0.10104094,-0.10195619,-0.10279523,-0.10356021,-0.10425386,-0.10487939,-0.1054404,-0.10594075,-0.10638449,-0.10677579,-0.10711885,-0.10741781,-0.10767678,-0.1078997,-0.10809036,-0.10825236,-0.10838909,-0.10850368,-0.10859904,-0.10867782,-0.10874243,-0.108795,-0.10883746,-0.10887147,-0.10889851,-0.10891982,-0.10893649,-0.10894941],"zorder":13,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308],"zorder":14,"type":"scatter"},{"customdata":[[1.028086e-96],[7.1956035e-96],[4.9919336e-95],[3.4326868e-94],[2.3397171e-93],[1.5807251e-92],[1.0585543e-91],[7.0264135e-91],[4.6229383e-90],[3.014854e-89],[1.9488494e-88],[1.2486884e-87],[7.9303737e-87],[4.9922583e-86],[3.1150444e-85],[1.9266164e-84],[1.1811092e-83],[7.1770942e-83],[4.3228588e-82],[2.5808172e-81],[1.5272399e-80],[8.9582064e-80],[5.2083322e-79],[3.001512e-78],[1.7145308e-77],[9.7076545e-77],[5.4481258e-76],[3.0307056e-75],[1.6711066e-74],[9.1333139e-74],[4.9478487e-73],[2.6568573e-72],[1.4141122e-71],[7.4604201e-71],[3.9012745e-70],[2.0221508e-69],[1.0389254e-68],[5.2907715e-68],[2.6706529e-67],[1.3362253e-66],[6.6268283e-66],[3.2575835e-65],[1.5872641e-64],[7.6659617e-64],[3.6698464e-63],[1.7413775e-62],[8.1903373e-62],[3.8183386e-61],[1.7644562e-60],[8.0818567e-60],[3.6692322e-59],[1.6512128e-58],[7.3653725e-58],[3.2564932e-57],[1.4271494e-56],[6.1994405e-56],[2.6693122e-55],[1.1392264e-54],[4.819306e-54],[2.0207974e-53],[8.398947e-53],[3.4601164e-52],[1.4129292e-51],[5.7189179e-51],[2.2944106e-50],[9.1241459e-50],[3.5964755e-49],[1.40516e-48],[5.4417461e-48],[2.0888851e-47],[7.9479412e-47],[2.9974955e-46],[1.1205371e-45],[4.1520036e-45],[1.5249409e-44],[5.5515226e-44],[2.0032493e-43],[7.165091e-43],[2.5402251e-42],[8.926609e-42],[3.1093142e-41],[1.0735111e-40],[3.6737723e-40],[1.2461828e-39],[4.1900099e-39],[1.3964075e-38],[4.6128898e-38],[1.5104202e-37],[4.9021468e-37],[1.5770252e-36],[5.0286887e-36],[1.5894054e-35],[4.9794159e-35],[1.5462721e-34],[4.7594553e-34],[1.4520861e-33],[4.3912818e-33],[1.3162975e-32],[3.9109348e-32],[1.1517837e-31],[3.3622117e-31],[9.7284353e-31],[2.7901319e-30],[7.931773e-30],[2.2350108e-29],[6.2424169e-29],[1.728183e-28],[4.7423158e-28],[1.289897e-27],[3.47763e-27],[9.2934193e-27],[2.4616794e-26],[6.4632544e-26],[1.6820342e-25],[4.3389254e-25],[1.1094133e-24],[2.8116957e-24],[7.063291e-24],[1.7587725e-23],[4.3408627e-23],[1.0619553e-22],[2.5751363e-22],[6.1895349e-22],[1.4746183e-21],[3.4822906e-21],[8.1510624e-21],[1.8911554e-20],[4.3491466e-20],[9.9139031e-20],[2.2400056e-19],[5.0166909e-19],[1.1136517e-18],[2.4504467e-18],[5.3444736e-18],[1.1553895e-17],[2.475801e-17],[5.2585604e-17],[1.1070872e-16],[2.3102586e-16],[4.7786277e-16],[9.7973728e-16],[1.9910397e-15],[4.0106432e-15],[8.0077775e-15],[1.5847977e-14],[3.1088482e-14],[6.0448994e-14],[1.1650446e-13],[2.2256655e-13],[4.2144525e-13],[7.91018e-13],[1.4716195e-12],[2.7137426e-12],[4.9602755e-12],[8.9868394e-12],[1.6138837e-11],[2.872775e-11],[5.0686831e-11],[8.8644725e-11],[1.5366499e-10],[2.6403491e-10],[4.4968895e-10],[7.5915005e-10],[1.2703041e-09],[2.1069421e-09],[3.463877e-09],[5.6446558e-09],[9.1175431e-09],[1.4597678e-08],[2.3166244e-08],[3.6441286e-08],[5.6819623e-08],[8.7815269e-08],[1.3452694e-07],[2.0427566e-07],[3.0746296e-07],[4.587104e-07],[6.7835167e-07],[9.9435806e-07],[1.444786e-06],[2.0808391e-06],[2.9706358e-06],[4.2037623e-06],[5.8966718e-06],[8.1989536e-06],[1.1300446e-05],[1.5439095e-05],[2.0909388e-05],[2.8071051e-05],[3.7357633e-05],[4.9284421e-05],[6.4455047e-05],[8.3566009e-05],[0.00010740827],[0.00013686504],[0.00017290492],[0.00021656964],[0.00026895586],[0.00033119082],[0.00040440199],[0.00048968143],[0.00058804595],[0.00070039493],[0.00082746818],[0.00096980638],[0.0011277174],[0.0013012519],[0.00149019],[0.0016940441],[0.0019120771],[0.0021433379],[0.0023867151],[0.0026410049],[0.0029049921],[0.003177538],[0.0034576721],[0.0037446792],[0.0040381772],[0.0043381795],[0.0046451365],[0.0049599538],[0.0052839843],[0.005618996],[0.0059671184],[0.0063307707],[0.0067125813],[0.0071153039],[0.0075417396],[0.0079946728],[0.008476827],[0.0089908459],[0.0095393003],[0.010124722],[0.010749661],[0.011416751],[0.012128796],[0.012888836],[0.013700205],[0.014566568],[0.015491908],[0.016480483],[0.017536721],[0.018665073],[0.019869817],[0.021154811],[0.022523229],[0.023977258],[0.025517798],[0.027144171],[0.028853849],[0.030642224],[0.032502427],[0.03442522],[0.036398951],[0.038409595],[0.040440877],[0.042474469],[0.044490282],[0.04646681],[0.04838155],[0.05021147],[0.051933516],[0.053525136],[0.054964825],[0.056232647],[0.057310737],[0.058183766],[0.058839333],[0.059268295],[0.059465009],[0.059427468],[0.059157336],[0.058659879],[0.057943779],[0.057020846],[0.055905637],[0.054614996],[0.053167531],[0.051583051],[0.049881991],[0.048084848],[0.046211647],[0.044281479],[0.042312103],[0.040319656],[0.038318456],[0.036320915],[0.034337556],[0.032377116],[0.030446732],[0.028552174],[0.026698122],[0.024888445],[0.023126472],[0.021415233],[0.01975765],[0.018156673],[0.016615351],[0.015136845],[0.013724375],[0.012381135],[0.011110161],[0.009914181],[0.0087954717],[0.007755711],[0.0067958618],[0.005916084],[0.0051156848],[0.0043931094],[0.0037459713],[0.0031711187],[0.002664731],[0.0022224386],[0.0018394563],[0.0015107235],[0.0012310432],[0.00099521145],[0.0007981341],[0.00063492563],[0.00050098817],[0.00039206998],[0.00030430399],[0.00023422775],[0.0001787872],[0.000135327],[0.0001015703],[7.5590809e-05],[5.5779979e-05],[4.0811552e-05],[2.960552e-05],[2.129303e-05],[1.5183389e-05],[1.0733924e-05],[7.5231477e-06],[5.227396e-06],[3.6008906e-06],[2.459052e-06],[1.664768e-06],[1.1172835e-06],[7.4334855e-07],[4.9027216e-07],[3.2054871e-07],[2.0775892e-07],[1.3348459e-07],[8.5016986e-08],[5.3676083e-08],[3.3593413e-08],[2.0841236e-08],[1.2817014e-08],[7.8134422e-09],[4.7215914e-09],[2.8282856e-09],[1.6793664e-09],[9.8844763e-10],[5.7669548e-10],[3.335208e-10],[1.9119726e-10],[1.08648e-10],[6.1198691e-11],[3.4169763e-11],[1.8911256e-11],[1.0374724e-11],[5.6416965e-12],[3.0410195e-12],[1.6248165e-12],[8.6052695e-13],[4.5175092e-13],[2.3507556e-13],[1.212521e-13],[6.1993183e-14],[3.1417454e-14],[1.5782289e-14],[7.8585162e-15],[3.878665e-15],[1.8975567e-15],[9.2019042e-16],[4.4231407e-16],[2.1074322e-16],[9.9528154e-17],[4.6591588e-17],[2.1619121e-17],[9.943454e-18],[4.5332009e-18],[2.0485232e-18],[9.1758194e-19],[4.0739589e-19],[1.7928999e-19],[7.8210111e-20],[3.3817152e-20],[1.4493666e-20],[6.1572449e-21],[2.5927545e-21],[1.0821888e-21],[4.4772483e-22],[1.8360551e-22],[7.4632249e-23],[3.0070004e-23],[1.200899e-23],[4.7538496e-24],[1.8653065e-24]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"August","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715307,-0.12715307,-0.12715307,-0.12715306,-0.12715304,-0.12715302,-0.12715299,-0.12715295,-0.12715288,-0.12715277,-0.12715262,-0.1271524,-0.12715209,-0.12715164,-0.127151,-0.12715011,-0.12714888,-0.12714718,-0.12714488,-0.12714178,-0.12713764,-0.12713217,-0.12712501,-0.12711572,-0.1271038,-0.12708863,-0.12706951,-0.12704567,-0.12701622,-0.12698018,-0.12693651,-0.12688412,-0.12682189,-0.12674868,-0.1266634,-0.12656503,-0.12645269,-0.12632561,-0.12618327,-0.12602536,-0.12585183,-0.12566289,-0.12545904,-0.125241,-0.12500974,-0.12476637,-0.12451208,-0.12424809,-0.12397554,-0.12369541,-0.1234084,-0.1231149,-0.1228149,-0.12250794,-0.12219313,-0.1218691,-0.12153408,-0.12118596,-0.12082231,-0.1204405,-0.12003778,-0.11961134,-0.11915841,-0.11867625,-0.11816223,-0.11761378,-0.11702836,-0.11640342,-0.11573633,-0.11502428,-0.11426424,-0.11345288,-0.11258651,-0.11166117,-0.1106726,-0.10961636,-0.10848801,-0.10728326,-0.10599827,-0.10462985,-0.10317582,-0.10163528,-0.10000891,-0.098299231,-0.096510857,-0.094650654,-0.092727861,-0.090754129,-0.088743485,-0.086712204,-0.084678611,-0.082662798,-0.08068627,-0.07877153,-0.07694161,-0.075219565,-0.073627944,-0.072188255,-0.070920434,-0.069842343,-0.068969314,-0.068313748,-0.067884785,-0.067688071,-0.067725613,-0.067995745,-0.068493201,-0.069209301,-0.070132234,-0.071247444,-0.072538084,-0.07398555,-0.07557003,-0.077271089,-0.079068233,-0.080941433,-0.082871602,-0.084840977,-0.086833424,-0.088834624,-0.090832165,-0.092815525,-0.094775964,-0.096706349,-0.098600906,-0.10045496,-0.10226464,-0.10402661,-0.10573785,-0.10739543,-0.10899641,-0.11053773,-0.11201624,-0.11342871,-0.11477195,-0.11604292,-0.1172389,-0.11835761,-0.11939737,-0.12035722,-0.121237,-0.1220374,-0.12275997,-0.12340711,-0.12398196,-0.12448835,-0.12493064,-0.12531362,-0.12564236,-0.12592204,-0.12615787,-0.12635495,-0.12651815,-0.12665209,-0.12676101,-0.12684878,-0.12691885,-0.12697429,-0.12701775,-0.12705151,-0.12707749,-0.1270973,-0.12711227,-0.12712347,-0.12713179,-0.1271379,-0.12714235,-0.12714556,-0.12714785,-0.12714948,-0.12715062,-0.12715142,-0.12715196,-0.12715234,-0.12715259,-0.12715276,-0.12715287,-0.12715295,-0.127153,-0.12715303,-0.12715305,-0.12715306,-0.12715307,-0.12715307,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308],"zorder":14,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308],"zorder":15,"type":"scatter"},{"customdata":[[2.6988568e-179],[3.9134754e-178],[5.6248308e-177],[8.0134662e-176],[1.1316066e-174],[1.583925e-173],[2.1975456e-172],[3.0220754e-171],[4.1194271e-170],[5.5658628e-169],[7.4540502e-168],[9.8950111e-167],[1.3019803e-165],[1.6980745e-164],[2.1951956e-163],[2.8128975e-162],[3.5727185e-161],[4.4978803e-160],[5.6128211e-159],[6.9425456e-158],[8.5117826e-157],[1.0343953e-155],[1.2459966e-154],[1.4876864e-153],[1.7606387e-152],[2.0653487e-151],[2.4014902e-150],[2.7677865e-149],[3.1619039e-148],[3.5803798e-147],[4.0185917e-146],[4.4707773e-145],[4.9301095e-144],[5.3888302e-143],[5.8384402e-142],[6.269943e-141],[6.674132e-140],[7.0419096e-139],[7.3646238e-138],[7.6344046e-137],[7.8444821e-136],[7.9894687e-135],[8.0655884e-134],[8.0708405e-133],[8.0050867e-132],[7.8700575e-131],[7.6692762e-130],[7.4079062e-129],[7.0925305e-128],[6.7308764e-127],[6.3315014e-126],[5.9034583e-125],[5.4559581e-124],[4.9980466e-123],[4.5383119e-122],[4.0846343e-121],[3.6439872e-120],[3.2222953e-119],[2.8243512e-118],[2.4537875e-117],[2.1131004e-116],[1.8037164e-115],[1.5260942e-114],[1.2798511e-113],[1.0639043e-112],[8.7661867e-112],[7.1595211e-111],[5.7959195e-110],[4.6507807e-109],[3.6990871e-108],[2.916275e-107],[2.2789124e-106],[1.7651924e-105],[1.3552575e-104],[1.0313757e-103],[7.7799603e-103],[5.8170565e-102],[4.311165e-101],[3.1670251e-100],[2.3060776e-99],[1.6644161e-98],[1.1907361e-97],[8.4437387e-97],[5.934987e-96],[4.1349524e-95],[2.8555322e-94],[1.954652e-93],[1.3262266e-92],[8.9193244e-92],[5.9458259e-91],[3.9287868e-90],[2.573184e-89],[1.6705111e-88],[1.0749645e-87],[6.8565415e-87],[4.3349335e-86],[2.7166029e-85],[1.687471e-84],[1.0389938e-83],[6.3409773e-83],[3.8358893e-82],[2.3000784e-81],[1.3670549e-80],[8.0537128e-80],[4.7029809e-79],[2.7221828e-78],[1.5618107e-77],[8.8819158e-77],[5.0067063e-76],[2.7974663e-75],[1.5493338e-74],[8.5053573e-74],[4.6281527e-73],[2.4962635e-72],[1.3345685e-71],[7.0722752e-71],[3.7148845e-70],[1.9341916e-69],[9.982096e-69],[5.106369e-68],[2.5892319e-67],[1.3013619e-66],[6.4832646e-66],[3.2015333e-65],[1.5670795e-64],[7.6031378e-64],[3.6564839e-63],[1.7430247e-62],[8.2359296e-62],[3.8573677e-61],[1.7907662e-60],[8.2405527e-60],[3.7587505e-59],[1.6994192e-58],[7.6160104e-58],[3.3831767e-57],[1.489677e-56],[6.5017454e-56],[2.8127971e-55],[1.2061952e-54],[5.1270513e-54],[2.1601744e-53],[9.0215503e-53],[3.7346073e-52],[1.5324287e-51],[6.2328599e-51],[2.5128489e-50],[1.0041937e-49],[3.9777817e-49],[1.5618412e-48],[6.0786272e-48],[2.3450226e-47],[8.9672995e-47],[3.3989879e-46],[1.2770594e-45],[4.7560492e-45],[1.7557212e-44],[6.4244944e-44],[2.3302194e-43],[8.3777875e-43],[2.9856356e-42],[1.0546769e-41],[3.6929845e-41],[1.2817733e-40],[4.4098207e-40],[1.5038581e-39],[5.0835757e-39],[1.7033681e-38],[5.6575032e-38],[1.8625952e-37],[6.0784073e-37],[1.9662517e-36],[6.3047332e-36],[2.0038856e-35],[6.3133239e-35],[1.9716167e-34],[6.1033253e-34],[1.8727961e-33],[5.6963254e-33],[1.7174328e-32],[5.1326984e-32],[1.5205236e-31],[4.4650092e-31],[1.2996719e-30],[3.7499693e-30],[1.0725182e-29],[3.0406401e-29],[8.5449433e-29],[2.3803324e-28],[6.5728046e-28],[1.7990738e-27],[4.8812697e-27],[1.3128125e-26],[3.499928e-26],[9.249165e-26],[2.4228886e-25],[6.2914732e-25],[1.619421e-24],[4.1319609e-24],[1.0450623e-23],[2.6201024e-23],[6.5115588e-23],[1.6041422e-22],[3.9173513e-22],[9.4827549e-22],[2.2754613e-21],[5.4125e-21],[1.2762052e-20],[2.9828942e-20],[6.9111545e-20],[1.5873013e-19],[3.6138063e-19],[8.1558214e-19],[1.8246039e-18],[4.0463944e-18],[8.8954368e-18],[1.9385031e-17],[4.1876138e-17],[8.967438e-17],[1.9035862e-16],[4.0057133e-16],[8.35586e-16],[1.7278547e-15],[3.5418392e-15],[7.1970894e-15],[1.449747e-14],[2.8949141e-14],[5.7304425e-14],[1.124477e-13],[2.1873779e-13],[4.2180224e-13],[8.0631862e-13],[1.527982e-12],[2.8704139e-12],[5.3454786e-12],[9.8683715e-12],[1.8060189e-11],[3.2765599e-11],[5.8929681e-11],[1.0506822e-10],[1.8570824e-10],[3.2539787e-10],[5.6522745e-10],[9.7332549e-10],[1.6615775e-09],[2.8119794e-09],[4.7177416e-09],[7.8467191e-09],[1.293825e-08],[2.1149401e-08],[3.4273409e-08],[5.506238e-08],[8.7698645e-08],[1.3847548e-07],[2.1676885e-07],[3.3640849e-07],[5.175892e-07],[7.8950316e-07],[1.1939202e-06],[1.7899956e-06],[2.6606421e-06],[3.9208618e-06],[5.728489e-06],[8.297843e-06],[1.1916815e-05],[1.6967915e-05],[2.3953768e-05],[3.3527426e-05],[4.6527728e-05],[6.4019654e-05],[8.7339266e-05],[0.0001181424],[0.00015845566],[0.0002107277],[0.00027787797],[0.0003633394],[0.00047109089],[0.00060567464],[0.00077219331],[0.00097628147],[0.0012240463],[0.0015219733],[0.0018767936],[0.0022953117],[0.0027841946],[0.0033497256],[0.0039975298],[0.0047322821],[0.0055574081],[0.0064747976],[0.0074845451],[0.0085847374],[0.0097713076],[0.011037972],[0.012376261],[0.013775662],[0.015223865],[0.016707117],[0.018210678],[0.019719343],[0.021218032],[0.022692394],[0.024129407],[0.025517935],[0.026849206],[0.02811718],[0.029318793],[0.030454043],[0.031525921],[0.032540191],[0.03350502],[0.034430487],[0.035328001],[0.036209649],[0.037087525],[0.037973069],[0.038876446],[0.039806009],[0.040767849],[0.041765466],[0.042799557],[0.043867919],[0.044965472],[0.046084376],[0.047214228],[0.048342329],[0.049453997],[0.050532911],[0.051561479],[0.052521214],[0.053393125],[0.05415811],[0.05479736],[0.055292774],[0.055627376],[0.055785754],[0.055754481],[0.055522541],[0.055081726],[0.054426988],[0.053556734],[0.052473038],[0.051181745],[0.049692469],[0.048018459],[0.046176337],[0.044185719],[0.042068717],[0.039849363],[0.03755296],[0.035205403],[0.032832501],[0.030459323],[0.028109604],[0.025805229],[0.02356582],[0.021408427],[0.019347333],[0.017393972],[0.015556945],[0.013842127],[0.012252848],[0.010790125],[0.0094529373],[0.0082385183],[0.0071426558],[0.0061599848],[0.0052842647],[0.004508633],[0.0038258318],[0.0032284049],[0.0027088652],[0.0022598331],[0.0018741485],[0.0015449586],[0.0012657839],[0.0010305654],[0.00083369578],[0.0006700366],[0.00053492342],[0.0004241614],[0.00033401255],[0.00026117639],[0.00020276541],[0.0001562767],[0.0001195608],[9.0789142e-05],[6.8420815e-05],[5.1169715e-05],[3.7972727e-05],[2.7959578e-05],[2.0424798e-05],[1.4802115e-05],[1.064146e-05],[7.5886547e-06],[5.3677337e-06],[3.7658067e-06],[2.6202692e-06],[1.808157e-06],[1.2374043e-06]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"August","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715307,-0.12715307,-0.12715306,-0.12715305,-0.12715303,-0.12715299,-0.12715294,-0.12715286,-0.12715274,-0.12715256,-0.12715229,-0.12715189,-0.12715129,-0.12715042,-0.12714916,-0.12714735,-0.12714478,-0.12714116,-0.12713611,-0.12712913,-0.12711955,-0.12710655,-0.12708906,-0.12706574,-0.12703494,-0.12699462,-0.12694235,-0.1268752,-0.12678974,-0.12668199,-0.12654741,-0.12638089,-0.1261768,-0.12592903,-0.12563111,-0.12527629,-0.12485777,-0.12436889,-0.12380335,-0.12315555,-0.1224208,-0.12159567,-0.12067828,-0.11966854,-0.11856834,-0.11738177,-0.11611511,-0.11477682,-0.11337742,-0.11192922,-0.11044596,-0.1089424,-0.10743374,-0.10593505,-0.10446069,-0.10302367,-0.10163515,-0.10030387,-0.0990359,-0.097834287,-0.096699037,-0.095627159,-0.094612889,-0.093648061,-0.092722593,-0.09182508,-0.090943432,-0.090065555,-0.089180012,-0.088276634,-0.087347072,-0.086385232,-0.085387614,-0.084353524,-0.083285162,-0.082187608,-0.081068704,-0.079938852,-0.078810751,-0.077699083,-0.076620169,-0.075591601,-0.074631866,-0.073759955,-0.07299497,-0.07235572,-0.071860307,-0.071525704,-0.071367326,-0.071398599,-0.071630539,-0.072071355,-0.072726093,-0.073596346,-0.074680043,-0.075971336,-0.077460612,-0.079134622,-0.080976743,-0.082967362,-0.085084363,-0.087303717,-0.089600121,-0.091947678,-0.094320579,-0.096693757,-0.099043477,-0.10134785,-0.10358726,-0.10574465,-0.10780575,-0.10975911,-0.11159614,-0.11331095,-0.11490023,-0.11636296,-0.11770014,-0.11891456,-0.12001042,-0.1209931,-0.12186882,-0.12264445,-0.12332725,-0.12392468,-0.12444422,-0.12489325,-0.12527893,-0.12560812,-0.1258873,-0.12612252,-0.12631938,-0.12648304,-0.12661816,-0.12672892,-0.12681907,-0.1268919,-0.12695032,-0.1269968,-0.12703352,-0.12706229,-0.12708466,-0.12710191,-0.12711511,-0.12712512,-0.12713266,-0.12713828,-0.12714244,-0.12714549,-0.12714771,-0.12714931,-0.12715046,-0.12715127,-0.12715184],"zorder":15,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781],"zorder":16,"type":"scatter"},{"customdata":[[1.6265279e-77],[9.2183506e-77],[5.1786101e-76],[2.8836437e-75],[1.5916167e-74],[8.7077104e-74],[4.7221326e-73],[2.5382898e-72],[1.352425e-71],[7.142565e-71],[3.7390769e-70],[1.9401884e-69],[9.9791333e-69],[5.0875805e-68],[2.5709844e-67],[1.2878266e-66],[6.3941867e-66],[3.1469027e-65],[1.5351525e-64],[7.4231822e-64],[3.557945e-63],[1.6903592e-62],[7.9603031e-62],[3.7157901e-61],[1.7192692e-60],[7.8851127e-60],[3.5846222e-59],[1.61529e-58],[7.2148854e-58],[3.1943342e-57],[1.4018561e-56],[6.0981609e-56],[2.6294618e-55],[1.123848e-54],[4.7612524e-54],[1.9994381e-53],[8.3227734e-53],[3.4340112e-52],[1.4044591e-51],[5.6936457e-51],[2.2879471e-50],[9.1133052e-50],[3.5981602e-49],[1.4081857e-48],[5.4627899e-48],[2.100605e-47],[8.0066325e-47],[3.0250408e-46],[1.1328925e-45],[4.205547e-45],[1.5475081e-44],[5.644432e-44],[2.0407262e-43],[7.313524e-43],[2.5980432e-42],[9.1483774e-42],[3.1931557e-41],[1.1047773e-40],[3.7888577e-40],[1.2880155e-39],[4.3402369e-39],[1.4497251e-38],[4.7999649e-38],[1.575328e-37],[5.1248929e-37],[1.6526458e-36],[5.2827049e-36],[1.6738434e-35],[5.2572127e-35],[1.636737e-34],[5.0510919e-34],[1.5451655e-33],[4.6854198e-33],[1.4083356e-32],[4.1961241e-32],[1.2392971e-31],[3.6281721e-31],[1.0528975e-30],[3.0287989e-30],[8.6365718e-30],[2.4411774e-29],[6.8398212e-29],[1.8996694e-28],[5.2299752e-28],[1.4272827e-27],[3.8610872e-27],[1.0353779e-26],[2.7521896e-26],[7.2518433e-26],[1.8941291e-25],[4.9041339e-25],[1.2586562e-24],[3.2021709e-24],[8.0756025e-24],[2.0188261e-23],[5.0028442e-23],[1.228937e-22],[2.9925219e-22],[7.2233837e-22],[1.7283838e-21],[4.0995515e-21],[9.6389501e-21],[2.2465748e-20],[5.1905134e-20],[1.1887721e-19],[2.6988971e-19],[6.073989e-19],[1.3550715e-18],[2.9967569e-18],[6.569654e-18],[1.427696e-17],[3.0756139e-17],[6.5679723e-17],[1.3903842e-16],[2.9177155e-16],[6.0695471e-16],[1.2516285e-15],[2.558592e-15],[5.18482e-15],[1.0415353e-14],[2.0740663e-14],[4.0943051e-14],[8.0121182e-14],[1.5542638e-13],[2.9889113e-13],[5.6978743e-13],[1.076775e-12],[2.0172047e-12],[3.7461799e-12],[6.8967046e-12],[1.2586636e-11],[2.2771601e-11],[4.0840779e-11],[7.2612573e-11],[1.2798167e-10],[2.2361592e-10],[3.8732673e-10],[6.6507853e-10],[1.1321136e-09],[1.9104234e-09],[3.1958972e-09],[5.3000571e-09],[8.7135262e-09],[1.4201497e-08],[2.2945751e-08],[3.675358e-08],[5.8361655e-08],[9.1872922e-08],[1.4337748e-07],[2.2182448e-07],[3.4023172e-07],[5.1734328e-07],[7.7987227e-07],[1.1654964e-06],[1.7268058e-06],[2.5364348e-06],[3.693637e-06],[5.3325876e-06],[7.6327014e-06],[1.0831248e-05],[1.5238512e-05],[2.1255658e-05],[2.9395379e-05],[4.0305199e-05],[5.4793123e-05],[7.3855018e-05],[9.8702812e-05],[0.0001307922],[0.00017184817],[0.00022388627],[0.00028922721],[0.00037050198],[0.00047064481],[0.000592871],[0.00074063706],[0.00091758117],[0.0011274426],[0.0013739601],[0.0016607494],[0.0019911645],[0.0023681438],[0.0027940502],[0.0032705096],[0.0037982579],[0.0043770045],[0.0050053221],[0.0056805712],[0.0063988661],[0.0071550901],[0.0079429599],[0.008755143],[0.0095834227],[0.010418906],[0.011252268],[0.012074017],[0.012874776],[0.013645558],[0.014378037],[0.01506479],[0.015699506],[0.016277163],[0.016794159],[0.017248405],[0.017639376],[0.017968131],[0.018237297],[0.018451038],[0.018614996],[0.018736223],[0.018823094],[0.018885205],[0.018933258],[0.01897892],[0.019034645],[0.019113474],[0.019228782],[0.019393982],[0.019622185],[0.01992581],[0.020316158],[0.020802958],[0.021393906],[0.022094201],[0.02290613],[0.023828689],[0.024857305],[0.025983649],[0.027195586],[0.028477261],[0.029809348],[0.031169453],[0.032532666],[0.03387226],[0.035160504],[0.036369563],[0.037472458],[0.038444028],[0.039261871],[0.039907209],[0.040365635],[0.040627717],[0.040689419],[0.040552321],[0.040223633],[0.039715984],[0.039047018],[0.038238801],[0.037317057],[0.03631029],[0.035248802],[0.034163666],[0.033085683],[0.032044365],[0.03106698],[0.030177688],[0.029396798],[0.028740158],[0.028218703],[0.027838169],[0.027598971],[0.02749625],[0.02752009],[0.027655885],[0.027884866],[0.02818474],[0.028530463],[0.028895086],[0.029250679],[0.029569284],[0.029823872],[0.029989267],[0.030043013],[0.029966129],[0.02974374],[0.029365553],[0.028826145],[0.028125072],[0.027266775],[0.026260303],[0.025118862],[0.023859217],[0.022500978],[0.021065804],[0.019576567],[0.01805652],[0.016528502],[0.01501421],[0.013533584],[0.012104301],[0.010741411],[0.0094571065],[0.0082606345],[0.0071583234],[0.0061537268],[0.0052478524],[0.0044394607],[0.0037254066],[0.0031010055],[0.0025604013],[0.002096921],[0.0017034016],[0.0013724794],[0.0010968361],[0.00086939752],[0.00068348614],[0.00053292963],[0.00041212909],[0.00031609272],[0.00024044088],[0.00018138844],[0.00013571048],[0.00010069661],[7.4098455e-05],[5.4074393e-05],[3.9134317e-05],[2.8086843e-05],[1.9990456e-05],[1.4109535e-05],[9.8757162e-06],[6.854663e-06],[4.7180335e-06],[3.2202469e-06],[2.1795482e-06],[1.4628132e-06],[9.7353679e-07],[6.424703e-07],[4.2042356e-07],[2.7280387e-07],[1.7552531e-07],[1.1198272e-07],[7.0840341e-08],[4.4434993e-08],[2.7636364e-08],[1.7042942e-08],[1.0421079e-08],[6.3180339e-09],[3.7979489e-09],[2.2636588e-09],[1.3377174e-09],[7.8380181e-10],[4.5533773e-10],[2.6226694e-10],[1.4977286e-10],[8.4800719e-11],[4.7603627e-11],[2.6494269e-11],[1.4619503e-11],[7.9979647e-12],[4.3380049e-12],[2.3327158e-12],[1.2436336e-12],[6.5732416e-13],[3.4444586e-13],[1.7894284e-13],[9.2163197e-14],[4.7059623e-14],[2.3822373e-14],[1.1955431e-14],[5.9482212e-15],[2.9339233e-15],[1.4346577e-15],[6.9547883e-16],[3.3423648e-16],[1.5924153e-16],[7.5212452e-17],[3.5217003e-17],[1.6347175e-17],[7.5224463e-18],[3.4316269e-18],[1.5519014e-18],[6.9574461e-19],[3.0921163e-19],[1.3623248e-19],[5.9500831e-20],[2.5762123e-20],[1.1057456e-20],[4.7048149e-21],[1.9844601e-21],[8.2976207e-22],[3.439339e-22],[1.413206e-22],[5.7563073e-23],[2.3242852e-23],[9.3033801e-24],[3.6914502e-24],[1.4519685e-24],[5.6613541e-25],[2.1881923e-25],[8.3840094e-26],[3.1843314e-26],[1.1989032e-26],[4.474541e-27],[1.655429e-27],[6.0711297e-28],[2.207113e-28],[7.9538055e-29],[2.8413188e-29],[1.0061409e-29],[3.5317571e-30],[1.2288965e-30]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"September","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.1453178,-0.1453178,-0.1453178,-0.1453178,-0.14531779,-0.14531778,-0.14531777,-0.14531775,-0.14531771,-0.14531766,-0.14531758,-0.14531747,-0.14531729,-0.14531703,-0.14531664,-0.14531608,-0.14531527,-0.14531411,-0.14531247,-0.14531017,-0.14530697,-0.14530257,-0.14529655,-0.14528841,-0.1452775,-0.14526301,-0.14524395,-0.1452191,-0.14518701,-0.14514596,-0.14509392,-0.14502858,-0.1449473,-0.14484716,-0.14472494,-0.14457717,-0.14440023,-0.14419036,-0.14394385,-0.14365706,-0.14332664,-0.14294966,-0.14252376,-0.1420473,-0.14151955,-0.1409408,-0.14031248,-0.13963724,-0.13891894,-0.13816272,-0.13737485,-0.13656266,-0.13573438,-0.1348989,-0.13406554,-0.13324379,-0.13244303,-0.13167225,-0.13093977,-0.13025302,-0.1296183,-0.12904064,-0.12852365,-0.1280694,-0.12767843,-0.12734968,-0.12708051,-0.12686677,-0.12670281,-0.12658158,-0.12649471,-0.1264326,-0.12638455,-0.12633889,-0.12628316,-0.12620433,-0.12608902,-0.12592382,-0.12569562,-0.125392,-0.12500165,-0.12451485,-0.1239239,-0.1232236,-0.12241168,-0.12148912,-0.1204605,-0.11933416,-0.11812222,-0.11684055,-0.11550846,-0.11414835,-0.11278514,-0.11144555,-0.1101573,-0.10894824,-0.10784535,-0.10687378,-0.10605593,-0.1054106,-0.10495217,-0.10469009,-0.10462839,-0.10476548,-0.10509417,-0.10560182,-0.10627079,-0.10707901,-0.10800075,-0.10900752,-0.110069,-0.11115414,-0.11223212,-0.11327344,-0.11425083,-0.11514012,-0.11592101,-0.11657765,-0.1170991,-0.11747964,-0.11771883,-0.11782156,-0.11779772,-0.11766192,-0.11743294,-0.11713307,-0.11678734,-0.11642272,-0.11606713,-0.11574852,-0.11549393,-0.11532854,-0.11527479,-0.11535168,-0.11557407,-0.11595225,-0.11649166,-0.11719273,-0.11805103,-0.1190575,-0.12019894,-0.12145859,-0.12281683,-0.124252,-0.12574124,-0.12726129,-0.1287893,-0.1303036,-0.13178422,-0.1332135,-0.1345764,-0.1358607,-0.13705717,-0.13815948,-0.13916408,-0.14006995,-0.14087835,-0.1415924,-0.1422168,-0.1427574,-0.14322089,-0.1436144,-0.14394533,-0.14422097,-0.14444841,-0.14463432,-0.14478488,-0.14490568,-0.14500171,-0.14507737,-0.14513642,-0.1451821,-0.14521711,-0.14524371,-0.14526373,-0.14527867,-0.14528972,-0.14529782,-0.1453037,-0.14530793,-0.14531095,-0.14531309,-0.14531459,-0.14531563,-0.14531634,-0.14531683,-0.14531716,-0.14531739,-0.14531753,-0.14531763,-0.14531769,-0.14531774,-0.14531776,-0.14531778,-0.14531779,-0.1453178,-0.1453178,-0.1453178,-0.1453178,-0.1453178,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781],"zorder":16,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781],"zorder":17,"type":"scatter"},{"customdata":[[6.3782958e-139],[6.6560318e-138],[6.8847777e-137],[7.0587576e-136],[7.1734887e-135],[7.2259736e-134],[7.2148305e-133],[7.1403532e-132],[7.0044989e-131],[6.8108019e-130],[6.5642216e-129],[6.270931e-128],[5.9380605e-127],[5.5734104e-126],[5.185149e-125],[4.7815121e-124],[4.3705197e-123],[3.9597222e-122],[3.555987e-121],[3.1653331e-120],[2.792817e-119],[2.4424707e-118],[2.1172885e-117],[1.819259e-116],[1.5494331e-115],[1.3080217e-114],[1.0945129e-113],[9.0780094e-113],[7.4631845e-112],[6.0816517e-111],[4.9122756e-110],[3.9328531e-109],[3.1210199e-108],[2.4549868e-107],[1.9141043e-106],[1.4792646e-105],[1.1331566e-104],[8.6039492e-104],[6.475444e-103],[4.8306446e-102],[3.5719424e-101],[2.6179879e-100],[1.9019305e-99],[1.3695739e-98],[9.7755255e-98],[6.9160575e-97],[4.8499907e-96],[3.3712196e-95],[2.3227208e-94],[1.586247e-93],[1.073763e-92],[7.2046005e-92],[4.791541e-91],[3.1586707e-90],[2.0639412e-89],[1.3367622e-88],[8.5817295e-88],[5.4608385e-87],[3.4443533e-86],[2.1533761e-85],[1.3344305e-84],[8.1966403e-84],[4.9904493e-83],[3.0116693e-82],[1.8015187e-81],[1.0681546e-80],[6.277596e-80],[3.6569285e-79],[2.1115601e-78],[1.2085213e-77],[6.8559719e-77],[3.8552066e-76],[2.1487712e-75],[1.1871253e-74],[6.5008011e-74],[3.5285891e-73],[1.8984502e-72],[1.0124212e-71],[5.3516438e-71],[2.803994e-70],[1.456233e-69],[7.4963288e-69],[3.8249901e-68],[1.9345322e-67],[9.6980753e-67],[4.8190243e-66],[2.3735405e-65],[1.1587725e-64],[5.6074275e-64],[2.6896339e-63],[1.2787531e-62],[6.0262093e-62],[2.8149182e-61],[1.3033209e-60],[5.9813749e-60],[2.7209135e-59],[1.226853e-58],[5.4832039e-58],[2.4290719e-57],[1.0666218e-56],[4.6424229e-56],[2.0028253e-55],[8.564571e-55],[3.6302149e-54],[1.5251876e-53],[6.3515307e-53],[2.6217893e-52],[1.0727078e-51],[4.3504016e-51],[1.7488058e-50],[6.9681605e-50],[2.7520674e-49],[1.0773687e-48],[4.1805563e-48],[1.607934e-47],[6.1300898e-47],[2.3164875e-46],[8.6767606e-46],[3.2214385e-45],[1.185514e-44],[4.3244229e-44],[1.5635592e-43],[5.6035754e-43],[1.9905858e-42],[7.009086e-42],[2.4462833e-41],[8.4628576e-41],[2.9019658e-40],[9.8635348e-40],[3.3230583e-39],[1.1097074e-38],[3.6731972e-38],[1.2051616e-37],[3.9193285e-37],[1.2634076e-36],[4.0368333e-36],[1.2785088e-35],[4.0135837e-35],[1.2488972e-34],[3.8520055e-34],[1.1776414e-33],[3.5686612e-33],[1.0719233e-32],[3.1914528e-32],[9.4184517e-32],[2.7550985e-31],[7.9884296e-31],[2.2958974e-30],[6.540493e-30],[1.8468668e-29],[5.1692545e-29],[1.4341272e-28],[3.9438009e-28],[1.075004e-27],[2.9045115e-27],[7.7786507e-27],[2.0649227e-26],[5.4334028e-26],[1.4171271e-25],[3.6636563e-25],[9.3883646e-25],[2.3847052e-24],[6.0041189e-24],[1.4984214e-23],[3.7067138e-23],[9.0889738e-23],[2.2090813e-22],[5.322062e-22],[1.2709249e-21],[3.0083752e-21],[7.0585681e-21],[1.6416257e-20],[3.7844698e-20],[8.6478818e-20],[1.9587938e-19],[4.3978709e-19],[9.787494e-19],[2.159118e-18],[4.7212569e-18],[1.0233304e-17],[2.1986277e-17],[4.6823704e-17],[9.8845923e-17],[2.068385e-16],[4.2902672e-16],[8.8210124e-16],[1.7977714e-15],[3.6318947e-15],[7.2730354e-15],[1.4437191e-14],[2.8407646e-14],[5.5408234e-14],[1.0712749e-13],[2.0531289e-13],[3.9005092e-13],[7.3454325e-13],[1.3712154e-12],[2.5373915e-12],[4.6544048e-12],[8.4632487e-12],[1.5254845e-11],[2.7256982e-11],[4.8277925e-11],[8.4766055e-11],[1.4753655e-10],[2.54556e-10],[4.3538657e-10],[7.3820445e-10],[1.2407671e-09],[2.0673689e-09],[3.4147747e-09],[5.5914544e-09],[9.076295e-09],[1.4605486e-08],[2.3299665e-08],[3.6847863e-08],[5.7770588e-08],[8.9791677e-08],[1.383577e-07],[2.1135464e-07],[3.2008465e-07],[4.8058043e-07],[7.1535106e-07],[1.05567e-06],[1.5445326e-06],[2.240424e-06],[3.222049e-06],[4.5941761e-06],[6.49474e-06],[9.1033217e-06],[1.2651082e-05],[1.743216e-05],[2.3816442e-05],[3.2263512e-05],[4.3337403e-05],[5.772163e-05],[7.6233767e-05],[9.9838633e-05],[0.00012965896],[0.00016698223],[0.00021326227],[0.00027011418],[0.00033930109],[0.00042271171],[0.00052232762],[0.00064018006],[0.00077829646],[0.00093863772],[0.0011230282],[0.0013330815],[0.0015701251],[0.0018351294],[0.002128646],[0.0024507592],[0.0028010595],[0.0031786395],[0.0035821202],[0.0040097072],[0.0044592787],[0.0049285031],[0.005414983],[0.0059164165],[0.0064307707],[0.0069564532],[0.0074924717],[0.0080385684],[0.0085953164],[0.0091641684],[0.0097474485],[0.010348281],[0.010970455],[0.011618228],[0.012296077],[0.013008403],[0.013759213],[0.014551791],[0.015388384],[0.016269919],[0.017195776],[0.018163636],[0.019169408],[0.020207264],[0.021269763],[0.022348079],[0.023432313],[0.024511884],[0.025575965],[0.026613952],[0.027615933],[0.028573131],[0.029478301],[0.030326041],[0.031113026],[0.03183813],[0.032502437],[0.033109146],[0.033663378],[0.034171881],[0.034642677],[0.035084649],[0.035507094],[0.03591927],[0.036329946],[0.036746989],[0.037176973],[0.037624858],[0.038093717],[0.038584531],[0.039096057],[0.039624763],[0.040164838],[0.040708281],[0.041245055],[0.04176333],[0.042249789],[0.042690007],[0.043068896],[0.043371201],[0.043582035],[0.043687442],[0.043674949],[0.043534102],[0.043256945],[0.042838423],[0.042276682],[0.041573244],[0.040733047],[0.039764333],[0.038678403],[0.037489221],[0.036212912],[0.034867168],[0.033470579],[0.032041958],[0.030599655],[0.029160932],[0.027741401],[0.026354573],[0.025011523],[0.023720693],[0.022487821],[0.02131601],[0.020205915],[0.019156017],[0.018162995],[0.017222134],[0.016327763],[0.015473699],[0.014653663],[0.013861657],[0.013092276],[0.012340966],[0.011604189],[0.010879525],[0.010165695],[0.0094625187],[0.0087708142],[0.0080922533],[0.0074291828],[0.0067844263],[0.0061610798],[0.0055623111],[0.0049911753],[0.0044504529],[0.0039425171],[0.003469234],[0.0030318974],[0.0026311968],[0.0022672173],[0.0019394667],[0.0016469257],[0.0013881149],[0.0011611748],[0.00096395065],[0.00079407993],[0.00064907614],[0.00052640646],[0.00042356019],[0.0003381065],[0.00026774056],[0.00021031799],[0.00016387814],[0.00012665724],[9.7092708e-05],[7.3820175e-05],[5.5664801e-05],[4.1628387e-05],[3.0873712e-05],[2.2707341e-05],[1.6561911e-05],[1.1978723e-05],[8.5912507e-06],[6.1099616e-06],[4.3087151e-06],[3.0128381e-06],[2.0888848e-06],[1.4360062e-06],[9.7880033e-07],[6.6148671e-07],[4.4323188e-07]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"September","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.1453178,-0.1453178,-0.1453178,-0.1453178,-0.14531779,-0.14531778,-0.14531777,-0.14531775,-0.14531772,-0.14531767,-0.14531759,-0.14531749,-0.14531733,-0.14531709,-0.14531675,-0.14531626,-0.14531557,-0.14531458,-0.14531321,-0.14531131,-0.1453087,-0.14530516,-0.14530037,-0.14529399,-0.14528554,-0.14527447,-0.14526008,-0.14524157,-0.14521797,-0.14518815,-0.14515082,-0.14510454,-0.14504769,-0.14497851,-0.14489509,-0.14479548,-0.14467763,-0.14453951,-0.14437917,-0.14419478,-0.14398472,-0.14374768,-0.14348268,-0.14318916,-0.14286705,-0.14251675,-0.14213917,-0.14173569,-0.1413081,-0.14085853,-0.1403893,-0.13990282,-0.13940139,-0.13888704,-0.13836135,-0.13782533,-0.13727924,-0.13672249,-0.13615364,-0.13557036,-0.13496953,-0.13434735,-0.13369958,-0.13302173,-0.1323094,-0.13155859,-0.13076602,-0.12992942,-0.12904789,-0.12812203,-0.12715417,-0.1261484,-0.12511054,-0.12404804,-0.12296973,-0.12188549,-0.12080592,-0.11974184,-0.11870385,-0.11770187,-0.11674467,-0.11583951,-0.11499177,-0.11420478,-0.11347968,-0.11281537,-0.11220866,-0.11165443,-0.11114593,-0.11067513,-0.11023316,-0.10981071,-0.10939854,-0.10898786,-0.10857082,-0.10814083,-0.10769295,-0.10722409,-0.10673328,-0.10622175,-0.10569304,-0.10515297,-0.10460953,-0.10407275,-0.10355448,-0.10306802,-0.1026278,-0.10224891,-0.10194661,-0.10173577,-0.10163036,-0.10164286,-0.1017837,-0.10206086,-0.10247938,-0.10304112,-0.10374456,-0.10458476,-0.10555347,-0.1066394,-0.10782859,-0.10910489,-0.11045064,-0.11184723,-0.11327585,-0.11471815,-0.11615687,-0.11757641,-0.11896323,-0.12030628,-0.12159711,-0.12282999,-0.1240018,-0.12511189,-0.12616179,-0.12715481,-0.12809567,-0.12899004,-0.12984411,-0.13066414,-0.13145615,-0.13222553,-0.13297684,-0.13371362,-0.13443828,-0.13515211,-0.13585529,-0.13654699,-0.13722555,-0.13788862,-0.13853338,-0.13915673,-0.1397555,-0.14032663,-0.14086735,-0.14137529,-0.14184857,-0.14228591,-0.14268661,-0.14305059,-0.14337834,-0.14367088,-0.14392969,-0.14415663,-0.14435386,-0.14452373,-0.14466873,-0.1447914,-0.14489425,-0.1449797,-0.14505007,-0.14510749,-0.14515393,-0.14519115,-0.14522071,-0.14524399,-0.14526214,-0.14527618,-0.14528693,-0.1452951,-0.14530124,-0.14530583,-0.14530921,-0.1453117,-0.1453135,-0.14531479,-0.14531572,-0.14531637,-0.14531683,-0.14531714,-0.14531736],"zorder":17,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253],"zorder":18,"type":"scatter"},{"customdata":[[2.9630462e-60],[1.3588989e-59],[6.1773445e-59],[2.7834441e-58],[1.2431663e-57],[5.5035393e-57],[2.415022e-56],[1.0504281e-55],[4.5287449e-55],[1.9353332e-54],[8.1978514e-54],[3.4419997e-53],[1.4324786e-52],[5.9092465e-52],[2.4162549e-51],[9.7930991e-51],[3.9342721e-50],[1.5666629e-49],[6.1837754e-49],[2.4193513e-48],[9.3823433e-48],[3.6065417e-47],[1.374162e-46],[5.1898202e-46],[1.9428274e-45],[7.2091445e-45],[2.651557e-44],[9.6668727e-44],[3.4933247e-43],[1.2512956e-42],[4.4427209e-42],[1.5635306e-41],[5.4542129e-41],[1.885933e-40],[6.463817e-40],[2.1959405e-39],[7.3947063e-39],[2.4682565e-38],[8.1663645e-38],[2.6781599e-37],[8.7058998e-37],[2.8051777e-36],[8.9593563e-36],[2.8363715e-35],[8.9006034e-35],[2.7685093e-34],[8.5357739e-34],[2.6086173e-33],[7.90221e-33],[2.3727812e-32],[7.0621662e-32],[2.0834808e-31],[6.0927391e-31],[1.7660679e-30],[5.0742771e-30],[1.4451507e-29],[4.079665e-29],[1.1415857e-28],[3.1663977e-28],[8.7055367e-28],[2.3724609e-27],[6.4087933e-27],[1.7160401e-26],[4.5546277e-26],[1.1982651e-25],[3.1248399e-25],[8.0775165e-25],[2.0696812e-24],[5.2565999e-24],[1.323374e-23],[3.3024548e-23],[8.1689852e-23],[2.0029804e-22],[4.8681397e-22],[1.1728097e-21],[2.8007262e-21],[6.6296839e-21],[1.5555877e-20],[3.6180635e-20],[8.3413887e-20],[1.9062574e-19],[4.318235e-19],[9.6964574e-19],[2.1582542e-18],[4.7618461e-18],[1.0414346e-17],[2.2577362e-17],[4.851763e-17],[1.0335032e-16],[2.1822813e-16],[4.5676936e-16],[9.4770098e-16],[1.9491023e-15],[3.9736328e-15],[8.0302948e-15],[1.6086694e-14],[3.1944394e-14],[6.2880502e-14],[1.2269642e-13],[2.3732494e-13],[4.5504212e-13],[8.6488372e-13],[1.6295322e-12],[3.0434668e-12],[5.6347663e-12],[1.0341567e-11],[1.8814875e-11],[3.393301e-11],[6.0666802e-11],[1.0751997e-10],[1.8890272e-10],[3.2900323e-10],[5.6803734e-10],[9.7223306e-10],[1.6496156e-09],[2.774701e-09],[4.6267177e-09],[7.6481361e-09],[1.2533332e-08],[2.0361441e-08],[3.2793237e-08],[5.2359664e-08],[8.2879917e-08],[1.3006035e-07],[2.0234252e-07],[3.1208986e-07],[4.7722837e-07],[7.2348741e-07],[1.087422e-06],[1.6204371e-06],[2.3940759e-06],[3.5068758e-06],[5.0931319e-06],[7.3339367e-06],[1.0470877e-05],[1.4822758e-05],[2.0805669e-05],[2.8956644e-05],[3.9960987e-05],[5.4683168e-05],[7.4200903e-05],[9.9841677e-05],[0.00013322061],[0.00017627803],[0.00023131469],[0.00030102205],[0.00038850452],[0.00049729036],[0.00063132744],[0.00079496035],[0.0009928854],[0.0012300806],[0.0015117087],[0.0018429923],[0.0022290627],[0.0026747837],[0.0031845562],[0.0037621099],[0.0044102905],[0.0051308531],[0.0059242726],[0.0067895842],[0.0077242648],[0.0087241668],[0.0097835133],[0.01089496],[0.01204973],[0.013237813],[0.014448231],[0.015669365],[0.016889307],[0.018096256],[0.019278908],[0.020426837],[0.021530849],[0.022583282],[0.023578248],[0.024511795],[0.025381997],[0.026188956],[0.02693473],[0.027623182],[0.02825978],[0.028851336],[0.029405724],[0.029931567],[0.030437926],[0.030933992],[0.031428793],[0.031930917],[0.032448271],[0.03298785],[0.033555541],[0.034155952],[0.034792256],[0.035466063],[0.036177309],[0.036924182],[0.037703059],[0.038508496],[0.039333247],[0.040168335],[0.041003177],[0.04182576],[0.042622887],[0.043380466],[0.044083861],[0.044718275],[0.045269173],[0.045722712],[0.046066168],[0.046288347],[0.046379947],[0.046333871],[0.046145459],[0.045812647],[0.045336026],[0.044718802],[0.04396668],[0.04308764],[0.042091653],[0.040990331],[0.039796529],[0.038523935],[0.037186644],[0.035798756],[0.034374012],[0.032925467],[0.03146524],[0.030004315],[0.028552429],[0.027118009],[0.025708188],[0.024328854],[0.022984751],[0.0216796],[0.020416231],[0.019196717],[0.018022505],[0.016894516],[0.015813245],[0.014778821],[0.013791068],[0.012849534],[0.011953518],[0.011102096],[0.010294142],[0.0095283511],[0.0088032782],[0.0081173734],[0.00746903],[0.0068566326],[0.0062786064],[0.0057334612],[0.0052198286],[0.0047364867],[0.0042823734],[0.0038565846],[0.0034583591],[0.0030870525],[0.0027421016],[0.0024229835],[0.0021291738],[0.0018601056],[0.0016151346],[0.0013935119],[0.0011943662],[0.0010166961],[0.00085937274],[0.00072115133],[0.00060069058],[0.00049657752],[0.0004073559],[0.00033155592],[0.00026772331],[0.00021444615],[0.00017037811],[0.00013425731],[0.00010492035],[8.1311442e-05],[6.2486964e-05],[4.7615843e-05],[3.597649e-05],[2.6950979e-05],[2.0017227e-05],[1.4739875e-05],[1.0760506e-05],[7.7877205e-06],[5.5875046e-06],[3.9741786e-06],[2.8021533e-06],[1.9585978e-06],[1.3570697e-06],[9.3208992e-07],[6.3461165e-07],[4.283011e-07],[2.8653522e-07],[1.9001665e-07],[1.2490725e-07],[8.1388629e-08],[5.2567583e-08],[3.3654935e-08],[2.1357699e-08],[1.3434881e-08],[8.3769447e-09],[5.1773666e-09],[3.1717776e-09],[1.9260444e-09],[1.1593082e-09],[6.9167155e-10],[4.0904286e-10],[2.3977567e-10],[1.3931837e-10],[8.0237663e-11],[4.5805161e-11],[2.5918899e-11],[1.4537322e-11],[8.0819798e-12],[4.4536534e-12],[2.4326532e-12],[1.3170703e-12],[7.0680979e-13],[3.7597664e-13],[1.9823657e-13],[1.0360273e-13],[5.3668945e-14],[2.7557466e-14],[1.4025546e-14],[7.0756205e-15],[3.5381273e-15],[1.7536646e-15],[8.6155638e-16],[4.1955118e-16],[2.0251175e-16],[9.6890123e-17],[4.5948653e-17],[2.159882e-17],[1.006355e-17],[4.6476809e-18],[2.1275772e-18],[9.653799e-19],[4.3418525e-19],[1.9356007e-19],[8.5530365e-20],[3.746181e-20],[1.6263763e-20],[6.9986967e-21],[2.9852255e-21],[1.2621209e-21],[5.2891833e-22],[2.1970508e-22],[9.0459755e-23],[3.6917692e-23],[1.4934046e-23],[5.9880342e-24],[2.3798789e-24],[9.3753886e-25],[3.6608969e-25],[1.4169337e-25],[5.4359491e-26],[2.0671169e-26],[7.791454e-27],[2.910957e-27],[1.0779953e-27],[3.956961e-28],[1.4396949e-28],[5.192099e-29],[1.8560056e-29],[6.5762663e-30],[2.3096348e-30],[8.0402774e-31],[2.7743584e-31],[9.4889441e-32],[3.216896e-32],[1.0809857e-32],[3.6005322e-33],[1.1887136e-33],[3.8900178e-34],[1.2617977e-34],[4.0568756e-35],[1.2928777e-35],[4.0840119e-36],[1.2787344e-36],[3.9686018e-37],[1.2208393e-37],[3.7225732e-38],[1.1251018e-38],[3.3705765e-39],[1.0008762e-39],[2.9459158e-40],[8.5945691e-41],[2.4853736e-41],[7.1239861e-42],[2.024036e-42],[5.7000311e-43],[1.5911093e-43],[4.4023705e-44],[1.2073605e-44],[3.2820952e-45],[8.8436014e-46]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"October","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348252,-0.16348252,-0.16348251,-0.1634825,-0.16348248,-0.16348245,-0.1634824,-0.16348233,-0.16348222,-0.16348205,-0.16348181,-0.16348144,-0.16348091,-0.16348014,-0.16347903,-0.16347744,-0.1634752,-0.16347206,-0.16346771,-0.16346173,-0.16345358,-0.16344257,-0.16342785,-0.16340833,-0.16338269,-0.16334931,-0.16330625,-0.16325122,-0.16318151,-0.16309403,-0.16298524,-0.1628512,-0.16268757,-0.16248965,-0.16225245,-0.16197082,-0.16163954,-0.16125347,-0.16080775,-0.16029798,-0.15972042,-0.15907224,-0.15835168,-0.15755826,-0.15669295,-0.15575827,-0.15475837,-0.15369902,-0.15258757,-0.1514328,-0.15024472,-0.1490343,-0.14781317,-0.14659323,-0.14538628,-0.14420362,-0.1430557,-0.14195168,-0.14089925,-0.13990428,-0.13897074,-0.13810054,-0.13729358,-0.1365478,-0.13585935,-0.13522275,-0.1346312,-0.13407681,-0.13355096,-0.13304461,-0.13254854,-0.13205374,-0.13155161,-0.13103426,-0.13049468,-0.12992699,-0.12932658,-0.12869028,-0.12801647,-0.12730522,-0.12655835,-0.12577947,-0.12497404,-0.12414928,-0.1233142,-0.12247936,-0.12165677,-0.12085964,-0.12010207,-0.11939867,-0.11876426,-0.11821336,-0.11775982,-0.11741636,-0.11719418,-0.11710258,-0.11714866,-0.11733707,-0.11766988,-0.11814651,-0.11876373,-0.11951585,-0.12039489,-0.12139088,-0.1224922,-0.123686,-0.1249586,-0.12629589,-0.12768378,-0.12910852,-0.13055706,-0.13201729,-0.13347822,-0.1349301,-0.13636452,-0.13777434,-0.13915368,-0.14049778,-0.14180293,-0.1430663,-0.14428581,-0.14546003,-0.14658802,-0.14766929,-0.14870371,-0.14969146,-0.150633,-0.15152901,-0.15238044,-0.15318839,-0.15395418,-0.15467925,-0.15536516,-0.1560135,-0.1566259,-0.15720393,-0.15774907,-0.1582627,-0.15874605,-0.15920016,-0.15962595,-0.16002417,-0.16039548,-0.16074043,-0.16105955,-0.16135336,-0.16162243,-0.1618674,-0.16208902,-0.16228817,-0.16246584,-0.16262316,-0.16276138,-0.16288184,-0.16298595,-0.16307518,-0.16315098,-0.16321481,-0.16326809,-0.16331215,-0.16334827,-0.16337761,-0.16340122,-0.16342005,-0.16343492,-0.16344656,-0.16345558,-0.16346251,-0.16346779,-0.16347177,-0.16347474,-0.16347694,-0.16347856,-0.16347973,-0.16348057,-0.16348117,-0.1634816,-0.1634819,-0.1634821,-0.16348225,-0.16348234,-0.16348241,-0.16348245,-0.16348248,-0.1634825,-0.16348251,-0.16348252,-0.16348252,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253],"zorder":18,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253],"zorder":19,"type":"scatter"},{"customdata":[[1.0139871e-110],[8.1713898e-110],[6.5271446e-109],[5.1679028e-108],[4.055732e-107],[3.1549171e-106],[2.4325987e-105],[1.85916e-104],[1.4084028e-103],[1.0575498e-102],[7.8711561e-102],[5.8068425e-101],[4.2462481e-100],[3.0777581e-99],[2.2111969e-98],[1.5746504e-97],[1.1114877e-96],[7.7765864e-96],[5.3930834e-95],[3.7072261e-94],[2.5259503e-93],[1.7059423e-92],[1.1420042e-91],[7.577655e-91],[4.9838593e-90],[3.2490809e-89],[2.0995154e-88],[1.3447496e-87],[8.5374383e-87],[5.3725137e-86],[3.3511301e-85],[2.0719003e-84],[1.2697266e-83],[7.7128589e-83],[4.643916e-82],[2.7715143e-81],[1.6395086e-80],[9.613335e-80],[5.5872519e-79],[3.2187425e-78],[1.8379683e-77],[1.0402881e-76],[5.8362381e-76],[3.2454595e-75],[1.7888882e-74],[9.7735874e-74],[5.2928381e-73],[2.8411033e-72],[1.511643e-71],[7.9721462e-71],[4.167399e-70],[2.1593285e-69],[1.1090117e-68],[5.6456946e-68],[2.848803e-67],[1.424857e-66],[7.06389e-66],[3.471206e-65],[1.6907549e-64],[8.1629049e-64],[3.9063632e-63],[1.8529526e-62],[8.7120391e-62],[4.0601224e-61],[1.8755223e-60],[8.5875479e-60],[3.8974443e-59],[1.7532929e-58],[7.8179489e-58],[3.4553735e-57],[1.5137738e-56],[6.5734111e-56],[2.8293353e-55],[1.2070961e-54],[5.1046163e-54],[2.1396768e-53],[8.8899039e-53],[3.6610847e-52],[1.4944669e-51],[6.0468149e-51],[2.4251067e-50],[9.6404847e-50],[3.7986625e-49],[1.4836327e-48],[5.7436226e-48],[2.2039881e-47],[8.3829412e-47],[3.1604392e-46],[1.1810338e-45],[4.374627e-45],[1.6061407e-44],[5.8450739e-44],[2.1084353e-43],[7.5386647e-43],[2.6717292e-42],[9.3854329e-42],[3.267985e-41],[1.1278977e-40],[3.8585419e-40],[1.3084003e-39],[4.3976631e-39],[1.4650997e-38],[4.8381164e-38],[1.5836142e-37],[5.1379086e-37],[1.652294e-36],[5.2668653e-36],[1.6641063e-35],[5.2116338e-35],[1.6178219e-34],[4.9779615e-34],[1.5182258e-33],[4.58971e-33],[1.3753023e-32],[4.0848409e-32],[1.2025862e-31],[3.5093073e-31],[1.0150577e-30],[2.9102089e-30],[8.2703105e-30],[2.3296124e-29],[6.5044375e-29],[1.8001144e-28],[4.9380417e-28],[1.3426838e-27],[3.6187378e-27],[9.6672936e-27],[2.5598656e-26],[6.7188344e-26],[1.7479752e-25],[4.507557e-25],[1.1521575e-24],[2.9190884e-24],[7.3307337e-24],[1.8247885e-23],[4.5023845e-23],[1.1011277e-22],[2.6693033e-22],[6.4139181e-22],[1.5276162e-21],[3.6063721e-21],[8.4390277e-21],[1.9574018e-20],[4.5002166e-20],[1.0255406e-19],[2.3165327e-19],[5.1866907e-19],[1.1510887e-18],[2.5321762e-18],[5.5213589e-18],[1.1933427e-17],[2.5565353e-17],[5.4288278e-17],[1.1426896e-16],[2.3840684e-16],[4.9303495e-16],[1.0106613e-15],[2.0535383e-15],[4.1358965e-15],[8.2567025e-15],[1.6338575e-14],[3.2047396e-14],[6.2307872e-14],[1.2007849e-13],[2.293825e-13],[4.3433893e-13],[8.1521341e-13],[1.5166617e-12],[2.7969311e-12],[5.1127119e-12],[9.2639947e-12],[1.6638864e-11],[2.9622965e-11],[5.22774e-11],[9.144948e-11],[1.5857387e-10],[2.7256275e-10],[4.6439483e-10],[7.8432466e-10],[1.3130875e-09],[2.1791275e-09],[3.5847984e-09],[5.8457746e-09],[9.4496754e-09],[1.5142293e-08],[2.405298e-08],[3.7874896e-08],[5.9121068e-08],[9.1483875e-08],[1.4033361e-07],[2.1340147e-07],[3.2170332e-07],[4.8077332e-07],[7.1228916e-07],[1.0461846e-06],[1.5233561e-06],[2.1990814e-06],[3.1472688e-06],[4.4656577e-06],[6.2820725e-06],[8.7618082e-06],[1.211618e-05],[1.661221e-05],[2.2583329e-05],[3.0440881e-05],[4.0686076e-05],[5.3921898e-05],[7.0864332e-05],[9.2352095e-05],[0.00011935395],[0.00015297257],[0.00019444378],[0.00024513017],[0.00030650805],[0.00038014685],[0.00046768055],[0.000570771],[0.00069106352],[0.00083013577],[0.0009894415],[0.0011702515],[0.0013735943],[0.0016002005],[0.0018504536],[0.0021243517],[0.0024214827],[0.0027410171],[0.0030817194],[0.0034419802],[0.0038198683],[0.0042132014],[0.0046196326],[0.0050367477],[0.005462169],[0.0058936575],[0.0063292089],[0.0067671346],[0.0072061236],[0.0076452798],[0.0080841315],[0.0085226124],[0.0089610153],[0.0093999221],[0.0098401149],[0.010282476],[0.010727884],[0.011177117],[0.011630769],[0.012089182],[0.012552412],[0.013020218],[0.013492081],[0.01396725],[0.01444481],[0.014923763],[0.015403118],[0.015881974],[0.016359603],[0.016835501],[0.017309429],[0.017781418],[0.018251763],[0.018720976],[0.019189732],[0.019658803],[0.02012898],[0.020601004],[0.021075501],[0.021552934],[0.022033571],[0.022517472],[0.023004492],[0.023494302],[0.023986419],[0.024480247],[0.024975116],[0.025470323],[0.025965167],[0.026458983],[0.026951164],[0.027441184],[0.027928612],[0.028413126],[0.028894529],[0.029372759],[0.029847905],[0.03032021],[0.030790083],[0.031258087],[0.031724921],[0.032191383],[0.032658315],[0.033126521],[0.033596664],[0.03406915],[0.034543992],[0.035020671],[0.035497993],[0.035973971],[0.03644571],[0.03690934],[0.037359979],[0.037791742],[0.0381978],[0.038570487],[0.038901454],[0.039181863],[0.039402619],[0.039554624],[0.039629042],[0.039617575],[0.039512722],[0.039308022],[0.03899827],[0.038579688],[0.038050063],[0.03740883],[0.036657104],[0.035797673],[0.034834938],[0.033774811],[0.032624582],[0.031392754],[0.030088862],[0.02872327],[0.027306969],[0.025851371],[0.024368109],[0.022868844],[0.021365086],[0.019868027],[0.018388388],[0.016936281],[0.015521089],[0.014151358],[0.012834703],[0.011577735],[0.010386004],[0.0092639563],[0.0082149178],[0.0072410933],[0.0063435899],[0.005522461],[0.0047767719],[0.0041046843],[0.0035035577],[0.0029700643],[0.0025003134],[0.0020899812],[0.0017344403],[0.0014288859],[0.0011684542],[0.00094832903],[0.0007638347],[0.00061051302],[0.00048418384],[0.00038098897],[0.00029742017],[0.00023033271],[0.00017694622],[0.00013483501],[0.00010190999],[7.6394524e-05],[5.6796218e-05],[4.1876471e-05],[3.0619449e-05],[2.2201675e-05],[1.5963231e-05],[1.1381233e-05],[8.0459812e-06],[5.6399938e-06],[3.9199248e-06],[2.701262e-06],[1.8455962e-06],[1.2501999e-06],[8.3962915e-07],[5.5905407e-07],[3.6903873e-07],[2.4151046e-07],[1.5668964e-07],[1.0078129e-07],[6.4261381e-08],[4.0620605e-08],[2.5454518e-08],[1.5812544e-08],[9.7376365e-09],[5.9445237e-09],[3.5974045e-09],[2.1580794e-09],[1.2833612e-09],[7.5653904e-10],[4.4209182e-10],[2.5608859e-10],[1.470492e-10],[8.3700483e-11],[4.7226356e-11],[2.6413777e-11],[1.4644167e-11],[8.0479562e-12],[4.3842163e-12]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"October","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348252,-0.16348252,-0.16348251,-0.16348249,-0.16348247,-0.16348244,-0.16348239,-0.16348232,-0.16348221,-0.16348205,-0.16348182,-0.16348149,-0.16348101,-0.16348033,-0.16347938,-0.16347807,-0.16347625,-0.16347377,-0.16347042,-0.16346592,-0.16345995,-0.16345209,-0.16344185,-0.16342861,-0.16341167,-0.16339018,-0.16336318,-0.16332956,-0.16328809,-0.1632374,-0.16317602,-0.16310239,-0.16301485,-0.16291176,-0.16279147,-0.1626524,-0.16249309,-0.16231228,-0.16210894,-0.16188233,-0.16163208,-0.16135818,-0.16106105,-0.16074151,-0.16040081,-0.16004055,-0.15966266,-0.15926933,-0.1588629,-0.15844578,-0.15802036,-0.15758887,-0.15715332,-0.1567154,-0.15627641,-0.15583725,-0.1553984,-0.15495992,-0.15452152,-0.15408261,-0.15364242,-0.15320006,-0.15275465,-0.15230541,-0.15185176,-0.15139335,-0.15093012,-0.15046231,-0.14999045,-0.14951528,-0.14903772,-0.14855877,-0.14807941,-0.14760056,-0.14712293,-0.14664703,-0.1461731,-0.14570111,-0.14523077,-0.14476156,-0.1442928,-0.14382373,-0.14335355,-0.14288153,-0.14240703,-0.1419296,-0.14144896,-0.14096506,-0.14047804,-0.13998823,-0.13949611,-0.13900228,-0.13850742,-0.13801221,-0.13751736,-0.13702355,-0.13653137,-0.13604135,-0.13555392,-0.13506941,-0.134588,-0.13410977,-0.13363463,-0.13316232,-0.13269245,-0.13222445,-0.13175761,-0.13129115,-0.13082422,-0.13035601,-0.12988587,-0.12941338,-0.12893854,-0.12846186,-0.12798454,-0.12750856,-0.12703682,-0.12657319,-0.12612255,-0.12569079,-0.12528473,-0.12491204,-0.12458108,-0.12430067,-0.12407991,-0.12392791,-0.12385349,-0.12386496,-0.12396981,-0.12417451,-0.12448426,-0.12490284,-0.12543247,-0.1260737,-0.12682543,-0.12768486,-0.12864759,-0.12970772,-0.13085795,-0.13208978,-0.13339367,-0.13475926,-0.13617556,-0.13763116,-0.13911442,-0.14061369,-0.14211745,-0.14361451,-0.14509414,-0.14654625,-0.14796144,-0.14933117,-0.15064783,-0.1519048,-0.15309653,-0.15421858,-0.15526761,-0.15624144,-0.15713894,-0.15796007,-0.15870576,-0.15937785,-0.15997897,-0.16051247,-0.16098222,-0.16139255,-0.16174809,-0.16205365,-0.16231408,-0.1625342,-0.1627187,-0.16287202,-0.16299835,-0.16310154,-0.16318511,-0.1632522,-0.16330559,-0.1633477,-0.16338062,-0.16340614,-0.16342574,-0.16344066,-0.16345191,-0.16346033,-0.16346657,-0.16347115,-0.16347449,-0.16347689,-0.16347861,-0.16347983,-0.16348069,-0.16348128,-0.16348169,-0.16348197,-0.16348216,-0.16348229,-0.16348238,-0.16348243,-0.16348247,-0.16348249,-0.16348251,-0.16348252,-0.16348252,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253],"zorder":19,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726],"zorder":20,"type":"scatter"},{"customdata":[[3.9126628e-37],[1.2611557e-36],[4.0292924e-36],[1.2760059e-35],[4.005349e-35],[1.2462118e-34],[3.8433253e-34],[1.1748603e-33],[3.5598289e-33],[1.0691431e-32],[3.1827778e-32],[9.3916224e-32],[2.7468739e-31],[7.9634384e-31],[2.2883704e-30],[6.5180222e-30],[1.8402174e-29],[5.1497512e-29],[1.428457e-28],[3.9274609e-28],[1.0703366e-27],[2.891297e-27],[7.741566e-27],[2.0546069e-26],[5.4049597e-26],[1.4093536e-25],[3.6425985e-25],[9.3318217e-25],[2.3696563e-24],[5.9644182e-24],[1.48804e-23],[3.6798062e-23],[9.0198452e-23],[2.1914775e-22],[5.2776278e-22],[1.2598078e-21],[2.9808055e-21],[6.9907984e-21],[1.6251136e-20],[3.7445916e-20],[8.5524198e-20],[1.9361427e-19],[4.3445971e-19],[9.6633e-19],[2.1304199e-18],[4.6555261e-18],[1.0084076e-17],[2.1650468e-17],[4.6074671e-17],[9.7189871e-17],[2.032093e-16],[4.2114334e-16],[8.6512747e-16],[1.7615463e-15],[3.5552639e-15],[7.1123548e-15],[1.4103237e-14],[2.7719664e-14],[5.400338e-14],[1.0428401e-13],[1.9960817e-13],[3.7870644e-13],[7.1218182e-13],[1.3275255e-12],[2.4527804e-12],[4.4919847e-12],[8.1542059e-12],[1.4671985e-11],[2.6167359e-11],[4.6258838e-11],[8.1057527e-11],[1.4078481e-10],[2.4237177e-10],[4.1359198e-10],[6.9956164e-10],[1.1728533e-09],[1.9490601e-09],[3.2104845e-09],[5.2417919e-09],[8.4830654e-09],[1.3607856e-08],[2.1636673e-08],[3.410006e-08],[5.3270123e-08],[8.248523e-08],[1.2659969e-07],[1.9259858e-07],[2.904274e-07],[4.3409641e-07],[6.431303e-07],[9.4444359e-07],[1.3747301e-06],[1.9834597e-06],[2.8365733e-06],[4.0209581e-06],[5.649763e-06],[7.8685807e-06],[1.0862467e-05],[1.4863699e-05],[2.0160085e-05],[2.7103512e-05],[3.6118319e-05],[4.7708897e-05],[6.2465843e-05],[8.1069784e-05],[0.00010429197],[0.0001329906],[0.00016810195],[0.00021062531],[0.00026160118],[0.00032208228],[0.00039309738],[0.00047560878],[0.00057046448],[0.00067834724],[0.00079972311],[0.00093479295],[0.0010834508],[0.0012452534],[0.0014194057],[0.0016047659],[0.0017998741],[0.0020030071],[0.0022122606],[0.0024256583],[0.0026412848],[0.0028574392],[0.0030728009],[0.0032866007],[0.0034987856],[0.003710167],[0.0039225404],[0.0041387658],[0.004362798],[0.00459966],[0.0048553539],[0.0051367084],[0.0054511648],[0.005806509],[0.0062105603],[0.0066708302],[0.0071941722],[0.0077864386],[0.0084521676],[0.0091943201],[0.010014085],[0.010910765],[0.011881762],[0.012922652],[0.014027366],[0.015188453],[0.016397422],[0.017645141],[0.018922264],[0.020219671],[0.021528882],[0.022842432],[0.024154165],[0.025459457],[0.026755324],[0.028040433],[0.029315003],[0.030580608],[0.03183989],[0.033096204],[0.03435321],[0.035614442],[0.036882858],[0.038160424],[0.039447712],[0.040743565],[0.042044824],[0.043346138],[0.044639856],[0.045916021],[0.047162463],[0.048364983],[0.049507647],[0.050573159],[0.051543319],[0.052399555],[0.053123495],[0.053697579],[0.054105672],[0.054333659],[0.054369998],[0.054206202],[0.053837223],[0.053261735],[0.052482275],[0.05150526],[0.050340865],[0.049002764],[0.047507755],[0.045875281],[0.044126863],[0.042285484],[0.040374931],[0.038419134],[0.03644153],[0.034464459],[0.032508629],[0.03059266],[0.028732713],[0.02694223],[0.025231768],[0.023608947],[0.022078497],[0.020642404],[0.019300134],[0.018048944],[0.016884238],[0.01579997],[0.014789069],[0.013843864],[0.012956494],[0.012119288],[0.011325092],[0.01056754],[0.0098412524],[0.0091419653],[0.0084665803],[0.0078131501],[0.0071807982],[0.0065695886],[0.0059803554],[0.0054145075],[0.0048738226],[0.0043602428],[0.0038756851],[0.0034218755],[0.0030002144],[0.002611677],[0.0022567504],[0.0019354069],[0.0016471092],[0.001390844],[0.001165177],[0.00096832328],[0.00079822775],[0.00065264776],[0.00052923453],[0.00042560824],[0.00033942416],[0.00026842773],[0.00021049767],[0.00016367709],[0.00012619332],[9.6467581e-05],[7.3116108e-05],[5.4944294e-05],[4.0935701e-05],[3.0237445e-05],[2.214344e-05],[1.6076695e-05],[1.157165e-05],[8.2572681e-06],[5.841389e-06],[4.0966707e-06],[2.8482495e-06],[1.9631534e-06],[1.3413963e-06],[9.0862423e-07],[6.1014593e-07],[4.0616584e-07],[2.6803503e-07],[1.7534628e-07],[1.1371477e-07],[7.3105675e-08],[4.6590558e-08],[2.9434463e-08],[1.843421e-08],[1.1444639e-08],[7.0434875e-09],[4.2971504e-09],[2.5988403e-09],[1.5580592e-09],[9.2596129e-10],[5.4551337e-10],[3.1858174e-10],[1.8443295e-10],[1.0584189e-10],[6.021122e-11],[3.3954497e-11],[1.8980891e-11],[1.0518035e-11],[5.7776437e-12],[3.1460412e-12],[1.6981457e-12],[9.0861903e-13],[4.8193052e-13],[2.5338576e-13],[1.32061e-13],[6.822775e-14],[3.4941459e-14],[1.7738383e-14],[8.9264647e-15],[4.4528384e-15],[2.2018404e-15],[1.0792591e-15],[5.2439203e-16],[2.525669e-16],[1.2058307e-16],[5.706703e-17],[2.6771507e-17],[1.2449402e-17],[5.7386783e-18],[2.6221801e-18],[1.1876814e-18],[5.3324135e-19],[2.3731962e-19],[1.0469574e-19],[4.5783556e-20],[1.9846082e-20],[8.527552e-21],[3.632101e-21],[1.5334691e-21],[6.4176396e-22],[2.6623088e-22],[1.0947727e-22],[4.4624319e-23],[1.8030217e-23],[7.2212382e-24],[2.8668397e-24],[1.1281734e-24],[4.4007695e-25],[1.7016155e-25],[6.5218968e-26],[2.4777974e-26],[9.3311838e-27],[3.4832645e-27],[1.2888863e-27],[4.7273845e-28],[1.7187199e-28],[6.1939384e-29],[2.2126155e-29],[7.834694e-30],[2.7498872e-30],[9.5671855e-31],[3.2993602e-31],[1.1278497e-31],[3.8216283e-32],[1.2835746e-32],[4.2733554e-33],[1.4102363e-33],[4.6130641e-34],[1.495759e-34],[4.8073753e-35],[1.5315406e-35],[4.8364069e-36],[1.5138777e-36],[4.6971256e-37],[1.4445972e-37],[4.4038691e-38],[1.330745e-38],[3.9859139e-39],[1.1834051e-39],[3.4826609e-40],[1.0159235e-40],[2.937533e-41],[8.419304e-42],[2.3918899e-42],[6.7356194e-43],[1.880118e-43],[5.2019209e-44],[1.4266363e-44],[3.8782296e-45],[1.0450194e-45],[2.7911659e-46],[7.3895369e-47],[1.9391837e-47],[5.0441812e-48],[1.3005657e-48],[3.323867e-49],[8.4202423e-50],[2.114341e-50],[5.2625328e-51],[1.2983263e-51],[3.1749872e-52],[7.6960716e-53],[1.84912e-53],[4.4038232e-54],[1.0395929e-54],[2.4325696e-55],[5.6420338e-56],[1.2971029e-56],[2.9558434e-57],[6.6766181e-58],[1.4948572e-58],[3.317499e-59],[7.2977631e-60],[1.5912429e-60],[3.439148e-61],[7.3677155e-62],[1.5645243e-62],[3.2930567e-63],[6.8704224e-64],[1.4208064e-64],[2.9124171e-65],[5.9175146e-66]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"November","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164725,-0.18164725,-0.18164725,-0.18164724,-0.18164724,-0.18164722,-0.1816472,-0.18164718,-0.18164713,-0.18164707,-0.18164697,-0.18164682,-0.18164661,-0.18164631,-0.18164588,-0.18164527,-0.18164442,-0.18164324,-0.18164161,-0.18163939,-0.1816364,-0.18163239,-0.1816271,-0.18162015,-0.18161114,-0.18159955,-0.18158479,-0.18156619,-0.18154297,-0.18151427,-0.18147916,-0.18143663,-0.18138566,-0.18132518,-0.18125416,-0.18117165,-0.18107679,-0.18096891,-0.18084753,-0.18071246,-0.18056381,-0.180402,-0.18022785,-0.18004249,-0.17984738,-0.17964425,-0.179435,-0.1792216,-0.17900597,-0.17878982,-0.17857446,-0.17836066,-0.17814847,-0.17793709,-0.17772472,-0.17750849,-0.17728446,-0.1770476,-0.1767919,-0.17651055,-0.17619609,-0.17584075,-0.1754367,-0.17497643,-0.17445309,-0.17386082,-0.17319509,-0.17245294,-0.17163317,-0.17073649,-0.1697655,-0.16872461,-0.16761989,-0.1664588,-0.16524984,-0.16400212,-0.16272499,-0.16142759,-0.16011838,-0.15880483,-0.15749309,-0.1561878,-0.15489193,-0.15360683,-0.15233225,-0.15106665,-0.14980737,-0.14855105,-0.14729405,-0.14603282,-0.1447644,-0.14348683,-0.14219955,-0.14090369,-0.13960243,-0.13830112,-0.1370074,-0.13573124,-0.1344848,-0.13328227,-0.13213961,-0.1310741,-0.13010394,-0.1292477,-0.12852376,-0.12794968,-0.12754159,-0.1273136,-0.12727726,-0.12744106,-0.12781003,-0.12838552,-0.12916498,-0.130142,-0.13130639,-0.13264449,-0.1341395,-0.13577198,-0.13752039,-0.13936177,-0.14127233,-0.14322812,-0.14520573,-0.1471828,-0.14913863,-0.1510546,-0.15291454,-0.15470503,-0.15641549,-0.15803831,-0.15956876,-0.16100485,-0.16234712,-0.16359831,-0.16476302,-0.16584729,-0.16685819,-0.16780339,-0.16869076,-0.16952797,-0.17032217,-0.17107972,-0.17180601,-0.17250529,-0.17318068,-0.17383411,-0.17446646,-0.17507767,-0.1756669,-0.17623275,-0.17677344,-0.17728701,-0.17777157,-0.17822538,-0.17864704,-0.17903558,-0.17939051,-0.17971185,-0.18000015,-0.18025641,-0.18048208,-0.18067893,-0.18084903,-0.18099461,-0.18111802,-0.18122165,-0.18130783,-0.18137883,-0.18143676,-0.18148358,-0.18152106,-0.18155079,-0.18157414,-0.18159231,-0.18160632,-0.18161702,-0.18162511,-0.18163118,-0.18163569,-0.181639,-0.18164142,-0.18164316,-0.18164441,-0.18164529,-0.18164592,-0.18164635,-0.18164665,-0.18164685,-0.18164699,-0.18164708,-0.18164714,-0.18164718,-0.18164721,-0.18164723,-0.18164724,-0.18164725,-0.18164725,-0.18164725,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726],"zorder":20,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726],"zorder":21,"type":"scatter"},{"customdata":[[1.4814053e-73],[8.0089297e-73],[4.2918195e-72],[2.2796852e-71],[1.2002585e-70],[6.2638493e-70],[3.2402196e-69],[1.6614003e-68],[8.4438573e-68],[4.2537732e-67],[2.1240987e-66],[1.0513372e-65],[5.1579414e-65],[2.508291e-64],[1.2090566e-63],[5.7767377e-63],[2.7358105e-62],[1.2842715e-61],[5.975788e-61],[2.7561392e-60],[1.2600124e-59],[5.7097391e-59],[2.5646353e-58],[1.1418339e-57],[5.0390461e-57],[2.2042553e-56],[9.5574874e-56],[4.1076549e-55],[1.7498976e-54],[7.3892425e-54],[3.0928289e-53],[1.2831596e-52],[5.2768454e-52],[2.1509836e-51],[8.6909848e-51],[3.4807285e-50],[1.3817858e-49],[5.4372688e-49],[2.1207552e-48],[8.1991736e-48],[3.1420966e-47],[1.1935457e-46],[4.4939554e-46],[1.6772153e-45],[6.2046797e-45],[2.2752051e-44],[8.2697531e-44],[2.9794457e-43],[1.0640193e-42],[3.7664728e-42],[1.3215743e-41],[4.5964224e-41],[1.5846015e-40],[5.4149215e-40],[1.8341565e-39],[6.1581879e-39],[2.049472e-38],[6.7608879e-38],[2.2107436e-37],[7.1654935e-37],[2.3021156e-36],[7.3313113e-36],[2.314248e-35],[7.2412252e-35],[2.2458894e-34],[6.9046082e-34],[2.10409e-33],[6.3557149e-33],[1.9030034e-32],[5.6479394e-32],[1.6615601e-31],[4.8452687e-31],[1.4005407e-30],[4.0128222e-30],[1.1396741e-29],[3.2083984e-29],[8.9530914e-29],[2.4764819e-28],[6.7900811e-28],[1.8454095e-27],[4.9715155e-27],[1.3275883e-26],[3.5141226e-26],[9.220396e-26],[2.3980693e-25],[6.1823517e-25],[1.5798863e-24],[4.0020122e-24],[1.0048744e-23],[2.5010729e-23],[6.1705289e-23],[1.5090384e-22],[3.6581405e-22],[8.7902873e-22],[2.0937687e-21],[4.9435354e-21],[1.1569919e-20],[2.6841517e-20],[6.1726022e-20],[1.4070658e-19],[3.1794049e-19],[7.1213606e-19],[1.5811251e-18],[3.4798142e-18],[7.5915919e-18],[1.6417124e-17],[3.5192424e-17],[7.4780712e-17],[1.5751387e-16],[3.2887983e-16],[6.8068377e-16],[1.3965091e-15],[2.8400946e-15],[5.725495e-15],[1.1441552e-14],[2.2664653e-14],[4.4504704e-14],[8.6627545e-14],[1.671475e-13],[3.1969667e-13],[6.0613763e-13],[1.1391997e-12],[2.1223868e-12],[3.9196371e-12],[7.1757033e-12],[1.3022099e-11],[2.3425888e-11],[4.1774413e-11],[7.3845589e-11],[1.2940152e-10],[2.247789e-10],[3.87056e-10],[6.6068583e-10],[1.1179436e-09],[1.8752079e-09],[3.1180598e-09],[5.1395599e-09],[8.3979813e-09],[1.3602929e-08],[2.1842364e-08],[3.4767846e-08],[5.4861558e-08],[8.5816761e-08],[1.330734e-07],[2.0456303e-07],[3.1173217e-07],[4.7093028e-07],[7.0526811e-07],[1.0470727e-06],[1.5410865e-06],[2.2485758e-06],[3.2525318e-06],[4.6641506e-06],[6.6307768e-06],[9.3454752e-06],[1.305835e-05],[1.8089663e-05],[2.484471e-05],[3.3830263e-05],[4.5672242e-05],[6.1134061e-05],[8.1134886e-05],[0.00010676679],[0.00013930955],[0.00018024172],[0.00023124625],[0.00029420916],[0.0003712095],[0.00046449935],[0.00057647266],[0.00070962244],[0.00086648649],[0.0010495826],[0.0012613351],[0.0015039956],[0.0017795613],[0.0020896959],[0.0024356574],[0.0028182378],[0.0032377191],[0.00369385],[0.0041858455],[0.0047124101],[0.005271784],[0.0058618085],[0.0064800071],[0.0071236732],[0.0077899579],[0.0084759487],[0.0091787307],[0.0098954229],[0.010623184],[0.011359186],[0.012100555],[0.012844287],[0.013587138],[0.014325512],[0.015055347],[0.015772024],[0.016470302],[0.017144304],[0.017787551],[0.018393058],[0.018953492],[0.019461384],[0.019909388],[0.020290572],[0.02059873],[0.020828685],[0.020976569],[0.021040059],[0.02101856],[0.020913303],[0.020727376],[0.020465662],[0.020134701],[0.01974249],[0.019298213],[0.018811944],[0.018294328],[0.017756257],[0.017208571],[0.016661795],[0.016125917],[0.015610229],[0.01512322],[0.014672528],[0.014264935],[0.013906406],[0.013602146],[0.013356668],[0.013173854],[0.013056999],[0.013008825],[0.013031463],[0.013126399],[0.013294378],[0.0135353],[0.013848078],[0.014230516],[0.014679179],[0.015189306],[0.015754754],[0.016367995],[0.017020173],[0.017701219],[0.018400033],[0.019104715],[0.019802852],[0.020481837],[0.021129209],[0.021733008],[0.02228212],[0.0227666],[0.023177966],[0.02350945],[0.023756192],[0.023915386],[0.023986359],[0.023970586],[0.02387166],[0.023695188],[0.023448653],[0.023141216],[0.022783492],[0.022387293],[0.021965346],[0.021530997],[0.021097914],[0.020679779],[0.020289991],[0.019941381],[0.019645927],[0.019414499],[0.019256609],[0.01918019],[0.019191386],[0.019294376],[0.019491217],[0.019781725],[0.020163395],[0.020631358],[0.021178403],[0.021795046],[0.022469667],[0.023188718],[0.023936991],[0.024697956],[0.025454145],[0.026187596],[0.026880307],[0.02751472],[0.028074183],[0.028543393],[0.028908792],[0.029158902],[0.029284584],[0.029279219],[0.029138807],[0.028861974],[0.028449917],[0.027906266],[0.027236897],[0.026449704],[0.025554333],[0.0245619],[0.023484699],[0.02233591],[0.02112931],[0.019878995],[0.018599115],[0.017303623],[0.016006039],[0.014719232],[0.013455225],[0.012225015],[0.011038426],[0.0099039837],[0.008828827],[0.0078186491],[0.0068776786],[0.006008695],[0.0052130815],[0.0044909108],[0.0038410608],[0.0032613547],[0.0027487191],[0.0022993538],[0.0019089045],[0.0015726344],[0.0012855856],[0.0010427268],[0.00083908381],[0.0006698482],[0.000530465],[0.00041669793],[0.00032467363],[0.00025090672],[0.00019230798],[0.00014617858],[0.00011019317],[8.2374825e-05],[6.1064511e-05],[4.4887411e-05],[3.2718195e-05],[2.364678e-05],[1.6945806e-05],[1.2040665e-05],[8.4825805e-06],[5.9249775e-06],[4.1031669e-06],[2.8172058e-06],[1.9176907e-06],[1.2941759e-06],[8.6587945e-07],[5.7433592e-07],[3.7767161e-07],[2.462058e-07],[1.59116e-07],[1.01943e-07],[6.4747891e-08],[4.0767616e-08],[2.5446238e-08],[1.5745184e-08],[9.6579562e-09],[5.8726449e-09],[3.5399007e-09],[2.1152184e-09],[1.2529225e-09],[7.3569248e-10],[4.2822285e-10],[2.4708321e-10],[1.413237e-10],[8.0127906e-11],[4.5034806e-11],[2.5090382e-11],[1.3856693e-11],[7.5858489e-12],[4.1166125e-12],[2.2144508e-12],[1.1808138e-12],[6.2414466e-13],[3.2702182e-13],[1.6984589e-13],[8.7441872e-14],[4.4624076e-14],[2.2573752e-14],[1.1319371e-14],[5.6263183e-15],[2.7721016e-15],[1.3538679e-15],[6.5542825e-16],[3.1452507e-16],[1.4961188e-16],[7.0543528e-17],[3.2970691e-17],[1.5274897e-17],[7.0146731e-18],[3.193119e-18],[1.4407907e-18]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"November","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164725,-0.18164725,-0.18164725,-0.18164724,-0.18164724,-0.18164722,-0.1816472,-0.18164717,-0.18164712,-0.18164705,-0.18164695,-0.18164679,-0.18164655,-0.18164621,-0.18164572,-0.18164501,-0.18164401,-0.18164259,-0.18164063,-0.18163791,-0.1816342,-0.18162917,-0.18162241,-0.18161343,-0.18160159,-0.18158612,-0.18156612,-0.18154049,-0.18150795,-0.18146702,-0.18141601,-0.18135305,-0.18127605,-0.18118276,-0.18107079,-0.18093764,-0.18078077,-0.18059768,-0.18038592,-0.18014326,-0.1798677,-0.17955756,-0.1792116,-0.17882902,-0.17840954,-0.17795341,-0.17746141,-0.17693485,-0.17637547,-0.17578545,-0.17516725,-0.17452358,-0.1738573,-0.17317131,-0.17246853,-0.17175183,-0.17102407,-0.17028807,-0.1695467,-0.16880297,-0.16806012,-0.16732175,-0.16659191,-0.16587523,-0.16517696,-0.16450295,-0.16385971,-0.1632542,-0.16269377,-0.16218587,-0.16173787,-0.16135669,-0.16104853,-0.16081857,-0.16067069,-0.1606072,-0.1606287,-0.16073395,-0.16091988,-0.1611816,-0.16151256,-0.16190477,-0.16234905,-0.16283531,-0.16335293,-0.163891,-0.16443869,-0.16498546,-0.16552134,-0.16603703,-0.16652404,-0.16697473,-0.16738232,-0.16774085,-0.16804511,-0.16829059,-0.1684734,-0.16859026,-0.16863843,-0.16861579,-0.16852086,-0.16835288,-0.16811196,-0.16779918,-0.16741674,-0.16696808,-0.16645795,-0.1658925,-0.16527926,-0.16462708,-0.16394604,-0.16324723,-0.16254254,-0.16184441,-0.16116542,-0.16051805,-0.15991425,-0.15936514,-0.15888066,-0.15846929,-0.15813781,-0.15789107,-0.15773187,-0.1576609,-0.15767667,-0.1577756,-0.15795207,-0.1581986,-0.15850604,-0.15886377,-0.15925996,-0.15968191,-0.16011626,-0.16054934,-0.16096748,-0.16135727,-0.16170588,-0.16200133,-0.16223276,-0.16239065,-0.16246707,-0.16245587,-0.16235288,-0.16215604,-0.16186553,-0.16148386,-0.1610159,-0.16046885,-0.15985221,-0.15917759,-0.15845854,-0.15771027,-0.1569493,-0.15619311,-0.15545966,-0.15476695,-0.15413254,-0.15357307,-0.15310386,-0.15273847,-0.15248836,-0.15236267,-0.15236804,-0.15250845,-0.15278528,-0.15319734,-0.15374099,-0.15441036,-0.15519755,-0.15609292,-0.15708536,-0.15816256,-0.15931135,-0.16051795,-0.16176826,-0.16304814,-0.16434363,-0.16564122,-0.16692803,-0.16819203,-0.16942224,-0.17060883,-0.17174327,-0.17281843,-0.17382861,-0.17476958,-0.17563856,-0.17643418,-0.17715635,-0.1778062,-0.1783859,-0.17889854,-0.1793479,-0.17973835,-0.18007462,-0.18036167,-0.18060453,-0.18080817,-0.18097741,-0.18111679,-0.18123056,-0.18132258,-0.18139635,-0.18145495,-0.18150108,-0.18153706,-0.18156488,-0.18158619,-0.18160237,-0.18161454,-0.18162361,-0.18163031,-0.18163522,-0.18163878,-0.18164133,-0.18164315,-0.18164444,-0.18164534,-0.18164596,-0.18164639,-0.18164668,-0.18164688,-0.18164701,-0.1816471,-0.18164716,-0.18164719,-0.18164722,-0.18164723,-0.18164724,-0.18164725,-0.18164725,-0.18164725,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726],"zorder":21,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198],"zorder":22,"type":"scatter"},{"customdata":[[7.0497533e-06],[9.7550087e-06],[1.3380184e-05],[1.8191971e-05],[2.4517919e-05],[3.2754953e-05],[4.3377424e-05],[5.6944053e-05],[7.4103029e-05],[9.5594379e-05],[0.00012224872],[0.00015498139],[0.00019478115],[0.00024269264],[0.00029979212],[0.00036715636],[0.00044582496],[0.00053675679],[0.00064078217],[0.0007585524],[0.00089048943],[0.0010367383],[0.0011971259],[0.0013711286],[0.0015578527],[0.0017560296],[0.0019640273],[0.0021798804],[0.0024013359],[0.0026259156],[0.0028509906],[0.0030738641],[0.0032918579],[0.0035023972],[0.0037030878],[0.0038917802],[0.0040666181],[0.0042260664],[0.0043689187],[0.0044942843],[0.004601558],[0.0046903757],[0.0047605618],[0.0048120739],[0.0048449525],[0.0048592797],[0.0048551533],[0.0048326787],[0.0047919809],[0.0047332355],[0.0046567162],[0.0045628552],[0.0044523099],[0.0043260306],[0.004185322],[0.0040318925],[0.003867886],[0.0036958921],[0.0035189337],[0.0033404299],[0.0031641366],[0.0029940675],[0.0028344001],[0.0026893704],[0.0025631637],[0.0024598048],[0.0023830548],[0.0023363183],[0.0023225635],[0.0023442607],[0.0024033385],[0.00250116],[0.0026385179],[0.0028156493],[0.0030322663],[0.0032876026],[0.0035804716],[0.0039093344],[0.0042723735],[0.0046675691],[0.0050927752],[0.0055457908],[0.006024425],[0.00652655],[0.0070501441],[0.0075933174],[0.0081543239],[0.0087315556],[0.0093235211],[0.0099288077],[0.010546031],[0.011173772],[0.011810508],[0.012454539],[0.01310392],[0.013756394],[0.014409343],[0.015059767],[0.015704276],[0.016339121],[0.016960267],[0.017563489],[0.018144523],[0.018699232],[0.019223817],[0.019715028],[0.020170394],[0.020588427],[0.020968808],[0.021312528],[0.02162196],[0.021900871],[0.022154346],[0.022388629],[0.02261089],[0.02282891],[0.023050728],[0.023284235],[0.023536774],[0.023814748],[0.024123273],[0.024465899],[0.024844419],[0.025258777],[0.025707086],[0.026185757],[0.026689715],[0.027212719],[0.027747724],[0.028287293],[0.028824021],[0.02935093],[0.029861836],[0.030351637],[0.030816536],[0.031254154],[0.031663559],[0.032045187],[0.032400686],[0.032732668],[0.033044411],[0.033339508],[0.033621506],[0.033893526],[0.034157924],[0.034415973],[0.034667613],[0.034911269],[0.035143747],[0.03536023],[0.035554349],[0.035718359],[0.035843384],[0.035919738],[0.035937299],[0.035885921],[0.03575586],[0.03553819],[0.035225199],[0.034810735],[0.034290485],[0.033662184],[0.032925733],[0.032083239],[0.031138957],[0.030099165],[0.028971966],[0.027767031],[0.026495311],[0.025168713],[0.023799782],[0.022401373],[0.020986351],[0.01956731],[0.018156329],[0.016764764],[0.015403074],[0.014080694],[0.012805933],[0.011585913],[0.010426538],[0.0093324897],[0.008307242],[0.0073531046],[0.0064712796],[0.0056619349],[0.0049242917],[0.0042567215],[0.0036568534],[0.003121686],[0.0026477029],[0.0022309895],[0.0018673469],[0.0015524009],[0.0012817046],[0.00105083],[0.0008554497],[0.00069140544],[0.00055476371],[0.00044185798],[0.00034931808],[0.00027408751],[0.00021342985],[0.00016492572],[0.00012646206],[9.6215186e-05],[7.2629484e-05],[5.4393143e-05],[4.0412389e-05],[2.9785348e-05],[2.1776521e-05],[1.5792579e-05],[1.1360006e-05],[8.1049099e-06],[5.7351689e-06],[4.0249247e-06],[2.8013597e-06],[1.933599e-06],[1.3235427e-06],[8.9840445e-07],[6.0472403e-07],[4.0363016e-07],[2.6714147e-07],[1.7531584e-07],[1.140813e-07],[7.360598e-08],[4.7087904e-08],[2.9867302e-08],[1.8783051e-08],[1.1711522e-08],[7.2398828e-09],[4.4372605e-09],[2.6962372e-09],[1.6242614e-09],[9.7007102e-10],[5.7437611e-10],[3.3715539e-10],[1.9620074e-10],[1.1318898e-10],[6.4734668e-11],[3.6702493e-11],[2.0628934e-11],[1.1494167e-11],[6.3488461e-12],[3.4763694e-12],[1.8869841e-12],[1.0153583e-12],[5.4159767e-13],[2.8637721e-13],[1.5010744e-13],[7.7994881e-14],[4.0172441e-14],[2.0510999e-14],[1.0381024e-14],[5.2081897e-15],[2.5901509e-15],[1.2768903e-15],[6.2398054e-16],[3.0225683e-16],[1.4513348e-16],[6.9078737e-17],[3.2591574e-17],[1.5242262e-17],[7.0660332e-18],[3.2470066e-18],[1.4790097e-18],[6.677877e-19],[2.9887153e-19],[1.3258935e-19],[5.830557e-20],[2.5414879e-20],[1.0981003e-20],[4.7029603e-21],[1.996528e-21],[8.4014403e-22],[3.5043364e-22],[1.4488755e-22],[5.9378485e-23],[2.4121231e-23],[9.7127391e-24],[3.87664e-24],[1.5336997e-24],[6.0144507e-25],[2.3378789e-25],[9.007788e-26],[3.4402031e-26],[1.3023254e-26],[4.8867951e-27],[1.8175975e-27],[6.7010057e-28],[2.4487854e-28],[8.8701243e-29],[3.1847599e-29],[1.1334217e-29],[3.9982868e-30],[1.3980535e-30],[4.845526e-31],[1.6646585e-31],[5.6686064e-32],[1.9133492e-32],[6.4014567e-33],[2.1229017e-33],[6.978263e-34],[2.2736889e-34],[7.3431241e-35],[2.3506974e-35],[7.4589636e-36],[2.3459895e-36],[7.3137375e-37],[2.2600513e-37],[6.9224966e-38],[2.1017094e-38],[6.324817e-39],[1.8866379e-39],[5.578204e-40],[1.6348028e-40],[4.7489924e-41],[1.3674221e-41],[3.9027318e-42],[1.1040779e-42],[3.095962e-43],[8.6051083e-44],[2.3707285e-44],[6.4739902e-45],[1.7523745e-45],[4.7016085e-46],[1.2503471e-46],[3.2959399e-47],[8.6117718e-48],[2.2303357e-48],[5.7254866e-49],[1.456864e-49],[3.6744302e-50],[9.1859776e-51],[2.276277e-51],[5.5909955e-52],[1.361186e-52],[3.2848087e-53],[7.8571842e-54],[1.8628935e-54],[4.3779754e-55],[1.0198183e-55],[2.3547047e-56],[5.3890754e-57],[1.2225207e-57],[2.7489211e-58],[6.1267824e-59],[1.3535264e-59],[2.9639104e-60],[6.4332064e-61],[1.3840569e-61],[2.9515114e-62],[6.2387705e-63],[1.3071264e-63],[2.7145644e-64],[5.5878755e-65],[1.1401376e-65],[2.3058541e-66],[4.6224301e-67],[9.1848663e-68],[1.809003e-68],[3.5315851e-69],[6.8338276e-70],[1.3107573e-70],[2.4919797e-71],[4.6960276e-72],[8.7716379e-73],[1.6240323e-73],[2.9803862e-74],[5.4214358e-75],[9.7750728e-76],[1.7469866e-76],[3.0947319e-77],[5.4340094e-78],[9.4576148e-79],[1.6315738e-79],[2.7899455e-80],[4.7287742e-81],[7.9444768e-82],[1.3229575e-82],[2.1836868e-83],[3.5727173e-84],[5.7938977e-85],[9.3133698e-86],[1.4839071e-86],[2.3435296e-87],[3.6685802e-88],[5.6923217e-89],[8.7547691e-90],[1.334639e-90],[2.0167253e-91],[3.0206021e-92],[4.4843978e-93],[6.5990069e-94],[9.6253574e-95],[1.3916146e-95],[1.9942744e-96],[2.8327921e-97],[3.9884881e-98],[5.5662886e-99]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"December","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.19980493,-0.19980223,-0.1997986,-0.19979379,-0.19978747,-0.19977923,-0.19976861,-0.19975504,-0.19973788,-0.19971639,-0.19968973,-0.199657,-0.1996172,-0.19956929,-0.19951219,-0.19944483,-0.19936616,-0.19927523,-0.1991712,-0.19905343,-0.19892149,-0.19877525,-0.19861486,-0.19844085,-0.19825413,-0.19805595,-0.19784796,-0.1976321,-0.19741065,-0.19718607,-0.19696099,-0.19673812,-0.19652013,-0.19630959,-0.1961089,-0.1959202,-0.19574537,-0.19558592,-0.19544306,-0.1953177,-0.19521043,-0.19512161,-0.19505142,-0.19499991,-0.19496703,-0.1949527,-0.19495683,-0.1949793,-0.19502,-0.19507875,-0.19515527,-0.19524913,-0.19535967,-0.19548595,-0.19562666,-0.19578009,-0.1959441,-0.19611609,-0.19629305,-0.19647155,-0.19664785,-0.19681792,-0.19697758,-0.19712261,-0.19724882,-0.19735218,-0.19742893,-0.19747567,-0.19748942,-0.19746772,-0.19740865,-0.19731082,-0.19717347,-0.19699633,-0.19677972,-0.19652438,-0.19623151,-0.19590265,-0.19553961,-0.19514441,-0.19471921,-0.19426619,-0.19378756,-0.19328543,-0.19276184,-0.19221867,-0.19165766,-0.19108043,-0.19048846,-0.18988318,-0.18926595,-0.18863821,-0.18800148,-0.18735744,-0.18670806,-0.18605559,-0.18540264,-0.18475222,-0.18410771,-0.18347286,-0.18285172,-0.18224849,-0.18166746,-0.18111275,-0.18058817,-0.18009696,-0.17964159,-0.17922356,-0.17884318,-0.17849946,-0.17819002,-0.17791111,-0.17765764,-0.17742335,-0.17720109,-0.17698307,-0.17676126,-0.17652775,-0.17627521,-0.17599724,-0.17568871,-0.17534608,-0.17496756,-0.17455321,-0.1741049,-0.17362623,-0.17312227,-0.17259926,-0.17206426,-0.17152469,-0.17098796,-0.17046105,-0.16995015,-0.16946035,-0.16899545,-0.16855783,-0.16814843,-0.1677668,-0.1674113,-0.16707932,-0.16676757,-0.16647248,-0.16619048,-0.16591846,-0.16565406,-0.16539601,-0.16514437,-0.16490072,-0.16466824,-0.16445175,-0.16425763,-0.16409362,-0.1639686,-0.16389225,-0.16387468,-0.16392606,-0.16405612,-0.16427379,-0.16458678,-0.16500125,-0.1655215,-0.1661498,-0.16688625,-0.16772874,-0.16867303,-0.16971282,-0.17084002,-0.17204495,-0.17331667,-0.17464327,-0.1760122,-0.17741061,-0.17882563,-0.18024467,-0.18165565,-0.18304722,-0.18440891,-0.18573129,-0.18700605,-0.18822607,-0.18938545,-0.19047949,-0.19150474,-0.19245888,-0.1933407,-0.19415005,-0.19488769,-0.19555526,-0.19615513,-0.1966903,-0.19716428,-0.19758099,-0.19794464,-0.19825958,-0.19853028,-0.19876115,-0.19895653,-0.19912058,-0.19925722,-0.19937013,-0.19946267,-0.1995379,-0.19959855,-0.19964706,-0.19968552,-0.19971577,-0.19973935,-0.19975759,-0.19977157,-0.1997822,-0.19979021,-0.19979619,-0.19980062,-0.19980388,-0.19980625,-0.19980796,-0.19980918,-0.19981005,-0.19981066,-0.19981109,-0.19981138,-0.19981158,-0.19981172,-0.19981181,-0.19981187,-0.19981191,-0.19981194,-0.19981195,-0.19981196,-0.19981197,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198],"zorder":22,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198],"zorder":23,"type":"scatter"},{"customdata":[[1.7309546e-34],[5.3232074e-34],[1.6226502e-33],[4.9027552e-33],[1.4683153e-32],[4.3587528e-32],[1.2825342e-31],[3.7405845e-31],[1.0813687e-30],[3.0986456e-30],[8.8010367e-30],[2.4777618e-29],[6.9143137e-29],[1.9125042e-28],[5.2434791e-28],[1.4249528e-27],[3.8383555e-27],[1.0248345e-26],[2.7122272e-26],[7.114792e-26],[1.8499592e-25],[4.7678862e-25],[1.2180172e-24],[3.0842159e-24],[7.7410508e-24],[1.9258341e-23],[4.7489939e-23],[1.1607753e-22],[2.8122797e-22],[6.7535585e-22],[1.6075727e-21],[3.7929086e-21],[8.8702924e-21],[2.0562092e-20],[4.7245501e-20],[1.0760128e-19],[2.4290597e-19],[5.4352904e-19],[1.2055108e-18],[2.6502283e-18],[5.7750967e-18],[1.2473807e-17],[2.6705617e-17],[5.6672189e-17],[1.1920684e-16],[2.4853991e-16],[5.1363537e-16],[1.0521496e-15],[2.1363081e-15],[4.2994616e-15],[8.576855e-15],[1.6959219e-14],[3.3238962e-14],[6.4573279e-14],[1.243432e-13],[2.3733131e-13],[4.4900567e-13],[8.4200065e-13],[1.565081e-12],[2.8835337e-12],[5.2659537e-12],[9.5321933e-12],[1.7103006e-11],[3.0416964e-11],[5.3619538e-11],[9.3690181e-11],[1.6226651e-10],[2.7856562e-10],[4.7401264e-10],[7.9949573e-10],[1.3366145e-09],[2.2149299e-09],[3.638125e-09],[5.923236e-09],[9.5588196e-09],[1.5290205e-08],[2.4242987e-08],[3.8099805e-08],[5.9350337e-08],[9.1640495e-08],[1.4025407e-07],[2.1276849e-07],[3.1993588e-07],[4.7685066e-07],[7.0447507e-07],[1.0316032e-06],[1.4973507e-06],[2.1542603e-06],[3.0721091e-06],[4.3424906e-06],[6.0842206e-06],[8.449574e-06],[1.1631306e-05],[1.587033e-05],[2.1463831e-05],[2.8773477e-05],[3.8233253e-05],[5.035632e-05],[6.5740127e-05],[8.5068922e-05],[0.00010911266],[0.00013872134],[0.00017481361],[0.00021835902],[0.00027035288],[0.00033178357],[0.00040359228],[0.00048662569],[0.00058158283],[0.00068895791],[0.00080898163],[0.00094156408],[0.0010862428],[0.0012421398],[0.0014079319],[0.0015818373],[0.0017616231],[0.0019446341],[0.0021278465],[0.0023079448],[0.002481421],[0.0026446939],[0.0027942427],[0.0029267508],[0.0030392527],[0.0031292777],[0.0031949828],[0.0032352704],[0.0032498826],[0.0032394719],[0.0032056422],[0.0031509624],[0.0030789515],[0.0029940391],[0.0029015037],[0.0028073928],[0.0027184304],[0.0026419134],[0.002585602],[0.0025576046],[0.0025662572],[0.002619998],[0.002727233],[0.0028961906],[0.0031347618],[0.0034503228],[0.0038495379],[0.0043381436],[0.0049207142],[0.005600416],[0.0063787569],[0.0072553419],[0.0082276496],[0.0092908442],[0.010437639],[0.011658228],[0.012940305],[0.014269166],[0.015627932],[0.016997862],[0.018358775],[0.01968956],[0.02096877],[0.022175254],[0.023288828],[0.024290929],[0.025165247],[0.025898268],[0.026479732],[0.026902971],[0.027165092],[0.027267029],[0.02721343],[0.027012408],[0.026675169],[0.026215525],[0.025649347],[0.024993961],[0.024267549],[0.02348856],[0.022675179],[0.021844867],[0.021013991],[0.020197551],[0.019409008],[0.018660205],[0.017961366],[0.017321163],[0.016746818],[0.016244244],[0.015818174],[0.015472287],[0.015209306],[0.01503107],[0.014938559],[0.014931904],[0.01501036],[0.015172278],[0.015415076],[0.015735218],[0.016128229],[0.01658875],[0.01711063],[0.017687068],[0.018310808],[0.018974357],[0.019670239],[0.020391259],[0.021130754],[0.021882824],[0.022642518],[0.023405962],[0.024170417],[0.024934246],[0.025696813],[0.026458286],[0.027219371],[0.027980983],[0.028743871],[0.029508224],[0.030273272],[0.031036921],[0.031795434],[0.032543192],[0.033272554],[0.033973826],[0.034635354],[0.035243748],[0.03578423],[0.036241083],[0.036598212],[0.036839759],[0.036950765],[0.036917838],[0.036729794],[0.036378229],[0.035858008],[0.035167627],[0.034309435],[0.033289703],[0.032118532],[0.030809616],[0.02937985],[0.027848826],[0.026238223],[0.024571139],[0.022871382],[0.021162753],[0.019468367],[0.017810017],[0.016207619],[0.014678755],[0.013238317],[0.011898259],[0.010667474],[0.0095517622],[0.0085539097],[0.0076738493],[0.0069088966],[0.0062540446],[0.005702303],[0.0052450674],[0.0048725035],[0.0045739344],[0.0043382199],[0.0041541163],[0.0040106084],[0.003897207],[0.003804204],[0.0037228822],[0.0036456748],[0.0035662747],[0.003479691],[0.0033822567],[0.0032715893],[0.0031465094],[0.0030069231],[0.0028536769],[0.0026883914],[0.0025132834],[0.0023309855],[0.0021443702],[0.0019563859],[0.0017699117],[0.0015876347],[0.0014119531],[0.0012449057],[0.0010881294],[0.00094284015],[0.00080983751],[0.00068952714],[0.00058195824],[0.00048687119],[0.00040375147],[0.00033188592],[0.00027041813],[0.00021840027],[0.00017483946],[0.0001387374],[0.00010912256],[8.507497e-05],[6.574379e-05],[5.035852e-05],[3.8234563e-05],[2.877425e-05],[2.1464284e-05],[1.5870593e-05],[1.1631457e-05],[8.4496602e-06],[6.0842693e-06],[4.3425179e-06],[3.0721243e-06],[2.1542687e-06],[1.4973553e-06],[1.0316057e-06],[7.044764e-07],[4.7685137e-07],[3.1993625e-07],[2.1276868e-07],[1.4025417e-07],[9.1640547e-08],[5.9350364e-08],[3.8099819e-08],[2.4242994e-08],[1.5290208e-08],[9.5588212e-09],[5.9232368e-09],[3.6381254e-09],[2.2149301e-09],[1.3366146e-09],[7.9949577e-10],[4.7401266e-10],[2.7856563e-10],[1.6226651e-10],[9.3690183e-11],[5.3619539e-11],[3.0416964e-11],[1.7103006e-11],[9.5321934e-12],[5.2659537e-12],[2.8835337e-12],[1.565081e-12],[8.4200065e-13],[4.4900567e-13],[2.3733131e-13],[1.243432e-13],[6.4573279e-14],[3.3238962e-14],[1.6959219e-14],[8.576855e-15],[4.2994616e-15],[2.1363081e-15],[1.0521496e-15],[5.1363537e-16],[2.4853991e-16],[1.1920684e-16],[5.6672189e-17],[2.6705617e-17],[1.2473807e-17],[5.7750967e-18],[2.6502283e-18],[1.2055108e-18],[5.4352904e-19],[2.4290597e-19],[1.0760128e-19],[4.7245501e-20],[2.0562092e-20],[8.8702924e-21],[3.7929086e-21],[1.6075727e-21],[6.7535585e-22],[2.8122797e-22],[1.1607753e-22],[4.7489939e-23],[1.9258341e-23],[7.7410508e-24],[3.0842159e-24],[1.2180172e-24],[4.7678862e-25],[1.8499592e-25],[7.114792e-26],[2.7122272e-26],[1.0248345e-26],[3.8383555e-27],[1.4249528e-27],[5.2434791e-28],[1.9125042e-28],[6.9143137e-29],[2.4777618e-29],[8.8010367e-30],[3.0986456e-30],[1.0813687e-30],[3.7405845e-31],[1.2825342e-31],[4.3587528e-32],[1.4683153e-32],[4.9027552e-33],[1.6226502e-33],[5.3232074e-34],[1.7309546e-34]],"fill":"tonexty","fillgradient":{"colorscale":[[0.0,"#000004"],[0.111111111111,"#1b0c41"],[0.222222222222,"#4a0c6b"],[0.333333333333,"#781c6d"],[0.444444444444,"#a52c60"],[0.555555555556,"#cf4446"],[0.666666666667,"#ed6925"],[0.777777777778,"#fb9b06"],[0.888888888889,"#f7d13d"],[1.0,"#fcffa4"]],"type":"horizontal"},"hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"December","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981197,-0.19981197,-0.19981196,-0.19981195,-0.19981192,-0.19981189,-0.19981184,-0.19981177,-0.19981166,-0.19981151,-0.19981128,-0.19981095,-0.19981049,-0.19980983,-0.19980891,-0.19980764,-0.1998059,-0.19980353,-0.19980035,-0.19979611,-0.19979052,-0.19978321,-0.19977375,-0.19976163,-0.19974624,-0.19972691,-0.19970287,-0.19967326,-0.19963717,-0.19959362,-0.19954163,-0.1994802,-0.19940839,-0.19932536,-0.1992304,-0.19912303,-0.199003,-0.19887042,-0.19872574,-0.19856984,-0.19840405,-0.19823015,-0.19805036,-0.19786735,-0.19768414,-0.19750404,-0.19733056,-0.19716729,-0.19701774,-0.19688523,-0.19677273,-0.19668271,-0.196617,-0.19657671,-0.1965621,-0.19657251,-0.19660634,-0.19666102,-0.19673303,-0.19681794,-0.19691048,-0.19700459,-0.19709355,-0.19717007,-0.19722638,-0.19725438,-0.19724573,-0.19719199,-0.19708475,-0.19691579,-0.19667722,-0.19636166,-0.19596245,-0.19547384,-0.19489127,-0.19421157,-0.19343323,-0.19255664,-0.19158433,-0.19052114,-0.18937434,-0.18815376,-0.18687168,-0.18554282,-0.18418405,-0.18281412,-0.18145321,-0.18012242,-0.17884321,-0.17763673,-0.17652316,-0.17552105,-0.17464674,-0.17391372,-0.17333225,-0.17290901,-0.17264689,-0.17254495,-0.17259855,-0.17279958,-0.17313681,-0.17359646,-0.17416264,-0.17481802,-0.17554443,-0.17632342,-0.1771368,-0.17796712,-0.17879799,-0.17961443,-0.18040298,-0.18115178,-0.18185062,-0.18249082,-0.18306517,-0.18356774,-0.18399381,-0.1843397,-0.18460268,-0.18478091,-0.18487342,-0.18488008,-0.18480162,-0.18463971,-0.18439691,-0.18407677,-0.18368375,-0.18322323,-0.18270135,-0.18212492,-0.18150118,-0.18083763,-0.18014174,-0.17942072,-0.17868123,-0.17792916,-0.17716947,-0.17640602,-0.17564157,-0.17487774,-0.17411517,-0.1733537,-0.17259261,-0.171831,-0.17106811,-0.17030376,-0.16953871,-0.16877506,-0.16801655,-0.16726879,-0.16653943,-0.16583816,-0.16517663,-0.16456824,-0.16402775,-0.1635709,-0.16321377,-0.16297222,-0.16286122,-0.16289415,-0.16308219,-0.16343376,-0.16395398,-0.16464436,-0.16550255,-0.16652228,-0.16769345,-0.16900237,-0.17043213,-0.17196316,-0.17357376,-0.17524084,-0.1769406,-0.17864923,-0.18034362,-0.18200197,-0.18360436,-0.18513323,-0.18657367,-0.18791372,-0.18914451,-0.19026022,-0.19125807,-0.19213813,-0.19290309,-0.19355794,-0.19410968,-0.19456692,-0.19493948,-0.19523805,-0.19547376,-0.19565787,-0.19580138,-0.19591478,-0.19600778,-0.1960891,-0.19616631,-0.19624571,-0.19633229,-0.19642973,-0.19654039,-0.19666547,-0.19680506,-0.19695831,-0.19712359,-0.1972987,-0.197481,-0.19766761,-0.1978556,-0.19804207,-0.19822435,-0.19840003,-0.19856708,-0.19872385,-0.19886914,-0.19900215,-0.19912246,-0.19923003,-0.19932511,-0.19940823,-0.1994801,-0.19954157,-0.19959358,-0.19963714,-0.19967325,-0.19970286,-0.19972691,-0.19974624,-0.19976163,-0.19977375,-0.19978321,-0.19979052,-0.19979611,-0.19980035,-0.19980353,-0.1998059,-0.19980764,-0.19980891,-0.19980983,-0.19981049,-0.19981095,-0.19981128,-0.19981151,-0.19981166,-0.19981177,-0.19981184,-0.19981189,-0.19981192,-0.19981195,-0.19981196,-0.19981197,-0.19981197,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198],"zorder":23,"type":"scatter"}],"layout":{"template":{"data":{"histogram2dcontour":[{"type":"histogram2dcontour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"choropleth":[{"type":"choropleth","colorbar":{"outlinewidth":0,"ticks":""}}],"histogram2d":[{"type":"histogram2d","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmap":[{"type":"heatmap","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"contourcarpet":[{"type":"contourcarpet","colorbar":{"outlinewidth":0,"ticks":""}}],"contour":[{"type":"contour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"surface":[{"type":"surface","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"mesh3d":[{"type":"mesh3d","colorbar":{"outlinewidth":0,"ticks":""}}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"parcoords":[{"type":"parcoords","line":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolargl":[{"type":"scatterpolargl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"scattergeo":[{"type":"scattergeo","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolar":[{"type":"scatterpolar","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"scattergl":[{"type":"scattergl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatter3d":[{"type":"scatter3d","line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattermap":[{"type":"scattermap","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattermapbox":[{"type":"scattermapbox","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterternary":[{"type":"scatterternary","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattercarpet":[{"type":"scattercarpet","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"type":"carpet"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}],"barpolar":[{"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"pie":[{"automargin":true,"type":"pie"}]},"layout":{"autotypenumbers":"strict","colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"hovermode":"closest","hoverlabel":{"align":"left"},"paper_bgcolor":"white","plot_bgcolor":"#E5ECF6","polar":{"bgcolor":"#E5ECF6","angularaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"radialaxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"ternary":{"bgcolor":"#E5ECF6","aaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"baxis":{"gridcolor":"white","linecolor":"white","ticks":""},"caxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]]},"xaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"yaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"scene":{"xaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"yaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"zaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"geo":{"bgcolor":"white","landcolor":"#E5ECF6","subunitcolor":"white","showland":true,"showlakes":true,"lakecolor":"white"},"title":{"x":0.05},"mapbox":{"style":"light"}}},"legend":{"traceorder":"normal"},"yaxis":{"showticklabels":true,"tickvals":[0.0,-0.018164725780515447,-0.036329451561030894,-0.05449417734154635,-0.07265890312206179,-0.09082362890257724,-0.1089883546830927,-0.12715308046360815,-0.14531780624412358,-0.16348253202463903,-0.18164725780515448,-0.19981198358566993],"ticktext":[["January"],["February"],["March"],["April"],["May"],["June"],["July"],["August"],["September"],["October"],["November"],["December"]],"zeroline":false,"showgrid":true,"gridcolor":"white","title":{"text":"Month"}},"xaxis":{"range":[-47.5,117.5],"showticklabels":true,"zeroline":false,"showgrid":true,"gridcolor":"white","gridwidth":2,"title":{"text":"Temperature [F]"}},"barmode":"stack","bargap":0,"bargroupgap":0,"font":{"size":14},"title":{"text":"Minimum and maximum daily temperatures in Lincoln, NE (2016)"},"height":600,"width":800,"plot_bgcolor":"rgb(245, 245, 245)","showlegend":false}} diff --git a/tests/e2e/artifacts/lincoln_weather_red_blue.json b/tests/e2e/artifacts/lincoln_weather_red_blue.json index 0f2ba85..ea7a542 100644 --- a/tests/e2e/artifacts/lincoln_weather_red_blue.json +++ b/tests/e2e/artifacts/lincoln_weather_red_blue.json @@ -1 +1 @@ -{"data":[{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"zorder":0,"type":"scatter"},{"customdata":[[2.9189075e-16],[6.0207336e-16],[1.2309595e-15],[2.4946152e-15],[5.0110528e-15],[9.9774646e-15],[1.9691438e-14],[3.8521299e-14],[7.4694895e-14],[1.4356472e-13],[2.73509e-13],[5.1649129e-13],[9.6676793e-13],[1.7936998e-12],[3.2987245e-12],[6.0132827e-12],[1.0865434e-11],[1.9460458e-11],[3.4548587e-11],[6.0796636e-11],[1.0604782e-10],[1.8335714e-10],[3.1424539e-10],[5.3384622e-10],[8.9896118e-10],[1.50053e-09],[2.4827275e-09],[4.0718883e-09],[6.6198338e-09],[1.0668048e-08],[1.7041662e-08],[2.698552e-08],[4.2358881e-08],[6.5910767e-08],[1.016647e-07],[1.5544973e-07],[2.3562443e-07],[3.5405135e-07],[5.2739173e-07],[7.7880307e-07],[1.1401345e-06],[1.6547259e-06],[2.3809263e-06],[3.3964471e-06],[4.8036669e-06],[6.7359858e-06],[9.3653052e-06],[1.2910667e-05],[1.7648028e-05],[2.3921075e-05],[3.215289e-05],[4.285817e-05],[5.665559e-05],[7.4279785e-05],[9.6592284e-05],[0.00012459067],[0.00015941511],[0.00020235141],[0.00025482974],[0.0003184182],[0.00039481057],[0.00048580775],[0.00059329254],[0.00071919784],[0.00086546838],[0.0010340165],[0.0012266727],[0.0014451323],[0.0016908978],[0.0019652203],[0.0022690389],[0.0026029207],[0.002967001],[0.0033609266],[0.0037838016],[0.0042341383],[0.0047098137],[0.0052080356],[0.005725319],[0.0062574778],[0.006799634],[0.0073462505],[0.0078911896],[0.0084278028],[0.0089490536],[0.009447675],[0.0099163618],[0.010347994],[0.010735883],[0.011074043],[0.011357455],[0.011582333],[0.011746361],[0.011848895],[0.011891105],[0.011876052],[0.011808684],[0.01169575],[0.01154562],[0.011368029],[0.011173738],[0.010974137],[0.010780809],[0.010605062],[0.010457477],[0.010347465],[0.010282891],[0.010269751],[0.010311949],[0.010411159],[0.010566802],[0.010776124],[0.011034372],[0.011335069],[0.011670355],[0.012031398],[0.012408835],[0.012793232],[0.013175545],[0.013547554],[0.013902251],[0.014234179],[0.014539695],[0.014817159],[0.015067041],[0.015291945],[0.015496555],[0.015687502],[0.015873168],[0.016063429],[0.016269353],[0.016502851],[0.016776312],[0.017102209],[0.0174927],[0.017959225],[0.018512112],[0.019160196],[0.019910458],[0.020767691],[0.021734215],[0.022809624],[0.023990597],[0.025270782],[0.026640745],[0.028088019],[0.029597237],[0.03115037],[0.032727074],[0.034305119],[0.035860928],[0.037370183],[0.038808495],[0.040152109],[0.041378619],[0.042467658],[0.043401539],[0.04416581],[0.044749698],[0.045146418],[0.045353325],[0.045371916],[0.045207661],[0.044869678],[0.044370281],[0.043724398],[0.042948919],[0.042061987],[0.041082271],[0.040028272],[0.038917671],[0.037766778],[0.036590075],[0.035399891],[0.034206214],[0.033016626],[0.031836373],[0.030668541],[0.029514328],[0.02837338],[0.02724418],[0.026124443],[0.025011516],[0.023902747],[0.022795809],[0.02168897],[0.020581292],[0.019472765],[0.018364373],[0.017258086],[0.016156806],[0.015064254],[0.013984823],[0.012923404],[0.011885192],[0.010875489],[0.0098995094],[0.0089621983],[0.0080680673],[0.0072210567],[0.0064244247],[0.0056806692],[0.0049914802],[0.0043577242],[0.0037794586],[0.0032559719],[0.0027858479],[0.0023670477],[0.0019970051],[0.0016727312],[0.0013909215],[0.0011480629],[0.00094053466],[0.00076470104],[0.00061699303],[0.0004939769],[0.00039240901],[0.00030927687],[0.00024182663],[0.00018757845],[0.00014433098],[0.00011015681],[8.3390615e-05],[6.2611984e-05],[4.6624483e-05],[3.4432614e-05],[2.5217948e-05],[1.83155e-05],[1.3191182e-05],[9.4208954e-06],[6.6716421e-06],[4.6848405e-06],[3.2618849e-06],[2.2518798e-06],[1.541403e-06],[1.0461018e-06],[7.0390059e-07],[4.6959324e-07],[3.1059855e-07],[2.0367536e-07],[1.32414e-07],[8.5345554e-08],[5.4534968e-08],[3.4547157e-08],[2.169646e-08],[1.3508318e-08],[8.3376999e-09],[5.1017692e-09],[3.0947255e-09],[1.8610054e-09],[1.1094172e-09],[6.5563431e-10],[3.8410135e-10],[2.2307219e-10],[1.2842767e-10],[7.3296571e-11],[4.146856e-11],[2.3257498e-11],[1.293047e-11],[7.1264228e-12],[3.8934405e-12],[2.1086231e-12],[1.1320529e-12],[6.0247042e-13],[3.1783737e-13],[1.6621623e-13],[8.6166851e-14],[4.4279676e-14],[2.2556162e-14],[1.1389948e-14],[5.7012917e-15],[2.8289092e-15],[1.39142e-15],[6.7840696e-16],[3.2787966e-16],[1.5708335e-16],[7.4599634e-17],[3.5118301e-17],[1.6387774e-17],[7.5804598e-18],[3.4758393e-18],[1.5798354e-18],[7.1178936e-19],[3.1789093e-19],[1.4073149e-19],[6.1757603e-20],[2.6864276e-20],[1.1583637e-20],[4.9510735e-21],[2.0976741e-21],[8.8096866e-22],[3.6674674e-22],[1.5134045e-22],[6.190509e-23],[2.5100355e-23],[1.0088234e-23],[4.0191283e-24],[1.5871927e-24],[6.2130968e-25],[2.4108319e-25],[9.2726904e-26],[3.5352836e-26],[1.3360481e-26],[5.0049407e-27],[1.8584654e-27],[6.840509e-28],[2.4957464e-28],[9.0258946e-29],[3.2356204e-29],[1.1497465e-29],[4.0497063e-30],[1.4139095e-30],[4.8932354e-31],[1.678598e-31],[5.7078581e-32],[1.9238678e-32],[6.4276563e-33],[2.1286545e-33],[6.987673e-34],[2.2737076e-34],[7.3334957e-35],[2.3445617e-35],[7.4299558e-36],[2.3339124e-36],[7.2670206e-37],[2.2428568e-37],[6.861512e-38],[2.0807074e-38],[6.2542455e-39],[1.8634226e-39],[5.5032613e-40],[1.6110205e-40],[4.6747023e-41],[1.3445552e-41],[3.833319e-42],[1.083285e-42],[3.0344624e-43],[8.4254273e-44],[2.3188522e-44],[6.3259389e-45],[1.7105965e-45],[4.585014e-46],[1.2181593e-46],[3.208025e-47],[8.3741641e-48],[2.1667815e-48],[5.5572323e-49],[1.4127706e-49],[3.5600352e-50],[8.892141e-51],[2.2015455e-51],[5.4027908e-52],[1.3142491e-52],[3.1688825e-53],[7.5736181e-54],[1.7941939e-54],[4.2131209e-55],[9.8063404e-56],[2.2624468e-56],[5.1739006e-57],[1.1728054e-57],[2.6351291e-58],[5.868753e-59],[1.2955604e-59],[2.8348969e-60],[6.1487184e-61],[1.3219029e-61],[2.8169688e-62],[5.9502055e-63],[1.2458027e-63],[2.5854363e-64],[5.3184569e-65],[1.0844376e-65],[2.1917477e-66],[4.3907986e-67],[8.7189342e-68],[1.7161297e-68],[3.34814e-69],[6.4747619e-70],[1.241111e-70],[2.3581099e-71],[4.4410326e-72],[8.2903017e-73],[1.533992e-73],[2.8134693e-74],[5.114787e-75],[9.2167781e-76],[1.6462541e-76],[2.9146118e-77],[5.1148233e-78],[8.8970606e-79],[1.5340108e-79],[2.6216589e-80],[4.4410925e-81],[7.4570878e-82],[1.241122e-82],[2.0475069e-83],[3.3481275e-84],[5.426805e-85],[8.7187061e-86]],"fill":"tonexty","fillcolor":"rgb(0, 191, 255)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"January","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[2.9189075e-16,6.0207336e-16,1.2309595e-15,2.4946152e-15,5.0110528e-15,9.9774646e-15,1.9691438e-14,3.8521299e-14,7.4694895e-14,1.4356472e-13,2.73509e-13,5.1649129e-13,9.6676793e-13,1.7936998e-12,3.2987245e-12,6.0132827e-12,1.0865434e-11,1.9460458e-11,3.4548587e-11,6.0796636e-11,1.0604782e-10,1.8335714e-10,3.1424539e-10,5.3384622e-10,8.9896118e-10,1.50053e-09,2.4827275e-09,4.0718883e-09,6.6198338e-09,1.0668048e-08,1.7041662e-08,2.698552e-08,4.2358881e-08,6.5910767e-08,1.016647e-07,1.5544973e-07,2.3562443e-07,3.5405135e-07,5.2739173e-07,7.7880307e-07,1.1401345e-06,1.6547259e-06,2.3809263e-06,3.3964471e-06,4.8036669e-06,6.7359858e-06,9.3653052e-06,1.2910667e-05,1.7648028e-05,2.3921075e-05,3.215289e-05,4.285817e-05,5.665559e-05,7.4279785e-05,9.6592284e-05,0.00012459067,0.00015941511,0.00020235141,0.00025482974,0.0003184182,0.00039481057,0.00048580775,0.00059329254,0.00071919784,0.00086546838,0.0010340165,0.0012266727,0.0014451323,0.0016908978,0.0019652203,0.0022690389,0.0026029207,0.002967001,0.0033609266,0.0037838016,0.0042341383,0.0047098137,0.0052080356,0.005725319,0.0062574778,0.006799634,0.0073462505,0.0078911896,0.0084278028,0.0089490536,0.009447675,0.0099163618,0.010347994,0.010735883,0.011074043,0.011357455,0.011582333,0.011746361,0.011848895,0.011891105,0.011876052,0.011808684,0.01169575,0.01154562,0.011368029,0.011173738,0.010974137,0.010780809,0.010605062,0.010457477,0.010347465,0.010282891,0.010269751,0.010311949,0.010411159,0.010566802,0.010776124,0.011034372,0.011335069,0.011670355,0.012031398,0.012408835,0.012793232,0.013175545,0.013547554,0.013902251,0.014234179,0.014539695,0.014817159,0.015067041,0.015291945,0.015496555,0.015687502,0.015873168,0.016063429,0.016269353,0.016502851,0.016776312,0.017102209,0.0174927,0.017959225,0.018512112,0.019160196,0.019910458,0.020767691,0.021734215,0.022809624,0.023990597,0.025270782,0.026640745,0.028088019,0.029597237,0.03115037,0.032727074,0.034305119,0.035860928,0.037370183,0.038808495,0.040152109,0.041378619,0.042467658,0.043401539,0.04416581,0.044749698,0.045146418,0.045353325,0.045371916,0.045207661,0.044869678,0.044370281,0.043724398,0.042948919,0.042061987,0.041082271,0.040028272,0.038917671,0.037766778,0.036590075,0.035399891,0.034206214,0.033016626,0.031836373,0.030668541,0.029514328,0.02837338,0.02724418,0.026124443,0.025011516,0.023902747,0.022795809,0.02168897,0.020581292,0.019472765,0.018364373,0.017258086,0.016156806,0.015064254,0.013984823,0.012923404,0.011885192,0.010875489,0.0098995094,0.0089621983,0.0080680673,0.0072210567,0.0064244247,0.0056806692,0.0049914802,0.0043577242,0.0037794586,0.0032559719,0.0027858479,0.0023670477,0.0019970051,0.0016727312,0.0013909215,0.0011480629,0.00094053466,0.00076470104,0.00061699303,0.0004939769,0.00039240901,0.00030927687,0.00024182663,0.00018757845,0.00014433098,0.00011015681,8.3390615e-05,6.2611984e-05,4.6624483e-05,3.4432614e-05,2.5217948e-05,1.83155e-05,1.3191182e-05,9.4208954e-06,6.6716421e-06,4.6848405e-06,3.2618849e-06,2.2518798e-06,1.541403e-06,1.0461018e-06,7.0390059e-07,4.6959324e-07,3.1059855e-07,2.0367536e-07,1.32414e-07,8.5345554e-08,5.4534968e-08,3.4547157e-08,2.169646e-08,1.3508318e-08,8.3376999e-09,5.1017692e-09,3.0947255e-09,1.8610054e-09,1.1094172e-09,6.5563431e-10,3.8410135e-10,2.2307219e-10,1.2842767e-10,7.3296571e-11,4.146856e-11,2.3257498e-11,1.293047e-11,7.1264228e-12,3.8934405e-12,2.1086231e-12,1.1320529e-12,6.0247042e-13,3.1783737e-13,1.6621623e-13,8.6166851e-14,4.4279676e-14,2.2556162e-14,1.1389948e-14,5.7012917e-15,2.8289092e-15,1.39142e-15,6.7840696e-16,3.2787966e-16,1.5708335e-16,7.4599634e-17,3.5118301e-17,1.6387774e-17,7.5804598e-18,3.4758393e-18,1.5798354e-18,7.1178936e-19,3.1789093e-19,1.4073149e-19,6.1757603e-20,2.6864276e-20,1.1583637e-20,4.9510735e-21,2.0976741e-21,8.8096866e-22,3.6674674e-22,1.5134045e-22,6.190509e-23,2.5100355e-23,1.0088234e-23,4.0191283e-24,1.5871927e-24,6.2130968e-25,2.4108319e-25,9.2726904e-26,3.5352836e-26,1.3360481e-26,5.0049407e-27,1.8584654e-27,6.840509e-28,2.4957464e-28,9.0258946e-29,3.2356204e-29,1.1497465e-29,4.0497063e-30,1.4139095e-30,4.8932354e-31,1.678598e-31,5.7078581e-32,1.9238678e-32,6.4276563e-33,2.1286545e-33,6.987673e-34,2.2737076e-34,7.3334957e-35,2.3445617e-35,7.4299558e-36,2.3339124e-36,7.2670206e-37,2.2428568e-37,6.861512e-38,2.0807074e-38,6.2542455e-39,1.8634226e-39,5.5032613e-40,1.6110205e-40,4.6747023e-41,1.3445552e-41,3.833319e-42,1.083285e-42,3.0344624e-43,8.4254273e-44,2.3188522e-44,6.3259389e-45,1.7105965e-45,4.585014e-46,1.2181593e-46,3.208025e-47,8.3741641e-48,2.1667815e-48,5.5572323e-49,1.4127706e-49,3.5600352e-50,8.892141e-51,2.2015455e-51,5.4027908e-52,1.3142491e-52,3.1688825e-53,7.5736181e-54,1.7941939e-54,4.2131209e-55,9.8063404e-56,2.2624468e-56,5.1739006e-57,1.1728054e-57,2.6351291e-58,5.868753e-59,1.2955604e-59,2.8348969e-60,6.1487184e-61,1.3219029e-61,2.8169688e-62,5.9502055e-63,1.2458027e-63,2.5854363e-64,5.3184569e-65,1.0844376e-65,2.1917477e-66,4.3907986e-67,8.7189342e-68,1.7161297e-68,3.34814e-69,6.4747619e-70,1.241111e-70,2.3581099e-71,4.4410326e-72,8.2903017e-73,1.533992e-73,2.8134693e-74,5.114787e-75,9.2167781e-76,1.6462541e-76,2.9146118e-77,5.1148233e-78,8.8970606e-79,1.5340108e-79,2.6216589e-80,4.4410925e-81,7.4570878e-82,1.241122e-82,2.0475069e-83,3.3481275e-84,5.426805e-85,8.7187061e-86],"zorder":0,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"zorder":1,"type":"scatter"},{"customdata":[[2.838495e-44],[1.0289775e-43],[3.6973229e-43],[1.3168391e-42],[4.6488104e-42],[1.6267273e-41],[5.6422391e-41],[1.939778e-40],[6.6102267e-40],[2.2327726e-39],[7.4754342e-39],[2.4808023e-38],[8.1604047e-38],[2.6606947e-37],[8.5988858e-37],[2.7545656e-36],[8.7463705e-36],[2.7527478e-35],[8.5875399e-35],[2.6554304e-34],[8.1388842e-34],[2.4726271e-33],[7.4458825e-33],[2.2224783e-32],[6.5754078e-32],[1.9282869e-31],[5.6051136e-31],[1.6149571e-30],[4.6121279e-30],[1.3055861e-29],[3.6633084e-29],[1.0188383e-28],[2.8086707e-28],[7.6746786e-28],[2.0786596e-27],[5.5804645e-27],[1.4849818e-26],[3.9168389e-26],[1.0240333e-25],[2.6537272e-25],[6.8165128e-25],[1.7355297e-24],[4.3799145e-24],[1.0956277e-23],[2.7165907e-23],[6.6765055e-23],[1.6264398e-22],[3.9272686e-22],[9.3995487e-22],[2.2299093e-21],[5.2436199e-21],[1.2221908e-20],[2.8236484e-20],[6.4661538e-20],[1.4677269e-19],[3.3022371e-19],[7.364361e-19],[1.6278924e-18],[3.5668111e-18],[7.7463717e-18],[1.6675557e-17],[3.5581659e-17],[7.5255081e-17],[1.5776449e-16],[3.2782835e-16],[6.7522351e-16],[1.3785179e-15],[2.7895945e-15],[5.5954309e-15],[1.1124739e-14],[2.19235e-14],[4.2824647e-14],[8.2916603e-14],[1.5913035e-13],[3.0271111e-13],[5.7077839e-13],[1.0667693e-12],[1.9762292e-12],[3.628841e-12],[6.6048417e-12],[1.1915732e-11],[2.130801e-11],[3.7768428e-11],[6.6355786e-11],[1.1555602e-10],[1.9946662e-10],[3.4128075e-10],[5.7878503e-10],[9.7294152e-10],[1.6211387e-09],[2.6774268e-09],[4.3830769e-09],[7.1122116e-09],[1.1439167e-08],[1.8236787e-08],[2.8818179e-08],[4.5138706e-08],[7.0080333e-08],[1.0784693e-07],[1.6450692e-07],[2.4872843e-07],[3.7276214e-07],[5.5373695e-07],[8.1534391e-07],[1.1899922e-06],[1.7215265e-06],[2.4685966e-06],[3.5087618e-06],[4.9433989e-06],[6.9034502e-06],[9.5560063e-06],[1.3111652e-05],[1.7832429e-05],[2.4040149e-05],[3.212471e-05],[4.255189e-05],[5.5869993e-05],[7.2714592e-05],[9.3810479e-05],[0.0001199699],[0.00015208611],[0.00019112137],[0.0002380887],[0.00029402678],[0.0003599681],[0.00043690066],[0.00052572409],[0.00062720202],[0.00074191269],[0.00087020094],[0.0010121348],[0.0011674704],[0.0013356297],[0.0015156935],[0.0017064144],[0.0019062518],[0.0021134293],[0.0023260158],[0.0025420279],[0.0027595497],[0.0029768669],[0.0031926054],[0.0034058704],[0.0036163749],[0.0038245501],[0.0040316297],[0.004239701],[0.0044517168],[0.0046714663],[0.004903502],[0.0051530264],[0.0054257415],[0.0057276686],[0.0060649458],[0.0064436147],[0.0068694054],[0.0073475317],[0.0078825053],[0.0084779783],[0.00913662],[0.0098600335],[0.010648711],[0.011502033],[0.012418299],[0.013394794],[0.01442788],[0.015513104],[0.016645316],[0.017818791],[0.019027344],[0.020264441],[0.021523292],[0.022796932],[0.024078289],[0.02536024],[0.026635657],[0.027897441],[0.029138571],[0.030352131],[0.031531362],[0.032669704],[0.033760847],[0.034798787],[0.035777875],[0.036692865],[0.037538957],[0.03831182],[0.03900761],[0.039622967],[0.040155004],[0.040601277],[0.040959757],[0.0412288],[0.041407112],[0.041493743],[0.041488084],[0.041389888],[0.041199319],[0.040917012],[0.04054416],[0.04008261],[0.039534965],[0.038904683],[0.038196169],[0.037414842],[0.036567181],[0.035660735],[0.0347041],[0.033706857],[0.032679471],[0.031633154],[0.030579691],[0.029531241],[0.028500101],[0.027498457],[0.026538113],[0.025630211],[0.024784942],[0.024011263],[0.023316628],[0.022706734],[0.0221853],[0.021753891],[0.02141179],[0.021155939],[0.020980949],[0.020879184],[0.02084093],[0.020854641],[0.020907258],[0.020984594],[0.021071761],[0.021153641],[0.021215361],[0.021242763],[0.021222853],[0.021144189],[0.020997223],[0.020774552],[0.020471091],[0.020084156],[0.01961346],[0.019061014],[0.018430971],[0.017729386],[0.016963941],[0.016143623],[0.015278394],[0.014378842],[0.013455852],[0.012520287],[0.011582705],[0.010653111],[0.0097407437],[0.0088539148],[0.0079998858],[0.0071847904],[0.0064135963],[0.0056901041],[0.005016978],[0.004395804],[0.0038271705],[0.0033107659],[0.0028454887],[0.0024295644],[0.0020606664],[0.0017360351],[0.0014525941],[0.001207058],[0.00099603172],[0.00081609858],[0.0006638961],[0.00053617897],[0.00042986929],[0.00034209417],[0.00027021167],[0.000211826],[0.00016479343],[0.00012722012],[9.7453639e-05],[7.4069427e-05],[5.5853722e-05],[4.1784217e-05],[3.1009552e-05],[2.282859e-05],[1.6670228e-05],[1.2074316e-05],[8.6740695e-06],[6.1802288e-06],[4.3670736e-06],[3.0603054e-06],[2.1267298e-06],[1.4656123e-06],[1.0015484e-06],[6.7866965e-07],[4.5600232e-07],[3.0379946e-07],[2.0068188e-07],[1.3143805e-07],[8.5352662e-08],[5.4952544e-08],[3.5077258e-08],[2.2198491e-08],[1.3927546e-08],[8.6630906e-09],[5.3421054e-09],[3.2657881e-09],[1.979222e-09],[1.1891244e-09],[7.0824257e-10],[4.1817172e-10],[2.4476056e-10],[1.4201651e-10],[8.1685251e-11],[4.6574994e-11],[2.6324704e-11],[1.4749358e-11],[8.1917973e-12],[4.5100306e-12],[2.4613415e-12],[1.3315406e-12],[7.1404442e-13],[3.7956194e-13],[1.9999775e-13],[1.0446027e-13],[5.4082819e-14],[2.775546e-14],[1.4119433e-14],[7.1197499e-15],[3.5586871e-15],[1.7631591e-15],[8.6590249e-16],[4.2152312e-16],[2.0339861e-16],[9.7285474e-17],[4.6123346e-17],[2.1675333e-17],[1.0096767e-17],[4.6619753e-18],[2.1336744e-18],[9.6795777e-19],[4.3526558e-19],[1.9400883e-19],[8.5715143e-20],[3.7537223e-20],[1.6294271e-20],[7.0109297e-21],[2.9900877e-21],[1.2640365e-21],[5.2966635e-22],[2.1999462e-22],[9.0570842e-23],[3.6959938e-23],[1.4949971e-23],[5.9939844e-24],[2.3820826e-24],[9.3834784e-25],[3.6638406e-25],[1.4179954e-25],[5.4397448e-26],[2.068462e-26],[7.7961784e-27],[2.9126018e-27],[1.0785629e-27],[3.9589026e-28],[1.4403532e-28],[5.1943115e-29],[1.8567426e-29],[6.5786998e-30],[2.3104312e-30],[8.0428612e-31],[2.7751892e-31],[9.4915923e-32],[3.2177327e-32],[1.0812477e-32],[3.6013455e-33],[1.1889638e-33],[3.8907809e-34],[1.2620284e-34],[4.0575667e-35],[1.293083e-35],[4.0846161e-36],[1.2789107e-36],[3.9691117e-37],[1.2209854e-37],[3.7229886e-38],[1.1252188e-38],[3.3709031e-39],[1.0009666e-39],[2.9461637e-40],[8.5952431e-41],[2.4855553e-41],[7.1244713e-42],[2.0241645e-42],[5.7003683e-43],[1.591197e-43],[4.4025967e-44],[1.2074184e-44],[3.2822416e-45],[8.8439691e-46]],"fill":"tonexty","fillcolor":"rgb(255, 69, 0)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"January","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[2.838495e-44,1.0289775e-43,3.6973229e-43,1.3168391e-42,4.6488104e-42,1.6267273e-41,5.6422391e-41,1.939778e-40,6.6102267e-40,2.2327726e-39,7.4754342e-39,2.4808023e-38,8.1604047e-38,2.6606947e-37,8.5988858e-37,2.7545656e-36,8.7463705e-36,2.7527478e-35,8.5875399e-35,2.6554304e-34,8.1388842e-34,2.4726271e-33,7.4458825e-33,2.2224783e-32,6.5754078e-32,1.9282869e-31,5.6051136e-31,1.6149571e-30,4.6121279e-30,1.3055861e-29,3.6633084e-29,1.0188383e-28,2.8086707e-28,7.6746786e-28,2.0786596e-27,5.5804645e-27,1.4849818e-26,3.9168389e-26,1.0240333e-25,2.6537272e-25,6.8165128e-25,1.7355297e-24,4.3799145e-24,1.0956277e-23,2.7165907e-23,6.6765055e-23,1.6264398e-22,3.9272686e-22,9.3995487e-22,2.2299093e-21,5.2436199e-21,1.2221908e-20,2.8236484e-20,6.4661538e-20,1.4677269e-19,3.3022371e-19,7.364361e-19,1.6278924e-18,3.5668111e-18,7.7463717e-18,1.6675557e-17,3.5581659e-17,7.5255081e-17,1.5776449e-16,3.2782835e-16,6.7522351e-16,1.3785179e-15,2.7895945e-15,5.5954309e-15,1.1124739e-14,2.19235e-14,4.2824647e-14,8.2916603e-14,1.5913035e-13,3.0271111e-13,5.7077839e-13,1.0667693e-12,1.9762292e-12,3.628841e-12,6.6048417e-12,1.1915732e-11,2.130801e-11,3.7768428e-11,6.6355786e-11,1.1555602e-10,1.9946662e-10,3.4128075e-10,5.7878503e-10,9.7294152e-10,1.6211387e-09,2.6774268e-09,4.3830769e-09,7.1122116e-09,1.1439167e-08,1.8236787e-08,2.8818179e-08,4.5138706e-08,7.0080333e-08,1.0784693e-07,1.6450692e-07,2.4872843e-07,3.7276214e-07,5.5373695e-07,8.1534391e-07,1.1899922e-06,1.7215265e-06,2.4685966e-06,3.5087618e-06,4.9433989e-06,6.9034502e-06,9.5560063e-06,1.3111652e-05,1.7832429e-05,2.4040149e-05,3.212471e-05,4.255189e-05,5.5869993e-05,7.2714592e-05,9.3810479e-05,0.0001199699,0.00015208611,0.00019112137,0.0002380887,0.00029402678,0.0003599681,0.00043690066,0.00052572409,0.00062720202,0.00074191269,0.00087020094,0.0010121348,0.0011674704,0.0013356297,0.0015156935,0.0017064144,0.0019062518,0.0021134293,0.0023260158,0.0025420279,0.0027595497,0.0029768669,0.0031926054,0.0034058704,0.0036163749,0.0038245501,0.0040316297,0.004239701,0.0044517168,0.0046714663,0.004903502,0.0051530264,0.0054257415,0.0057276686,0.0060649458,0.0064436147,0.0068694054,0.0073475317,0.0078825053,0.0084779783,0.00913662,0.0098600335,0.010648711,0.011502033,0.012418299,0.013394794,0.01442788,0.015513104,0.016645316,0.017818791,0.019027344,0.020264441,0.021523292,0.022796932,0.024078289,0.02536024,0.026635657,0.027897441,0.029138571,0.030352131,0.031531362,0.032669704,0.033760847,0.034798787,0.035777875,0.036692865,0.037538957,0.03831182,0.03900761,0.039622967,0.040155004,0.040601277,0.040959757,0.0412288,0.041407112,0.041493743,0.041488084,0.041389888,0.041199319,0.040917012,0.04054416,0.04008261,0.039534965,0.038904683,0.038196169,0.037414842,0.036567181,0.035660735,0.0347041,0.033706857,0.032679471,0.031633154,0.030579691,0.029531241,0.028500101,0.027498457,0.026538113,0.025630211,0.024784942,0.024011263,0.023316628,0.022706734,0.0221853,0.021753891,0.02141179,0.021155939,0.020980949,0.020879184,0.02084093,0.020854641,0.020907258,0.020984594,0.021071761,0.021153641,0.021215361,0.021242763,0.021222853,0.021144189,0.020997223,0.020774552,0.020471091,0.020084156,0.01961346,0.019061014,0.018430971,0.017729386,0.016963941,0.016143623,0.015278394,0.014378842,0.013455852,0.012520287,0.011582705,0.010653111,0.0097407437,0.0088539148,0.0079998858,0.0071847904,0.0064135963,0.0056901041,0.005016978,0.004395804,0.0038271705,0.0033107659,0.0028454887,0.0024295644,0.0020606664,0.0017360351,0.0014525941,0.001207058,0.00099603172,0.00081609858,0.0006638961,0.00053617897,0.00042986929,0.00034209417,0.00027021167,0.000211826,0.00016479343,0.00012722012,9.7453639e-05,7.4069427e-05,5.5853722e-05,4.1784217e-05,3.1009552e-05,2.282859e-05,1.6670228e-05,1.2074316e-05,8.6740695e-06,6.1802288e-06,4.3670736e-06,3.0603054e-06,2.1267298e-06,1.4656123e-06,1.0015484e-06,6.7866965e-07,4.5600232e-07,3.0379946e-07,2.0068188e-07,1.3143805e-07,8.5352662e-08,5.4952544e-08,3.5077258e-08,2.2198491e-08,1.3927546e-08,8.6630906e-09,5.3421054e-09,3.2657881e-09,1.979222e-09,1.1891244e-09,7.0824257e-10,4.1817172e-10,2.4476056e-10,1.4201651e-10,8.1685251e-11,4.6574994e-11,2.6324704e-11,1.4749358e-11,8.1917973e-12,4.5100306e-12,2.4613415e-12,1.3315406e-12,7.1404442e-13,3.7956194e-13,1.9999775e-13,1.0446027e-13,5.4082819e-14,2.775546e-14,1.4119433e-14,7.1197499e-15,3.5586871e-15,1.7631591e-15,8.6590249e-16,4.2152312e-16,2.0339861e-16,9.7285474e-17,4.6123346e-17,2.1675333e-17,1.0096767e-17,4.6619753e-18,2.1336744e-18,9.6795777e-19,4.3526558e-19,1.9400883e-19,8.5715143e-20,3.7537223e-20,1.6294271e-20,7.0109297e-21,2.9900877e-21,1.2640365e-21,5.2966635e-22,2.1999462e-22,9.0570842e-23,3.6959938e-23,1.4949971e-23,5.9939844e-24,2.3820826e-24,9.3834784e-25,3.6638406e-25,1.4179954e-25,5.4397448e-26,2.068462e-26,7.7961784e-27,2.9126018e-27,1.0785629e-27,3.9589026e-28,1.4403532e-28,5.1943115e-29,1.8567426e-29,6.5786998e-30,2.3104312e-30,8.0428612e-31,2.7751892e-31,9.4915923e-32,3.2177327e-32,1.0812477e-32,3.6013455e-33,1.1889638e-33,3.8907809e-34,1.2620284e-34,4.0575667e-35,1.293083e-35,4.0846161e-36,1.2789107e-36,3.9691117e-37,1.2209854e-37,3.7229886e-38,1.1252188e-38,3.3709031e-39,1.0009666e-39,2.9461637e-40,8.5952431e-41,2.4855553e-41,7.1244713e-42,2.0241645e-42,5.7003683e-43,1.591197e-43,4.4025967e-44,1.2074184e-44,3.2822416e-45,8.8439691e-46],"zorder":1,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726],"zorder":2,"type":"scatter"},{"customdata":[[3.9443552e-27],[1.0535101e-26],[2.7891077e-26],[7.3190671e-26],[1.9037506e-25],[4.9082683e-25],[1.254326e-24],[3.1772872e-24],[7.9774932e-24],[1.985365e-23],[4.8975425e-23],[1.1975125e-22],[2.9023237e-22],[6.9722936e-22],[1.6602347e-21],[3.9185678e-21],[9.1674657e-21],[2.1258632e-20],[4.88636e-20],[1.1132681e-19],[2.514075e-19],[5.6275702e-19],[1.2486131e-18],[2.7459913e-18],[5.9859734e-18],[1.2934059e-17],[2.7701248e-17],[5.8806914e-17],[1.237434e-16],[2.5809549e-16],[5.3358493e-16],[1.0934315e-15],[2.2209796e-15],[4.4715971e-15],[8.9237212e-15],[1.7652031e-14],[3.4610582e-14],[6.7264947e-14],[1.2957899e-13],[2.4742663e-13],[4.6830049e-13],[8.7855577e-13],[1.6337322e-12],[3.0113383e-12],[5.5018109e-12],[9.9636757e-12],[1.7885526e-11],[3.1823832e-11],[5.6127066e-11],[9.8120972e-11],[1.7002843e-10],[2.9204657e-10],[4.9722642e-10],[8.3912869e-10],[1.4037057e-09],[2.3275425e-09],[3.8255531e-09],[6.2325676e-09],[1.0065078e-08],[1.6111872e-08],[2.5565544e-08],[4.0211091e-08],[6.269317e-08],[9.6890255e-08],[1.4843202e-07],[2.2540578e-07],[3.3930874e-07],[5.0631454e-07],[7.4893511e-07],[1.0981706e-06],[1.5962504e-06],[2.3000744e-06],[3.2854654e-06],[4.6523348e-06],[6.5308469e-06],[9.08863e-06],[1.2539038e-05],[1.7150391e-05],[2.3256033e-05],[3.126494e-05],[4.1672474e-05],[5.5070745e-05],[7.2157894e-05],[9.3745465e-05],[0.00012076294],[0.00015425839],[0.00019539422],[0.00024543699],[0.00030574048],[0.00037772126],[0.00046282667],[0.00056249504],[0.00067810907],[0.0008109433],[0.00096210759],[0.0011324887],[0.001322693],[0.001532993],[0.0017632812],[0.0020130345],[0.0022812915],[0.0025666457],[0.0028672564],[0.0031808767],[0.0035049],[0.003836423],[0.0041723233],[0.0045093473],[0.0048442075],[0.0051736819],[0.0054947146],[0.0058045119],[0.0061006316],[0.0063810631],[0.0066442967],[0.0068893823],[0.0071159772],[0.0073243842],[0.0075155828],[0.0076912539],[0.0078538002],[0.0080063646],[0.008152844],[0.0082979013],[0.0084469705],[0.0086062534],[0.0087827032],[0.0089839904],[0.0092184442],[0.0094949665],[0.0098229116],[0.010211931],[0.01067178],[0.011212087],[0.011842092],[0.012570361],[0.013404476],[0.014350731],[0.015413823],[0.016596576],[0.017899699],[0.019321582],[0.020858171],[0.022502897],[0.024246689],[0.026078055],[0.027983246],[0.029946478],[0.03195022],[0.033975523],[0.036002388],[0.03801015],[0.039977869],[0.041884714],[0.043710337],[0.045435212],[0.047040957],[0.048510611],[0.04982889],[0.050982397],[0.051959811],[0.052752032],[0.053352304],[0.053756308],[0.053962212],[0.053970698],[0.053784942],[0.053410555],[0.052855482],[0.052129846],[0.051245753],[0.05021704],[0.04905899],[0.047787997],[0.046421218],[0.044976195],[0.043470476],[0.041921246],[0.040344979],[0.038757118],[0.037171801],[0.035601644],[0.034057571],[0.032548715],[0.03108237],[0.029664003],[0.028297324],[0.026984392],[0.025725768],[0.024520698],[0.023367306],[0.022262818],[0.02120378],[0.020186276],[0.019206144],[0.01825917],[0.017341275],[0.016448673],[0.015578007],[0.014726456],[0.013891817],[0.013072552],[0.012267814],[0.011477432],[0.010701881],[0.0099422152],[0.0091999942],[0.0084771781],[0.0077760187],[0.007098941],[0.0064484223],[0.0058268759],[0.0052365412],[0.004679388],[0.0041570359],[0.0036706922],[0.0032211104],[0.0028085693],[0.0024328719],[0.0020933633],[0.0017889643],[0.0015182194],[0.0012793536],[0.0010703369],[0.00088895093],[0.0007328565],[0.00059965721],[0.00048695826],[0.00039241804],[0.00031379134],[0.00024896371],[0.00019597674],[0.00015304482],[0.00011856385],[9.1113162e-05],[6.9451615e-05],[5.2509109e-05],[3.9374776e-05],[2.9282899e-05],[2.1597585e-05],[1.5797023e-05],[1.1458007e-05],[8.2412414e-06],[5.8777715e-06],[4.1567801e-06],[2.9148368e-06],[2.0266264e-06],[1.3970935e-06],[9.5490557e-07],[6.4709785e-07],[4.3475654e-07],[2.8958865e-07],[1.9123585e-07],[1.2519963e-07],[8.1260009e-08],[5.2285976e-08],[3.3352086e-08],[2.1090432e-08],[1.3221119e-08],[8.2161273e-09],[5.0614913e-09],[3.0909978e-09],[1.8712186e-09],[1.1229306e-09],[6.6800712e-10],[3.9391855e-10],[2.3026425e-10],[1.3342558e-10],[7.6637642e-11],[4.3634867e-11],[2.4627022e-11],[1.3777651e-11],[7.6405038e-12],[4.2000156e-12],[2.288551e-12],[1.2360892e-12],[6.6178583e-13],[3.5120644e-13],[1.8474975e-13],[9.6334248e-14],[4.9791156e-14],[2.5509242e-14],[1.2954363e-14],[6.5208919e-15],[3.2536422e-15],[1.6091771e-15],[7.8887582e-16],[3.8333959e-16],[1.8464114e-16],[8.815412e-17],[4.1718215e-17],[1.9569395e-17],[9.0990765e-18],[4.1935823e-18],[1.915758e-18],[8.6748802e-19],[3.8936188e-19],[1.7322487e-19],[7.6389509e-20],[3.3390555e-20],[1.4467045e-20],[6.2130106e-21],[2.6447845e-21],[1.1159488e-21],[4.6672803e-22],[1.9348576e-22],[7.9505928e-23],[3.2382867e-23],[1.3073632e-23],[5.2316932e-24],[2.0751681e-24],[8.1588546e-25],[3.1795812e-25],[1.2282179e-25],[4.7026817e-26],[1.7847623e-26],[6.7139754e-27],[2.5034771e-27],[9.2527741e-28],[3.3897269e-28],[1.2308974e-28],[4.4304037e-29],[1.5806258e-29],[5.5895786e-30],[1.9592656e-30],[6.807251e-31],[2.3443064e-31],[8.0024163e-32],[2.7076469e-32],[9.0808606e-33],[3.0187425e-33],[9.9469331e-34],[3.2487505e-34],[1.051738e-34],[3.3749143e-35],[1.0734503e-35],[3.3842709e-36],[1.0575776e-36],[3.2758451e-37],[1.0057694e-37],[3.0608172e-38],[9.2329462e-39],[2.7606232e-39],[8.1815931e-40],[2.4034358e-40],[6.9982759e-41],[2.0198238e-41],[5.7782962e-42],[1.6385134e-42],[4.605365e-43],[1.2830453e-43],[3.543103e-44],[9.6981619e-45],[2.6312307e-45],[7.0760728e-46],[1.8862076e-46],[4.9836846e-47],[1.3051951e-47],[3.388162e-48],[8.7179974e-49],[2.2234795e-49],[5.6209972e-50],[1.4085019e-50],[3.4983666e-51],[8.6126547e-52],[2.1017089e-52],[5.0836066e-53],[1.2188075e-53],[2.8964239e-54],[6.8226477e-55],[1.5929699e-55],[3.6866002e-56],[8.4568438e-57],[1.9228898e-57],[4.3337544e-58],[9.6813965e-59],[2.1437569e-59],[4.7051867e-60],[1.0236277e-60],[2.2073488e-61],[4.7180629e-62],[9.9958632e-63],[2.0991365e-63],[4.3694309e-64],[9.0151482e-65],[1.8436763e-65],[3.73732e-66],[7.5093043e-67],[1.4955569e-67],[2.9523644e-68],[5.776979e-69],[1.1204576e-69],[2.1540406e-70],[4.10465e-71],[7.7528643e-72],[1.4514833e-72],[2.6935541e-73],[4.9545381e-74],[9.0332585e-75],[1.6324862e-75]],"fill":"tonexty","fillcolor":"rgb(0, 191, 255)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"February","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164725,-0.018164725,-0.018164725,-0.018164724,-0.018164723,-0.018164722,-0.01816472,-0.018164716,-0.01816471,-0.0181647,-0.018164686,-0.018164663,-0.018164629,-0.018164577,-0.0181645,-0.018164386,-0.018164219,-0.018163977,-0.018163628,-0.01816313,-0.018162426,-0.01816144,-0.018160073,-0.018158195,-0.018155637,-0.018152187,-0.018147575,-0.01814147,-0.018133461,-0.018123053,-0.018109655,-0.018092568,-0.01807098,-0.018043963,-0.018010467,-0.017969332,-0.017919289,-0.017858985,-0.017787005,-0.017701899,-0.017602231,-0.017486617,-0.017353782,-0.017202618,-0.017032237,-0.016842033,-0.016631733,-0.016401445,-0.016151691,-0.015883434,-0.01559808,-0.015297469,-0.014983849,-0.014659826,-0.014328303,-0.013992403,-0.013655378,-0.013320518,-0.012991044,-0.012670011,-0.012360214,-0.012064094,-0.011783663,-0.011520429,-0.011275343,-0.011048749,-0.010840342,-0.010649143,-0.010473472,-0.010310926,-0.010158361,-0.010011882,-0.0098668244,-0.0097177553,-0.0095584724,-0.0093820225,-0.0091807354,-0.0089462816,-0.0086697593,-0.0083418141,-0.0079527946,-0.0074929459,-0.0069526391,-0.0063226336,-0.0055943648,-0.0047602493,-0.003813995,-0.0027509031,-0.0015681493,-0.00026502718,0.0011568559,0.0026934448,0.0043381713,0.0060819632,0.0079133297,0.0098185207,0.011781753,0.013785494,0.015810797,0.017837662,0.019845424,0.021813143,0.023719989,0.025545611,0.027270487,0.028876231,0.030345885,0.031664164,0.032817672,0.033795085,0.034587306,0.035187578,0.035591582,0.035797487,0.035805973,0.035620216,0.03524583,0.034690756,0.03396512,0.033081027,0.032052314,0.030894264,0.029623271,0.028256492,0.026811469,0.02530575,0.02375652,0.022180254,0.020592392,0.019007075,0.017436918,0.015892845,0.01438399,0.012917644,0.011499277,0.010132598,0.0088196658,0.0075610427,0.0063559718,0.0052025799,0.0040980923,0.0030390543,0.0020215506,0.0010414178,9.444372e-05,-0.00082345096,-0.0017160525,-0.0025867186,-0.0034382696,-0.004272909,-0.0050921734,-0.0058969116,-0.0066872934,-0.0074628453,-0.0082225106,-0.0089647316,-0.0096875477,-0.010388707,-0.011065785,-0.011716303,-0.01233785,-0.012928185,-0.013485338,-0.01400769,-0.014494034,-0.014943615,-0.015356156,-0.015731854,-0.016071363,-0.016375761,-0.016646506,-0.016885372,-0.017094389,-0.017275775,-0.017431869,-0.017565069,-0.017677768,-0.017772308,-0.017850934,-0.017915762,-0.017968749,-0.018011681,-0.018046162,-0.018073613,-0.018095274,-0.018112217,-0.018125351,-0.018135443,-0.018143128,-0.018148929,-0.018153268,-0.018156485,-0.018158848,-0.018160569,-0.018161811,-0.018162699,-0.018163329,-0.018163771,-0.018164079,-0.018164291,-0.018164436,-0.018164535,-0.018164601,-0.018164645,-0.018164673,-0.018164692,-0.018164705,-0.018164713,-0.018164718,-0.018164721,-0.018164723,-0.018164724,-0.018164725,-0.018164725,-0.018164725,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726],"zorder":2,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726],"zorder":3,"type":"scatter"},{"customdata":[[4.6812804e-57],[2.0479374e-56],[8.8803996e-56],[3.8169119e-55],[1.6261312e-54],[6.8669329e-54],[2.8743116e-53],[1.1925283e-52],[4.9041904e-52],[1.9990781e-51],[8.0771102e-51],[3.2347897e-50],[1.2841031e-49],[5.0526308e-49],[1.9706024e-48],[7.618058e-48],[2.9191293e-47],[1.108731e-46],[4.1741002e-46],[1.5576266e-45],[5.7613946e-45],[2.1123005e-44],[7.676223e-44],[2.7650518e-43],[9.8724005e-43],[3.4938645e-42],[1.2256124e-41],[4.2615155e-41],[1.4687192e-40],[5.0173836e-40],[1.6989462e-39],[5.7022436e-39],[1.8970366e-38],[6.255607e-38],[2.0446879e-37],[6.6244281e-37],[2.1273237e-36],[6.7714638e-36],[2.136463e-35],[6.6814694e-35],[2.0711541e-34],[6.3638021e-34],[1.9381382e-33],[5.8508184e-33],[1.7507024e-32],[5.1924444e-32],[1.5264944e-31],[4.4481804e-31],[1.2847937e-30],[3.6783093e-30],[1.0438232e-29],[2.9360906e-29],[8.1860767e-29],[2.2622782e-28],[6.1969797e-28],[1.6825888e-27],[4.5283477e-27],[1.2079958e-26],[3.1941472e-26],[8.3715973e-26],[2.1748315e-25],[5.6002422e-25],[1.4293938e-24],[3.6162705e-24],[9.0684665e-24],[2.2540873e-23],[5.5535613e-23],[1.3562395e-22],[3.2829569e-22],[7.8769481e-22],[1.8733323e-21],[4.4160675e-21],[1.0318597e-20],[2.3898449e-20],[5.4863423e-20],[1.2484187e-19],[2.8158e-19],[6.2951721e-19],[1.3950112e-18],[3.0641647e-18],[6.6713067e-18],[1.4397071e-17],[3.0796539e-17],[6.5297154e-17],[1.3723069e-16],[2.8587291e-16],[5.9028207e-16],[1.2081229e-15],[2.4509121e-15],[4.9284405e-15],[9.8232826e-15],[1.9407485e-14],[3.8005593e-14],[7.3772012e-14],[1.4193902e-13],[2.7069377e-13],[5.1170687e-13],[9.588067e-13],[1.7807707e-12],[3.278328e-12],[5.9822514e-12],[1.0820446e-11],[1.9399674e-11],[3.4475684e-11],[6.0729704e-11],[1.0603759e-10],[1.8352263e-10],[3.14841e-10],[5.3538432e-10],[9.0243024e-10],[1.5077742e-09],[2.4970934e-09],[4.0993059e-09],[6.6705917e-09],[1.0759657e-08],[1.7203398e-08],[2.7265515e-08],[4.2835018e-08],[6.6707142e-08],[1.029761e-07],[1.5757749e-07],[2.3902799e-07],[3.5942125e-07],[5.3575113e-07],[7.9164633e-07],[1.1596127e-06],[1.6838904e-06],[2.42404e-06],[3.4593746e-06],[4.8943461e-06],[6.864981e-06],[9.5464256e-06],[1.3161618e-05],[1.7991035e-05],[2.4383389e-05],[3.2767029e-05],[4.3661706e-05],[5.7690231e-05],[7.558941e-05],[9.8219555e-05],[0.00012657176],[0.00016177206],[0.00020508162],[0.00025789217],[0.00032171597],[0.00039816991],[0.00048895351],[0.00059582117],[0.00072054909],[0.00086489802],[0.0010305731],[0.0012191828],[0.001432198],[0.0016709149],[0.0019364212],[0.0022295693],[0.002550956],[0.0029009105],[0.0032794883],[0.0036864726],[0.0041213797],[0.0045834666],[0.0050717387],[0.0055849556],[0.0061216325],[0.0066800352],[0.0072581715],[0.0078537755],[0.0084642913],[0.0090868569],[0.0097182927],[0.010355101],[0.010993481],[0.01162936],[0.012258455],[0.012876348],[0.013478601],[0.014060881],[0.014619111],[0.015149633],[0.015649371],[0.016115996],[0.016548064],[0.016945138],[0.017307866],[0.017638022],[0.017938484],[0.018213172],[0.018466917],[0.018705283],[0.018934342],[0.019160401],[0.019389712],[0.019628159],[0.019880948],[0.020152317],[0.020445279],[0.020761417],[0.02110074],[0.021461626],[0.021840846],[0.022233675],[0.022634107],[0.02303514],[0.02342915],[0.023808306],[0.024165038],[0.024492503],[0.024785045],[0.025038602],[0.025251046],[0.025422424],[0.025555077],[0.02565363],[0.025724837],[0.025777286],[0.025820971],[0.025866752],[0.02592573],[0.026008566],[0.026124789],[0.026282132],[0.026485939],[0.026738685],[0.027039643],[0.027384729],[0.02776654],[0.028174589],[0.028595743],[0.029014831],[0.029415397],[0.029780554],[0.030093901],[0.030340424],[0.030507353],[0.030584892],[0.0305668],[0.030450763],[0.030238548],[0.029935906],[0.029552252],[0.029100121],[0.028594442],[0.028051676],[0.027488866],[0.026922673],[0.026368439],[0.025839354],[0.025345765],[0.024894678],[0.024489469],[0.024129827],[0.023811923],[0.023528778],[0.023270822],[0.023026574],[0.02278342],[0.022528417],[0.022249092],[0.021934162],[0.021574156],[0.021161898],[0.020692825],[0.020165139],[0.019579795],[0.018940328],[0.01825255],[0.017524146],[0.016764199],[0.01598267],[0.015189886],[0.014396049],[0.013610802],[0.012842871],[0.01209979],[0.011387728],[0.010711403],[0.010074091],[0.0094777098],[0.0089229699],[0.0084095653],[0.0079363965],[0.0075018007],[0.0071037742],[0.0067401712],[0.0064088683],[0.0061078854],[0.0058354586],[0.0055900663],[0.0053704095],[0.005175355],[0.0050038495],[0.0048548173],[0.0047270509],[0.0046191104],[0.0045292386],[0.0044553048],[0.0043947809],[0.0043447552],[0.0043019839],[0.0042629777],[0.0042241172],[0.0041817904],[0.0041325405],[0.0040732162],[0.0040011105],[0.0039140819],[0.0038106468],[0.0036900385],[0.0035522295],[0.0033979157],[0.0032284646],[0.0030458322],[0.0028524542],[0.0026511197],[0.0024448348],[0.0022366853],[0.0020297061],[0.0018267632],[0.0016304544],[0.0014430326],[0.0012663524],[0.0011018408],[0.00095049131],[0.00081287762],[0.00068918458],[0.0005792518],[0.0004826261],[0.00039861865],[0.00032636309],[0.00026487162],[0.00021308661],[0.0001699258],[0.00013432034],[0.00010524484],[8.1739934e-05],[6.2927479e-05],[4.8019482e-05],[3.6321556e-05],[2.7232042e-05],[2.023783e-05],[1.4907846e-05],[1.0885101e-05],[7.8780046e-06],[5.6515261e-06],[4.0186545e-06],[2.8324401e-06],[1.9788174e-06],[1.3702992e-06],[9.4056687e-07],[6.3992396e-07],[4.3155027e-07],[2.8846867e-07],[1.9113053e-07],[1.2552366e-07],[8.1711872e-08],[5.2724046e-08],[3.3720676e-08],[2.1377049e-08],[1.3432695e-08],[8.366474e-09],[5.1651823e-09],[3.1607686e-09],[1.9171832e-09],[1.1526524e-09],[6.8690545e-10],[4.057508e-10],[2.3756674e-10],[1.3787189e-10],[7.9310304e-11],[4.5221746e-11],[2.5558117e-11],[1.4317731e-11],[7.9502968e-12],[4.3757883e-12],[2.3872234e-12],[1.2909031e-12],[6.9192339e-13],[3.6760905e-13],[1.9358789e-13],[1.0104945e-13],[5.2282165e-14],[2.6812478e-14],[1.3629633e-14],[6.8674445e-15],[3.4298092e-15],[1.6978862e-15],[8.3312656e-16],[4.0520724e-16],[1.9534721e-16],[9.3347141e-17],[4.4213881e-17],[2.075774e-17],[9.6597365e-18],[4.4556832e-18],[2.0371693e-18],[9.2321692e-19],[4.1470969e-19],[1.8464962e-19],[8.1492275e-20]],"fill":"tonexty","fillcolor":"rgb(255, 69, 0)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"February","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164725,-0.018164725,-0.018164725,-0.018164724,-0.018164723,-0.018164722,-0.018164719,-0.018164715,-0.018164709,-0.018164699,-0.018164683,-0.018164659,-0.018164623,-0.018164568,-0.018164487,-0.018164366,-0.01816419,-0.018163934,-0.018163566,-0.018163042,-0.018162302,-0.018161266,-0.018159831,-0.018157861,-0.018155179,-0.018151564,-0.018146735,-0.018140342,-0.018131959,-0.018121064,-0.018107036,-0.018089136,-0.018066506,-0.018038154,-0.018002954,-0.017959644,-0.017906834,-0.01784301,-0.017766556,-0.017675772,-0.017568905,-0.017444177,-0.017299828,-0.017134153,-0.016945543,-0.016732528,-0.016493811,-0.016228305,-0.015935157,-0.01561377,-0.015263815,-0.014885238,-0.014478253,-0.014043346,-0.013581259,-0.013092987,-0.01257977,-0.012043093,-0.011484691,-0.010906554,-0.01031095,-0.0097004344,-0.0090778689,-0.0084464331,-0.0078096246,-0.0071712449,-0.0065353655,-0.0059062712,-0.0052883778,-0.0046861248,-0.0041038451,-0.003545615,-0.0030150932,-0.0025153543,-0.0020487294,-0.0016166614,-0.0012195877,-0.0008568593,-0.00052670413,-0.00022624193,4.8445944e-05,0.00030219087,0.00054055751,0.00076961619,0.00099567551,0.0012249867,0.0014634333,0.001716222,0.001987591,0.0022805534,0.0025966908,0.0029360141,0.0032969007,0.00367612,0.0040689493,0.0044693809,0.0048704146,0.0052644239,0.00564358,0.0060003118,0.0063277772,0.0066203193,0.0068738764,0.0070863206,0.0072576982,0.0073903511,0.0074889042,0.0075601116,0.0076125606,0.0076562453,0.0077020263,0.0077610042,0.0078438402,0.0079600634,0.0081174065,0.0083212136,0.0085739594,0.0088749175,0.0092200037,0.0096018139,0.010009863,0.010431017,0.010850106,0.011250671,0.011615828,0.011929175,0.012175699,0.012342627,0.012420166,0.012402074,0.012286038,0.012073822,0.01177118,0.011387526,0.010935395,0.010429716,0.0098869498,0.0093241403,0.0087579474,0.0082037137,0.0076746285,0.0071810397,0.0067299525,0.0063247432,0.0059651015,0.0056471968,0.0053640523,0.0051060963,0.0048618484,0.0046186938,0.0043636914,0.0040843665,0.0037694363,0.0034094306,0.0029971725,0.0025280991,0.0020004136,0.0014150697,0.00077560198,8.7823728e-05,-0.00064057938,-0.0014005265,-0.0021820555,-0.0029748398,-0.0037686772,-0.0045539239,-0.0053218549,-0.0060649353,-0.0067769973,-0.0074533227,-0.0080906351,-0.008687016,-0.0092417559,-0.0097551605,-0.010228329,-0.010662925,-0.011060952,-0.011424555,-0.011755857,-0.01205684,-0.012329267,-0.012574659,-0.012794316,-0.012989371,-0.013160876,-0.013309908,-0.013437675,-0.013545615,-0.013635487,-0.013709421,-0.013769945,-0.013819971,-0.013862742,-0.013901748,-0.013940609,-0.013982935,-0.014032185,-0.01409151,-0.014163615,-0.014250644,-0.014354079,-0.014474687,-0.014612496,-0.01476681,-0.014936261,-0.015118894,-0.015312272,-0.015513606,-0.015719891,-0.01592804,-0.01613502,-0.016337963,-0.016534271,-0.016721693,-0.016898373,-0.017062885,-0.017214234,-0.017351848,-0.017475541,-0.017585474,-0.0176821,-0.017766107,-0.017838363,-0.017899854,-0.017951639,-0.0179948,-0.018030405,-0.018059481,-0.018082986,-0.018101798,-0.018116706,-0.018128404,-0.018137494,-0.018144488,-0.018149818,-0.018153841,-0.018156848,-0.018159074,-0.018160707,-0.018161893,-0.018162747,-0.018163355,-0.018163785,-0.018164086,-0.018164294,-0.018164437,-0.018164535,-0.0181646,-0.018164644,-0.018164673,-0.018164692,-0.018164704,-0.018164712,-0.018164717,-0.018164721,-0.018164723,-0.018164724,-0.018164725,-0.018164725,-0.018164725,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726],"zorder":3,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452],"zorder":4,"type":"scatter"},{"customdata":[[5.7655685e-44],[2.0908313e-43],[7.5155956e-43],[2.6777835e-42],[9.4570411e-42],[3.3105711e-41],[1.1487314e-40],[3.9509553e-40],[1.3469574e-39],[4.5517023e-39],[1.524622e-38],[5.0619628e-38],[1.6658822e-37],[5.4342337e-37],[1.7571188e-36],[5.6316136e-36],[1.7890959e-35],[5.6338274e-35],[1.7585016e-34],[5.4406578e-34],[1.6685131e-33],[5.0719802e-33],[1.5282532e-32],[4.5643934e-32],[1.3512664e-31],[3.9652374e-31],[1.1533679e-30],[3.3253486e-30],[9.5033621e-30],[2.6920824e-29],[7.5591084e-29],[2.1038953e-28],[5.8042915e-28],[1.5872525e-27],[4.3024391e-27],[1.155994e-26],[3.0787099e-26],[8.1274538e-26],[2.1267333e-25],[5.5162581e-25],[1.4182388e-24],[3.614329e-24],[9.1301885e-24],[2.2861558e-23],[5.6742206e-23],[1.3959864e-22],[3.4043251e-22],[8.2291702e-22],[1.9717713e-21],[4.6830938e-21],[1.102517e-20],[2.5728488e-20],[5.9514126e-20],[1.3645928e-19],[3.1014425e-19],[6.9871874e-19],[1.5603409e-18],[3.4539453e-18],[7.5786308e-18],[1.6483364e-17],[3.5537038e-17],[7.5944689e-17],[1.6087736e-16],[3.3781143e-16],[7.03131e-16],[1.4507121e-15],[2.9669481e-15],[6.0148259e-15],[1.2087077e-14],[2.4077163e-14],[4.7541837e-14],[9.305378e-14],[1.8054287e-13],[3.4722886e-13],[6.6197469e-13],[1.2510021e-12],[2.3435102e-12],[4.3517995e-12],[8.0106049e-12],[1.4616971e-11],[2.6439082e-11],[4.740604e-11],[8.4259864e-11],[1.4845989e-10],[2.5929879e-10],[4.489485e-10],[7.7054697e-10],[1.3110227e-09],[2.21122e-09],[3.6971453e-09],[6.1279654e-09],[1.0068943e-08],[1.6401059e-08],[2.6483983e-08],[4.2395639e-08],[6.7280444e-08],[1.0584975e-07],[1.6509275e-07],[2.5527446e-07],[3.9132027e-07],[5.9471326e-07],[8.9606243e-07],[1.3385349e-06],[1.9823841e-06],[2.9108433e-06],[4.2376939e-06],[6.1168434e-06],[8.7542722e-06],[1.2422704e-05],[1.7479331e-05],[2.4386862e-05],[3.3738066e-05],[4.6283812e-05],[6.2964417e-05],[8.4943828e-05],[0.00011364584],[0.00015079122],[0.00019843408],[0.00025899562],[0.0003352928],[0.00043055926],[0.0005484555],[0.00069306546],[0.00086887636],[0.0010807395],[0.0013338097],[0.0016334626],[0.0019851895],[0.0023944703],[0.0028666282],[0.0034066687],[0.0040191087],[0.0047078019],[0.0054757668],[0.006325026],[0.0072564629],[0.0082697033],[0.0093630283],[0.010533323],[0.011776061],[0.013085336],[0.014453924],[0.015873388],[0.017334216],[0.018825991],[0.020337577],[0.021857336],[0.023373351],[0.024873659],[0.026346494],[0.027780527],[0.029165101],[0.030490466],[0.031747995],[0.032930389],[0.03403185],[0.035048232],[0.035977143],[0.036818006],[0.037572058],[0.038242288],[0.0388333],[0.039351108],[0.039802863],[0.040196507],[0.040540386],[0.040842817],[0.041111639],[0.041353776],[0.041574823],[0.041778696],[0.041967353],[0.04214063],[0.042296175],[0.042429523],[0.042534285],[0.042602461],[0.042624862],[0.042591606],[0.042492677],[0.04231851],[0.042060564],[0.04171186],[0.041267441],[0.040724743],[0.040083846],[0.039347588],[0.038521553],[0.037613918],[0.036635178],[0.035597762],[0.034515556],[0.033403375],[0.032276388],[0.031149541],[0.030037003],[0.028951651],[0.027904632],[0.026905004],[0.025959485],[0.025072302],[0.024245158],[0.023477311],[0.022765746],[0.022105444],[0.021489726],[0.020910644],[0.020359417],[0.019826869],[0.019303865],[0.01878171],[0.018252509],[0.01770946],[0.017147077],[0.016561341],[0.015949771],[0.01531142],[0.014646809],[0.013957803],[0.013247442],[0.01251974],[0.01177947],[0.011031936],[0.010282755],[0.009537651],[0.0088022647],[0.0080819951],[0.0073818622],[0.0067063999],[0.0060595758],[0.0054447373],[0.0048645803],[0.0043211395],[0.0038157966],[0.0033493046],[0.0029218242],[0.0025329717],[0.0021818746],[0.0018672338],[0.0015873899],[0.0013403911],[0.0011240626],[0.00093607257],[0.00077399684],[0.00063537722],[0.00051777474],[0.00041881553],[0.00033622914],[0.00026787902],[0.00021178492],[0.00016613792],[0.00012930831],[9.9847376e-05],[7.6483908e-05],[5.8116481e-05],[4.38025e-05],[3.2745011e-05],[2.4278177e-05],[1.7852183e-05],[1.3018233e-05],[9.4141444e-06],[6.7508997e-06],[4.8004242e-06],[3.3847069e-06],[2.3663196e-06],[1.6403066e-06],[1.1273669e-06],[7.6821768e-07],[5.1900681e-07],[3.476348e-07],[2.3084858e-07],[1.5197701e-07],[9.9190228e-08],[6.4179185e-08],[4.1166919e-08],[2.617739e-08],[1.6501504e-08],[1.0311828e-08],[6.3879101e-09],[3.9227384e-09],[2.3879431e-09],[1.4409856e-09],[8.6197271e-10],[5.1112015e-10],[3.0043167e-10],[1.7504892e-10],[1.0110256e-10],[5.7883126e-11],[3.284938e-11],[1.8479327e-11],[1.0304512e-11],[5.6957332e-12],[3.1206965e-12],[1.6948527e-12],[9.1240953e-13],[4.8688245e-13],[2.5753364e-13],[1.3502634e-13],[7.017411e-14],[3.6150017e-14],[1.8459188e-14],[9.3430471e-15],[4.6874406e-15],[2.3310617e-15],[1.1490582e-15],[5.6143579e-16],[2.7191147e-16],[1.3053408e-16],[6.2113921e-17],[2.9296938e-17],[1.3696938e-17],[6.3473491e-18],[2.915605e-18],[1.3274926e-18],[5.9910432e-19],[2.6800289e-19],[1.1883462e-19],[5.2229131e-20],[2.2753527e-20],[9.8254085e-21],[4.2055066e-21],[1.7842335e-21],[7.5032704e-22],[3.1276268e-22],[1.2922441e-22],[5.2922385e-23],[2.1483219e-23],[8.6441902e-24],[3.4475788e-24],[1.3629156e-24],[5.3405807e-25],[2.0743055e-25],[7.9858585e-26],[3.0474395e-26],[1.1526915e-26],[4.3217099e-27],[1.6060629e-27],[5.9160781e-28],[2.1600788e-28],[7.8175308e-29],[2.8043608e-29],[9.9715446e-30],[3.5144324e-30],[1.2277562e-30],[4.2514125e-31],[1.4592123e-31],[4.9644125e-32],[1.6740997e-32],[5.5957569e-33],[1.8539603e-33],[6.0884402e-34],[1.9818724e-34],[6.3945403e-35],[2.0450643e-35],[6.4828891e-36],[2.0370148e-36],[6.3443001e-37],[1.9585615e-37],[5.9931428e-38],[1.8177576e-38],[5.4648876e-39],[1.6285099e-39],[4.810204e-40],[1.4083171e-40],[4.0869688e-41],[1.1756176e-41],[3.3519281e-42],[9.4729925e-43],[2.6536495e-43],[7.3682403e-44],[2.0279062e-44],[5.5321737e-45],[1.4959173e-45],[4.0094355e-46],[1.0651793e-46],[2.804956e-47],[7.3213844e-48],[1.8941929e-48],[4.8575698e-49],[1.2347463e-49],[3.1110015e-50],[7.7693831e-51],[1.9232542e-51],[4.7190075e-52],[1.1477002e-52],[2.7667511e-53],[6.6111274e-54],[1.5658306e-54],[3.67602e-55],[8.5541086e-56],[1.9730381e-56],[4.5108667e-57],[1.0222293e-57],[2.2961512e-58],[5.1123013e-59],[1.1282263e-59],[2.4679696e-60],[5.3511509e-61],[1.1500544e-61],[2.4499285e-62]],"fill":"tonexty","fillcolor":"rgb(0, 191, 255)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"March","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.03632945,-0.036329449,-0.036329448,-0.036329445,-0.036329441,-0.036329435,-0.036329425,-0.036329409,-0.036329384,-0.036329346,-0.036329286,-0.036329196,-0.03632906,-0.036328857,-0.036328555,-0.036328113,-0.036327469,-0.036326541,-0.036325214,-0.036323335,-0.036320697,-0.036317029,-0.036311972,-0.036305065,-0.036295713,-0.036283168,-0.036266487,-0.036244508,-0.036215806,-0.03617866,-0.036131017,-0.036070456,-0.035994159,-0.035898892,-0.035780996,-0.035636386,-0.035460575,-0.035248712,-0.034995642,-0.034695989,-0.034344262,-0.033934981,-0.033462823,-0.032922783,-0.032310343,-0.03162165,-0.030853685,-0.030004426,-0.029072989,-0.028059748,-0.026966423,-0.025796129,-0.02455339,-0.023244115,-0.021875528,-0.020456064,-0.018995235,-0.017503461,-0.015991875,-0.014472115,-0.0129561,-0.011455792,-0.0099829571,-0.0085489248,-0.007164351,-0.0058389861,-0.0045814564,-0.0033990624,-0.0022976011,-0.0012812197,-0.00035230902,0.00048855397,0.0012426066,0.0019128368,0.0025038486,0.0030216569,0.0034734113,0.0038670554,0.0042109345,0.0045133651,0.0047821875,0.0050243246,0.0052453719,0.0054492442,0.0056379018,0.0058111784,0.0059667237,0.0061000716,0.0062048331,0.0062730098,0.0062954109,0.0062621545,0.0061632256,0.0059890585,0.0057311128,0.0053824082,0.0049379891,0.0043952918,0.0037543943,0.0030181361,0.0021921009,0.0012844662,0.00030572662,-0.00073169003,-0.0018138956,-0.0029260763,-0.0040530634,-0.0051799102,-0.0062924487,-0.0073778007,-0.0084248199,-0.0094244473,-0.010369967,-0.01125715,-0.012084293,-0.01285214,-0.013563705,-0.014224007,-0.014839726,-0.015418808,-0.015970035,-0.016502583,-0.017025587,-0.017547742,-0.018076942,-0.018619992,-0.019182375,-0.01976811,-0.020379681,-0.021018032,-0.021682643,-0.022371649,-0.02308201,-0.023809711,-0.024549981,-0.025297515,-0.026046696,-0.026791801,-0.027527187,-0.028247456,-0.028947589,-0.029623052,-0.030269876,-0.030884714,-0.031464871,-0.032008312,-0.032513655,-0.032980147,-0.033407627,-0.03379648,-0.034147577,-0.034462218,-0.034742062,-0.03498906,-0.035205389,-0.035393379,-0.035555455,-0.035694074,-0.035811677,-0.035910636,-0.035993222,-0.036061573,-0.036117667,-0.036163314,-0.036200143,-0.036229604,-0.036252968,-0.036271335,-0.036285649,-0.036296707,-0.036305173,-0.036311599,-0.036316433,-0.036320037,-0.036322701,-0.036324651,-0.036326067,-0.036327085,-0.036327811,-0.036328324,-0.036328683,-0.036328933,-0.036329104,-0.036329221,-0.0363293,-0.036329352,-0.036329387,-0.03632941,-0.036329425,-0.036329435,-0.036329441,-0.036329445,-0.036329448,-0.036329449,-0.03632945,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452],"zorder":4,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452],"zorder":5,"type":"scatter"},{"customdata":[[1.7309323e-85],[1.0772002e-84],[6.6447181e-84],[4.0627538e-83],[2.462228e-82],[1.4791077e-81],[8.8071453e-81],[5.1979765e-80],[3.0408659e-79],[1.7632912e-78],[1.0134786e-77],[5.773896e-77],[3.2605219e-76],[1.8250261e-75],[1.0125462e-74],[5.5683232e-74],[3.0352734e-73],[1.6399666e-72],[8.7828603e-72],[4.6623058e-71],[2.4531796e-70],[1.2794453e-69],[6.6142093e-69],[3.3892057e-68],[1.7213997e-67],[8.6662126e-67],[4.3245482e-66],[2.1390255e-65],[1.048709e-64],[5.096333e-64],[2.454847e-63],[1.1720735e-62],[5.546884e-62],[2.601999e-61],[1.2098429e-60],[5.5758955e-60],[2.5472061e-59],[1.1533931e-58],[5.1767169e-58],[2.3030072e-57],[1.0155469e-56],[4.4388295e-56],[1.9230951e-55],[8.2584182e-55],[3.5152546e-54],[1.4831344e-53],[6.2025183e-53],[2.5711026e-52],[1.056415e-51],[4.3024272e-51],[1.736826e-50],[6.9496498e-50],[2.7563435e-49],[1.0835964e-48],[4.2224607e-48],[1.6309005e-47],[6.24386e-47],[2.3694234e-46],[8.9124271e-46],[3.3228684e-45],[1.227988e-44],[4.4982016e-44],[1.6332307e-43],[5.8778704e-43],[2.0967966e-42],[7.4140656e-42],[2.598486e-41],[9.0270987e-41],[3.108421e-40],[1.060951e-39],[3.5893406e-39],[1.2036435e-38],[4.0007822e-38],[1.3181226e-37],[4.304578e-37],[1.3933789e-36],[4.470661e-36],[1.4217988e-35],[4.4819644e-35],[1.4004338e-34],[4.3373117e-34],[1.3315044e-33],[4.0516179e-33],[1.2220199e-32],[3.653356e-32],[1.0826041e-31],[3.1798839e-31],[9.2579926e-31],[2.6716918e-30],[7.642226e-30],[2.1667928e-29],[6.0894617e-29],[1.696307e-28],[4.6837534e-28],[1.2818808e-27],[3.4774858e-27],[9.3507657e-27],[2.4922586e-26],[6.5842022e-26],[1.7241593e-25],[4.4752346e-25],[1.1513794e-24],[2.936198e-24],[7.421924e-24],[1.8595677e-23],[4.6181904e-23],[1.1368314e-22],[2.7738614e-22],[6.7086931e-22],[1.6082577e-21],[3.8215357e-21],[9.0008777e-21],[2.1013409e-20],[4.8626491e-20],[1.1153578e-19],[2.5358316e-19],[5.7146759e-19],[1.2765208e-18],[2.8263724e-18],[6.2029198e-18],[1.3493616e-17],[2.9095514e-17],[6.2185533e-17],[1.3174024e-16],[2.7663906e-16],[5.758039e-16],[1.1879604e-15],[2.4293815e-15],[4.9244315e-15],[9.8942597e-15],[1.970505e-14],[3.8899057e-14],[7.611463e-14],[1.4762673e-13],[2.838115e-13],[5.4083325e-13],[1.0215639e-12],[1.9126559e-12],[3.5495855e-12],[6.5296272e-12],[1.19061e-11],[2.1518974e-11],[3.8551829e-11],[6.846055e-11],[1.2050591e-10],[2.1025656e-10],[3.6363416e-10],[6.2338231e-10],[1.0593019e-09],[1.7842734e-09],[2.9790676e-09],[4.9303484e-09],[8.0882443e-09],[1.3152596e-08],[2.1200717e-08],[3.3874493e-08],[5.3651236e-08],[8.4231184e-08],[1.3108532e-07],[2.0222041e-07],[3.0923436e-07],[4.6875343e-07],[7.0436451e-07],[1.0491783e-06],[1.5491828e-06],[2.2675692e-06],[3.2902291e-06],[4.7326341e-06],[6.7483048e-06],[9.5390591e-06],[1.3367184e-05],[1.8569608e-05],[2.5574034e-05],[3.4916863e-05],[4.7262533e-05],[6.342368e-05],[8.4381278e-05],[0.00011130361],[0.00014556263],[0.00018874612],[0.00024266357],[0.0003093439],[0.00039102292],[0.0004901186],[0.00060919258],[0.00075089696],[0.00091790594],[0.001112833],[0.0013381357],[0.0015960099],[0.0018882795],[0.0022162849],[0.0025807775],[0.0029818274],[0.0034187491],[0.0038900557],[0.004393443],[0.0049258108],[0.0054833236],[0.0060615094],[0.0066553947],[0.0072596723],[0.0078688911],[0.0084776612],[0.0090808615],[0.0096738377],[0.01025258],[0.010813868],[0.011355374],[0.011875724],[0.012374498],[0.01285219],[0.013310115],[0.013750278],[0.014175215],[0.014587815],[0.014991133],[0.015388216],[0.015781951],[0.016174932],[0.016569381],[0.016967099],[0.017369468],[0.017777493],[0.018191878],[0.018613131],[0.019041683],[0.01947801],[0.019922745],[0.020376765],[0.02084124],[0.021317643],[0.021807695],[0.02231327],[0.022836236],[0.023378251],[0.023940526],[0.024523562],[0.025126887],[0.025748805],[0.026386192],[0.027034342],[0.027686899],[0.028335881],[0.028971802],[0.02958391],[0.030160522],[0.030689446],[0.03115849],[0.031555998],[0.031871417],[0.032095845],[0.032222521],[0.032247237],[0.032168637],[0.03198838],[0.031711149],[0.031344518],[0.030898653],[0.030385896],[0.029820224],[0.029216641],[0.028590519],[0.027956942],[0.027330089],[0.026722685],[0.026145566],[0.025607368],[0.025114359],[0.024670423],[0.024277178],[0.023934224],[0.02363948],[0.023389597],[0.023180393],[0.02300729],[0.022865702],[0.022751365],[0.022660565],[0.022590269],[0.022538143],[0.022502472],[0.02248199],[0.022475652],[0.022482361],[0.022500701],[0.022528686],[0.022563568],[0.022601712],[0.022638569],[0.022668733],[0.022686099],[0.022684093],[0.022655968],[0.022595137],[0.02249551],[0.02235182],[0.022159901],[0.0219169],[0.021621405],[0.021273485],[0.020874637],[0.020427647],[0.019936382],[0.019405523],[0.018840276],[0.018246067],[0.01762826],[0.016991913],[0.016341575],[0.015681165],[0.015013906],[0.014342335],[0.013668366],[0.012993413],[0.012318538],[0.011644623],[0.010972536],[0.01030329],[0.0096381671],[0.0089788031],[0.0083272338],[0.007685889],[0.0070575464],[0.0064452467],[0.0058521802],[0.0052815557],[0.0047364617],[0.0042197319],[0.0037338239],[0.0032807201],[0.0028618544],[0.0024780699],[0.0021296067],[0.0018161186],[0.0015367157],[0.0012900268],[0.0010742777],[0.00088737753],[0.00072700952],[0.0005907193],[0.00047599744],[0.00038035273],[0.00030137392],[0.00023677899],[0.00018445155],[0.00014246504],[0.00010909577],[8.2826536e-05],[6.2342274e-05],[4.6519828e-05],[3.4413405e-05],[2.5237364e-05],[1.8347655e-05],[1.3223049e-05],[9.446956e-06],[6.6904727e-06],[4.6970178e-06],[3.2687703e-06],[2.2549664e-06],[1.5420067e-06],[1.0452504e-06],[7.0232781e-07],[4.6778119e-07],[3.088354e-07],[2.0211154e-07],[1.3110924e-07],[8.4304796e-08],[5.3733703e-08],[3.3948114e-08],[2.1259738e-08],[1.3196922e-08],[8.1200554e-09],[4.952406e-09],[2.9939443e-09],[1.7940758e-09],[1.0656313e-09],[6.2739589e-10],[3.6613776e-10],[2.117947e-10],[1.2143755e-10],[6.9017296e-11],[3.8880299e-11],[2.1710394e-11],[1.2016335e-11],[6.5923816e-12],[3.5849114e-12],[1.9323247e-12],[1.0323982e-12],[5.4673845e-13],[2.8699687e-13],[1.4932748e-13],[7.7013563e-14],[3.9369465e-14],[1.9948788e-14],[1.0019318e-14],[4.987976e-15],[2.4613595e-15],[1.2038993e-15],[5.8367306e-16]],"fill":"tonexty","fillcolor":"rgb(255, 69, 0)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"March","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.03632945,-0.036329449,-0.036329447,-0.036329443,-0.036329438,-0.03632943,-0.036329418,-0.036329398,-0.036329367,-0.03632932,-0.036329249,-0.036329142,-0.036328983,-0.036328747,-0.036328402,-0.036327902,-0.036327184,-0.036326161,-0.036324719,-0.036322703,-0.036319913,-0.036316084,-0.036310882,-0.036303878,-0.036294535,-0.036282189,-0.036266028,-0.03624507,-0.036218148,-0.036183889,-0.036140705,-0.036086788,-0.036020108,-0.035938429,-0.035839333,-0.035720259,-0.035578555,-0.035411546,-0.035216619,-0.034991316,-0.034733442,-0.034441172,-0.034113167,-0.033748674,-0.033347624,-0.032910702,-0.032439396,-0.031936009,-0.031403641,-0.030846128,-0.030267942,-0.029674057,-0.029069779,-0.028460561,-0.02785179,-0.02724859,-0.026655614,-0.026076872,-0.025515584,-0.024974077,-0.024453727,-0.023954953,-0.023477261,-0.023019337,-0.022579174,-0.022154236,-0.021741637,-0.021338319,-0.020941235,-0.020547501,-0.02015452,-0.019760071,-0.019362353,-0.018959984,-0.018551958,-0.018137573,-0.01771632,-0.017287769,-0.016851442,-0.016406707,-0.015952687,-0.015488211,-0.015011809,-0.014521757,-0.014016182,-0.013493216,-0.012951201,-0.012388926,-0.01180589,-0.011202565,-0.010580646,-0.0099432596,-0.0092951096,-0.0086425521,-0.0079935707,-0.0073576497,-0.0067455413,-0.0061689301,-0.0056400051,-0.0051709615,-0.004773454,-0.0044580346,-0.0042336067,-0.004106931,-0.0040822147,-0.0041608142,-0.0043410718,-0.0046183023,-0.004984934,-0.0054307986,-0.0059435558,-0.0065092272,-0.0071128101,-0.0077389324,-0.0083725092,-0.0089993628,-0.0096067667,-0.010183886,-0.010722084,-0.011215093,-0.011659029,-0.012052274,-0.012395228,-0.012689972,-0.012939855,-0.013149059,-0.013322162,-0.01346375,-0.013578086,-0.013668886,-0.013739182,-0.013791308,-0.01382698,-0.013847461,-0.0138538,-0.013847091,-0.013828751,-0.013800765,-0.013765884,-0.01372774,-0.013690883,-0.013660719,-0.013643353,-0.013645359,-0.013673483,-0.013734315,-0.013833942,-0.013977632,-0.01416955,-0.014412551,-0.014708046,-0.015055966,-0.015454814,-0.015901804,-0.016393069,-0.016923928,-0.017489176,-0.018083385,-0.018701191,-0.019337539,-0.019987877,-0.020648287,-0.021315545,-0.021987117,-0.022661086,-0.023336039,-0.024010913,-0.024684829,-0.025356916,-0.026026161,-0.026691285,-0.027350648,-0.028002218,-0.028643563,-0.029271905,-0.029884205,-0.030477271,-0.031047896,-0.03159299,-0.03210972,-0.032595628,-0.033048731,-0.033467597,-0.033851382,-0.034199845,-0.034513333,-0.034792736,-0.035039425,-0.035255174,-0.035442074,-0.035602442,-0.035738732,-0.035853454,-0.035949099,-0.036028078,-0.036092673,-0.036145,-0.036186987,-0.036220356,-0.036246625,-0.036267109,-0.036282932,-0.036295038,-0.036304214,-0.036311104,-0.036316229,-0.036320005,-0.036322761,-0.036324755,-0.036326183,-0.036327197,-0.03632791,-0.036328406,-0.036328749,-0.036328984,-0.036329143,-0.036329249,-0.03632932,-0.036329367,-0.036329398,-0.036329418,-0.03632943,-0.036329438,-0.036329443,-0.036329447,-0.036329449,-0.03632945,-0.03632945,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452],"zorder":5,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177],"zorder":6,"type":"scatter"},{"customdata":[[3.0614177e-60],[1.4040049e-59],[6.3823478e-59],[2.8757967e-58],[1.2844045e-57],[5.6860596e-57],[2.4950946e-56],[1.0852472e-55],[4.6788215e-55],[1.9994495e-54],[8.469361e-54],[3.5559621e-53],[1.4798918e-52],[6.1047683e-52],[2.4961741e-51],[1.0116892e-50],[4.0643015e-50],[1.6184206e-49],[6.3879805e-49],[2.4992089e-48],[9.6918886e-48],[3.725471e-47],[1.4194529e-46],[5.3607783e-46],[2.0067897e-45],[7.4463447e-45],[2.7387458e-44],[9.9845316e-44],[3.6080385e-43],[1.2923561e-42],[4.5883959e-42],[1.6147575e-41],[5.6327645e-41],[1.9476181e-40],[6.6750427e-40],[2.2676312e-39],[7.6358788e-39],[2.5486721e-38],[8.4321311e-38],[2.7652174e-37],[8.9885548e-37],[2.8961379e-36],[9.2494837e-36],[2.9280923e-35],[9.1880037e-35],[2.857767e-34],[8.8105265e-34],[2.6924424e-33],[8.1556885e-33],[2.448751e-32],[7.2878354e-32],[2.1499213e-31],[6.2866138e-31],[1.8221385e-30],[5.2349978e-30],[1.4908101e-29],[4.2082253e-29],[1.1774613e-28],[3.2656191e-28],[8.9775071e-28],[2.446344e-27],[6.6077109e-27],[1.7691166e-26],[4.6949825e-26],[1.235048e-25],[3.220373e-25],[8.3234094e-25],[2.132403e-24],[5.4151496e-24],[1.3630915e-23],[3.4010516e-23],[8.4115352e-23],[2.0621081e-22],[5.0109715e-22],[1.2069995e-21],[2.8818216e-21],[6.8202812e-21],[1.599974e-20],[3.7204826e-20],[8.5755442e-20],[1.9592978e-19],[4.43727e-19],[9.9611223e-19],[2.2165525e-18],[4.8890609e-18],[1.0689341e-17],[2.3166201e-17],[4.9766547e-17],[1.0597402e-16],[2.2368708e-16],[4.6801788e-16],[9.7065404e-16],[1.9954802e-15],[4.0664158e-15],[8.2140632e-15],[1.6447001e-14],[3.264362e-14],[6.4223417e-14],[1.2524851e-13],[2.4212318e-13],[4.6396523e-13],[8.8129322e-13],[1.6593653e-12],[3.0970689e-12],[5.7299095e-12],[1.0508324e-11],[1.9103314e-11],[3.4425037e-11],[6.1493813e-11],[1.0888816e-10],[1.9112747e-10],[3.3255215e-10],[5.7357696e-10],[9.806636e-10],[1.6620574e-09],[2.7923563e-09],[4.6504591e-09],[7.6775456e-09],[1.2564698e-08],[2.0383855e-08],[3.2781354e-08],[5.2260738e-08],[8.2591267e-08],[1.2939118e-07],[2.0095061e-07],[3.0937864e-07],[4.7218279e-07],[7.1441634e-07],[1.0715608e-06],[1.5933436e-06],[2.3487267e-06],[3.4323329e-06],[4.9726044e-06],[7.142003e-06],[1.0169558e-05],[1.4356044e-05],[2.0091999e-05],[2.7878712e-05],[3.8352123e-05],[5.23094e-05],[7.0737666e-05],[9.484404e-05],[0.00012608576],[0.00016619879],[0.00021722282],[0.00028152031],[0.00036178672],[0.00046104911],[0.00058265005],[0.00073021398],[0.0009075938],[0.001118796],[0.0013678836],[0.0016588579],[0.0019955204],[0.0023813206],[0.0028191923],[0.0033113884],[0.0038593208],[0.004463415],[0.0051229896],[0.0058361686],[0.0065998365],[0.0074096407],[0.0082600462],[0.0091444433],[0.010055306],[0.010984395],[0.011922998],[0.012862195],[0.013793136],[0.014707319],[0.015596853],[0.016454693],[0.017274846],[0.018052532],[0.018784296],[0.019468089],[0.020103295],[0.020690737],[0.021232656],[0.021732663],[0.022195703],[0.022627992],[0.023036974],[0.023431258],[0.023820564],[0.024215638],[0.024628148],[0.025070537],[0.025555823],[0.026097329],[0.026708348],[0.027401725],[0.028189372],[0.02908172],[0.030087133],[0.031211299],[0.032456644],[0.033821794],[0.035301133],[0.036884475],[0.038556913],[0.040298845],[0.04208621],[0.043890929],[0.045681568],[0.047424173],[0.049083271],[0.050622986],[0.052008222],[0.05320585],[0.05418586],[0.054922398],[0.055394656],[0.055587572],[0.055492295],[0.055106419],[0.054433966],[0.053485131],[0.05227582],[0.050827002],[0.049163913],[0.047315165],[0.045311799],[0.043186318],[0.040971755],[0.038700789],[0.036404951],[0.03411393],[0.031854996],[0.029652542],[0.027527739],[0.025498318],[0.02357845],[0.021778728],[0.020106245],[0.018564739],[0.017154821],[0.015874253],[0.01471828],[0.013680001],[0.012750767],[0.0119206],[0.011178612],[0.010513428],[0.0099135807],[0.0093678819],[0.0088657516],[0.0083974984],[0.0079545423],[0.0075295769],[0.0071166675],[0.0067112867],[0.0063102902],[0.005911839],[0.0055152767],[0.0051209701],[0.0047301252],[0.0043445884],[0.0039666444],[0.0035988193],[0.0032437001],[0.002903774],[0.0025812956],[0.002278183],[0.0019959454],[0.0017356401],[0.0014978583],[0.0012827355],[0.0010899818],[0.00091892926],[0.0007685892],[0.00063771659],[0.00052487637],[0.00042850824],[0.00034698701],[0.00027867622],[0.00022197375],[0.00017534849],[0.00013736815],[0.00010671849],[8.2214769e-05],[6.2806473e-05],[4.7576447e-05],[3.5735675e-05],[2.6614874e-05],[1.9653954e-05],[1.4390299e-05],[1.044662e-05],[7.5190014e-06],[5.365568e-06],[3.796082e-06],[2.662646e-06],[1.8515832e-06],[1.2764956e-06],[8.7244183e-07],[5.9113909e-07],[3.9707659e-07],[2.6441489e-07],[1.7455025e-07],[1.1422841e-07],[7.4104273e-08],[4.7656757e-08],[3.0381881e-08],[1.9200423e-08],[1.2028464e-08],[7.4698196e-09],[4.5984158e-09],[2.8060944e-09],[1.697423e-09],[1.0178169e-09],[6.0497741e-10],[3.5644854e-10],[2.08181e-10],[1.2052312e-10],[6.9164501e-11],[3.9343992e-11],[2.2184756e-11],[1.2399689e-11],[6.8698257e-12],[3.7727538e-12],[2.0537523e-12],[1.1081885e-12],[5.9272658e-13],[3.1424585e-13],[1.6514232e-13],[8.6024118e-14],[4.4417536e-14],[2.2733197e-14],[1.1532882e-14],[5.7994383e-15],[2.8907086e-15],[1.4282116e-15],[6.9943963e-16],[3.3952909e-16],[1.6337005e-16],[7.7917726e-17],[3.6835635e-17],[1.7261075e-17],[8.0174268e-18],[3.6912158e-18],[1.6844995e-18],[7.6197221e-19],[3.4164414e-19],[1.5183617e-19],[6.6887155e-20],[2.9206282e-20],[1.2640835e-20],[5.4230172e-21],[2.3060666e-21],[9.720044e-22],[4.0609721e-22],[1.6817331e-22],[6.9031819e-23],[2.8087084e-23],[1.1327368e-23],[4.5281026e-24],[1.7941897e-24],[7.0466914e-25],[2.7432592e-25],[1.0585542e-25],[4.0487775e-26],[1.5349678e-26],[5.7681843e-27],[2.1485399e-27],[7.9325369e-28],[2.9029873e-28],[1.0530343e-28],[3.7862052e-29],[1.3493668e-29],[4.7667255e-30],[1.6690696e-30],[5.7928584e-31],[1.9928542e-31],[6.7955129e-32],[2.2968523e-32],[7.6949881e-33],[2.5553295e-33],[8.4110438e-34],[2.7442073e-34],[8.8745825e-35],[2.8447424e-35],[9.0386161e-36],[2.8465899e-36],[8.886113e-37],[2.7495568e-37],[8.4329108e-38],[2.5636353e-38],[7.7250072e-39],[2.3073074e-39],[6.8308685e-40],[2.0045195e-40],[5.8305369e-41],[1.6810115e-41],[4.8039304e-42],[1.3607759e-42],[3.8206773e-43],[1.0633053e-43],[2.9331851e-44]],"fill":"tonexty","fillcolor":"rgb(0, 191, 255)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"April","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494176,-0.054494176,-0.054494175,-0.054494173,-0.05449417,-0.054494165,-0.054494157,-0.054494145,-0.054494125,-0.054494095,-0.054494048,-0.054493976,-0.054493868,-0.054493705,-0.054493463,-0.054493106,-0.054492584,-0.054491829,-0.054490745,-0.054489205,-0.054487035,-0.054484008,-0.054479821,-0.054474085,-0.054466299,-0.054455825,-0.054441868,-0.05442344,-0.054399333,-0.054368092,-0.054327979,-0.054276955,-0.054212657,-0.054132391,-0.054033128,-0.053911527,-0.053763963,-0.053586584,-0.053375381,-0.053126294,-0.052835319,-0.052498657,-0.052112857,-0.051674985,-0.051182789,-0.050634857,-0.050030762,-0.049371188,-0.048658009,-0.047894341,-0.047084537,-0.046234131,-0.045349734,-0.044438871,-0.043509782,-0.042571179,-0.041631982,-0.040701041,-0.039786858,-0.038897324,-0.038039484,-0.037219331,-0.036441645,-0.035709881,-0.035026089,-0.034390883,-0.03380344,-0.033261522,-0.032761514,-0.032298474,-0.031866185,-0.031457204,-0.031062919,-0.030673613,-0.03027854,-0.02986603,-0.02942364,-0.028938355,-0.028396848,-0.02778583,-0.027092453,-0.026304806,-0.025412457,-0.024407044,-0.023282878,-0.022037534,-0.020672383,-0.019193045,-0.017609703,-0.015937264,-0.014195332,-0.012407968,-0.010603248,-0.0088126089,-0.0070700041,-0.0054109062,-0.003871191,-0.0024859556,-0.0012883271,-0.00030831701,0.00042822062,0.00090047915,0.0010933949,0.00099811798,0.00061224216,-6.0211611e-05,-0.0010090468,-0.0022183571,-0.0036671751,-0.0053302645,-0.0071790124,-0.0091823788,-0.011307859,-0.013522422,-0.015793388,-0.018089227,-0.020380248,-0.022639181,-0.024841636,-0.026966438,-0.028995859,-0.030915728,-0.032715449,-0.034387933,-0.035929439,-0.037339357,-0.038619925,-0.039775897,-0.040814176,-0.04174341,-0.042573578,-0.043315565,-0.043980749,-0.044580597,-0.045126295,-0.045628426,-0.046096679,-0.046539635,-0.0469646,-0.04737751,-0.047782891,-0.048183887,-0.048582338,-0.048978901,-0.049373207,-0.049764052,-0.050149589,-0.050527533,-0.050895358,-0.051250477,-0.051590403,-0.051912882,-0.052215994,-0.052498232,-0.052758537,-0.052996319,-0.053211442,-0.053404196,-0.053575248,-0.053725588,-0.053856461,-0.053969301,-0.054065669,-0.05414719,-0.054215501,-0.054272204,-0.054318829,-0.054356809,-0.054387459,-0.054411963,-0.054431371,-0.054446601,-0.054458442,-0.054467562,-0.054474523,-0.054479787,-0.054483731,-0.054486658,-0.054488812,-0.054490381,-0.054491515,-0.054492326,-0.054492901,-0.054493305,-0.054493586,-0.05449378,-0.054493913,-0.054494003,-0.054494063,-0.054494103,-0.05449413,-0.054494147,-0.054494158,-0.054494165,-0.05449417,-0.054494173,-0.054494175,-0.054494176,-0.054494176,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177],"zorder":6,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177],"zorder":7,"type":"scatter"},{"customdata":[[1.8433206e-94],[1.2601852e-93],[8.5394847e-93],[5.7357837e-92],[3.8187186e-91],[2.5200338e-90],[1.6483858e-89],[1.0687476e-88],[6.8683952e-88],[4.3752128e-87],[2.7625293e-86],[1.728934e-85],[1.0725406e-84],[6.5949703e-84],[4.0195345e-83],[2.4283008e-82],[1.4540958e-81],[8.6307263e-81],[5.0776817e-80],[2.9610614e-79],[1.711564e-78],[9.8062439e-78],[5.5689848e-77],[3.1348241e-76],[1.749098e-75],[9.6733942e-75],[5.3028268e-74],[2.8813751e-73],[1.5518723e-72],[8.2846839e-72],[4.3838907e-71],[2.2993617e-70],[1.1954149e-69],[6.1601866e-69],[3.1465371e-68],[1.5930729e-67],[7.9947017e-67],[3.9767901e-66],[1.9607711e-65],[9.5826343e-65],[4.6420172e-64],[2.2289092e-63],[1.0608203e-62],[5.0044354e-62],[2.3400878e-61],[1.0846086e-60],[4.9828488e-60],[2.2690612e-59],[1.0241852e-58],[4.5822062e-58],[2.0320508e-57],[8.9321971e-57],[3.8917583e-56],[1.6807272e-55],[7.1946955e-55],[3.0527513e-54],[1.283909e-53],[5.3523056e-53],[2.2116244e-52],[9.0582783e-52],[3.6774246e-51],[1.4798092e-50],[5.9024387e-50],[2.3335713e-49],[9.1448063e-49],[3.5521539e-48],[1.3676434e-47],[5.2193668e-47],[1.9743612e-46],[7.4028547e-46],[2.7512857e-45],[1.0135286e-44],[3.7008391e-44],[1.3394554e-43],[4.8052961e-43],[1.7087398e-42],[6.0227601e-42],[2.1041616e-41],[7.2866263e-41],[2.5011388e-40],[8.5096753e-40],[2.869803e-39],[9.5930144e-39],[3.1784986e-38],[1.0438855e-37],[3.3981902e-37],[1.0964944e-36],[3.5069464e-36],[1.1117722e-35],[3.4935459e-35],[1.0881308e-34],[3.359385e-34],[1.0280221e-33],[3.1182376e-33],[9.3751886e-33],[2.793926e-32],[8.2530387e-32],[2.4164455e-31],[7.0130069e-31],[2.0174171e-30],[5.7524302e-30],[1.6258154e-29],[4.554654e-29],[1.2647476e-28],[3.4811012e-28],[9.4971618e-28],[2.5682391e-27],[6.8840108e-27],[1.8289935e-26],[4.8166751e-26],[1.257324e-25],[3.2532073e-25],[8.3433615e-25],[2.1209734e-24],[5.3443431e-24],[1.3348069e-23],[3.3045146e-23],[8.1089032e-23],[1.9723404e-22],[4.7551811e-22],[1.1363649e-21],[2.6917472e-21],[6.3199927e-21],[1.4708381e-20],[3.3929648e-20],[7.7581862e-20],[1.7583592e-19],[3.9502245e-19],[8.7963593e-19],[1.9415626e-18],[4.2478324e-18],[9.2119414e-18],[1.9801728e-17],[4.2191359e-17],[8.9107198e-17],[1.8653971e-16],[3.8707891e-16],[7.9615545e-16],[1.6231808e-15],[3.2802513e-15],[6.5708134e-15],[1.3046788e-14],[2.5678e-14],[5.0094803e-14],[9.6872129e-14],[1.8568662e-13],[3.5280838e-13],[6.6446902e-13],[1.2404786e-12],[2.2955339e-12],[4.2107492e-12],[7.6562777e-12],[1.3799399e-11],[2.4654064e-11],[4.3662094e-11],[7.6649666e-11],[1.3338524e-10],[2.3009088e-10],[3.9344831e-10],[6.6692248e-10],[1.1206381e-09],[1.8666417e-09],[3.0822343e-09],[5.045256e-09],[8.1868677e-09],[1.3169637e-08],[2.1001785e-08],[3.3202456e-08],[5.2038116e-08],[8.0856787e-08],[1.2455515e-07],[1.9022366e-07],[2.8802681e-07],[4.3238981e-07],[6.435784e-07],[9.4977563e-07],[1.3897769e-06],[2.0164407e-06],[2.9010482e-06],[4.1387324e-06],[5.8551441e-06],[8.2145118e-06],[1.1429236e-05],[1.5771119e-05],[2.1584292e-05],[2.9299793e-05],[3.9451706e-05],[5.2694605e-05],[6.9821946e-05],[9.1784884e-05],[0.00011971086],[0.00015492111],[0.00019894619],[0.00025353837],[0.00032067978],[0.0004025852],[0.00050169806],[0.00062067895],[0.00076238526],[0.00092984149],[0.0011261995],[0.0013546883],[0.0016185544],[0.0019209911],[0.0022650593],[0.0026536005],[0.0030891424],[0.0035737998],[0.0041091721],[0.0046962413],[0.0053352705],[0.00602571],[0.0067661104],[0.0075540499],[0.008386078],[0.0092576812],[0.010163274],[0.011096218],[0.01204888],[0.013012717],[0.013978405],[0.014936002],[0.01587515],[0.016785304],[0.017655989],[0.018477076],[0.019239069],[0.019933395],[0.020552672],[0.02109097],[0.021544029],[0.021909443],[0.022186786],[0.022377688],[0.022485848],[0.022516984],[0.022478719],[0.022380411],[0.02223292],[0.022048332],[0.021839637],[0.021620378],[0.021404274],[0.021204835],[0.021034975],[0.020906641],[0.020830461],[0.020815435],[0.020868663],[0.02099514],[0.021197601],[0.021476449],[0.021829743],[0.022253274],[0.022740698],[0.023283754],[0.023872531],[0.024495796],[0.025141361],[0.025796484],[0.026448284],[0.027084158],[0.027692192],[0.028261538],[0.028782764],[0.029248142],[0.029651879],[0.029990282],[0.030261835],[0.030467206],[0.030609156],[0.030692375],[0.030723235],[0.03070947],[0.030659797],[0.030583486],[0.03048991],[0.030388078],[0.030286189],[0.030191216],[0.030108554],[0.030041747],[0.029992312],[0.02995967],[0.029941195],[0.029932379],[0.029927099],[0.029917977],[0.029896819],[0.029855082],[0.029784372],[0.029676907],[0.02952595],[0.029326153],[0.029073811],[0.028767007],[0.028405637],[0.027991316],[0.027527188],[0.027017639],[0.026467954],[0.025883928],[0.025271476],[0.024636261],[0.023983366],[0.023317039],[0.022640511],[0.021955916],[0.021264294],[0.020565687],[0.019859309],[0.019143774],[0.018417367],[0.017678324],[0.016925125],[0.016156743],[0.015372863],[0.014574049],[0.013761834],[0.012938755],[0.012108314],[0.011274873],[0.010443509],[0.0096198158],[0.0088096829],[0.0080190654],[0.0072537527],[0.0065191534],[0.0058201073],[0.0051607328],[0.0045443145],[0.0039732349],[0.0034489492],[0.0029720011],[0.002542074],[0.0021580725],[0.001818225],[0.0015202024],[0.0012612426],[0.0010382767],[0.00084804906],[0.00068722717],[0.00055249842],[0.00044065085],[0.00034863736],[0.00027362333],[0.00021301856],[0.00016449517],[0.00012599328],[9.5716777e-05],[7.2121348e-05],[5.3896924e-05],[3.9946465e-05],[2.9362793e-05],[2.1404833e-05],[1.5474374e-05],[1.1094119e-05],[7.8875661e-06],[5.5610411e-06],[3.8879867e-06],[2.6955164e-06],[1.8531091e-06],[1.2632673e-06],[8.5392265e-07],[5.7235406e-07],[3.8038915e-07],[2.5067033e-07],[1.6378864e-07],[1.0611221e-07],[6.8162043e-08],[4.3412077e-08],[2.7413501e-08],[1.7163261e-08],[1.0653983e-08],[6.5568735e-09],[4.0008294e-09],[2.4202915e-09],[1.4515962e-09],[8.6313893e-10],[5.0882532e-10],[2.9737628e-10],[1.7230193e-10],[9.897304e-11],[5.6361618e-11],[3.1819015e-11],[1.7808355e-11],[9.8807934e-12],[5.4348564e-12],[2.963534e-12],[1.6019716e-12],[8.5846052e-13],[4.5604122e-13],[2.4016177e-13],[1.2537688e-13],[6.4884771e-14],[3.3287241e-14],[1.6928582e-14],[8.5343274e-15],[4.2650304e-15],[2.1128923e-15]],"fill":"tonexty","fillcolor":"rgb(255, 69, 0)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"April","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494176,-0.054494175,-0.054494174,-0.054494172,-0.054494169,-0.054494164,-0.054494156,-0.054494144,-0.054494125,-0.054494096,-0.054494053,-0.054493987,-0.054493889,-0.054493745,-0.054493534,-0.054493228,-0.054492788,-0.054492161,-0.054491276,-0.054490039,-0.054488322,-0.054485963,-0.054482748,-0.054478406,-0.054472593,-0.054464878,-0.054454726,-0.054441483,-0.054424355,-0.054402392,-0.054374466,-0.054339256,-0.054295231,-0.054240639,-0.054173498,-0.054091592,-0.053992479,-0.053873498,-0.053731792,-0.053564336,-0.053367978,-0.053139489,-0.052875623,-0.052573186,-0.052229118,-0.051840577,-0.051405035,-0.050920378,-0.050385005,-0.049797936,-0.049158907,-0.048468467,-0.047728067,-0.046940127,-0.046108099,-0.045236496,-0.044330904,-0.043397959,-0.042445297,-0.04148146,-0.040515773,-0.039558175,-0.038619027,-0.037708873,-0.036838188,-0.036017102,-0.035255108,-0.034560782,-0.033941505,-0.033403208,-0.032950148,-0.032584734,-0.032307392,-0.03211649,-0.03200833,-0.031977193,-0.032015458,-0.032113766,-0.032261257,-0.032445846,-0.032654541,-0.0328738,-0.033089904,-0.033289343,-0.033459202,-0.033587537,-0.033663716,-0.033678743,-0.033625514,-0.033499037,-0.033296576,-0.033017729,-0.032664434,-0.032240904,-0.031753479,-0.031210423,-0.030621646,-0.029998381,-0.029352816,-0.028697693,-0.028045893,-0.027410019,-0.026801986,-0.026232639,-0.025711413,-0.025246035,-0.024842298,-0.024503896,-0.024232342,-0.024026971,-0.023885022,-0.023801803,-0.023770943,-0.023784707,-0.023834381,-0.023910692,-0.024004268,-0.024106099,-0.024207988,-0.024302961,-0.024385623,-0.02445243,-0.024501866,-0.024534508,-0.024552982,-0.024561798,-0.024567079,-0.0245762,-0.024597359,-0.024639095,-0.024709806,-0.02481727,-0.024968227,-0.025168024,-0.025420366,-0.02572717,-0.026088541,-0.026502862,-0.02696699,-0.027476538,-0.028026223,-0.028610249,-0.029222701,-0.029857916,-0.030510811,-0.031177138,-0.031853666,-0.032538261,-0.033229883,-0.03392849,-0.034634868,-0.035350403,-0.036076811,-0.036815853,-0.037569052,-0.038337435,-0.039121314,-0.039920129,-0.040732343,-0.041555422,-0.042385864,-0.043219304,-0.044050668,-0.044874362,-0.045684494,-0.046475112,-0.047240425,-0.047975024,-0.04867407,-0.049333445,-0.049949863,-0.050520942,-0.051045228,-0.051522176,-0.051952103,-0.052336105,-0.052675952,-0.052973975,-0.053232935,-0.053455901,-0.053646128,-0.05380695,-0.053941679,-0.054053526,-0.05414554,-0.054220554,-0.054281159,-0.054329682,-0.054368184,-0.054398461,-0.054422056,-0.05444028,-0.054454231,-0.054464815,-0.054472773,-0.054478703,-0.054483083,-0.05448629,-0.054488616,-0.054490289,-0.054491482,-0.054492324,-0.054492914,-0.054493323,-0.054493605,-0.054493797,-0.054493927,-0.054494014,-0.054494071,-0.054494109,-0.054494134,-0.05449415,-0.05449416,-0.054494167,-0.054494171,-0.054494173,-0.054494175,-0.054494176,-0.054494176,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177],"zorder":7,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903],"zorder":8,"type":"scatter"},{"customdata":[[1.0267685e-69],[5.2964135e-69],[2.7080588e-68],[1.3724648e-67],[6.8946364e-67],[3.433117e-66],[1.6944666e-65],[8.2898116e-65],[4.0199777e-64],[1.93228e-63],[9.2062755e-63],[4.3477592e-62],[2.0352356e-61],[9.4434714e-61],[4.3432671e-60],[1.9800191e-59],[8.9472654e-59],[4.0075545e-58],[1.7792495e-57],[7.8300166e-57],[3.4155215e-56],[1.4767943e-55],[6.3292423e-55],[2.6887617e-54],[1.1321968e-53],[4.72564e-53],[1.9550984e-52],[8.0176294e-52],[3.2590639e-51],[1.3131352e-50],[5.2444e-50],[2.0761185e-49],[8.1466411e-49],[3.1686575e-48],[1.2216377e-47],[4.6685302e-47],[1.7684332e-46],[6.64e-46],[2.4712609e-45],[9.1167579e-45],[3.3337552e-44],[1.2083665e-43],[4.3414567e-43],[1.5461241e-42],[5.4578989e-42],[1.9097614e-41],[6.6237725e-41],[2.2772181e-40],[7.7602728e-40],[2.6213362e-39],[8.7769185e-39],[2.912965e-38],[9.5830243e-38],[3.1249586e-37],[1.0100912e-36],[3.2363227e-36],[1.0278227e-35],[3.2356393e-35],[1.009666e-34],[3.1229962e-34],[9.5750608e-34],[2.9099687e-33],[8.766215e-33],[2.6176602e-32],[7.7480446e-32],[2.2732595e-31],[6.6112611e-31],[1.9058925e-30],[5.4461755e-30],[1.5426394e-29],[4.3312892e-29],[1.205453e-28],[3.3255554e-28],[9.0940914e-28],[2.4651089e-27],[6.623614e-27],[1.7641541e-26],[4.6575884e-26],[1.2189033e-25],[3.1619974e-25],[8.1308949e-25],[2.0725276e-24],[5.236583e-24],[1.3115411e-23],[3.2561371e-23],[8.0132903e-23],[1.9548216e-22],[4.7270701e-22],[1.1330949e-21],[2.6923438e-21],[6.3414041e-21],[1.4805794e-20],[3.4266527e-20],[7.8614256e-20],[1.7878296e-19],[4.0303739e-19],[9.0065763e-19],[1.9951252e-18],[4.3810423e-18],[9.5363568e-18],[2.0577196e-17],[4.4013861e-17],[9.3323987e-17],[1.9615465e-16],[4.0870174e-16],[8.441467e-16],[1.7283592e-15],[3.5079699e-15],[7.0580479e-15],[1.4077366e-14],[2.783348e-14],[5.455369e-14],[1.0599676e-13],[2.0416166e-13],[3.8982556e-13],[7.3787432e-13],[1.3845604e-12],[2.5754928e-12],[4.7492967e-12],[8.6820124e-12],[1.5733862e-11],[2.8266748e-11],[5.0343541e-11],[8.8887552e-11],[1.5558559e-10],[2.6997969e-10],[4.6443849e-10],[7.9206885e-10],[1.3391758e-09],[2.2446807e-09],[3.730065e-09],[6.1450541e-09],[1.0036569e-08],[1.6251669e-08],[2.6089567e-08],[4.1523614e-08],[6.5521855e-08],[1.0250464e-07],[1.5899042e-07],[2.4449636e-07],[3.7277957e-07],[5.635267e-07],[8.446258e-07],[1.2551819e-06],[1.8494681e-06],[2.7020326e-06],[3.9142091e-06],[5.6222961e-06],[8.0076789e-06],[1.1309161e-05],[1.583773e-05],[2.1993942e-05],[3.0287965e-05],[4.1362246e-05],[5.6016504e-05],[7.5234581e-05],[0.00010021237],[0.00013238575],[0.00017345709],[0.0002254187],[0.00029057103],[0.00037153361],[0.00047124618],[0.00059295775],[0.00074020144],[0.00091675335],[0.0011265741],[0.0013737332],[0.0016623155],[0.0019963136],[0.0023795069],[0.0028153324],[0.0033067519],[0.0038561224],[0.0044650738],[0.0051344031],[0.0058639885],[0.0066527302],[0.0074985215],[0.0083982512],[0.0093478391],[0.010342302],[0.011375846],[0.012441979],[0.013533644],[0.014643345],[0.015763291],[0.016885515],[0.01800199],[0.019104721],[0.020185824],[0.021237578],[0.022252465],[0.023223202],[0.024142762],[0.025004402],[0.025801705],[0.026528634],[0.027179618],[0.027749659],[0.028234474],[0.028630659],[0.028935876],[0.029149052],[0.029270577],[0.029302491],[0.029248638],[0.02911478],[0.028908653],[0.028639948],[0.02832022],[0.027962708],[0.027582077],[0.027194076],[0.026815135],[0.026461907],[0.026150776],[0.025897357],[0.025716005],[0.025619359],[0.025617947],[0.025719856],[0.025930496],[0.026252462],[0.026685484],[0.02722649],[0.02786974],[0.028607051],[0.029428078],[0.030320632],[0.031271042],[0.032264502],[0.033285436],[0.034317821],[0.0353455],[0.036352438],[0.037322959],[0.038241931],[0.039094918],[0.039868303],[0.040549386],[0.041126463],[0.041588903],[0.041927212],[0.042133113],[0.042199621],[0.042121137],[0.041893544],[0.04151431],[0.040982596],[0.040299348],[0.039467384],[0.038491446],[0.037378227],[0.03613635],[0.034776301],[0.033310305],[0.031752153],[0.030116965],[0.028420914],[0.026680904],[0.024914217],[0.023138149],[0.021369632],[0.01962488],[0.017919055],[0.016265966],[0.014677832],[0.013165086],[0.011736254],[0.010397889],[0.0091545723],[0.0080089743],[0.0069619603],[0.006012746],[0.0051590839],[0.004397473],[0.0037233827],[0.0031314798],[0.0026158501],[0.0021702094],[0.001788094],[0.0014630312],[0.0011886831],[0.00095896507],[0.0007681369],[0.00061086993],[0.00048229017],[0.00037800111],[0.00029408872],[0.00022711205],[0.00017408233],[0.00013243365],[9.9988028e-05],[7.4917097e-05],[5.5702519e-05],[4.1096789e-05],[3.0085609e-05],[2.1852787e-05],[1.5748233e-05],[1.1259373e-05],[7.9861055e-06],[5.6192199e-06],[3.9221076e-06],[2.7154917e-06],[1.8648615e-06],[1.2702761e-06],[8.5819918e-07],[5.7504529e-07],[3.8214329e-07],[2.5185323e-07],[1.6460893e-07],[1.06692e-07],[6.8575912e-08],[4.3708086e-08],[2.7624357e-08],[1.7312231e-08],[1.0758089e-08],[6.6287199e-09],[4.0497517e-09],[2.4531463e-09],[1.473355e-09],[8.7735074e-10],[5.179816e-10],[3.0319664e-10],[1.7595333e-10],[1.0123439e-10],[5.7744522e-11],[3.2654326e-11],[1.830683e-11],[1.0174748e-11],[5.6061928e-12],[3.062262e-12],[1.6582228e-12],[8.9015602e-13],[4.7370591e-13],[2.4990087e-13],[1.3068932e-13],[6.7752138e-14],[3.4818809e-14],[1.7738233e-14],[8.9579779e-15],[4.4844652e-15],[2.2254113e-15],[1.0947298e-15],[5.3382485e-16],[2.5803826e-16],[1.2364064e-16],[5.872577e-17],[2.7649357e-17],[1.2904133e-17],[5.9697872e-18],[2.7376243e-18],[1.2444364e-18],[5.6073064e-19],[2.5044804e-19],[1.1088218e-19],[4.8661526e-20],[2.1168433e-20],[9.1278792e-21],[3.901472e-21],[1.6529656e-21],[6.9418486e-22],[2.8897605e-22],[1.1924037e-22],[4.87707e-23],[1.9772805e-23],[7.9460396e-24],[3.1652338e-24],[1.2497785e-24],[4.8913873e-25],[1.89759e-25],[7.2969884e-26],[2.7813491e-26],[1.0508423e-26],[3.9354058e-27],[1.4608683e-27],[5.3752899e-28],[1.9604769e-28],[7.0874546e-29],[2.5397288e-29],[9.0209577e-30],[3.1760401e-30],[1.108376e-30],[3.834033e-31],[1.3145951e-31],[4.4678172e-32],[1.5051017e-32],[5.0257767e-33],[1.6634405e-33],[5.4573017e-34],[1.7746598e-34],[5.7202968e-35],[1.8276298e-35],[5.7879392e-36],[1.8168776e-36],[5.6531854e-37],[1.7435184e-37],[5.3299793e-38],[1.6150653e-38]],"fill":"tonexty","fillcolor":"rgb(0, 191, 255)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"May","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658902,-0.072658902,-0.072658901,-0.072658899,-0.072658897,-0.072658893,-0.072658887,-0.072658877,-0.072658862,-0.072658838,-0.072658801,-0.072658744,-0.072658659,-0.07265853,-0.07265834,-0.072658058,-0.072657648,-0.072657054,-0.072656201,-0.072654989,-0.072653281,-0.072650895,-0.072647594,-0.072643065,-0.072636909,-0.072628615,-0.072617541,-0.072602887,-0.072583669,-0.072558691,-0.072526517,-0.072485446,-0.072433484,-0.072368332,-0.07228737,-0.072187657,-0.072065945,-0.071918702,-0.07174215,-0.071532329,-0.07128517,-0.070996588,-0.07066259,-0.070279396,-0.069843571,-0.069352151,-0.068802781,-0.068193829,-0.0675245,-0.066794915,-0.066006173,-0.065160382,-0.064260652,-0.063311064,-0.062316601,-0.061283058,-0.060216924,-0.059125259,-0.058015558,-0.056895612,-0.055773388,-0.054656913,-0.053554182,-0.052473079,-0.051421325,-0.050406438,-0.049435701,-0.048516141,-0.047654501,-0.046857199,-0.046130269,-0.045479285,-0.044909244,-0.044424429,-0.044028244,-0.043723027,-0.043509852,-0.043388326,-0.043356413,-0.043410265,-0.043544123,-0.04375025,-0.044018955,-0.044338683,-0.044696195,-0.045076826,-0.045464827,-0.045843768,-0.046196996,-0.046508127,-0.046761546,-0.046942898,-0.047039544,-0.047040956,-0.046939047,-0.046728407,-0.046406441,-0.045973419,-0.045432413,-0.044789163,-0.044051852,-0.043230826,-0.042338271,-0.041387862,-0.040394401,-0.039373467,-0.038341082,-0.037313404,-0.036306465,-0.035335944,-0.034416972,-0.033563985,-0.0327906,-0.032109517,-0.03153244,-0.03107,-0.030731691,-0.03052579,-0.030459282,-0.030537766,-0.030765359,-0.031144593,-0.031676307,-0.032359555,-0.033191519,-0.034167457,-0.035280676,-0.036522553,-0.037882602,-0.039348598,-0.04090675,-0.042541938,-0.044237989,-0.045978,-0.047744686,-0.049520754,-0.051289271,-0.053034023,-0.054739848,-0.056392937,-0.057981071,-0.059493817,-0.060922649,-0.062261015,-0.063504331,-0.064649929,-0.065696943,-0.066646157,-0.067499819,-0.06826143,-0.06893552,-0.069527423,-0.070043053,-0.070488694,-0.070870809,-0.071195872,-0.07147022,-0.071699938,-0.071890766,-0.072048033,-0.072176613,-0.072280902,-0.072364814,-0.072431791,-0.072484821,-0.072526469,-0.072558915,-0.072583986,-0.072603201,-0.072617806,-0.072628818,-0.07263705,-0.072643155,-0.072647644,-0.072650917,-0.072653284,-0.072654981,-0.072656188,-0.072657038,-0.072657633,-0.072658045,-0.072658328,-0.072658521,-0.072658651,-0.072658739,-0.072658796,-0.072658835,-0.072658859,-0.072658875,-0.072658886,-0.072658892,-0.072658896,-0.072658899,-0.072658901,-0.072658902,-0.072658902,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903],"zorder":8,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903],"zorder":9,"type":"scatter"},{"customdata":[[1.336092e-120],[1.182816e-119],[1.0379151e-118],[9.0275572e-118],[7.7829187e-117],[6.6508714e-116],[5.6335015e-115],[4.7297926e-114],[3.9361314e-113],[3.24684e-112],[2.6547034e-111],[2.1514683e-110],[1.7282943e-109],[1.3761452e-108],[1.086112e-107],[8.4966713e-107],[6.5885042e-106],[5.0639412e-105],[3.8579296e-104],[2.9132903e-103],[2.1806052e-102],[1.6178347e-101],[1.1897483e-100],[8.6724107e-100],[6.2659714e-99],[4.4874623e-98],[3.1854958e-97],[2.2413882e-96],[1.5632231e-95],[1.080659e-94],[7.4049175e-94],[5.0293933e-93],[3.3859053e-92],[2.2594246e-91],[1.4944615e-90],[9.7979554e-90],[6.3672224e-89],[4.101365e-88],[2.6186091e-87],[1.6572071e-86],[1.0395532e-85],[6.4636899e-85],[3.9836224e-84],[2.4335466e-83],[1.4735505e-82],[8.8441126e-82],[5.2614731e-81],[3.1025895e-80],[1.8134481e-79],[1.0506301e-78],[6.0333487e-78],[3.4342419e-77],[1.9376139e-76],[1.0835962e-75],[6.0066399e-75],[3.3003471e-74],[1.7974282e-73],[9.7030301e-73],[5.1919096e-72],[2.753663e-71],[1.4476327e-70],[7.5434477e-70],[3.8962367e-69],[1.9947328e-68],[1.0122506e-67],[5.0916126e-67],[2.5385552e-66],[1.2545322e-65],[6.1452709e-65],[2.9837623e-64],[1.43599e-63],[6.8501896e-63],[3.239051e-62],[1.5180883e-61],[7.0524543e-61],[3.2474883e-60],[1.4822415e-59],[6.7058586e-59],[3.0071419e-58],[1.3366495e-57],[5.8890503e-57],[2.5717996e-56],[1.1132511e-55],[4.7765384e-55],[2.0314101e-54],[8.563398e-54],[3.5781527e-53],[1.4819578e-52],[6.0838298e-52],[2.4756119e-51],[9.9850983e-51],[3.9919626e-50],[1.5819215e-49],[6.2136638e-49],[2.4192179e-48],[9.3361246e-48],[3.5712706e-47],[1.354077e-46],[5.0889536e-46],[1.8957374e-45],[6.99991e-45],[2.5619543e-44],[9.2942629e-44],[3.3421293e-43],[1.1912319e-42],[4.2085662e-42],[1.4737943e-41],[5.1156931e-41],[1.7600988e-40],[6.0025339e-40],[2.0290711e-39],[6.7986868e-39],[2.2579691e-38],[7.4332069e-38],[2.4254916e-37],[7.8449238e-37],[2.51503e-36],[7.9921414e-36],[2.5173801e-35],[7.8595949e-35],[2.4323012e-34],[7.461059e-34],[2.2685566e-33],[6.8369891e-33],[2.0424263e-32],[6.0477561e-32],[1.775042e-31],[5.1640399e-31],[1.489146e-30],[4.2564926e-30],[1.2059617e-29],[3.3867436e-29],[9.4275423e-29],[2.6012505e-28],[7.1143226e-28],[1.9286473e-27],[5.1825102e-27],[1.3803709e-26],[3.6443487e-26],[9.5370218e-26],[2.473857e-25],[6.3607101e-25],[1.6210861e-24],[4.0952111e-24],[1.0254548e-23],[2.5452303e-23],[6.2619306e-23],[1.527075e-22],[3.6913378e-22],[8.8446136e-22],[2.1006126e-21],[4.9452184e-21],[1.1539788e-20],[2.6692141e-20],[6.1198776e-20],[1.390837e-19],[3.1331733e-19],[6.9962898e-19],[1.548556e-18],[3.3975225e-18],[7.3888132e-18],[1.5928122e-17],[3.4035539e-17],[7.2090755e-17],[1.5135826e-16],[3.1500178e-16],[6.4983191e-16],[1.3288349e-15],[2.6935428e-15],[5.4120333e-15],[1.0779081e-14],[2.1280839e-14],[4.1646883e-14],[8.079121e-14],[1.553584e-13],[2.9613898e-13],[5.5956162e-13],[1.0480768e-12],[1.9459537e-12],[3.581522e-12],[6.5343139e-12],[1.1817653e-11],[2.1186689e-11],[3.7652805e-11],[6.6333948e-11],[1.1584589e-10],[2.0055513e-10],[3.4418942e-10],[5.8556369e-10],[9.8756596e-10],[1.6511101e-09],[2.7365704e-09],[4.4963568e-09],[7.3238852e-09],[1.1826388e-08],[1.8931978e-08],[3.0045312e-08],[4.7271367e-08],[7.3733422e-08],[1.1401966e-07],[1.7480297e-07],[2.6569079e-07],[4.0037599e-07],[5.9817595e-07],[8.8606421e-07],[1.3013171e-06],[1.894914e-06],[2.7358459e-06],[3.916492e-06],[5.5592312e-06],[7.8244362e-06],[1.091998e-05],[1.5112331e-05],[2.0739253e-05],[2.8224015e-05],[3.8090923e-05],[5.0981809e-05],[6.7672954e-05],[8.9091757e-05],[0.00011633223],[0.00015066828],[0.00019356351],[0.00024667623],[0.00031185837],[0.00039114684],[0.00048674633],[0.00060100255],[0.00073636543],[0.00089534228],[0.0010804414],[0.0012941074],[0.0015386497],[0.0018161673],[0.0021284719],[0.0024770126],[0.0028628068],[0.0032863786],[0.0037477088],[0.0042461991],[0.0047806512],[0.0053492622],[0.0059496361],[0.00657881],[0.0072332938],[0.0079091205],[0.0086019049],[0.0093069092],[0.010019111],[0.010733276],[0.011444033],[0.012145948],[0.01283361],[0.013501718],[0.014145177],[0.014759211],[0.015339483],[0.015882235],[0.016384437],[0.01684395],[0.01725969],[0.017631799],[0.017961791],[0.018252688],[0.01850911],[0.018737326],[0.018945239],[0.019142301],[0.019339352],[0.019548375],[0.019782171],[0.020053956],[0.02037689],[0.020763563],[0.021225449],[0.021772346],[0.022411859],[0.023148912],[0.023985356],[0.024919671],[0.025946808],[0.027058157],[0.028241685],[0.029482221],[0.030761888],[0.032060669],[0.033357084],[0.034628943],[0.035854152],[0.037011513],[0.038081506],[0.039046994],[0.039893827],[0.040611321],[0.041192575],[0.04163463],[0.041938455],[0.04210877],[0.042153713],[0.042084365],[0.041914181],[0.041658321],[0.041332947],[0.040954492],[0.040538948],[0.040101198],[0.039654421],[0.039209589],[0.038775073],[0.038356379],[0.037956008],[0.037573457],[0.037205342],[0.036845644],[0.036486065],[0.036116471],[0.035725406],[0.03530066],[0.034829851],[0.034301019],[0.033703184],[0.033026866],[0.032264533],[0.031410962],[0.030463507],[0.029422252],[0.028290061],[0.027072505],[0.025777689],[0.024415987],[0.022999683],[0.021542559],[0.020059434],[0.018565678],[0.017076728],[0.01560762],[0.01417256],[0.012784548],[0.011455073],[0.010193872],[0.0090087822],[0.0079056626],[0.0068883952],[0.0059589559],[0.0051175437],[0.0043627584],[0.0036918137],[0.0031007724],[0.0025847918],[0.0021383675],[0.0017555656],[0.0014302365],[0.0011562029],[0.00092741904],[0.0007380999],[0.00058281921],[0.00045657844],[0.00035484927],[0.00027359256],[0.00020925806],[0.00015876837],[0.00011949141],[8.9204739e-05],[6.6055032e-05],[4.8515376e-05],[3.5342535e-05],[2.5535864e-05],[1.8299035e-05],[1.3005327e-05],[9.1668658e-06],[6.4079398e-06],[4.4422781e-06],[3.0540419e-06],[2.0821818e-06],[1.4077628e-06],[9.4384486e-07],[6.2751679e-07],[4.1371125e-07],[2.7046458e-07],[1.7533098e-07],[1.1270325e-07],[7.1835356e-08],[4.5400312e-08],[2.8450712e-08],[1.7678128e-08],[1.0891395e-08],[6.6531954e-09],[4.0296957e-09],[2.4199432e-09],[1.4408705e-09],[8.5060451e-10],[4.9786262e-10],[2.8891282e-10],[1.6622487e-10],[9.4818626e-11],[5.3623662e-11],[3.0066386e-11],[1.6713402e-11],[9.210948e-12],[5.0326506e-12],[2.726085e-12]],"fill":"tonexty","fillcolor":"rgb(255, 69, 0)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"May","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658902,-0.072658901,-0.0726589,-0.072658899,-0.072658896,-0.072658891,-0.072658884,-0.072658873,-0.072658856,-0.072658829,-0.072658789,-0.072658728,-0.072658637,-0.072658503,-0.072658305,-0.072658017,-0.072657602,-0.072657008,-0.072656167,-0.072654987,-0.072653344,-0.072651079,-0.072647983,-0.072643791,-0.072638164,-0.072630679,-0.072620812,-0.072607921,-0.07259123,-0.072569811,-0.072542571,-0.072508235,-0.07246534,-0.072412227,-0.072347045,-0.072267756,-0.072172157,-0.072057901,-0.071922538,-0.071763561,-0.071578462,-0.071364796,-0.071120253,-0.070842736,-0.070530431,-0.070181891,-0.069796096,-0.069372524,-0.068911194,-0.068412704,-0.067878252,-0.067309641,-0.066709267,-0.066080093,-0.065425609,-0.064749783,-0.064056998,-0.063351994,-0.062639792,-0.061925627,-0.06121487,-0.060512955,-0.059825293,-0.059157185,-0.058513726,-0.057899692,-0.05731942,-0.056776668,-0.056274466,-0.055814954,-0.055399213,-0.055027104,-0.054697112,-0.054406215,-0.054149793,-0.053921577,-0.053713664,-0.053516602,-0.053319551,-0.053110528,-0.052876732,-0.052604948,-0.052282014,-0.05189534,-0.051433455,-0.050886557,-0.050247044,-0.049509991,-0.048673548,-0.047739232,-0.046712095,-0.045600747,-0.044417218,-0.043176682,-0.041897015,-0.040598234,-0.03930182,-0.03802996,-0.036804751,-0.03564739,-0.034577397,-0.033611909,-0.032765076,-0.032047582,-0.031466328,-0.031024274,-0.030720448,-0.030550133,-0.030505191,-0.030574538,-0.030744723,-0.031000582,-0.031325956,-0.031704411,-0.032119955,-0.032557705,-0.033004482,-0.033449314,-0.03388383,-0.034302525,-0.034702895,-0.035085446,-0.035453561,-0.035813259,-0.036172838,-0.036542432,-0.036933497,-0.037358244,-0.037829052,-0.038357884,-0.038955719,-0.039632037,-0.04039437,-0.041247941,-0.042195397,-0.043236651,-0.044368842,-0.045586398,-0.046881214,-0.048242916,-0.049659221,-0.051116344,-0.052599469,-0.054093225,-0.055582175,-0.057051283,-0.058486343,-0.059874355,-0.06120383,-0.062465031,-0.063650121,-0.064753241,-0.065770508,-0.066699947,-0.067541359,-0.068296145,-0.068967089,-0.069558131,-0.070074111,-0.070520536,-0.070903338,-0.071228667,-0.0715027,-0.071731484,-0.071920803,-0.072076084,-0.072202325,-0.072304054,-0.072385311,-0.072449645,-0.072500135,-0.072539412,-0.072569698,-0.072592848,-0.072610388,-0.072623561,-0.072633367,-0.072640604,-0.072645898,-0.072649736,-0.072652495,-0.072654461,-0.072655849,-0.072656821,-0.072657495,-0.072657959,-0.072658276,-0.072658489,-0.072658633,-0.072658728,-0.07265879,-0.072658831,-0.072658858,-0.072658875,-0.072658885,-0.072658892,-0.072658896,-0.072658899,-0.072658901,-0.072658902,-0.072658902,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903],"zorder":9,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629],"zorder":10,"type":"scatter"},{"customdata":[[2.92535e-101],[2.1459726e-100],[1.5603942e-99],[1.1246264e-98],[8.0342629e-98],[5.6891528e-97],[3.9931254e-96],[2.7780631e-95],[1.9157334e-94],[1.3094588e-93],[8.8718135e-93],[5.9579488e-92],[3.965929e-91],[2.6167179e-90],[1.7113257e-89],[1.1093594e-88],[7.1281302e-88],[4.5398636e-87],[2.8659841e-86],[1.7933645e-85],[1.1123133e-84],[6.8383217e-84],[4.1671172e-83],[2.5170144e-82],[1.5069522e-81],[8.9428732e-81],[5.2603963e-80],[3.0670698e-79],[1.7725262e-78],[1.0153726e-77],[5.7653018e-77],[3.244759e-76],[1.810117e-75],[1.0009091e-74],[5.4858819e-74],[2.9803143e-73],[1.604876e-72],[8.5661303e-72],[4.5320187e-71],[2.3766351e-70],[1.2353702e-69],[6.3649579e-69],[3.2505567e-68],[1.6454465e-67],[8.2560743e-67],[4.1060782e-66],[2.0241591e-65],[9.8906736e-65],[4.7903903e-64],[2.2997452e-63],[1.0943402e-62],[5.1616529e-62],[2.4131762e-61],[1.1182865e-60],[5.136661e-60],[2.3386894e-59],[1.0554265e-58],[4.7211439e-58],[2.0932943e-57],[9.1997734e-57],[4.0076315e-56],[1.7304627e-55],[7.4062862e-55],[3.1419737e-54],[1.3211995e-53],[5.5067843e-53],[2.2750531e-52],[9.3164144e-52],[3.7815502e-51],[1.5214397e-50],[6.0674109e-50],[2.3983684e-49],[9.3970636e-49],[3.6494906e-48],[1.40487e-47],[5.3604817e-47],[2.0273807e-46],[7.6002977e-46],[2.8241626e-45],[1.0401898e-44],[3.7975134e-44],[1.3741996e-43],[4.9290604e-43],[1.7524364e-42],[6.1756714e-42],[2.1571975e-41],[7.4689482e-41],[2.5632608e-40],[8.719467e-40],[2.9400241e-39],[9.8259751e-39],[3.2550992e-38],[1.0688496e-37],[3.4788268e-37],[1.1223099e-36],[3.5888609e-36],[1.1375337e-35],[3.5738448e-35],[1.1129379e-34],[3.4353423e-34],[1.0510731e-33],[3.1875692e-33],[9.5818673e-33],[2.8549894e-32],[8.4318463e-32],[2.4683383e-31],[7.1622673e-31],[2.0599667e-30],[5.8726443e-30],[1.6594763e-29],[4.6480654e-29],[1.2904384e-28],[3.5511266e-28],[9.6863221e-28],[2.6188795e-27],[7.0183658e-27],[1.8643195e-26],[4.9087238e-26],[1.2810932e-25],[3.3140325e-25],[8.4976083e-25],[2.1597355e-24],[5.4408704e-24],[1.3586267e-23],[3.3627598e-23],[8.2500303e-23],[2.0062231e-22],[4.8357846e-22],[1.1553637e-21],[2.7361161e-21],[6.4226525e-21],[1.4943711e-20],[3.4464076e-20],[7.878418e-20],[1.7851538e-19],[4.0093735e-19],[8.9256883e-19],[1.9695694e-18],[4.3078971e-18],[9.3395046e-18],[2.006998e-17],[4.2749859e-17],[9.0258307e-17],[1.8888807e-16],[3.9182019e-16],[8.0562728e-16],[1.6419001e-15],[3.3168408e-15],[6.6415286e-15],[1.3181874e-14],[2.5932963e-14],[5.0570034e-14],[9.7746383e-14],[1.8727283e-13],[3.5564422e-13],[6.6945899e-13],[1.2491075e-12],[2.3101687e-12],[4.2350254e-12],[7.6955083e-12],[1.3860794e-11],[2.4746231e-11],[4.3792608e-11],[7.6818198e-11],[1.335672e-10],[2.3020188e-10],[3.932713e-10],[6.6596462e-10],[1.1178585e-09],[1.8599476e-09],[3.067569e-09],[5.0149831e-09],[8.126959e-09],[1.3054861e-08],[2.0787606e-08],[3.2811598e-08],[5.133859e-08],[7.9626468e-08],[1.2242543e-07],[1.8659093e-07],[2.8191537e-07],[4.2224193e-07],[6.2693715e-07],[9.2281146e-07],[1.3465897e-06],[1.948044e-06],[2.7939075e-06],[3.972691e-06],[5.6005124e-06],[7.8280379e-06],[1.0848596e-05],[1.4907484e-05],[2.0312426e-05],[2.7445049e-05],[3.6773178e-05],[4.8863614e-05],[6.4394971e-05],[8.4170042e-05],[0.00010912705],[0.00014034913],[0.00017907121],[0.00022668378],[0.00028473268],[0.00035491455],[0.00043906768],[0.00053915799],[0.00065726053],[0.0007955369],[0.00095620922],[0.0011415317],[0.0013537605],[0.0015951235],[0.0018677896],[0.0021738395],[0.0025152366],[0.0028937988],[0.0033111692],[0.003768786],[0.0042678476],[0.0048092744],[0.0053936624],[0.0060212315],[0.0066917658],[0.0074045494],[0.0081582996],[0.0089511027],[0.0097803574],[0.010642735],[0.01153416],[0.012449827],[0.013384248],[0.014331347],[0.015284603],[0.016237231],[0.017182412],[0.01811355],[0.019024556],[0.019910135],[0.020766066],[0.021589452],[0.022378924],[0.023134782],[0.02385906],[0.024555499],[0.025229436],[0.0258876],[0.026537828],[0.027188706],[0.027849168],[0.028528057],[0.029233689],[0.029973436],[0.030753343],[0.031577829],[0.032449452],[0.033368775],[0.034334332],[0.035342682],[0.036388556],[0.037465075],[0.038564017],[0.039676128],[0.040791428],[0.041899515],[0.042989828],[0.044051866],[0.045075349],[0.046050309],[0.046967126],[0.047816509],[0.048589437],[0.049277073],[0.049870686],[0.050361571],[0.050741023],[0.051000348],[0.051130937],[0.051124408],[0.050972812],[0.050668895],[0.050206403],[0.049580424],[0.048787725],[0.047827087],[0.046699589],[0.045408848],[0.043961168],[0.042365612],[0.04063396],[0.038780573],[0.036822149],[0.034777391],[0.032666583],[0.030511113],[0.028332942],[0.026154061],[0.023995942],[0.021879016],[0.019822203],[0.017842494],[0.015954624],[0.014170829],[0.012500695],[0.01095111],[0.0095262977],[0.0082279419],[0.0070553799],[0.0060058528],[0.0050747997],[0.0042561774],[0.0035427909],[0.0029266201],[0.0023991308],[0.0019515581],[0.0015751565],[0.0012614116],[0.0010022091],[0.00078996368],[0.00061770803],[0.00047914617],[0.00036867516],[0.0002813807],[0.0002130119],[0.00015994035],[0.00011910863],[8.7972449e-05],[6.4440146e-05],[4.6812471e-05],[3.3724955e-05],[2.4094405e-05],[1.7070526e-05],[1.1993195e-05],[8.3554962e-06],[5.7723337e-06],[3.9542621e-06],[2.6860108e-06],[1.8091402e-06],[1.2082397e-06],[8.0010135e-07],[5.2534291e-07],[3.4201251e-07],[2.2076889e-07],[1.4129487e-07],[8.9660999e-08],[5.6411252e-08],[3.5189201e-08],[2.1763627e-08],[1.3345297e-08],[8.1132978e-09],[4.8903053e-09],[2.9224111e-09],[1.7314539e-09],[1.0170503e-09],[5.9228895e-10],[3.4196552e-10],[1.9574311e-10],[1.1108211e-10],[6.2496174e-11],[3.4858811e-11],[1.9276129e-11],[1.0567531e-11],[5.7434407e-12],[3.0946681e-12],[1.6530953e-12],[8.7543138e-13],[4.5960567e-13],[2.3921387e-13],[1.2343085e-13],[6.3138786e-14],[3.2018622e-14],[1.6096881e-14],[8.022549e-15],[3.9638153e-15],[1.9415283e-15],[9.4276233e-16],[4.538244e-16],[2.1657062e-16],[1.0245573e-16],[4.8050405e-17],[2.2339883e-17],[1.0296434e-17],[4.7045044e-18],[2.1308905e-18],[9.5681431e-19],[4.2590482e-19],[1.8793814e-19],[8.2211744e-20],[3.5650739e-20],[1.532562e-20],[6.5310291e-21],[2.7590423e-21],[1.1554402e-21],[4.7967614e-22],[1.9740563e-22],[8.0534306e-23],[3.256953e-23],[1.3057213e-23],[5.1891609e-24],[2.0443286e-24],[7.9838144e-25]],"fill":"tonexty","fillcolor":"rgb(0, 191, 255)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"June","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823628,-0.090823628,-0.090823627,-0.090823626,-0.090823624,-0.090823621,-0.090823616,-0.090823608,-0.090823596,-0.090823578,-0.090823549,-0.090823506,-0.090823442,-0.090823347,-0.090823207,-0.090823002,-0.090822706,-0.090822282,-0.090821681,-0.090820835,-0.090819656,-0.090818028,-0.090815801,-0.09081278,-0.090808721,-0.090803316,-0.090796184,-0.090786856,-0.090774765,-0.090759234,-0.090739459,-0.090714502,-0.09068328,-0.090644558,-0.090596945,-0.090538896,-0.090468714,-0.090384561,-0.090284471,-0.090166368,-0.090028092,-0.08986742,-0.089682097,-0.089469868,-0.089228505,-0.088955839,-0.088649789,-0.088308392,-0.08792983,-0.08751246,-0.087054843,-0.086555781,-0.086014354,-0.085429966,-0.084802397,-0.084131863,-0.08341908,-0.082665329,-0.081872526,-0.081043272,-0.080180894,-0.079289469,-0.078373802,-0.077439381,-0.076492282,-0.075539026,-0.074586398,-0.073641217,-0.072710079,-0.071799073,-0.070913494,-0.070057563,-0.069234177,-0.068444705,-0.067688846,-0.066964569,-0.06626813,-0.065594193,-0.064936029,-0.064285801,-0.063634923,-0.062974461,-0.062295572,-0.06158994,-0.060850193,-0.060070286,-0.0592458,-0.058374177,-0.057454854,-0.056489297,-0.055480947,-0.054435073,-0.053358554,-0.052259612,-0.051147501,-0.050032201,-0.048924114,-0.047833801,-0.046771763,-0.04574828,-0.04477332,-0.043856503,-0.04300712,-0.042234192,-0.041546555,-0.040952943,-0.040462058,-0.040082605,-0.039823281,-0.039692692,-0.039699221,-0.039850817,-0.040154734,-0.040617226,-0.041243205,-0.042035904,-0.042996542,-0.04412404,-0.045414781,-0.046862461,-0.048458017,-0.050189669,-0.052043056,-0.054001479,-0.056046238,-0.058157046,-0.060312516,-0.062490687,-0.064669568,-0.066827687,-0.068944612,-0.071001426,-0.072981135,-0.074869005,-0.0766528,-0.078322934,-0.079872519,-0.081297331,-0.082595687,-0.083768249,-0.084817776,-0.085748829,-0.086567452,-0.087280838,-0.087897009,-0.088424498,-0.088872071,-0.089248472,-0.089562217,-0.08982142,-0.090033665,-0.090205921,-0.090344483,-0.090454954,-0.090542248,-0.090610617,-0.090663689,-0.09070452,-0.090735656,-0.090759189,-0.090776816,-0.090789904,-0.090799534,-0.090806558,-0.090811636,-0.090815273,-0.090817857,-0.090819675,-0.090820943,-0.09082182,-0.090822421,-0.090822829,-0.090823104,-0.090823287,-0.090823408,-0.090823488,-0.090823539,-0.090823572,-0.090823594,-0.090823607,-0.090823616,-0.090823621,-0.090823624,-0.090823626,-0.090823627,-0.090823628,-0.090823628,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629],"zorder":10,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629],"zorder":11,"type":"scatter"},{"customdata":[[7.9597455e-186],[1.2097021e-184],[1.8223069e-183],[2.720999e-182],[4.0271616e-181],[5.9079054e-180],[8.5907643e-179],[1.2382088e-177],[1.7689671e-176],[2.5050099e-175],[3.5161138e-174],[4.8919297e-173],[6.7462323e-172],[9.2215978e-171],[1.2494384e-169],[1.6779822e-168],[2.2336938e-167],[2.9472959e-166],[3.8546738e-165],[4.9970688e-164],[6.4210615e-163],[8.1782829e-162],[1.032479e-160],[1.2920048e-159],[1.6025472e-158],[1.97025e-157],[2.4010193e-156],[2.9002388e-155],[3.4724474e-154],[4.1209883e-153],[4.847646e-152],[5.6522872e-151],[6.5325288e-150],[7.4834568e-149],[8.4974179e-148],[9.5639104e-147],[1.0669592e-145],[1.1798423e-144],[1.2931946e-143],[1.4049718e-142],[1.5129868e-141],[1.6149775e-140],[1.7086834e-139],[1.7919279e-138],[1.8627016e-137],[1.9192423e-136],[1.9601087e-135],[1.9842405e-134],[1.9910045e-133],[1.9802225e-132],[1.9521786e-131],[1.9076069e-130],[1.8476599e-129],[1.7738586e-128],[1.6880284e-127],[1.5922245e-126],[1.4886502e-125],[1.3795734e-124],[1.2672456e-123],[1.1538266e-122],[1.0413197e-121],[9.3151847e-121],[8.2596689e-120],[7.2593478e-119],[6.3240658e-118],[5.4608337e-117],[4.6739636e-116],[3.965295e-115],[3.3344905e-114],[2.7793757e-113],[2.2963011e-112],[1.8805038e-111],[1.5264529e-110],[1.2281641e-109],[9.7947461e-109],[7.7427239e-108],[6.0667788e-107],[4.7117947e-106],[3.6272572e-105],[2.7677964e-104],[2.0934074e-103],[1.5694126e-102],[1.1662304e-101],[8.5900433e-101],[6.2714817e-100],[4.5384627e-99],[3.2554511e-98],[2.3146077e-97],[1.6312007e-96],[1.1394656e-95],[7.8896699e-95],[5.414773e-94],[3.6835407e-93],[2.4837879e-92],[1.6600735e-91],[1.0997753e-90],[7.2217821e-90],[4.7005493e-89],[3.0326106e-88],[1.9393156e-87],[1.2292611e-86],[7.7233117e-86],[4.8097977e-85],[2.969025e-84],[1.8166226e-83],[1.1017406e-82],[6.6230465e-82],[3.9463905e-81],[2.330806e-80],[1.3645077e-79],[7.9178933e-79],[4.5541477e-78],[2.5963808e-77],[1.467214e-76],[8.2183065e-76],[4.5628377e-75],[2.5110277e-74],[1.36972e-73],[7.4058666e-73],[3.9690245e-72],[2.108412e-71],[1.1101738e-70],[5.7941575e-70],[2.9974601e-69],[1.5370229e-68],[7.8121587e-68],[3.9357326e-67],[1.9653682e-66],[9.7280561e-66],[4.7727866e-65],[2.3210354e-64],[1.1188074e-63],[5.3455539e-63],[2.531593e-62],[1.1883897e-61],[5.5295231e-61],[2.5502355e-60],[1.165834e-59],[5.2827121e-59],[2.3726899e-58],[1.0563038e-57],[4.6612297e-57],[2.0388064e-56],[8.8392474e-56],[3.7985549e-55],[1.6180254e-54],[6.8315002e-54],[2.858977e-53],[1.1859573e-52],[4.8763095e-52],[1.9873635e-51],[8.0283662e-51],[3.2147031e-50],[1.2759051e-49],[5.0194917e-49],[1.957334e-48],[7.565436e-48],[2.8984568e-47],[1.1006862e-46],[4.1430873e-46],[1.5457829e-45],[5.716586e-45],[2.0955057e-44],[7.6138587e-44],[2.7421086e-43],[9.7887751e-43],[3.4636653e-42],[1.2148073e-41],[4.2232104e-41],[1.4552645e-40],[4.9705572e-40],[1.6827985e-39],[5.6470686e-39],[1.8783561e-38],[6.192938e-38],[2.0238554e-37],[6.5558071e-37],[2.104926e-36],[6.6990228e-36],[2.1132461e-35],[6.6077362e-35],[2.0479499e-34],[6.2914393e-34],[1.915776e-33],[5.7823388e-33],[1.7299216e-32],[5.1299534e-32],[1.5078723e-31],[4.3931888e-31],[1.2687012e-30],[3.6316424e-30],[1.0304123e-29],[2.8978995e-29],[8.0782986e-29],[2.232137e-28],[6.113448e-28],[1.6596482e-27],[4.4659142e-27],[1.1911577e-26],[3.1491459e-26],[8.2524137e-26],[2.1435517e-25],[5.5188901e-25],[1.4084274e-24],[3.5627238e-24],[8.9329509e-24],[2.220102e-23],[5.4691045e-23],[1.3354417e-22],[3.2322072e-22],[7.7542381e-22],[1.843932e-21],[4.3462698e-21],[1.0154408e-20],[2.3515755e-20],[5.3979617e-20],[1.2281953e-19],[2.7699512e-19],[6.1921869e-19],[1.372093e-18],[3.0136368e-18],[6.5609459e-18],[1.4158281e-17],[3.0284717e-17],[6.4210471e-17],[1.3494536e-16],[2.8111261e-16],[5.804616e-16],[1.188059e-15],[2.4103189e-15],[4.8471187e-15],[9.6619807e-15],[1.9090743e-14],[3.7389916e-14],[7.2587542e-14],[1.3968398e-13],[2.6644597e-13],[5.0379155e-13],[9.4421975e-13],[1.754192e-12],[3.2304614e-12],[5.8970793e-12],[1.067078e-11],[1.9140093e-11],[3.4031626e-11],[5.9981101e-11],[1.0479527e-10],[1.8149604e-10],[3.1159733e-10],[5.3030364e-10],[8.9467067e-10],[1.4962814e-09],[2.4807263e-09],[4.0772222e-09],[6.6431592e-09],[1.0730375e-08],[1.7182675e-08],[2.7277745e-08],[4.2931361e-08],[6.6987943e-08],[1.0362925e-07],[1.5894262e-07],[2.4170191e-07],[3.6442791e-07],[5.4481125e-07],[8.0759826e-07],[1.1870597e-06],[1.730182e-06],[2.5007388e-06],[3.5844195e-06],[5.0952008e-06],[7.183155e-06],[1.0043885e-05],[1.392976e-05],[1.9163093e-05],[2.6151357e-05],[3.540448e-05],[4.7554152e-05],[6.3375021e-05],[8.3807496e-05],[0.00010998181],[0.00014324284],[0.00018517509],[0.00023762716],[0.00030273499],[0.00038294298],[0.00048102241],[0.00060008627],[0.00074359989],[0.00091538689],[0.0011196299],[0.0013608656],[0.001643974],[0.0019741615],[0.0023569366],[0.002798079],[0.0033036],[0.0038796926],[0.0045326704],[0.0052688933],[0.006094675],[0.0070161729],[0.0080392536],[0.0091693349],[0.010411199],[0.011768777],[0.013244909],[0.014841074],[0.016557104],[0.018390885],[0.02033806],[0.022391747],[0.024542289],[0.026777057],[0.029080332],[0.031433278],[0.033814039],[0.036197963],[0.038557985],[0.040865153],[0.043089306],[0.045199901],[0.047166939],[0.048961989],[0.050559239],[0.051936546],[0.053076412],[0.053966839],[0.054601999],[0.054982674],[0.05511642],[0.055017432],[0.054706093],[0.05420822],[0.053554024],[0.052776841],[0.051911677],[0.050993659],[0.050056453],[0.049130751],[0.048242905],[0.047413777],[0.046657877],[0.045982833],[0.045389221],[0.044870756],[0.044414837],[0.044003411],[0.043614094],[0.043221494],[0.042798649],[0.042318509],[0.041755375],[0.041086224],[0.040291849],[0.039357772],[0.038274877],[0.037039764],[0.035654796],[0.034127884],[0.032472005],[0.030704517],[0.028846315],[0.026920874],[0.02495324],[0.022969028],[0.020993465],[0.019050531],[0.017162226],[0.015347976],[0.013624217],[0.012004126],[0.010497523],[0.0091109063],[0.0078476229],[0.0067081293],[0.0056903348],[0.0047899917],[0.0040011108],[0.0033163805],[0.0027275687],[0.0022258951],[0.0018023612],[0.0014480308],[0.0011542598],[0.00091287285],[0.00071629057],[0.00055761159],[0.00043065495],[0.00032996945],[0.00025081661],[0.00018913365],[0.00014148259],[0.00010499065],[7.7286494e-05],[5.6435681e-05],[4.0878326e-05],[2.9370655e-05],[2.0931842e-05],[1.4796764e-05]],"fill":"tonexty","fillcolor":"rgb(255, 69, 0)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"June","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823628,-0.090823628,-0.090823627,-0.090823626,-0.090823625,-0.090823622,-0.090823618,-0.090823612,-0.090823602,-0.090823586,-0.090823562,-0.090823525,-0.09082347,-0.090823387,-0.090823264,-0.090823084,-0.090822821,-0.090822442,-0.090821899,-0.090821128,-0.090820044,-0.090818534,-0.090816446,-0.090813585,-0.090809699,-0.090804466,-0.090797478,-0.090788224,-0.090776075,-0.090760254,-0.090739821,-0.090713647,-0.090680386,-0.090638454,-0.090586002,-0.090520894,-0.090440686,-0.090342606,-0.090223543,-0.090080029,-0.089908242,-0.089703999,-0.089462763,-0.089179655,-0.088849467,-0.088466692,-0.08802555,-0.087520029,-0.086943936,-0.086290958,-0.085554736,-0.084728954,-0.083807456,-0.082784375,-0.081654294,-0.08041243,-0.079054852,-0.07757872,-0.075982555,-0.074266525,-0.072432744,-0.070485569,-0.068431882,-0.06628134,-0.064046572,-0.061743297,-0.059390351,-0.05700959,-0.054625666,-0.052265643,-0.049958476,-0.047734323,-0.045623728,-0.04365669,-0.04186164,-0.04026439,-0.038887083,-0.037747217,-0.03685679,-0.03622163,-0.035840955,-0.035707209,-0.035806197,-0.036117536,-0.036615409,-0.037269605,-0.038046788,-0.038911952,-0.039829969,-0.040767176,-0.041692878,-0.042580724,-0.043409852,-0.044165752,-0.044840796,-0.045434407,-0.045952873,-0.046408792,-0.046820218,-0.047209535,-0.047602134,-0.048024979,-0.04850512,-0.049068254,-0.049737405,-0.05053178,-0.051465857,-0.052548752,-0.053783865,-0.055168833,-0.056695745,-0.058351624,-0.060119112,-0.061977314,-0.063902755,-0.065870389,-0.067854601,-0.069830164,-0.071773097,-0.073661403,-0.075475653,-0.077199412,-0.078819503,-0.080326106,-0.081712723,-0.082976006,-0.0841155,-0.085133294,-0.086033637,-0.086822518,-0.087507248,-0.08809606,-0.088597734,-0.089021268,-0.089375598,-0.089669369,-0.089910756,-0.090107338,-0.090266017,-0.090392974,-0.090493659,-0.090572812,-0.090634495,-0.090682146,-0.090718638,-0.090746342,-0.090767193,-0.090782751,-0.090794258,-0.090802697,-0.090808832],"zorder":11,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835],"zorder":12,"type":"scatter"},{"customdata":[[1.3438253e-120],[1.1898247e-119],[1.0442111e-118],[9.0836191e-118],[7.8323986e-117],[6.694158e-116],[5.671037e-115],[4.7620548e-114],[3.9636172e-113],[3.2700507e-112],[2.6741315e-111],[2.1675871e-110],[1.74155e-109],[1.3869504e-108],[1.0948424e-107],[8.5665893e-107],[6.6440065e-106],[5.1076125e-105],[3.8919897e-104],[2.9396207e-103],[2.2007811e-102],[1.6331587e-101],[1.2012848e-100],[8.7584978e-100],[6.3296461e-99],[4.5341452e-98],[3.2194203e-97],[2.2658243e-96],[1.5806698e-95],[1.0930059e-94],[7.4915268e-94],[5.0896126e-93],[3.4274074e-92],[2.2877755e-91],[1.5136582e-90],[9.9267951e-90],[6.4529333e-89],[4.1578829e-88],[2.6555492e-87],[1.6811387e-86],[1.054921e-85],[6.5615066e-85],[4.0453355e-84],[2.4721393e-83],[1.4974724e-82],[8.9910891e-82],[5.3509816e-81],[3.1566204e-80],[1.8457766e-79],[1.0698031e-78],[6.1460571e-78],[3.4999149e-77],[1.9755436e-76],[1.1053099e-75],[6.1298519e-75],[3.3696472e-74],[1.8360629e-73],[9.9165232e-73],[5.3088468e-72],[2.8171499e-71],[1.4817974e-70],[7.7256838e-70],[3.992587e-69],[2.0452262e-68],[1.0384794e-67],[5.2266594e-67],[2.6074764e-66],[1.2893968e-65],[6.3200851e-65],[3.0706448e-64],[1.4787905e-63],[7.0591815e-63],[3.3402023e-62],[1.5666144e-61],[7.2832042e-61],[3.3562483e-60],[1.5330527e-59],[6.9411531e-59],[3.1151423e-58],[1.3857857e-57],[6.1106346e-57],[2.6708459e-56],[1.1571344e-55],[4.9692564e-55],[2.1152994e-54],[8.9253515e-54],[3.7329489e-53],[1.5475768e-52],[6.3595445e-52],[2.5904409e-51],[1.0459127e-50],[4.1859258e-50],[1.6605889e-49],[6.5299149e-49],[2.5452352e-48],[9.8338493e-48],[3.7661245e-47],[1.4296889e-46],[5.3797788e-46],[2.0066127e-45],[7.4188947e-45],[2.7188901e-44],[9.8769119e-44],[3.5565429e-43],[1.2694411e-42],[4.4913302e-42],[1.5751272e-41],[5.475639e-41],[1.8868302e-40],[6.4448077e-40],[2.1820594e-39],[7.323235e-39],[2.4362367e-38],[8.0337152e-38],[2.6259967e-37],[8.5085012e-37],[2.7327093e-36],[8.6999281e-36],[2.7454915e-35],[8.5882983e-35],[2.6630364e-34],[8.1852216e-34],[2.4938338e-33],[7.5316255e-33],[2.2547296e-32],[6.6909094e-32],[1.9681636e-31],[5.7388259e-31],[1.6587124e-30],[4.7523215e-30],[1.3496701e-29],[3.7995922e-29],[1.0603136e-28],[2.9330548e-28],[8.0425721e-28],[2.1860453e-27],[5.8899727e-27],[1.5731053e-26],[4.1647911e-26],[1.0929997e-25],[2.8434057e-25],[7.3324661e-25],[1.8743655e-24],[4.7495454e-24],[1.1930094e-23],[2.9705055e-23],[7.3318243e-23],[1.793864e-22],[4.3507423e-22],[1.046006e-21],[2.4928866e-21],[5.8893729e-21],[1.3792227e-20],[3.2018365e-20],[7.3682437e-20],[1.6808522e-19],[3.8009878e-19],[8.5205078e-19],[1.8933776e-18],[4.1707334e-18],[9.1073449e-18],[1.9714058e-17],[4.2302485e-17],[8.9983341e-17],[1.8974288e-16],[3.9662199e-16],[8.2185807e-16],[1.6882097e-15],[3.4376871e-15],[6.93933e-15],[1.3886118e-14],[2.7545912e-14],[5.4168576e-14],[1.0559724e-13],[2.0406736e-13],[3.9094116e-13],[7.424499e-13],[1.3977898e-12],[2.608775e-12],[4.8267256e-12],[8.8530102e-12],[1.6097296e-11],[2.9016149e-11],[5.1850484e-11],[9.1853022e-11],[1.6131067e-10],[2.808428e-10],[4.8472518e-10],[8.2939544e-10],[1.4068999e-09],[2.3659311e-09],[3.9443938e-09],[6.5192817e-09],[1.0682249e-08],[1.7352876e-08],[2.7946564e-08],[4.4620682e-08],[7.0631364e-08],[1.1084486e-07],[1.7246195e-07],[2.6603221e-07],[4.068572e-07],[6.1690832e-07],[9.2741556e-07],[1.3823178e-06],[2.0428017e-06],[2.9931933e-06],[4.3485007e-06],[6.2639316e-06],[8.9467279e-06],[1.2670652e-05],[1.7793429e-05],[2.4777394e-05],[3.4213466e-05],[4.6848449e-05],[6.3615423e-05],[8.5666751e-05],[0.00011440892],[0.00015153806],[0.00019907472],[0.00025939603],[0.00033526305],[0.00042984105],[0.00054671022],[0.00068986442],[0.00086369572],[0.0010729633],[0.0013227458],[0.0016183765],[0.0019653637],[0.0023692972],[0.0028357452],[0.0033701456],[0.0039776975],[0.0046632579],[0.0054312491],[0.006285582],[0.007229598],[0.0082660312],[0.0093969902],[0.010623955],[0.011947787],[0.01336873],[0.014886422],[0.016499865],[0.018207385],[0.020006546],[0.021894025],[0.023865446],[0.025915181],[0.028036125],[0.030219466],[0.03245447],[0.034728309],[0.037025955],[0.039330171],[0.041621615],[0.043879081],[0.046079869],[0.0482003],[0.050216344],[0.052104338],[0.053841765],[0.055408041],[0.056785263],[0.057958879],[0.058918209],[0.059656807],[0.060172621],[0.060467931],[0.060549086],[0.060426035],[0.060111699],[0.059621215],[0.058971112],[0.058178469],[0.057260115],[0.056231918],[0.055108202],[0.053901338],[0.052621504],[0.051276637],[0.049872554],[0.048413227],[0.04690117],[0.045337908],[0.043724486],[0.042061976],[0.040351931],[0.03859679],[0.036800168],[0.034967053],[0.033103881],[0.03121851],[0.029320087],[0.027418837],[0.025525788],[0.02365245],[0.021810479],[0.020011331],[0.018265945],[0.016584444],[0.014975888],[0.013448072],[0.012007384],[0.010658709],[0.0094053941],[0.0082492654],[0.007190683],[0.0062286402],[0.0053608925],[0.0045841104],[0.0038940486],[0.0032857243],[0.002753597],[0.002291745],[0.001894031],[0.0015542548],[0.0012662878],[0.0010241882],[0.00082229533],[0.00065530203],[0.00051830732],[0.00040684904],[0.00031691947],[0.00024496569],[0.00018787755],[0.0001429657],[0.00010793236],[8.0837207e-05],[6.0060506e-05],[4.4265396e-05],[3.2360726e-05],[2.346566e-05],[1.6876839e-05],[1.2038643e-05],[8.5168184e-06],[5.975537e-06],[4.157798e-06],[2.8689616e-06],[1.9631336e-06],[1.3320738e-06],[8.9629365e-07],[5.9800782e-07],[3.956302e-07],[2.5953153e-07],[1.688113e-07],[1.0887212e-07],[6.9619224e-08],[4.414006e-08],[2.7747397e-08],[1.7293855e-08],[1.0686529e-08],[6.5471474e-09],[3.9767999e-09],[2.394845e-09],[1.4298129e-09],[8.4632173e-10],[4.9664123e-10],[2.8893342e-10],[1.6664697e-10],[9.5288118e-11],[5.4015575e-11],[3.0355372e-11],[1.6911646e-11],[9.3404465e-12],[5.1142097e-12],[2.7759806e-12],[1.4937546e-12],[7.9682886e-13],[4.2137811e-13],[2.2090126e-13],[1.1480003e-13],[5.9142785e-14],[3.0204797e-14],[1.5291952e-14],[7.6746988e-15],[3.8182976e-15],[1.8831585e-15],[9.2068562e-16],[4.4621274e-16],[2.1437667e-16],[1.020979e-16],[4.8201305e-17],[2.2558091e-17],[1.0465173e-17],[4.8127136e-18],[2.1939775e-18],[9.9145252e-19],[4.4412822e-19],[1.9721531e-19],[8.6809617e-20],[3.7878186e-20],[1.6383392e-20],[7.0244289e-21],[2.9854513e-21],[1.2577665e-21],[5.2526731e-22],[2.1744547e-22],[8.9229683e-23]],"fill":"tonexty","fillcolor":"rgb(0, 191, 255)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"July","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898834,-0.10898834,-0.10898833,-0.10898831,-0.10898828,-0.10898824,-0.10898818,-0.10898809,-0.10898795,-0.10898774,-0.10898743,-0.10898697,-0.10898631,-0.10898536,-0.10898401,-0.10898209,-0.10897941,-0.10897568,-0.10897056,-0.10896358,-0.10895414,-0.10894151,-0.10892474,-0.10890269,-0.10887395,-0.10883682,-0.10878928,-0.10872896,-0.10865309,-0.10855851,-0.10844164,-0.10829849,-0.10812466,-0.10791539,-0.10766561,-0.10736998,-0.10702299,-0.10661906,-0.10615261,-0.10561821,-0.10501066,-0.1043251,-0.10355711,-0.10270277,-0.10175876,-0.10072232,-0.099591364,-0.098364399,-0.097040568,-0.095619624,-0.094101933,-0.09248849,-0.09078097,-0.088981809,-0.08709433,-0.085122909,-0.083073174,-0.08095223,-0.078768889,-0.076533884,-0.074260045,-0.071962399,-0.069658184,-0.067366739,-0.065109274,-0.062908486,-0.060788054,-0.05877201,-0.056884016,-0.055146589,-0.053580314,-0.052203091,-0.051029476,-0.050070146,-0.049331547,-0.048815734,-0.048520424,-0.048439269,-0.048562319,-0.048876655,-0.049367139,-0.050017243,-0.050809886,-0.051728239,-0.052756437,-0.053880152,-0.055087017,-0.056366851,-0.057711718,-0.0591158,-0.060575127,-0.062087185,-0.063650447,-0.065263868,-0.066926379,-0.068636423,-0.070391565,-0.072188186,-0.074021302,-0.075884473,-0.077769844,-0.079668267,-0.081569517,-0.083462567,-0.085335904,-0.087177876,-0.088977023,-0.09072241,-0.092403911,-0.094012467,-0.095540282,-0.09698097,-0.098329646,-0.099582961,-0.10073909,-0.10179767,-0.10275971,-0.10362746,-0.10440424,-0.10509431,-0.10570263,-0.10623476,-0.10669661,-0.10709432,-0.1074341,-0.10772207,-0.10796417,-0.10816606,-0.10833305,-0.10847005,-0.10858151,-0.10867144,-0.10874339,-0.10880048,-0.10884539,-0.10888042,-0.10890752,-0.10892829,-0.10894409,-0.10895599,-0.10896489,-0.10897148,-0.10897632,-0.10897984,-0.10898238,-0.1089842,-0.10898549,-0.10898639,-0.10898702,-0.10898746,-0.10898776,-0.10898796,-0.1089881,-0.10898819,-0.10898825,-0.10898829,-0.10898831,-0.10898833,-0.10898834,-0.10898834,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835],"zorder":12,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835],"zorder":13,"type":"scatter"},{"customdata":[[3.3519376e-147],[3.7533534e-146],[4.1658803e-145],[4.583085e-144],[4.9977307e-143],[5.4019627e-142],[5.7875415e-141],[6.1461118e-140],[6.4694982e-139],[6.7500118e-138],[6.9807531e-137],[7.1558927e-136],[7.2709167e-135],[7.3228192e-134],[7.3102337e-133],[7.2334921e-132],[7.0946106e-131],[6.8972016e-130],[6.6463174e-129],[6.3482355e-128],[6.0101982e-127],[5.6401201e-126],[5.246283e-125],[4.8370311e-124],[4.4204842e-123],[4.0042816e-122],[3.5953666e-121],[3.19982e-120],[2.8227455e-119],[2.4682076e-118],[2.1392201e-117],[1.837778e-116],[1.5649282e-115],[1.3208686e-114],[1.1050669e-113],[9.1639217e-113],[7.5324794e-112],[6.1370313e-111],[4.9561282e-110],[3.9672587e-109],[3.1477651e-108],[2.4755853e-107],[1.9298222e-106],[1.4911471e-105],[1.1420562e-104],[8.6699839e-104],[6.5239841e-103],[4.865991e-102],[3.5974395e-101],[2.636207e-100],[1.914826e-99],[1.3786148e-98],[9.8383062e-98],[6.9592358e-97],[4.8794016e-96],[3.3910593e-95],[2.335974e-94],[1.5950137e-93],[1.079505e-92],[7.2418356e-92],[4.8154457e-91],[3.1738625e-90],[2.0734976e-89],[1.3427117e-88],[8.6183832e-88],[5.4831816e-87],[3.457827e-86],[2.1614127e-85],[1.3391707e-84],[8.2242817e-84],[5.0063801e-83],[3.0207408e-82],[1.8066204e-81],[1.0709869e-80],[6.2931082e-80],[3.6653044e-79],[2.1160148e-78],[1.2108522e-77],[6.8679544e-77],[3.8612459e-76],[2.1517475e-75],[1.1885542e-74],[6.5074439e-74],[3.5315528e-73],[1.8996989e-72],[1.0129025e-71],[5.3532102e-71],[2.8043019e-70],[1.4561263e-69],[7.4944041e-69],[3.8233053e-68],[1.9333241e-67],[9.690231e-67],[4.8142364e-66],[2.3707431e-65],[1.1571919e-64],[5.5987368e-64],[2.6849644e-63],[1.2762943e-62],[6.0134944e-62],[2.8084507e-61],[1.3000813e-60],[5.9653783e-60],[2.7131218e-59],[1.2231068e-58],[5.4654167e-58],[2.4207279e-57],[1.0627533e-56],[4.6246917e-56],[1.9947886e-55],[8.528542e-55],[3.614236e-54],[1.5181756e-53],[6.3210805e-53],[2.6087018e-52],[1.0671399e-51],[4.3269519e-51],[1.739028e-50],[6.927793e-50],[2.7355649e-49],[1.070688e-48],[4.1537722e-48],[1.5972989e-47],[6.0882647e-47],[2.300195e-46],[8.6138953e-46],[3.19741e-45],[1.1764158e-44],[4.2902954e-44],[1.5508769e-43],[5.5568833e-43],[1.973554e-42],[6.947532e-42],[2.4242416e-41],[8.3846522e-41],[2.8744715e-40],[9.7677548e-40],[3.2899955e-39],[1.0983978e-38],[3.6348611e-38],[1.1922842e-37],[3.876462e-37],[1.2492665e-36],[3.9906024e-36],[1.2635302e-35],[3.9654876e-35],[1.2335915e-34],[3.8037323e-34],[1.1625518e-33],[3.521912e-33],[1.0575684e-32],[3.1477648e-32],[9.2866667e-32],[2.7156966e-31],[7.8716621e-31],[2.2615982e-30],[6.4406285e-30],[1.8180459e-29],[5.0868071e-29],[1.4107481e-28],[3.8780866e-28],[1.0566942e-27],[2.8539408e-27],[7.6401944e-27],[2.027345e-26],[5.3323017e-26],[1.3901625e-25],[3.5923633e-25],[9.2015024e-25],[2.3361517e-24],[5.8790501e-24],[1.4664832e-23],[3.6258583e-23],[8.8860427e-23],[2.1585881e-22],[5.1975059e-22],[1.2404636e-21],[2.9345188e-21],[6.8810322e-21],[1.5993154e-20],[3.6844995e-20],[8.4136941e-20],[1.9044027e-19],[4.2726244e-19],[9.5015512e-19],[2.094393e-18],[4.5759969e-18],[9.91008e-18],[2.1273184e-17],[4.5263877e-17],[9.5462968e-17],[1.9956393e-16],[4.1351679e-16],[8.4931387e-16],[1.729049e-15],[3.4890757e-15],[6.9787486e-15],[1.3835944e-14],[2.7189686e-14],[5.2961921e-14],[1.0225569e-13],[1.956931e-13],[3.7121699e-13],[6.9798257e-13],[1.3008456e-12],[2.403098e-12],[4.4002955e-12],[7.9865081e-12],[1.4368019e-11],[2.5621338e-11],[4.5286825e-11],[7.9342746e-11],[1.3778694e-10],[2.371781e-10],[4.0467562e-10],[6.8439321e-10],[1.1472837e-09],[1.9063506e-09],[3.1397997e-09],[5.1258834e-09],[8.2947558e-09],[1.3304762e-08],[2.1153385e-08],[3.3336695e-08],[5.2075791e-08],[8.063447e-08],[1.2375937e-07],[1.8828209e-07],[2.8393224e-07],[4.244207e-07],[6.2886307e-07],[9.236236e-07],[1.3446687e-06],[1.9405243e-06],[2.775932e-06],[3.9362916e-06],[5.5329595e-06],[7.7094424e-06],[1.0648479e-05],[1.4579938e-05],[1.9789378e-05],[2.6627017e-05],[3.5516725e-05],[4.6964559e-05],[6.1566188e-05],[8.0012462e-05],[0.00010309226],[0.00013169172],[0.00016678883],[0.00020944267],[0.00026077642],[0.00032195367],[0.00039414801],[0.00047850593],[0.00057610403],[0.00068790166],[0.00081469084],[0.0009570459],[0.0011152755],[0.0012893798],[0.0014790167],[0.0016834784],[0.0019016831],[0.0021321817],[0.0023731817],[0.0026225884],[0.002878062],[0.0031370892],[0.0033970661],[0.003655388],[0.0039095437],[0.0041572075],[0.0043963259],[0.0046251944],[0.0048425209],[0.0050474726],[0.0052397056],[0.0054193753],[0.0055871274],[0.0057440723],[0.0058917415],[0.0060320307],[0.0061671304],[0.0062994474],[0.0064315205],[0.0065659337],[0.0067052304],[0.0068518331],[0.0070079733],[0.0071756356],[0.0073565209],[0.0075520337],[0.0077632961],[0.0079911924],[0.0082364434],[0.0084997112],[0.0087817301],[0.0090834575],[0.0094062375],[0.009751965],[0.010123241],[0.010523505],[0.01095713],[0.011429474],[0.011946873],[0.012516571],[0.013146587],[0.013845512],[0.014622246],[0.015485687],[0.016444367],[0.017506066],[0.01867741],[0.019963469],[0.021367375],[0.022889969],[0.024529496],[0.02628137],[0.028137993],[0.030088676],[0.032119636],[0.034214094],[0.036352477],[0.038512709],[0.040670615],[0.042800402],[0.044875235],[0.046867873],[0.048751355],[0.050499714],[0.052088689],[0.053496409],[0.054704011],[0.05569617],[0.056461515],[0.056992897],[0.057287503],[0.057346809],[0.057176364],[0.056785424],[0.056186452],[0.055394522],[0.054426645],[0.053301072],[0.052036607],[0.05065197],[0.049165235],[0.047593388],[0.045952004],[0.044255054],[0.042514849],[0.040742096],[0.038946056],[0.037134767],[0.035315315],[0.03349412],[0.031677197],[0.029870396],[0.028079569],[0.026310694],[0.024569906],[0.02286349],[0.02119779],[0.0195791],[0.018013507],[0.016506735],[0.015063983],[0.013689785],[0.012387894],[0.011161195],[0.010011664],[0.0089403543],[0.0079474194],[0.007032165],[0.0061931236],[0.0054281447],[0.0047344947],[0.0041089605],[0.003547953],[0.0030476047],[0.0026038605],[0.0022125597],[0.0018695082],[0.0015705409],[0.0013115757],[0.0010886576],[0.00089799572],[0.00073599306],[0.00059926927],[0.00048467753],[0.00038931575],[0.00031053259],[0.00024592859],[0.00019335294],[0.00015089636],[0.00011688058],[8.9845038e-05],[6.8531394e-05],[5.1866564e-05],[3.8944804e-05]],"fill":"tonexty","fillcolor":"rgb(255, 69, 0)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"July","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898834,-0.10898833,-0.10898832,-0.1089883,-0.10898827,-0.10898823,-0.10898817,-0.10898807,-0.10898793,-0.10898773,-0.10898743,-0.10898701,-0.10898641,-0.10898558,-0.10898442,-0.10898282,-0.10898065,-0.10897771,-0.10897377,-0.10896857,-0.10896173,-0.10895284,-0.10894139,-0.10892679,-0.10890834,-0.10888526,-0.10885666,-0.10882157,-0.10877891,-0.10872758,-0.1086664,-0.10859421,-0.10850985,-0.10841225,-0.10830045,-0.10817366,-0.10803131,-0.10787308,-0.10769897,-0.10750934,-0.10730488,-0.10708667,-0.10685617,-0.10661517,-0.10636577,-0.10611029,-0.10585127,-0.10559129,-0.10533297,-0.10507881,-0.10483115,-0.10459203,-0.10436316,-0.10414583,-0.10394088,-0.10374865,-0.10356898,-0.10340123,-0.10324428,-0.10309661,-0.10295632,-0.10282122,-0.10268891,-0.10255683,-0.10242242,-0.10228312,-0.10213652,-0.10198038,-0.10181272,-0.10163183,-0.10143632,-0.10122506,-0.10099716,-0.10075191,-0.10048864,-0.10020662,-0.099904897,-0.099582117,-0.09923639,-0.098865113,-0.098464849,-0.098031224,-0.09755888,-0.097041481,-0.096471783,-0.095841768,-0.095142843,-0.094366108,-0.093502668,-0.092543988,-0.091482289,-0.090310945,-0.089024885,-0.087620979,-0.086098386,-0.084458858,-0.082706985,-0.080850361,-0.078899678,-0.076868719,-0.07477426,-0.072635878,-0.070475646,-0.06831774,-0.066187953,-0.064113119,-0.062120481,-0.060237,-0.058488641,-0.056899665,-0.055491945,-0.054284344,-0.053292184,-0.05252684,-0.051995458,-0.051700852,-0.051641545,-0.05181199,-0.052202931,-0.052801903,-0.053593833,-0.05456171,-0.055687283,-0.056951747,-0.058336385,-0.05982312,-0.061394966,-0.06303635,-0.064733301,-0.066473506,-0.068246258,-0.070042299,-0.071853588,-0.073673039,-0.075494235,-0.077311157,-0.079117959,-0.080908785,-0.082677661,-0.084418448,-0.086124865,-0.087790565,-0.089409255,-0.090974848,-0.09248162,-0.093924372,-0.095298569,-0.096600461,-0.09782716,-0.098976691,-0.100048,-0.10104094,-0.10195619,-0.10279523,-0.10356021,-0.10425386,-0.10487939,-0.1054404,-0.10594075,-0.10638449,-0.10677579,-0.10711885,-0.10741781,-0.10767678,-0.1078997,-0.10809036,-0.10825236,-0.10838909,-0.10850368,-0.10859904,-0.10867782,-0.10874243,-0.108795,-0.10883746,-0.10887147,-0.10889851,-0.10891982,-0.10893649,-0.10894941],"zorder":13,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308],"zorder":14,"type":"scatter"},{"customdata":[[1.028086e-96],[7.1956035e-96],[4.9919336e-95],[3.4326868e-94],[2.3397171e-93],[1.5807251e-92],[1.0585543e-91],[7.0264135e-91],[4.6229383e-90],[3.014854e-89],[1.9488494e-88],[1.2486884e-87],[7.9303737e-87],[4.9922583e-86],[3.1150444e-85],[1.9266164e-84],[1.1811092e-83],[7.1770942e-83],[4.3228588e-82],[2.5808172e-81],[1.5272399e-80],[8.9582064e-80],[5.2083322e-79],[3.001512e-78],[1.7145308e-77],[9.7076545e-77],[5.4481258e-76],[3.0307056e-75],[1.6711066e-74],[9.1333139e-74],[4.9478487e-73],[2.6568573e-72],[1.4141122e-71],[7.4604201e-71],[3.9012745e-70],[2.0221508e-69],[1.0389254e-68],[5.2907715e-68],[2.6706529e-67],[1.3362253e-66],[6.6268283e-66],[3.2575835e-65],[1.5872641e-64],[7.6659617e-64],[3.6698464e-63],[1.7413775e-62],[8.1903373e-62],[3.8183386e-61],[1.7644562e-60],[8.0818567e-60],[3.6692322e-59],[1.6512128e-58],[7.3653725e-58],[3.2564932e-57],[1.4271494e-56],[6.1994405e-56],[2.6693122e-55],[1.1392264e-54],[4.819306e-54],[2.0207974e-53],[8.398947e-53],[3.4601164e-52],[1.4129292e-51],[5.7189179e-51],[2.2944106e-50],[9.1241459e-50],[3.5964755e-49],[1.40516e-48],[5.4417461e-48],[2.0888851e-47],[7.9479412e-47],[2.9974955e-46],[1.1205371e-45],[4.1520036e-45],[1.5249409e-44],[5.5515226e-44],[2.0032493e-43],[7.165091e-43],[2.5402251e-42],[8.926609e-42],[3.1093142e-41],[1.0735111e-40],[3.6737723e-40],[1.2461828e-39],[4.1900099e-39],[1.3964075e-38],[4.6128898e-38],[1.5104202e-37],[4.9021468e-37],[1.5770252e-36],[5.0286887e-36],[1.5894054e-35],[4.9794159e-35],[1.5462721e-34],[4.7594553e-34],[1.4520861e-33],[4.3912818e-33],[1.3162975e-32],[3.9109348e-32],[1.1517837e-31],[3.3622117e-31],[9.7284353e-31],[2.7901319e-30],[7.931773e-30],[2.2350108e-29],[6.2424169e-29],[1.728183e-28],[4.7423158e-28],[1.289897e-27],[3.47763e-27],[9.2934193e-27],[2.4616794e-26],[6.4632544e-26],[1.6820342e-25],[4.3389254e-25],[1.1094133e-24],[2.8116957e-24],[7.063291e-24],[1.7587725e-23],[4.3408627e-23],[1.0619553e-22],[2.5751363e-22],[6.1895349e-22],[1.4746183e-21],[3.4822906e-21],[8.1510624e-21],[1.8911554e-20],[4.3491466e-20],[9.9139031e-20],[2.2400056e-19],[5.0166909e-19],[1.1136517e-18],[2.4504467e-18],[5.3444736e-18],[1.1553895e-17],[2.475801e-17],[5.2585604e-17],[1.1070872e-16],[2.3102586e-16],[4.7786277e-16],[9.7973728e-16],[1.9910397e-15],[4.0106432e-15],[8.0077775e-15],[1.5847977e-14],[3.1088482e-14],[6.0448994e-14],[1.1650446e-13],[2.2256655e-13],[4.2144525e-13],[7.91018e-13],[1.4716195e-12],[2.7137426e-12],[4.9602755e-12],[8.9868394e-12],[1.6138837e-11],[2.872775e-11],[5.0686831e-11],[8.8644725e-11],[1.5366499e-10],[2.6403491e-10],[4.4968895e-10],[7.5915005e-10],[1.2703041e-09],[2.1069421e-09],[3.463877e-09],[5.6446558e-09],[9.1175431e-09],[1.4597678e-08],[2.3166244e-08],[3.6441286e-08],[5.6819623e-08],[8.7815269e-08],[1.3452694e-07],[2.0427566e-07],[3.0746296e-07],[4.587104e-07],[6.7835167e-07],[9.9435806e-07],[1.444786e-06],[2.0808391e-06],[2.9706358e-06],[4.2037623e-06],[5.8966718e-06],[8.1989536e-06],[1.1300446e-05],[1.5439095e-05],[2.0909388e-05],[2.8071051e-05],[3.7357633e-05],[4.9284421e-05],[6.4455047e-05],[8.3566009e-05],[0.00010740827],[0.00013686504],[0.00017290492],[0.00021656964],[0.00026895586],[0.00033119082],[0.00040440199],[0.00048968143],[0.00058804595],[0.00070039493],[0.00082746818],[0.00096980638],[0.0011277174],[0.0013012519],[0.00149019],[0.0016940441],[0.0019120771],[0.0021433379],[0.0023867151],[0.0026410049],[0.0029049921],[0.003177538],[0.0034576721],[0.0037446792],[0.0040381772],[0.0043381795],[0.0046451365],[0.0049599538],[0.0052839843],[0.005618996],[0.0059671184],[0.0063307707],[0.0067125813],[0.0071153039],[0.0075417396],[0.0079946728],[0.008476827],[0.0089908459],[0.0095393003],[0.010124722],[0.010749661],[0.011416751],[0.012128796],[0.012888836],[0.013700205],[0.014566568],[0.015491908],[0.016480483],[0.017536721],[0.018665073],[0.019869817],[0.021154811],[0.022523229],[0.023977258],[0.025517798],[0.027144171],[0.028853849],[0.030642224],[0.032502427],[0.03442522],[0.036398951],[0.038409595],[0.040440877],[0.042474469],[0.044490282],[0.04646681],[0.04838155],[0.05021147],[0.051933516],[0.053525136],[0.054964825],[0.056232647],[0.057310737],[0.058183766],[0.058839333],[0.059268295],[0.059465009],[0.059427468],[0.059157336],[0.058659879],[0.057943779],[0.057020846],[0.055905637],[0.054614996],[0.053167531],[0.051583051],[0.049881991],[0.048084848],[0.046211647],[0.044281479],[0.042312103],[0.040319656],[0.038318456],[0.036320915],[0.034337556],[0.032377116],[0.030446732],[0.028552174],[0.026698122],[0.024888445],[0.023126472],[0.021415233],[0.01975765],[0.018156673],[0.016615351],[0.015136845],[0.013724375],[0.012381135],[0.011110161],[0.009914181],[0.0087954717],[0.007755711],[0.0067958618],[0.005916084],[0.0051156848],[0.0043931094],[0.0037459713],[0.0031711187],[0.002664731],[0.0022224386],[0.0018394563],[0.0015107235],[0.0012310432],[0.00099521145],[0.0007981341],[0.00063492563],[0.00050098817],[0.00039206998],[0.00030430399],[0.00023422775],[0.0001787872],[0.000135327],[0.0001015703],[7.5590809e-05],[5.5779979e-05],[4.0811552e-05],[2.960552e-05],[2.129303e-05],[1.5183389e-05],[1.0733924e-05],[7.5231477e-06],[5.227396e-06],[3.6008906e-06],[2.459052e-06],[1.664768e-06],[1.1172835e-06],[7.4334855e-07],[4.9027216e-07],[3.2054871e-07],[2.0775892e-07],[1.3348459e-07],[8.5016986e-08],[5.3676083e-08],[3.3593413e-08],[2.0841236e-08],[1.2817014e-08],[7.8134422e-09],[4.7215914e-09],[2.8282856e-09],[1.6793664e-09],[9.8844763e-10],[5.7669548e-10],[3.335208e-10],[1.9119726e-10],[1.08648e-10],[6.1198691e-11],[3.4169763e-11],[1.8911256e-11],[1.0374724e-11],[5.6416965e-12],[3.0410195e-12],[1.6248165e-12],[8.6052695e-13],[4.5175092e-13],[2.3507556e-13],[1.212521e-13],[6.1993183e-14],[3.1417454e-14],[1.5782289e-14],[7.8585162e-15],[3.878665e-15],[1.8975567e-15],[9.2019042e-16],[4.4231407e-16],[2.1074322e-16],[9.9528154e-17],[4.6591588e-17],[2.1619121e-17],[9.943454e-18],[4.5332009e-18],[2.0485232e-18],[9.1758194e-19],[4.0739589e-19],[1.7928999e-19],[7.8210111e-20],[3.3817152e-20],[1.4493666e-20],[6.1572449e-21],[2.5927545e-21],[1.0821888e-21],[4.4772483e-22],[1.8360551e-22],[7.4632249e-23],[3.0070004e-23],[1.200899e-23],[4.7538496e-24],[1.8653065e-24]],"fill":"tonexty","fillcolor":"rgb(0, 191, 255)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"August","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715307,-0.12715307,-0.12715307,-0.12715306,-0.12715304,-0.12715302,-0.12715299,-0.12715295,-0.12715288,-0.12715277,-0.12715262,-0.1271524,-0.12715209,-0.12715164,-0.127151,-0.12715011,-0.12714888,-0.12714718,-0.12714488,-0.12714178,-0.12713764,-0.12713217,-0.12712501,-0.12711572,-0.1271038,-0.12708863,-0.12706951,-0.12704567,-0.12701622,-0.12698018,-0.12693651,-0.12688412,-0.12682189,-0.12674868,-0.1266634,-0.12656503,-0.12645269,-0.12632561,-0.12618327,-0.12602536,-0.12585183,-0.12566289,-0.12545904,-0.125241,-0.12500974,-0.12476637,-0.12451208,-0.12424809,-0.12397554,-0.12369541,-0.1234084,-0.1231149,-0.1228149,-0.12250794,-0.12219313,-0.1218691,-0.12153408,-0.12118596,-0.12082231,-0.1204405,-0.12003778,-0.11961134,-0.11915841,-0.11867625,-0.11816223,-0.11761378,-0.11702836,-0.11640342,-0.11573633,-0.11502428,-0.11426424,-0.11345288,-0.11258651,-0.11166117,-0.1106726,-0.10961636,-0.10848801,-0.10728326,-0.10599827,-0.10462985,-0.10317582,-0.10163528,-0.10000891,-0.098299231,-0.096510857,-0.094650654,-0.092727861,-0.090754129,-0.088743485,-0.086712204,-0.084678611,-0.082662798,-0.08068627,-0.07877153,-0.07694161,-0.075219565,-0.073627944,-0.072188255,-0.070920434,-0.069842343,-0.068969314,-0.068313748,-0.067884785,-0.067688071,-0.067725613,-0.067995745,-0.068493201,-0.069209301,-0.070132234,-0.071247444,-0.072538084,-0.07398555,-0.07557003,-0.077271089,-0.079068233,-0.080941433,-0.082871602,-0.084840977,-0.086833424,-0.088834624,-0.090832165,-0.092815525,-0.094775964,-0.096706349,-0.098600906,-0.10045496,-0.10226464,-0.10402661,-0.10573785,-0.10739543,-0.10899641,-0.11053773,-0.11201624,-0.11342871,-0.11477195,-0.11604292,-0.1172389,-0.11835761,-0.11939737,-0.12035722,-0.121237,-0.1220374,-0.12275997,-0.12340711,-0.12398196,-0.12448835,-0.12493064,-0.12531362,-0.12564236,-0.12592204,-0.12615787,-0.12635495,-0.12651815,-0.12665209,-0.12676101,-0.12684878,-0.12691885,-0.12697429,-0.12701775,-0.12705151,-0.12707749,-0.1270973,-0.12711227,-0.12712347,-0.12713179,-0.1271379,-0.12714235,-0.12714556,-0.12714785,-0.12714948,-0.12715062,-0.12715142,-0.12715196,-0.12715234,-0.12715259,-0.12715276,-0.12715287,-0.12715295,-0.127153,-0.12715303,-0.12715305,-0.12715306,-0.12715307,-0.12715307,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308],"zorder":14,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308],"zorder":15,"type":"scatter"},{"customdata":[[2.6988568e-179],[3.9134754e-178],[5.6248308e-177],[8.0134662e-176],[1.1316066e-174],[1.583925e-173],[2.1975456e-172],[3.0220754e-171],[4.1194271e-170],[5.5658628e-169],[7.4540502e-168],[9.8950111e-167],[1.3019803e-165],[1.6980745e-164],[2.1951956e-163],[2.8128975e-162],[3.5727185e-161],[4.4978803e-160],[5.6128211e-159],[6.9425456e-158],[8.5117826e-157],[1.0343953e-155],[1.2459966e-154],[1.4876864e-153],[1.7606387e-152],[2.0653487e-151],[2.4014902e-150],[2.7677865e-149],[3.1619039e-148],[3.5803798e-147],[4.0185917e-146],[4.4707773e-145],[4.9301095e-144],[5.3888302e-143],[5.8384402e-142],[6.269943e-141],[6.674132e-140],[7.0419096e-139],[7.3646238e-138],[7.6344046e-137],[7.8444821e-136],[7.9894687e-135],[8.0655884e-134],[8.0708405e-133],[8.0050867e-132],[7.8700575e-131],[7.6692762e-130],[7.4079062e-129],[7.0925305e-128],[6.7308764e-127],[6.3315014e-126],[5.9034583e-125],[5.4559581e-124],[4.9980466e-123],[4.5383119e-122],[4.0846343e-121],[3.6439872e-120],[3.2222953e-119],[2.8243512e-118],[2.4537875e-117],[2.1131004e-116],[1.8037164e-115],[1.5260942e-114],[1.2798511e-113],[1.0639043e-112],[8.7661867e-112],[7.1595211e-111],[5.7959195e-110],[4.6507807e-109],[3.6990871e-108],[2.916275e-107],[2.2789124e-106],[1.7651924e-105],[1.3552575e-104],[1.0313757e-103],[7.7799603e-103],[5.8170565e-102],[4.311165e-101],[3.1670251e-100],[2.3060776e-99],[1.6644161e-98],[1.1907361e-97],[8.4437387e-97],[5.934987e-96],[4.1349524e-95],[2.8555322e-94],[1.954652e-93],[1.3262266e-92],[8.9193244e-92],[5.9458259e-91],[3.9287868e-90],[2.573184e-89],[1.6705111e-88],[1.0749645e-87],[6.8565415e-87],[4.3349335e-86],[2.7166029e-85],[1.687471e-84],[1.0389938e-83],[6.3409773e-83],[3.8358893e-82],[2.3000784e-81],[1.3670549e-80],[8.0537128e-80],[4.7029809e-79],[2.7221828e-78],[1.5618107e-77],[8.8819158e-77],[5.0067063e-76],[2.7974663e-75],[1.5493338e-74],[8.5053573e-74],[4.6281527e-73],[2.4962635e-72],[1.3345685e-71],[7.0722752e-71],[3.7148845e-70],[1.9341916e-69],[9.982096e-69],[5.106369e-68],[2.5892319e-67],[1.3013619e-66],[6.4832646e-66],[3.2015333e-65],[1.5670795e-64],[7.6031378e-64],[3.6564839e-63],[1.7430247e-62],[8.2359296e-62],[3.8573677e-61],[1.7907662e-60],[8.2405527e-60],[3.7587505e-59],[1.6994192e-58],[7.6160104e-58],[3.3831767e-57],[1.489677e-56],[6.5017454e-56],[2.8127971e-55],[1.2061952e-54],[5.1270513e-54],[2.1601744e-53],[9.0215503e-53],[3.7346073e-52],[1.5324287e-51],[6.2328599e-51],[2.5128489e-50],[1.0041937e-49],[3.9777817e-49],[1.5618412e-48],[6.0786272e-48],[2.3450226e-47],[8.9672995e-47],[3.3989879e-46],[1.2770594e-45],[4.7560492e-45],[1.7557212e-44],[6.4244944e-44],[2.3302194e-43],[8.3777875e-43],[2.9856356e-42],[1.0546769e-41],[3.6929845e-41],[1.2817733e-40],[4.4098207e-40],[1.5038581e-39],[5.0835757e-39],[1.7033681e-38],[5.6575032e-38],[1.8625952e-37],[6.0784073e-37],[1.9662517e-36],[6.3047332e-36],[2.0038856e-35],[6.3133239e-35],[1.9716167e-34],[6.1033253e-34],[1.8727961e-33],[5.6963254e-33],[1.7174328e-32],[5.1326984e-32],[1.5205236e-31],[4.4650092e-31],[1.2996719e-30],[3.7499693e-30],[1.0725182e-29],[3.0406401e-29],[8.5449433e-29],[2.3803324e-28],[6.5728046e-28],[1.7990738e-27],[4.8812697e-27],[1.3128125e-26],[3.499928e-26],[9.249165e-26],[2.4228886e-25],[6.2914732e-25],[1.619421e-24],[4.1319609e-24],[1.0450623e-23],[2.6201024e-23],[6.5115588e-23],[1.6041422e-22],[3.9173513e-22],[9.4827549e-22],[2.2754613e-21],[5.4125e-21],[1.2762052e-20],[2.9828942e-20],[6.9111545e-20],[1.5873013e-19],[3.6138063e-19],[8.1558214e-19],[1.8246039e-18],[4.0463944e-18],[8.8954368e-18],[1.9385031e-17],[4.1876138e-17],[8.967438e-17],[1.9035862e-16],[4.0057133e-16],[8.35586e-16],[1.7278547e-15],[3.5418392e-15],[7.1970894e-15],[1.449747e-14],[2.8949141e-14],[5.7304425e-14],[1.124477e-13],[2.1873779e-13],[4.2180224e-13],[8.0631862e-13],[1.527982e-12],[2.8704139e-12],[5.3454786e-12],[9.8683715e-12],[1.8060189e-11],[3.2765599e-11],[5.8929681e-11],[1.0506822e-10],[1.8570824e-10],[3.2539787e-10],[5.6522745e-10],[9.7332549e-10],[1.6615775e-09],[2.8119794e-09],[4.7177416e-09],[7.8467191e-09],[1.293825e-08],[2.1149401e-08],[3.4273409e-08],[5.506238e-08],[8.7698645e-08],[1.3847548e-07],[2.1676885e-07],[3.3640849e-07],[5.175892e-07],[7.8950316e-07],[1.1939202e-06],[1.7899956e-06],[2.6606421e-06],[3.9208618e-06],[5.728489e-06],[8.297843e-06],[1.1916815e-05],[1.6967915e-05],[2.3953768e-05],[3.3527426e-05],[4.6527728e-05],[6.4019654e-05],[8.7339266e-05],[0.0001181424],[0.00015845566],[0.0002107277],[0.00027787797],[0.0003633394],[0.00047109089],[0.00060567464],[0.00077219331],[0.00097628147],[0.0012240463],[0.0015219733],[0.0018767936],[0.0022953117],[0.0027841946],[0.0033497256],[0.0039975298],[0.0047322821],[0.0055574081],[0.0064747976],[0.0074845451],[0.0085847374],[0.0097713076],[0.011037972],[0.012376261],[0.013775662],[0.015223865],[0.016707117],[0.018210678],[0.019719343],[0.021218032],[0.022692394],[0.024129407],[0.025517935],[0.026849206],[0.02811718],[0.029318793],[0.030454043],[0.031525921],[0.032540191],[0.03350502],[0.034430487],[0.035328001],[0.036209649],[0.037087525],[0.037973069],[0.038876446],[0.039806009],[0.040767849],[0.041765466],[0.042799557],[0.043867919],[0.044965472],[0.046084376],[0.047214228],[0.048342329],[0.049453997],[0.050532911],[0.051561479],[0.052521214],[0.053393125],[0.05415811],[0.05479736],[0.055292774],[0.055627376],[0.055785754],[0.055754481],[0.055522541],[0.055081726],[0.054426988],[0.053556734],[0.052473038],[0.051181745],[0.049692469],[0.048018459],[0.046176337],[0.044185719],[0.042068717],[0.039849363],[0.03755296],[0.035205403],[0.032832501],[0.030459323],[0.028109604],[0.025805229],[0.02356582],[0.021408427],[0.019347333],[0.017393972],[0.015556945],[0.013842127],[0.012252848],[0.010790125],[0.0094529373],[0.0082385183],[0.0071426558],[0.0061599848],[0.0052842647],[0.004508633],[0.0038258318],[0.0032284049],[0.0027088652],[0.0022598331],[0.0018741485],[0.0015449586],[0.0012657839],[0.0010305654],[0.00083369578],[0.0006700366],[0.00053492342],[0.0004241614],[0.00033401255],[0.00026117639],[0.00020276541],[0.0001562767],[0.0001195608],[9.0789142e-05],[6.8420815e-05],[5.1169715e-05],[3.7972727e-05],[2.7959578e-05],[2.0424798e-05],[1.4802115e-05],[1.064146e-05],[7.5886547e-06],[5.3677337e-06],[3.7658067e-06],[2.6202692e-06],[1.808157e-06],[1.2374043e-06]],"fill":"tonexty","fillcolor":"rgb(255, 69, 0)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"August","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715307,-0.12715307,-0.12715306,-0.12715305,-0.12715303,-0.12715299,-0.12715294,-0.12715286,-0.12715274,-0.12715256,-0.12715229,-0.12715189,-0.12715129,-0.12715042,-0.12714916,-0.12714735,-0.12714478,-0.12714116,-0.12713611,-0.12712913,-0.12711955,-0.12710655,-0.12708906,-0.12706574,-0.12703494,-0.12699462,-0.12694235,-0.1268752,-0.12678974,-0.12668199,-0.12654741,-0.12638089,-0.1261768,-0.12592903,-0.12563111,-0.12527629,-0.12485777,-0.12436889,-0.12380335,-0.12315555,-0.1224208,-0.12159567,-0.12067828,-0.11966854,-0.11856834,-0.11738177,-0.11611511,-0.11477682,-0.11337742,-0.11192922,-0.11044596,-0.1089424,-0.10743374,-0.10593505,-0.10446069,-0.10302367,-0.10163515,-0.10030387,-0.0990359,-0.097834287,-0.096699037,-0.095627159,-0.094612889,-0.093648061,-0.092722593,-0.09182508,-0.090943432,-0.090065555,-0.089180012,-0.088276634,-0.087347072,-0.086385232,-0.085387614,-0.084353524,-0.083285162,-0.082187608,-0.081068704,-0.079938852,-0.078810751,-0.077699083,-0.076620169,-0.075591601,-0.074631866,-0.073759955,-0.07299497,-0.07235572,-0.071860307,-0.071525704,-0.071367326,-0.071398599,-0.071630539,-0.072071355,-0.072726093,-0.073596346,-0.074680043,-0.075971336,-0.077460612,-0.079134622,-0.080976743,-0.082967362,-0.085084363,-0.087303717,-0.089600121,-0.091947678,-0.094320579,-0.096693757,-0.099043477,-0.10134785,-0.10358726,-0.10574465,-0.10780575,-0.10975911,-0.11159614,-0.11331095,-0.11490023,-0.11636296,-0.11770014,-0.11891456,-0.12001042,-0.1209931,-0.12186882,-0.12264445,-0.12332725,-0.12392468,-0.12444422,-0.12489325,-0.12527893,-0.12560812,-0.1258873,-0.12612252,-0.12631938,-0.12648304,-0.12661816,-0.12672892,-0.12681907,-0.1268919,-0.12695032,-0.1269968,-0.12703352,-0.12706229,-0.12708466,-0.12710191,-0.12711511,-0.12712512,-0.12713266,-0.12713828,-0.12714244,-0.12714549,-0.12714771,-0.12714931,-0.12715046,-0.12715127,-0.12715184],"zorder":15,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781],"zorder":16,"type":"scatter"},{"customdata":[[1.6265279e-77],[9.2183506e-77],[5.1786101e-76],[2.8836437e-75],[1.5916167e-74],[8.7077104e-74],[4.7221326e-73],[2.5382898e-72],[1.352425e-71],[7.142565e-71],[3.7390769e-70],[1.9401884e-69],[9.9791333e-69],[5.0875805e-68],[2.5709844e-67],[1.2878266e-66],[6.3941867e-66],[3.1469027e-65],[1.5351525e-64],[7.4231822e-64],[3.557945e-63],[1.6903592e-62],[7.9603031e-62],[3.7157901e-61],[1.7192692e-60],[7.8851127e-60],[3.5846222e-59],[1.61529e-58],[7.2148854e-58],[3.1943342e-57],[1.4018561e-56],[6.0981609e-56],[2.6294618e-55],[1.123848e-54],[4.7612524e-54],[1.9994381e-53],[8.3227734e-53],[3.4340112e-52],[1.4044591e-51],[5.6936457e-51],[2.2879471e-50],[9.1133052e-50],[3.5981602e-49],[1.4081857e-48],[5.4627899e-48],[2.100605e-47],[8.0066325e-47],[3.0250408e-46],[1.1328925e-45],[4.205547e-45],[1.5475081e-44],[5.644432e-44],[2.0407262e-43],[7.313524e-43],[2.5980432e-42],[9.1483774e-42],[3.1931557e-41],[1.1047773e-40],[3.7888577e-40],[1.2880155e-39],[4.3402369e-39],[1.4497251e-38],[4.7999649e-38],[1.575328e-37],[5.1248929e-37],[1.6526458e-36],[5.2827049e-36],[1.6738434e-35],[5.2572127e-35],[1.636737e-34],[5.0510919e-34],[1.5451655e-33],[4.6854198e-33],[1.4083356e-32],[4.1961241e-32],[1.2392971e-31],[3.6281721e-31],[1.0528975e-30],[3.0287989e-30],[8.6365718e-30],[2.4411774e-29],[6.8398212e-29],[1.8996694e-28],[5.2299752e-28],[1.4272827e-27],[3.8610872e-27],[1.0353779e-26],[2.7521896e-26],[7.2518433e-26],[1.8941291e-25],[4.9041339e-25],[1.2586562e-24],[3.2021709e-24],[8.0756025e-24],[2.0188261e-23],[5.0028442e-23],[1.228937e-22],[2.9925219e-22],[7.2233837e-22],[1.7283838e-21],[4.0995515e-21],[9.6389501e-21],[2.2465748e-20],[5.1905134e-20],[1.1887721e-19],[2.6988971e-19],[6.073989e-19],[1.3550715e-18],[2.9967569e-18],[6.569654e-18],[1.427696e-17],[3.0756139e-17],[6.5679723e-17],[1.3903842e-16],[2.9177155e-16],[6.0695471e-16],[1.2516285e-15],[2.558592e-15],[5.18482e-15],[1.0415353e-14],[2.0740663e-14],[4.0943051e-14],[8.0121182e-14],[1.5542638e-13],[2.9889113e-13],[5.6978743e-13],[1.076775e-12],[2.0172047e-12],[3.7461799e-12],[6.8967046e-12],[1.2586636e-11],[2.2771601e-11],[4.0840779e-11],[7.2612573e-11],[1.2798167e-10],[2.2361592e-10],[3.8732673e-10],[6.6507853e-10],[1.1321136e-09],[1.9104234e-09],[3.1958972e-09],[5.3000571e-09],[8.7135262e-09],[1.4201497e-08],[2.2945751e-08],[3.675358e-08],[5.8361655e-08],[9.1872922e-08],[1.4337748e-07],[2.2182448e-07],[3.4023172e-07],[5.1734328e-07],[7.7987227e-07],[1.1654964e-06],[1.7268058e-06],[2.5364348e-06],[3.693637e-06],[5.3325876e-06],[7.6327014e-06],[1.0831248e-05],[1.5238512e-05],[2.1255658e-05],[2.9395379e-05],[4.0305199e-05],[5.4793123e-05],[7.3855018e-05],[9.8702812e-05],[0.0001307922],[0.00017184817],[0.00022388627],[0.00028922721],[0.00037050198],[0.00047064481],[0.000592871],[0.00074063706],[0.00091758117],[0.0011274426],[0.0013739601],[0.0016607494],[0.0019911645],[0.0023681438],[0.0027940502],[0.0032705096],[0.0037982579],[0.0043770045],[0.0050053221],[0.0056805712],[0.0063988661],[0.0071550901],[0.0079429599],[0.008755143],[0.0095834227],[0.010418906],[0.011252268],[0.012074017],[0.012874776],[0.013645558],[0.014378037],[0.01506479],[0.015699506],[0.016277163],[0.016794159],[0.017248405],[0.017639376],[0.017968131],[0.018237297],[0.018451038],[0.018614996],[0.018736223],[0.018823094],[0.018885205],[0.018933258],[0.01897892],[0.019034645],[0.019113474],[0.019228782],[0.019393982],[0.019622185],[0.01992581],[0.020316158],[0.020802958],[0.021393906],[0.022094201],[0.02290613],[0.023828689],[0.024857305],[0.025983649],[0.027195586],[0.028477261],[0.029809348],[0.031169453],[0.032532666],[0.03387226],[0.035160504],[0.036369563],[0.037472458],[0.038444028],[0.039261871],[0.039907209],[0.040365635],[0.040627717],[0.040689419],[0.040552321],[0.040223633],[0.039715984],[0.039047018],[0.038238801],[0.037317057],[0.03631029],[0.035248802],[0.034163666],[0.033085683],[0.032044365],[0.03106698],[0.030177688],[0.029396798],[0.028740158],[0.028218703],[0.027838169],[0.027598971],[0.02749625],[0.02752009],[0.027655885],[0.027884866],[0.02818474],[0.028530463],[0.028895086],[0.029250679],[0.029569284],[0.029823872],[0.029989267],[0.030043013],[0.029966129],[0.02974374],[0.029365553],[0.028826145],[0.028125072],[0.027266775],[0.026260303],[0.025118862],[0.023859217],[0.022500978],[0.021065804],[0.019576567],[0.01805652],[0.016528502],[0.01501421],[0.013533584],[0.012104301],[0.010741411],[0.0094571065],[0.0082606345],[0.0071583234],[0.0061537268],[0.0052478524],[0.0044394607],[0.0037254066],[0.0031010055],[0.0025604013],[0.002096921],[0.0017034016],[0.0013724794],[0.0010968361],[0.00086939752],[0.00068348614],[0.00053292963],[0.00041212909],[0.00031609272],[0.00024044088],[0.00018138844],[0.00013571048],[0.00010069661],[7.4098455e-05],[5.4074393e-05],[3.9134317e-05],[2.8086843e-05],[1.9990456e-05],[1.4109535e-05],[9.8757162e-06],[6.854663e-06],[4.7180335e-06],[3.2202469e-06],[2.1795482e-06],[1.4628132e-06],[9.7353679e-07],[6.424703e-07],[4.2042356e-07],[2.7280387e-07],[1.7552531e-07],[1.1198272e-07],[7.0840341e-08],[4.4434993e-08],[2.7636364e-08],[1.7042942e-08],[1.0421079e-08],[6.3180339e-09],[3.7979489e-09],[2.2636588e-09],[1.3377174e-09],[7.8380181e-10],[4.5533773e-10],[2.6226694e-10],[1.4977286e-10],[8.4800719e-11],[4.7603627e-11],[2.6494269e-11],[1.4619503e-11],[7.9979647e-12],[4.3380049e-12],[2.3327158e-12],[1.2436336e-12],[6.5732416e-13],[3.4444586e-13],[1.7894284e-13],[9.2163197e-14],[4.7059623e-14],[2.3822373e-14],[1.1955431e-14],[5.9482212e-15],[2.9339233e-15],[1.4346577e-15],[6.9547883e-16],[3.3423648e-16],[1.5924153e-16],[7.5212452e-17],[3.5217003e-17],[1.6347175e-17],[7.5224463e-18],[3.4316269e-18],[1.5519014e-18],[6.9574461e-19],[3.0921163e-19],[1.3623248e-19],[5.9500831e-20],[2.5762123e-20],[1.1057456e-20],[4.7048149e-21],[1.9844601e-21],[8.2976207e-22],[3.439339e-22],[1.413206e-22],[5.7563073e-23],[2.3242852e-23],[9.3033801e-24],[3.6914502e-24],[1.4519685e-24],[5.6613541e-25],[2.1881923e-25],[8.3840094e-26],[3.1843314e-26],[1.1989032e-26],[4.474541e-27],[1.655429e-27],[6.0711297e-28],[2.207113e-28],[7.9538055e-29],[2.8413188e-29],[1.0061409e-29],[3.5317571e-30],[1.2288965e-30]],"fill":"tonexty","fillcolor":"rgb(0, 191, 255)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"September","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.1453178,-0.1453178,-0.1453178,-0.1453178,-0.14531779,-0.14531778,-0.14531777,-0.14531775,-0.14531771,-0.14531766,-0.14531758,-0.14531747,-0.14531729,-0.14531703,-0.14531664,-0.14531608,-0.14531527,-0.14531411,-0.14531247,-0.14531017,-0.14530697,-0.14530257,-0.14529655,-0.14528841,-0.1452775,-0.14526301,-0.14524395,-0.1452191,-0.14518701,-0.14514596,-0.14509392,-0.14502858,-0.1449473,-0.14484716,-0.14472494,-0.14457717,-0.14440023,-0.14419036,-0.14394385,-0.14365706,-0.14332664,-0.14294966,-0.14252376,-0.1420473,-0.14151955,-0.1409408,-0.14031248,-0.13963724,-0.13891894,-0.13816272,-0.13737485,-0.13656266,-0.13573438,-0.1348989,-0.13406554,-0.13324379,-0.13244303,-0.13167225,-0.13093977,-0.13025302,-0.1296183,-0.12904064,-0.12852365,-0.1280694,-0.12767843,-0.12734968,-0.12708051,-0.12686677,-0.12670281,-0.12658158,-0.12649471,-0.1264326,-0.12638455,-0.12633889,-0.12628316,-0.12620433,-0.12608902,-0.12592382,-0.12569562,-0.125392,-0.12500165,-0.12451485,-0.1239239,-0.1232236,-0.12241168,-0.12148912,-0.1204605,-0.11933416,-0.11812222,-0.11684055,-0.11550846,-0.11414835,-0.11278514,-0.11144555,-0.1101573,-0.10894824,-0.10784535,-0.10687378,-0.10605593,-0.1054106,-0.10495217,-0.10469009,-0.10462839,-0.10476548,-0.10509417,-0.10560182,-0.10627079,-0.10707901,-0.10800075,-0.10900752,-0.110069,-0.11115414,-0.11223212,-0.11327344,-0.11425083,-0.11514012,-0.11592101,-0.11657765,-0.1170991,-0.11747964,-0.11771883,-0.11782156,-0.11779772,-0.11766192,-0.11743294,-0.11713307,-0.11678734,-0.11642272,-0.11606713,-0.11574852,-0.11549393,-0.11532854,-0.11527479,-0.11535168,-0.11557407,-0.11595225,-0.11649166,-0.11719273,-0.11805103,-0.1190575,-0.12019894,-0.12145859,-0.12281683,-0.124252,-0.12574124,-0.12726129,-0.1287893,-0.1303036,-0.13178422,-0.1332135,-0.1345764,-0.1358607,-0.13705717,-0.13815948,-0.13916408,-0.14006995,-0.14087835,-0.1415924,-0.1422168,-0.1427574,-0.14322089,-0.1436144,-0.14394533,-0.14422097,-0.14444841,-0.14463432,-0.14478488,-0.14490568,-0.14500171,-0.14507737,-0.14513642,-0.1451821,-0.14521711,-0.14524371,-0.14526373,-0.14527867,-0.14528972,-0.14529782,-0.1453037,-0.14530793,-0.14531095,-0.14531309,-0.14531459,-0.14531563,-0.14531634,-0.14531683,-0.14531716,-0.14531739,-0.14531753,-0.14531763,-0.14531769,-0.14531774,-0.14531776,-0.14531778,-0.14531779,-0.1453178,-0.1453178,-0.1453178,-0.1453178,-0.1453178,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781],"zorder":16,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781],"zorder":17,"type":"scatter"},{"customdata":[[6.3782958e-139],[6.6560318e-138],[6.8847777e-137],[7.0587576e-136],[7.1734887e-135],[7.2259736e-134],[7.2148305e-133],[7.1403532e-132],[7.0044989e-131],[6.8108019e-130],[6.5642216e-129],[6.270931e-128],[5.9380605e-127],[5.5734104e-126],[5.185149e-125],[4.7815121e-124],[4.3705197e-123],[3.9597222e-122],[3.555987e-121],[3.1653331e-120],[2.792817e-119],[2.4424707e-118],[2.1172885e-117],[1.819259e-116],[1.5494331e-115],[1.3080217e-114],[1.0945129e-113],[9.0780094e-113],[7.4631845e-112],[6.0816517e-111],[4.9122756e-110],[3.9328531e-109],[3.1210199e-108],[2.4549868e-107],[1.9141043e-106],[1.4792646e-105],[1.1331566e-104],[8.6039492e-104],[6.475444e-103],[4.8306446e-102],[3.5719424e-101],[2.6179879e-100],[1.9019305e-99],[1.3695739e-98],[9.7755255e-98],[6.9160575e-97],[4.8499907e-96],[3.3712196e-95],[2.3227208e-94],[1.586247e-93],[1.073763e-92],[7.2046005e-92],[4.791541e-91],[3.1586707e-90],[2.0639412e-89],[1.3367622e-88],[8.5817295e-88],[5.4608385e-87],[3.4443533e-86],[2.1533761e-85],[1.3344305e-84],[8.1966403e-84],[4.9904493e-83],[3.0116693e-82],[1.8015187e-81],[1.0681546e-80],[6.277596e-80],[3.6569285e-79],[2.1115601e-78],[1.2085213e-77],[6.8559719e-77],[3.8552066e-76],[2.1487712e-75],[1.1871253e-74],[6.5008011e-74],[3.5285891e-73],[1.8984502e-72],[1.0124212e-71],[5.3516438e-71],[2.803994e-70],[1.456233e-69],[7.4963288e-69],[3.8249901e-68],[1.9345322e-67],[9.6980753e-67],[4.8190243e-66],[2.3735405e-65],[1.1587725e-64],[5.6074275e-64],[2.6896339e-63],[1.2787531e-62],[6.0262093e-62],[2.8149182e-61],[1.3033209e-60],[5.9813749e-60],[2.7209135e-59],[1.226853e-58],[5.4832039e-58],[2.4290719e-57],[1.0666218e-56],[4.6424229e-56],[2.0028253e-55],[8.564571e-55],[3.6302149e-54],[1.5251876e-53],[6.3515307e-53],[2.6217893e-52],[1.0727078e-51],[4.3504016e-51],[1.7488058e-50],[6.9681605e-50],[2.7520674e-49],[1.0773687e-48],[4.1805563e-48],[1.607934e-47],[6.1300898e-47],[2.3164875e-46],[8.6767606e-46],[3.2214385e-45],[1.185514e-44],[4.3244229e-44],[1.5635592e-43],[5.6035754e-43],[1.9905858e-42],[7.009086e-42],[2.4462833e-41],[8.4628576e-41],[2.9019658e-40],[9.8635348e-40],[3.3230583e-39],[1.1097074e-38],[3.6731972e-38],[1.2051616e-37],[3.9193285e-37],[1.2634076e-36],[4.0368333e-36],[1.2785088e-35],[4.0135837e-35],[1.2488972e-34],[3.8520055e-34],[1.1776414e-33],[3.5686612e-33],[1.0719233e-32],[3.1914528e-32],[9.4184517e-32],[2.7550985e-31],[7.9884296e-31],[2.2958974e-30],[6.540493e-30],[1.8468668e-29],[5.1692545e-29],[1.4341272e-28],[3.9438009e-28],[1.075004e-27],[2.9045115e-27],[7.7786507e-27],[2.0649227e-26],[5.4334028e-26],[1.4171271e-25],[3.6636563e-25],[9.3883646e-25],[2.3847052e-24],[6.0041189e-24],[1.4984214e-23],[3.7067138e-23],[9.0889738e-23],[2.2090813e-22],[5.322062e-22],[1.2709249e-21],[3.0083752e-21],[7.0585681e-21],[1.6416257e-20],[3.7844698e-20],[8.6478818e-20],[1.9587938e-19],[4.3978709e-19],[9.787494e-19],[2.159118e-18],[4.7212569e-18],[1.0233304e-17],[2.1986277e-17],[4.6823704e-17],[9.8845923e-17],[2.068385e-16],[4.2902672e-16],[8.8210124e-16],[1.7977714e-15],[3.6318947e-15],[7.2730354e-15],[1.4437191e-14],[2.8407646e-14],[5.5408234e-14],[1.0712749e-13],[2.0531289e-13],[3.9005092e-13],[7.3454325e-13],[1.3712154e-12],[2.5373915e-12],[4.6544048e-12],[8.4632487e-12],[1.5254845e-11],[2.7256982e-11],[4.8277925e-11],[8.4766055e-11],[1.4753655e-10],[2.54556e-10],[4.3538657e-10],[7.3820445e-10],[1.2407671e-09],[2.0673689e-09],[3.4147747e-09],[5.5914544e-09],[9.076295e-09],[1.4605486e-08],[2.3299665e-08],[3.6847863e-08],[5.7770588e-08],[8.9791677e-08],[1.383577e-07],[2.1135464e-07],[3.2008465e-07],[4.8058043e-07],[7.1535106e-07],[1.05567e-06],[1.5445326e-06],[2.240424e-06],[3.222049e-06],[4.5941761e-06],[6.49474e-06],[9.1033217e-06],[1.2651082e-05],[1.743216e-05],[2.3816442e-05],[3.2263512e-05],[4.3337403e-05],[5.772163e-05],[7.6233767e-05],[9.9838633e-05],[0.00012965896],[0.00016698223],[0.00021326227],[0.00027011418],[0.00033930109],[0.00042271171],[0.00052232762],[0.00064018006],[0.00077829646],[0.00093863772],[0.0011230282],[0.0013330815],[0.0015701251],[0.0018351294],[0.002128646],[0.0024507592],[0.0028010595],[0.0031786395],[0.0035821202],[0.0040097072],[0.0044592787],[0.0049285031],[0.005414983],[0.0059164165],[0.0064307707],[0.0069564532],[0.0074924717],[0.0080385684],[0.0085953164],[0.0091641684],[0.0097474485],[0.010348281],[0.010970455],[0.011618228],[0.012296077],[0.013008403],[0.013759213],[0.014551791],[0.015388384],[0.016269919],[0.017195776],[0.018163636],[0.019169408],[0.020207264],[0.021269763],[0.022348079],[0.023432313],[0.024511884],[0.025575965],[0.026613952],[0.027615933],[0.028573131],[0.029478301],[0.030326041],[0.031113026],[0.03183813],[0.032502437],[0.033109146],[0.033663378],[0.034171881],[0.034642677],[0.035084649],[0.035507094],[0.03591927],[0.036329946],[0.036746989],[0.037176973],[0.037624858],[0.038093717],[0.038584531],[0.039096057],[0.039624763],[0.040164838],[0.040708281],[0.041245055],[0.04176333],[0.042249789],[0.042690007],[0.043068896],[0.043371201],[0.043582035],[0.043687442],[0.043674949],[0.043534102],[0.043256945],[0.042838423],[0.042276682],[0.041573244],[0.040733047],[0.039764333],[0.038678403],[0.037489221],[0.036212912],[0.034867168],[0.033470579],[0.032041958],[0.030599655],[0.029160932],[0.027741401],[0.026354573],[0.025011523],[0.023720693],[0.022487821],[0.02131601],[0.020205915],[0.019156017],[0.018162995],[0.017222134],[0.016327763],[0.015473699],[0.014653663],[0.013861657],[0.013092276],[0.012340966],[0.011604189],[0.010879525],[0.010165695],[0.0094625187],[0.0087708142],[0.0080922533],[0.0074291828],[0.0067844263],[0.0061610798],[0.0055623111],[0.0049911753],[0.0044504529],[0.0039425171],[0.003469234],[0.0030318974],[0.0026311968],[0.0022672173],[0.0019394667],[0.0016469257],[0.0013881149],[0.0011611748],[0.00096395065],[0.00079407993],[0.00064907614],[0.00052640646],[0.00042356019],[0.0003381065],[0.00026774056],[0.00021031799],[0.00016387814],[0.00012665724],[9.7092708e-05],[7.3820175e-05],[5.5664801e-05],[4.1628387e-05],[3.0873712e-05],[2.2707341e-05],[1.6561911e-05],[1.1978723e-05],[8.5912507e-06],[6.1099616e-06],[4.3087151e-06],[3.0128381e-06],[2.0888848e-06],[1.4360062e-06],[9.7880033e-07],[6.6148671e-07],[4.4323188e-07]],"fill":"tonexty","fillcolor":"rgb(255, 69, 0)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"September","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.1453178,-0.1453178,-0.1453178,-0.1453178,-0.14531779,-0.14531778,-0.14531777,-0.14531775,-0.14531772,-0.14531767,-0.14531759,-0.14531749,-0.14531733,-0.14531709,-0.14531675,-0.14531626,-0.14531557,-0.14531458,-0.14531321,-0.14531131,-0.1453087,-0.14530516,-0.14530037,-0.14529399,-0.14528554,-0.14527447,-0.14526008,-0.14524157,-0.14521797,-0.14518815,-0.14515082,-0.14510454,-0.14504769,-0.14497851,-0.14489509,-0.14479548,-0.14467763,-0.14453951,-0.14437917,-0.14419478,-0.14398472,-0.14374768,-0.14348268,-0.14318916,-0.14286705,-0.14251675,-0.14213917,-0.14173569,-0.1413081,-0.14085853,-0.1403893,-0.13990282,-0.13940139,-0.13888704,-0.13836135,-0.13782533,-0.13727924,-0.13672249,-0.13615364,-0.13557036,-0.13496953,-0.13434735,-0.13369958,-0.13302173,-0.1323094,-0.13155859,-0.13076602,-0.12992942,-0.12904789,-0.12812203,-0.12715417,-0.1261484,-0.12511054,-0.12404804,-0.12296973,-0.12188549,-0.12080592,-0.11974184,-0.11870385,-0.11770187,-0.11674467,-0.11583951,-0.11499177,-0.11420478,-0.11347968,-0.11281537,-0.11220866,-0.11165443,-0.11114593,-0.11067513,-0.11023316,-0.10981071,-0.10939854,-0.10898786,-0.10857082,-0.10814083,-0.10769295,-0.10722409,-0.10673328,-0.10622175,-0.10569304,-0.10515297,-0.10460953,-0.10407275,-0.10355448,-0.10306802,-0.1026278,-0.10224891,-0.10194661,-0.10173577,-0.10163036,-0.10164286,-0.1017837,-0.10206086,-0.10247938,-0.10304112,-0.10374456,-0.10458476,-0.10555347,-0.1066394,-0.10782859,-0.10910489,-0.11045064,-0.11184723,-0.11327585,-0.11471815,-0.11615687,-0.11757641,-0.11896323,-0.12030628,-0.12159711,-0.12282999,-0.1240018,-0.12511189,-0.12616179,-0.12715481,-0.12809567,-0.12899004,-0.12984411,-0.13066414,-0.13145615,-0.13222553,-0.13297684,-0.13371362,-0.13443828,-0.13515211,-0.13585529,-0.13654699,-0.13722555,-0.13788862,-0.13853338,-0.13915673,-0.1397555,-0.14032663,-0.14086735,-0.14137529,-0.14184857,-0.14228591,-0.14268661,-0.14305059,-0.14337834,-0.14367088,-0.14392969,-0.14415663,-0.14435386,-0.14452373,-0.14466873,-0.1447914,-0.14489425,-0.1449797,-0.14505007,-0.14510749,-0.14515393,-0.14519115,-0.14522071,-0.14524399,-0.14526214,-0.14527618,-0.14528693,-0.1452951,-0.14530124,-0.14530583,-0.14530921,-0.1453117,-0.1453135,-0.14531479,-0.14531572,-0.14531637,-0.14531683,-0.14531714,-0.14531736],"zorder":17,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253],"zorder":18,"type":"scatter"},{"customdata":[[2.9630462e-60],[1.3588989e-59],[6.1773445e-59],[2.7834441e-58],[1.2431663e-57],[5.5035393e-57],[2.415022e-56],[1.0504281e-55],[4.5287449e-55],[1.9353332e-54],[8.1978514e-54],[3.4419997e-53],[1.4324786e-52],[5.9092465e-52],[2.4162549e-51],[9.7930991e-51],[3.9342721e-50],[1.5666629e-49],[6.1837754e-49],[2.4193513e-48],[9.3823433e-48],[3.6065417e-47],[1.374162e-46],[5.1898202e-46],[1.9428274e-45],[7.2091445e-45],[2.651557e-44],[9.6668727e-44],[3.4933247e-43],[1.2512956e-42],[4.4427209e-42],[1.5635306e-41],[5.4542129e-41],[1.885933e-40],[6.463817e-40],[2.1959405e-39],[7.3947063e-39],[2.4682565e-38],[8.1663645e-38],[2.6781599e-37],[8.7058998e-37],[2.8051777e-36],[8.9593563e-36],[2.8363715e-35],[8.9006034e-35],[2.7685093e-34],[8.5357739e-34],[2.6086173e-33],[7.90221e-33],[2.3727812e-32],[7.0621662e-32],[2.0834808e-31],[6.0927391e-31],[1.7660679e-30],[5.0742771e-30],[1.4451507e-29],[4.079665e-29],[1.1415857e-28],[3.1663977e-28],[8.7055367e-28],[2.3724609e-27],[6.4087933e-27],[1.7160401e-26],[4.5546277e-26],[1.1982651e-25],[3.1248399e-25],[8.0775165e-25],[2.0696812e-24],[5.2565999e-24],[1.323374e-23],[3.3024548e-23],[8.1689852e-23],[2.0029804e-22],[4.8681397e-22],[1.1728097e-21],[2.8007262e-21],[6.6296839e-21],[1.5555877e-20],[3.6180635e-20],[8.3413887e-20],[1.9062574e-19],[4.318235e-19],[9.6964574e-19],[2.1582542e-18],[4.7618461e-18],[1.0414346e-17],[2.2577362e-17],[4.851763e-17],[1.0335032e-16],[2.1822813e-16],[4.5676936e-16],[9.4770098e-16],[1.9491023e-15],[3.9736328e-15],[8.0302948e-15],[1.6086694e-14],[3.1944394e-14],[6.2880502e-14],[1.2269642e-13],[2.3732494e-13],[4.5504212e-13],[8.6488372e-13],[1.6295322e-12],[3.0434668e-12],[5.6347663e-12],[1.0341567e-11],[1.8814875e-11],[3.393301e-11],[6.0666802e-11],[1.0751997e-10],[1.8890272e-10],[3.2900323e-10],[5.6803734e-10],[9.7223306e-10],[1.6496156e-09],[2.774701e-09],[4.6267177e-09],[7.6481361e-09],[1.2533332e-08],[2.0361441e-08],[3.2793237e-08],[5.2359664e-08],[8.2879917e-08],[1.3006035e-07],[2.0234252e-07],[3.1208986e-07],[4.7722837e-07],[7.2348741e-07],[1.087422e-06],[1.6204371e-06],[2.3940759e-06],[3.5068758e-06],[5.0931319e-06],[7.3339367e-06],[1.0470877e-05],[1.4822758e-05],[2.0805669e-05],[2.8956644e-05],[3.9960987e-05],[5.4683168e-05],[7.4200903e-05],[9.9841677e-05],[0.00013322061],[0.00017627803],[0.00023131469],[0.00030102205],[0.00038850452],[0.00049729036],[0.00063132744],[0.00079496035],[0.0009928854],[0.0012300806],[0.0015117087],[0.0018429923],[0.0022290627],[0.0026747837],[0.0031845562],[0.0037621099],[0.0044102905],[0.0051308531],[0.0059242726],[0.0067895842],[0.0077242648],[0.0087241668],[0.0097835133],[0.01089496],[0.01204973],[0.013237813],[0.014448231],[0.015669365],[0.016889307],[0.018096256],[0.019278908],[0.020426837],[0.021530849],[0.022583282],[0.023578248],[0.024511795],[0.025381997],[0.026188956],[0.02693473],[0.027623182],[0.02825978],[0.028851336],[0.029405724],[0.029931567],[0.030437926],[0.030933992],[0.031428793],[0.031930917],[0.032448271],[0.03298785],[0.033555541],[0.034155952],[0.034792256],[0.035466063],[0.036177309],[0.036924182],[0.037703059],[0.038508496],[0.039333247],[0.040168335],[0.041003177],[0.04182576],[0.042622887],[0.043380466],[0.044083861],[0.044718275],[0.045269173],[0.045722712],[0.046066168],[0.046288347],[0.046379947],[0.046333871],[0.046145459],[0.045812647],[0.045336026],[0.044718802],[0.04396668],[0.04308764],[0.042091653],[0.040990331],[0.039796529],[0.038523935],[0.037186644],[0.035798756],[0.034374012],[0.032925467],[0.03146524],[0.030004315],[0.028552429],[0.027118009],[0.025708188],[0.024328854],[0.022984751],[0.0216796],[0.020416231],[0.019196717],[0.018022505],[0.016894516],[0.015813245],[0.014778821],[0.013791068],[0.012849534],[0.011953518],[0.011102096],[0.010294142],[0.0095283511],[0.0088032782],[0.0081173734],[0.00746903],[0.0068566326],[0.0062786064],[0.0057334612],[0.0052198286],[0.0047364867],[0.0042823734],[0.0038565846],[0.0034583591],[0.0030870525],[0.0027421016],[0.0024229835],[0.0021291738],[0.0018601056],[0.0016151346],[0.0013935119],[0.0011943662],[0.0010166961],[0.00085937274],[0.00072115133],[0.00060069058],[0.00049657752],[0.0004073559],[0.00033155592],[0.00026772331],[0.00021444615],[0.00017037811],[0.00013425731],[0.00010492035],[8.1311442e-05],[6.2486964e-05],[4.7615843e-05],[3.597649e-05],[2.6950979e-05],[2.0017227e-05],[1.4739875e-05],[1.0760506e-05],[7.7877205e-06],[5.5875046e-06],[3.9741786e-06],[2.8021533e-06],[1.9585978e-06],[1.3570697e-06],[9.3208992e-07],[6.3461165e-07],[4.283011e-07],[2.8653522e-07],[1.9001665e-07],[1.2490725e-07],[8.1388629e-08],[5.2567583e-08],[3.3654935e-08],[2.1357699e-08],[1.3434881e-08],[8.3769447e-09],[5.1773666e-09],[3.1717776e-09],[1.9260444e-09],[1.1593082e-09],[6.9167155e-10],[4.0904286e-10],[2.3977567e-10],[1.3931837e-10],[8.0237663e-11],[4.5805161e-11],[2.5918899e-11],[1.4537322e-11],[8.0819798e-12],[4.4536534e-12],[2.4326532e-12],[1.3170703e-12],[7.0680979e-13],[3.7597664e-13],[1.9823657e-13],[1.0360273e-13],[5.3668945e-14],[2.7557466e-14],[1.4025546e-14],[7.0756205e-15],[3.5381273e-15],[1.7536646e-15],[8.6155638e-16],[4.1955118e-16],[2.0251175e-16],[9.6890123e-17],[4.5948653e-17],[2.159882e-17],[1.006355e-17],[4.6476809e-18],[2.1275772e-18],[9.653799e-19],[4.3418525e-19],[1.9356007e-19],[8.5530365e-20],[3.746181e-20],[1.6263763e-20],[6.9986967e-21],[2.9852255e-21],[1.2621209e-21],[5.2891833e-22],[2.1970508e-22],[9.0459755e-23],[3.6917692e-23],[1.4934046e-23],[5.9880342e-24],[2.3798789e-24],[9.3753886e-25],[3.6608969e-25],[1.4169337e-25],[5.4359491e-26],[2.0671169e-26],[7.791454e-27],[2.910957e-27],[1.0779953e-27],[3.956961e-28],[1.4396949e-28],[5.192099e-29],[1.8560056e-29],[6.5762663e-30],[2.3096348e-30],[8.0402774e-31],[2.7743584e-31],[9.4889441e-32],[3.216896e-32],[1.0809857e-32],[3.6005322e-33],[1.1887136e-33],[3.8900178e-34],[1.2617977e-34],[4.0568756e-35],[1.2928777e-35],[4.0840119e-36],[1.2787344e-36],[3.9686018e-37],[1.2208393e-37],[3.7225732e-38],[1.1251018e-38],[3.3705765e-39],[1.0008762e-39],[2.9459158e-40],[8.5945691e-41],[2.4853736e-41],[7.1239861e-42],[2.024036e-42],[5.7000311e-43],[1.5911093e-43],[4.4023705e-44],[1.2073605e-44],[3.2820952e-45],[8.8436014e-46]],"fill":"tonexty","fillcolor":"rgb(0, 191, 255)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"October","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348252,-0.16348252,-0.16348251,-0.1634825,-0.16348248,-0.16348245,-0.1634824,-0.16348233,-0.16348222,-0.16348205,-0.16348181,-0.16348144,-0.16348091,-0.16348014,-0.16347903,-0.16347744,-0.1634752,-0.16347206,-0.16346771,-0.16346173,-0.16345358,-0.16344257,-0.16342785,-0.16340833,-0.16338269,-0.16334931,-0.16330625,-0.16325122,-0.16318151,-0.16309403,-0.16298524,-0.1628512,-0.16268757,-0.16248965,-0.16225245,-0.16197082,-0.16163954,-0.16125347,-0.16080775,-0.16029798,-0.15972042,-0.15907224,-0.15835168,-0.15755826,-0.15669295,-0.15575827,-0.15475837,-0.15369902,-0.15258757,-0.1514328,-0.15024472,-0.1490343,-0.14781317,-0.14659323,-0.14538628,-0.14420362,-0.1430557,-0.14195168,-0.14089925,-0.13990428,-0.13897074,-0.13810054,-0.13729358,-0.1365478,-0.13585935,-0.13522275,-0.1346312,-0.13407681,-0.13355096,-0.13304461,-0.13254854,-0.13205374,-0.13155161,-0.13103426,-0.13049468,-0.12992699,-0.12932658,-0.12869028,-0.12801647,-0.12730522,-0.12655835,-0.12577947,-0.12497404,-0.12414928,-0.1233142,-0.12247936,-0.12165677,-0.12085964,-0.12010207,-0.11939867,-0.11876426,-0.11821336,-0.11775982,-0.11741636,-0.11719418,-0.11710258,-0.11714866,-0.11733707,-0.11766988,-0.11814651,-0.11876373,-0.11951585,-0.12039489,-0.12139088,-0.1224922,-0.123686,-0.1249586,-0.12629589,-0.12768378,-0.12910852,-0.13055706,-0.13201729,-0.13347822,-0.1349301,-0.13636452,-0.13777434,-0.13915368,-0.14049778,-0.14180293,-0.1430663,-0.14428581,-0.14546003,-0.14658802,-0.14766929,-0.14870371,-0.14969146,-0.150633,-0.15152901,-0.15238044,-0.15318839,-0.15395418,-0.15467925,-0.15536516,-0.1560135,-0.1566259,-0.15720393,-0.15774907,-0.1582627,-0.15874605,-0.15920016,-0.15962595,-0.16002417,-0.16039548,-0.16074043,-0.16105955,-0.16135336,-0.16162243,-0.1618674,-0.16208902,-0.16228817,-0.16246584,-0.16262316,-0.16276138,-0.16288184,-0.16298595,-0.16307518,-0.16315098,-0.16321481,-0.16326809,-0.16331215,-0.16334827,-0.16337761,-0.16340122,-0.16342005,-0.16343492,-0.16344656,-0.16345558,-0.16346251,-0.16346779,-0.16347177,-0.16347474,-0.16347694,-0.16347856,-0.16347973,-0.16348057,-0.16348117,-0.1634816,-0.1634819,-0.1634821,-0.16348225,-0.16348234,-0.16348241,-0.16348245,-0.16348248,-0.1634825,-0.16348251,-0.16348252,-0.16348252,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253],"zorder":18,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253],"zorder":19,"type":"scatter"},{"customdata":[[1.0139871e-110],[8.1713898e-110],[6.5271446e-109],[5.1679028e-108],[4.055732e-107],[3.1549171e-106],[2.4325987e-105],[1.85916e-104],[1.4084028e-103],[1.0575498e-102],[7.8711561e-102],[5.8068425e-101],[4.2462481e-100],[3.0777581e-99],[2.2111969e-98],[1.5746504e-97],[1.1114877e-96],[7.7765864e-96],[5.3930834e-95],[3.7072261e-94],[2.5259503e-93],[1.7059423e-92],[1.1420042e-91],[7.577655e-91],[4.9838593e-90],[3.2490809e-89],[2.0995154e-88],[1.3447496e-87],[8.5374383e-87],[5.3725137e-86],[3.3511301e-85],[2.0719003e-84],[1.2697266e-83],[7.7128589e-83],[4.643916e-82],[2.7715143e-81],[1.6395086e-80],[9.613335e-80],[5.5872519e-79],[3.2187425e-78],[1.8379683e-77],[1.0402881e-76],[5.8362381e-76],[3.2454595e-75],[1.7888882e-74],[9.7735874e-74],[5.2928381e-73],[2.8411033e-72],[1.511643e-71],[7.9721462e-71],[4.167399e-70],[2.1593285e-69],[1.1090117e-68],[5.6456946e-68],[2.848803e-67],[1.424857e-66],[7.06389e-66],[3.471206e-65],[1.6907549e-64],[8.1629049e-64],[3.9063632e-63],[1.8529526e-62],[8.7120391e-62],[4.0601224e-61],[1.8755223e-60],[8.5875479e-60],[3.8974443e-59],[1.7532929e-58],[7.8179489e-58],[3.4553735e-57],[1.5137738e-56],[6.5734111e-56],[2.8293353e-55],[1.2070961e-54],[5.1046163e-54],[2.1396768e-53],[8.8899039e-53],[3.6610847e-52],[1.4944669e-51],[6.0468149e-51],[2.4251067e-50],[9.6404847e-50],[3.7986625e-49],[1.4836327e-48],[5.7436226e-48],[2.2039881e-47],[8.3829412e-47],[3.1604392e-46],[1.1810338e-45],[4.374627e-45],[1.6061407e-44],[5.8450739e-44],[2.1084353e-43],[7.5386647e-43],[2.6717292e-42],[9.3854329e-42],[3.267985e-41],[1.1278977e-40],[3.8585419e-40],[1.3084003e-39],[4.3976631e-39],[1.4650997e-38],[4.8381164e-38],[1.5836142e-37],[5.1379086e-37],[1.652294e-36],[5.2668653e-36],[1.6641063e-35],[5.2116338e-35],[1.6178219e-34],[4.9779615e-34],[1.5182258e-33],[4.58971e-33],[1.3753023e-32],[4.0848409e-32],[1.2025862e-31],[3.5093073e-31],[1.0150577e-30],[2.9102089e-30],[8.2703105e-30],[2.3296124e-29],[6.5044375e-29],[1.8001144e-28],[4.9380417e-28],[1.3426838e-27],[3.6187378e-27],[9.6672936e-27],[2.5598656e-26],[6.7188344e-26],[1.7479752e-25],[4.507557e-25],[1.1521575e-24],[2.9190884e-24],[7.3307337e-24],[1.8247885e-23],[4.5023845e-23],[1.1011277e-22],[2.6693033e-22],[6.4139181e-22],[1.5276162e-21],[3.6063721e-21],[8.4390277e-21],[1.9574018e-20],[4.5002166e-20],[1.0255406e-19],[2.3165327e-19],[5.1866907e-19],[1.1510887e-18],[2.5321762e-18],[5.5213589e-18],[1.1933427e-17],[2.5565353e-17],[5.4288278e-17],[1.1426896e-16],[2.3840684e-16],[4.9303495e-16],[1.0106613e-15],[2.0535383e-15],[4.1358965e-15],[8.2567025e-15],[1.6338575e-14],[3.2047396e-14],[6.2307872e-14],[1.2007849e-13],[2.293825e-13],[4.3433893e-13],[8.1521341e-13],[1.5166617e-12],[2.7969311e-12],[5.1127119e-12],[9.2639947e-12],[1.6638864e-11],[2.9622965e-11],[5.22774e-11],[9.144948e-11],[1.5857387e-10],[2.7256275e-10],[4.6439483e-10],[7.8432466e-10],[1.3130875e-09],[2.1791275e-09],[3.5847984e-09],[5.8457746e-09],[9.4496754e-09],[1.5142293e-08],[2.405298e-08],[3.7874896e-08],[5.9121068e-08],[9.1483875e-08],[1.4033361e-07],[2.1340147e-07],[3.2170332e-07],[4.8077332e-07],[7.1228916e-07],[1.0461846e-06],[1.5233561e-06],[2.1990814e-06],[3.1472688e-06],[4.4656577e-06],[6.2820725e-06],[8.7618082e-06],[1.211618e-05],[1.661221e-05],[2.2583329e-05],[3.0440881e-05],[4.0686076e-05],[5.3921898e-05],[7.0864332e-05],[9.2352095e-05],[0.00011935395],[0.00015297257],[0.00019444378],[0.00024513017],[0.00030650805],[0.00038014685],[0.00046768055],[0.000570771],[0.00069106352],[0.00083013577],[0.0009894415],[0.0011702515],[0.0013735943],[0.0016002005],[0.0018504536],[0.0021243517],[0.0024214827],[0.0027410171],[0.0030817194],[0.0034419802],[0.0038198683],[0.0042132014],[0.0046196326],[0.0050367477],[0.005462169],[0.0058936575],[0.0063292089],[0.0067671346],[0.0072061236],[0.0076452798],[0.0080841315],[0.0085226124],[0.0089610153],[0.0093999221],[0.0098401149],[0.010282476],[0.010727884],[0.011177117],[0.011630769],[0.012089182],[0.012552412],[0.013020218],[0.013492081],[0.01396725],[0.01444481],[0.014923763],[0.015403118],[0.015881974],[0.016359603],[0.016835501],[0.017309429],[0.017781418],[0.018251763],[0.018720976],[0.019189732],[0.019658803],[0.02012898],[0.020601004],[0.021075501],[0.021552934],[0.022033571],[0.022517472],[0.023004492],[0.023494302],[0.023986419],[0.024480247],[0.024975116],[0.025470323],[0.025965167],[0.026458983],[0.026951164],[0.027441184],[0.027928612],[0.028413126],[0.028894529],[0.029372759],[0.029847905],[0.03032021],[0.030790083],[0.031258087],[0.031724921],[0.032191383],[0.032658315],[0.033126521],[0.033596664],[0.03406915],[0.034543992],[0.035020671],[0.035497993],[0.035973971],[0.03644571],[0.03690934],[0.037359979],[0.037791742],[0.0381978],[0.038570487],[0.038901454],[0.039181863],[0.039402619],[0.039554624],[0.039629042],[0.039617575],[0.039512722],[0.039308022],[0.03899827],[0.038579688],[0.038050063],[0.03740883],[0.036657104],[0.035797673],[0.034834938],[0.033774811],[0.032624582],[0.031392754],[0.030088862],[0.02872327],[0.027306969],[0.025851371],[0.024368109],[0.022868844],[0.021365086],[0.019868027],[0.018388388],[0.016936281],[0.015521089],[0.014151358],[0.012834703],[0.011577735],[0.010386004],[0.0092639563],[0.0082149178],[0.0072410933],[0.0063435899],[0.005522461],[0.0047767719],[0.0041046843],[0.0035035577],[0.0029700643],[0.0025003134],[0.0020899812],[0.0017344403],[0.0014288859],[0.0011684542],[0.00094832903],[0.0007638347],[0.00061051302],[0.00048418384],[0.00038098897],[0.00029742017],[0.00023033271],[0.00017694622],[0.00013483501],[0.00010190999],[7.6394524e-05],[5.6796218e-05],[4.1876471e-05],[3.0619449e-05],[2.2201675e-05],[1.5963231e-05],[1.1381233e-05],[8.0459812e-06],[5.6399938e-06],[3.9199248e-06],[2.701262e-06],[1.8455962e-06],[1.2501999e-06],[8.3962915e-07],[5.5905407e-07],[3.6903873e-07],[2.4151046e-07],[1.5668964e-07],[1.0078129e-07],[6.4261381e-08],[4.0620605e-08],[2.5454518e-08],[1.5812544e-08],[9.7376365e-09],[5.9445237e-09],[3.5974045e-09],[2.1580794e-09],[1.2833612e-09],[7.5653904e-10],[4.4209182e-10],[2.5608859e-10],[1.470492e-10],[8.3700483e-11],[4.7226356e-11],[2.6413777e-11],[1.4644167e-11],[8.0479562e-12],[4.3842163e-12]],"fill":"tonexty","fillcolor":"rgb(255, 69, 0)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"October","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348252,-0.16348252,-0.16348251,-0.16348249,-0.16348247,-0.16348244,-0.16348239,-0.16348232,-0.16348221,-0.16348205,-0.16348182,-0.16348149,-0.16348101,-0.16348033,-0.16347938,-0.16347807,-0.16347625,-0.16347377,-0.16347042,-0.16346592,-0.16345995,-0.16345209,-0.16344185,-0.16342861,-0.16341167,-0.16339018,-0.16336318,-0.16332956,-0.16328809,-0.1632374,-0.16317602,-0.16310239,-0.16301485,-0.16291176,-0.16279147,-0.1626524,-0.16249309,-0.16231228,-0.16210894,-0.16188233,-0.16163208,-0.16135818,-0.16106105,-0.16074151,-0.16040081,-0.16004055,-0.15966266,-0.15926933,-0.1588629,-0.15844578,-0.15802036,-0.15758887,-0.15715332,-0.1567154,-0.15627641,-0.15583725,-0.1553984,-0.15495992,-0.15452152,-0.15408261,-0.15364242,-0.15320006,-0.15275465,-0.15230541,-0.15185176,-0.15139335,-0.15093012,-0.15046231,-0.14999045,-0.14951528,-0.14903772,-0.14855877,-0.14807941,-0.14760056,-0.14712293,-0.14664703,-0.1461731,-0.14570111,-0.14523077,-0.14476156,-0.1442928,-0.14382373,-0.14335355,-0.14288153,-0.14240703,-0.1419296,-0.14144896,-0.14096506,-0.14047804,-0.13998823,-0.13949611,-0.13900228,-0.13850742,-0.13801221,-0.13751736,-0.13702355,-0.13653137,-0.13604135,-0.13555392,-0.13506941,-0.134588,-0.13410977,-0.13363463,-0.13316232,-0.13269245,-0.13222445,-0.13175761,-0.13129115,-0.13082422,-0.13035601,-0.12988587,-0.12941338,-0.12893854,-0.12846186,-0.12798454,-0.12750856,-0.12703682,-0.12657319,-0.12612255,-0.12569079,-0.12528473,-0.12491204,-0.12458108,-0.12430067,-0.12407991,-0.12392791,-0.12385349,-0.12386496,-0.12396981,-0.12417451,-0.12448426,-0.12490284,-0.12543247,-0.1260737,-0.12682543,-0.12768486,-0.12864759,-0.12970772,-0.13085795,-0.13208978,-0.13339367,-0.13475926,-0.13617556,-0.13763116,-0.13911442,-0.14061369,-0.14211745,-0.14361451,-0.14509414,-0.14654625,-0.14796144,-0.14933117,-0.15064783,-0.1519048,-0.15309653,-0.15421858,-0.15526761,-0.15624144,-0.15713894,-0.15796007,-0.15870576,-0.15937785,-0.15997897,-0.16051247,-0.16098222,-0.16139255,-0.16174809,-0.16205365,-0.16231408,-0.1625342,-0.1627187,-0.16287202,-0.16299835,-0.16310154,-0.16318511,-0.1632522,-0.16330559,-0.1633477,-0.16338062,-0.16340614,-0.16342574,-0.16344066,-0.16345191,-0.16346033,-0.16346657,-0.16347115,-0.16347449,-0.16347689,-0.16347861,-0.16347983,-0.16348069,-0.16348128,-0.16348169,-0.16348197,-0.16348216,-0.16348229,-0.16348238,-0.16348243,-0.16348247,-0.16348249,-0.16348251,-0.16348252,-0.16348252,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253],"zorder":19,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726],"zorder":20,"type":"scatter"},{"customdata":[[3.9126628e-37],[1.2611557e-36],[4.0292924e-36],[1.2760059e-35],[4.005349e-35],[1.2462118e-34],[3.8433253e-34],[1.1748603e-33],[3.5598289e-33],[1.0691431e-32],[3.1827778e-32],[9.3916224e-32],[2.7468739e-31],[7.9634384e-31],[2.2883704e-30],[6.5180222e-30],[1.8402174e-29],[5.1497512e-29],[1.428457e-28],[3.9274609e-28],[1.0703366e-27],[2.891297e-27],[7.741566e-27],[2.0546069e-26],[5.4049597e-26],[1.4093536e-25],[3.6425985e-25],[9.3318217e-25],[2.3696563e-24],[5.9644182e-24],[1.48804e-23],[3.6798062e-23],[9.0198452e-23],[2.1914775e-22],[5.2776278e-22],[1.2598078e-21],[2.9808055e-21],[6.9907984e-21],[1.6251136e-20],[3.7445916e-20],[8.5524198e-20],[1.9361427e-19],[4.3445971e-19],[9.6633e-19],[2.1304199e-18],[4.6555261e-18],[1.0084076e-17],[2.1650468e-17],[4.6074671e-17],[9.7189871e-17],[2.032093e-16],[4.2114334e-16],[8.6512747e-16],[1.7615463e-15],[3.5552639e-15],[7.1123548e-15],[1.4103237e-14],[2.7719664e-14],[5.400338e-14],[1.0428401e-13],[1.9960817e-13],[3.7870644e-13],[7.1218182e-13],[1.3275255e-12],[2.4527804e-12],[4.4919847e-12],[8.1542059e-12],[1.4671985e-11],[2.6167359e-11],[4.6258838e-11],[8.1057527e-11],[1.4078481e-10],[2.4237177e-10],[4.1359198e-10],[6.9956164e-10],[1.1728533e-09],[1.9490601e-09],[3.2104845e-09],[5.2417919e-09],[8.4830654e-09],[1.3607856e-08],[2.1636673e-08],[3.410006e-08],[5.3270123e-08],[8.248523e-08],[1.2659969e-07],[1.9259858e-07],[2.904274e-07],[4.3409641e-07],[6.431303e-07],[9.4444359e-07],[1.3747301e-06],[1.9834597e-06],[2.8365733e-06],[4.0209581e-06],[5.649763e-06],[7.8685807e-06],[1.0862467e-05],[1.4863699e-05],[2.0160085e-05],[2.7103512e-05],[3.6118319e-05],[4.7708897e-05],[6.2465843e-05],[8.1069784e-05],[0.00010429197],[0.0001329906],[0.00016810195],[0.00021062531],[0.00026160118],[0.00032208228],[0.00039309738],[0.00047560878],[0.00057046448],[0.00067834724],[0.00079972311],[0.00093479295],[0.0010834508],[0.0012452534],[0.0014194057],[0.0016047659],[0.0017998741],[0.0020030071],[0.0022122606],[0.0024256583],[0.0026412848],[0.0028574392],[0.0030728009],[0.0032866007],[0.0034987856],[0.003710167],[0.0039225404],[0.0041387658],[0.004362798],[0.00459966],[0.0048553539],[0.0051367084],[0.0054511648],[0.005806509],[0.0062105603],[0.0066708302],[0.0071941722],[0.0077864386],[0.0084521676],[0.0091943201],[0.010014085],[0.010910765],[0.011881762],[0.012922652],[0.014027366],[0.015188453],[0.016397422],[0.017645141],[0.018922264],[0.020219671],[0.021528882],[0.022842432],[0.024154165],[0.025459457],[0.026755324],[0.028040433],[0.029315003],[0.030580608],[0.03183989],[0.033096204],[0.03435321],[0.035614442],[0.036882858],[0.038160424],[0.039447712],[0.040743565],[0.042044824],[0.043346138],[0.044639856],[0.045916021],[0.047162463],[0.048364983],[0.049507647],[0.050573159],[0.051543319],[0.052399555],[0.053123495],[0.053697579],[0.054105672],[0.054333659],[0.054369998],[0.054206202],[0.053837223],[0.053261735],[0.052482275],[0.05150526],[0.050340865],[0.049002764],[0.047507755],[0.045875281],[0.044126863],[0.042285484],[0.040374931],[0.038419134],[0.03644153],[0.034464459],[0.032508629],[0.03059266],[0.028732713],[0.02694223],[0.025231768],[0.023608947],[0.022078497],[0.020642404],[0.019300134],[0.018048944],[0.016884238],[0.01579997],[0.014789069],[0.013843864],[0.012956494],[0.012119288],[0.011325092],[0.01056754],[0.0098412524],[0.0091419653],[0.0084665803],[0.0078131501],[0.0071807982],[0.0065695886],[0.0059803554],[0.0054145075],[0.0048738226],[0.0043602428],[0.0038756851],[0.0034218755],[0.0030002144],[0.002611677],[0.0022567504],[0.0019354069],[0.0016471092],[0.001390844],[0.001165177],[0.00096832328],[0.00079822775],[0.00065264776],[0.00052923453],[0.00042560824],[0.00033942416],[0.00026842773],[0.00021049767],[0.00016367709],[0.00012619332],[9.6467581e-05],[7.3116108e-05],[5.4944294e-05],[4.0935701e-05],[3.0237445e-05],[2.214344e-05],[1.6076695e-05],[1.157165e-05],[8.2572681e-06],[5.841389e-06],[4.0966707e-06],[2.8482495e-06],[1.9631534e-06],[1.3413963e-06],[9.0862423e-07],[6.1014593e-07],[4.0616584e-07],[2.6803503e-07],[1.7534628e-07],[1.1371477e-07],[7.3105675e-08],[4.6590558e-08],[2.9434463e-08],[1.843421e-08],[1.1444639e-08],[7.0434875e-09],[4.2971504e-09],[2.5988403e-09],[1.5580592e-09],[9.2596129e-10],[5.4551337e-10],[3.1858174e-10],[1.8443295e-10],[1.0584189e-10],[6.021122e-11],[3.3954497e-11],[1.8980891e-11],[1.0518035e-11],[5.7776437e-12],[3.1460412e-12],[1.6981457e-12],[9.0861903e-13],[4.8193052e-13],[2.5338576e-13],[1.32061e-13],[6.822775e-14],[3.4941459e-14],[1.7738383e-14],[8.9264647e-15],[4.4528384e-15],[2.2018404e-15],[1.0792591e-15],[5.2439203e-16],[2.525669e-16],[1.2058307e-16],[5.706703e-17],[2.6771507e-17],[1.2449402e-17],[5.7386783e-18],[2.6221801e-18],[1.1876814e-18],[5.3324135e-19],[2.3731962e-19],[1.0469574e-19],[4.5783556e-20],[1.9846082e-20],[8.527552e-21],[3.632101e-21],[1.5334691e-21],[6.4176396e-22],[2.6623088e-22],[1.0947727e-22],[4.4624319e-23],[1.8030217e-23],[7.2212382e-24],[2.8668397e-24],[1.1281734e-24],[4.4007695e-25],[1.7016155e-25],[6.5218968e-26],[2.4777974e-26],[9.3311838e-27],[3.4832645e-27],[1.2888863e-27],[4.7273845e-28],[1.7187199e-28],[6.1939384e-29],[2.2126155e-29],[7.834694e-30],[2.7498872e-30],[9.5671855e-31],[3.2993602e-31],[1.1278497e-31],[3.8216283e-32],[1.2835746e-32],[4.2733554e-33],[1.4102363e-33],[4.6130641e-34],[1.495759e-34],[4.8073753e-35],[1.5315406e-35],[4.8364069e-36],[1.5138777e-36],[4.6971256e-37],[1.4445972e-37],[4.4038691e-38],[1.330745e-38],[3.9859139e-39],[1.1834051e-39],[3.4826609e-40],[1.0159235e-40],[2.937533e-41],[8.419304e-42],[2.3918899e-42],[6.7356194e-43],[1.880118e-43],[5.2019209e-44],[1.4266363e-44],[3.8782296e-45],[1.0450194e-45],[2.7911659e-46],[7.3895369e-47],[1.9391837e-47],[5.0441812e-48],[1.3005657e-48],[3.323867e-49],[8.4202423e-50],[2.114341e-50],[5.2625328e-51],[1.2983263e-51],[3.1749872e-52],[7.6960716e-53],[1.84912e-53],[4.4038232e-54],[1.0395929e-54],[2.4325696e-55],[5.6420338e-56],[1.2971029e-56],[2.9558434e-57],[6.6766181e-58],[1.4948572e-58],[3.317499e-59],[7.2977631e-60],[1.5912429e-60],[3.439148e-61],[7.3677155e-62],[1.5645243e-62],[3.2930567e-63],[6.8704224e-64],[1.4208064e-64],[2.9124171e-65],[5.9175146e-66]],"fill":"tonexty","fillcolor":"rgb(0, 191, 255)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"November","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164725,-0.18164725,-0.18164725,-0.18164724,-0.18164724,-0.18164722,-0.1816472,-0.18164718,-0.18164713,-0.18164707,-0.18164697,-0.18164682,-0.18164661,-0.18164631,-0.18164588,-0.18164527,-0.18164442,-0.18164324,-0.18164161,-0.18163939,-0.1816364,-0.18163239,-0.1816271,-0.18162015,-0.18161114,-0.18159955,-0.18158479,-0.18156619,-0.18154297,-0.18151427,-0.18147916,-0.18143663,-0.18138566,-0.18132518,-0.18125416,-0.18117165,-0.18107679,-0.18096891,-0.18084753,-0.18071246,-0.18056381,-0.180402,-0.18022785,-0.18004249,-0.17984738,-0.17964425,-0.179435,-0.1792216,-0.17900597,-0.17878982,-0.17857446,-0.17836066,-0.17814847,-0.17793709,-0.17772472,-0.17750849,-0.17728446,-0.1770476,-0.1767919,-0.17651055,-0.17619609,-0.17584075,-0.1754367,-0.17497643,-0.17445309,-0.17386082,-0.17319509,-0.17245294,-0.17163317,-0.17073649,-0.1697655,-0.16872461,-0.16761989,-0.1664588,-0.16524984,-0.16400212,-0.16272499,-0.16142759,-0.16011838,-0.15880483,-0.15749309,-0.1561878,-0.15489193,-0.15360683,-0.15233225,-0.15106665,-0.14980737,-0.14855105,-0.14729405,-0.14603282,-0.1447644,-0.14348683,-0.14219955,-0.14090369,-0.13960243,-0.13830112,-0.1370074,-0.13573124,-0.1344848,-0.13328227,-0.13213961,-0.1310741,-0.13010394,-0.1292477,-0.12852376,-0.12794968,-0.12754159,-0.1273136,-0.12727726,-0.12744106,-0.12781003,-0.12838552,-0.12916498,-0.130142,-0.13130639,-0.13264449,-0.1341395,-0.13577198,-0.13752039,-0.13936177,-0.14127233,-0.14322812,-0.14520573,-0.1471828,-0.14913863,-0.1510546,-0.15291454,-0.15470503,-0.15641549,-0.15803831,-0.15956876,-0.16100485,-0.16234712,-0.16359831,-0.16476302,-0.16584729,-0.16685819,-0.16780339,-0.16869076,-0.16952797,-0.17032217,-0.17107972,-0.17180601,-0.17250529,-0.17318068,-0.17383411,-0.17446646,-0.17507767,-0.1756669,-0.17623275,-0.17677344,-0.17728701,-0.17777157,-0.17822538,-0.17864704,-0.17903558,-0.17939051,-0.17971185,-0.18000015,-0.18025641,-0.18048208,-0.18067893,-0.18084903,-0.18099461,-0.18111802,-0.18122165,-0.18130783,-0.18137883,-0.18143676,-0.18148358,-0.18152106,-0.18155079,-0.18157414,-0.18159231,-0.18160632,-0.18161702,-0.18162511,-0.18163118,-0.18163569,-0.181639,-0.18164142,-0.18164316,-0.18164441,-0.18164529,-0.18164592,-0.18164635,-0.18164665,-0.18164685,-0.18164699,-0.18164708,-0.18164714,-0.18164718,-0.18164721,-0.18164723,-0.18164724,-0.18164725,-0.18164725,-0.18164725,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726],"zorder":20,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726],"zorder":21,"type":"scatter"},{"customdata":[[1.4814053e-73],[8.0089297e-73],[4.2918195e-72],[2.2796852e-71],[1.2002585e-70],[6.2638493e-70],[3.2402196e-69],[1.6614003e-68],[8.4438573e-68],[4.2537732e-67],[2.1240987e-66],[1.0513372e-65],[5.1579414e-65],[2.508291e-64],[1.2090566e-63],[5.7767377e-63],[2.7358105e-62],[1.2842715e-61],[5.975788e-61],[2.7561392e-60],[1.2600124e-59],[5.7097391e-59],[2.5646353e-58],[1.1418339e-57],[5.0390461e-57],[2.2042553e-56],[9.5574874e-56],[4.1076549e-55],[1.7498976e-54],[7.3892425e-54],[3.0928289e-53],[1.2831596e-52],[5.2768454e-52],[2.1509836e-51],[8.6909848e-51],[3.4807285e-50],[1.3817858e-49],[5.4372688e-49],[2.1207552e-48],[8.1991736e-48],[3.1420966e-47],[1.1935457e-46],[4.4939554e-46],[1.6772153e-45],[6.2046797e-45],[2.2752051e-44],[8.2697531e-44],[2.9794457e-43],[1.0640193e-42],[3.7664728e-42],[1.3215743e-41],[4.5964224e-41],[1.5846015e-40],[5.4149215e-40],[1.8341565e-39],[6.1581879e-39],[2.049472e-38],[6.7608879e-38],[2.2107436e-37],[7.1654935e-37],[2.3021156e-36],[7.3313113e-36],[2.314248e-35],[7.2412252e-35],[2.2458894e-34],[6.9046082e-34],[2.10409e-33],[6.3557149e-33],[1.9030034e-32],[5.6479394e-32],[1.6615601e-31],[4.8452687e-31],[1.4005407e-30],[4.0128222e-30],[1.1396741e-29],[3.2083984e-29],[8.9530914e-29],[2.4764819e-28],[6.7900811e-28],[1.8454095e-27],[4.9715155e-27],[1.3275883e-26],[3.5141226e-26],[9.220396e-26],[2.3980693e-25],[6.1823517e-25],[1.5798863e-24],[4.0020122e-24],[1.0048744e-23],[2.5010729e-23],[6.1705289e-23],[1.5090384e-22],[3.6581405e-22],[8.7902873e-22],[2.0937687e-21],[4.9435354e-21],[1.1569919e-20],[2.6841517e-20],[6.1726022e-20],[1.4070658e-19],[3.1794049e-19],[7.1213606e-19],[1.5811251e-18],[3.4798142e-18],[7.5915919e-18],[1.6417124e-17],[3.5192424e-17],[7.4780712e-17],[1.5751387e-16],[3.2887983e-16],[6.8068377e-16],[1.3965091e-15],[2.8400946e-15],[5.725495e-15],[1.1441552e-14],[2.2664653e-14],[4.4504704e-14],[8.6627545e-14],[1.671475e-13],[3.1969667e-13],[6.0613763e-13],[1.1391997e-12],[2.1223868e-12],[3.9196371e-12],[7.1757033e-12],[1.3022099e-11],[2.3425888e-11],[4.1774413e-11],[7.3845589e-11],[1.2940152e-10],[2.247789e-10],[3.87056e-10],[6.6068583e-10],[1.1179436e-09],[1.8752079e-09],[3.1180598e-09],[5.1395599e-09],[8.3979813e-09],[1.3602929e-08],[2.1842364e-08],[3.4767846e-08],[5.4861558e-08],[8.5816761e-08],[1.330734e-07],[2.0456303e-07],[3.1173217e-07],[4.7093028e-07],[7.0526811e-07],[1.0470727e-06],[1.5410865e-06],[2.2485758e-06],[3.2525318e-06],[4.6641506e-06],[6.6307768e-06],[9.3454752e-06],[1.305835e-05],[1.8089663e-05],[2.484471e-05],[3.3830263e-05],[4.5672242e-05],[6.1134061e-05],[8.1134886e-05],[0.00010676679],[0.00013930955],[0.00018024172],[0.00023124625],[0.00029420916],[0.0003712095],[0.00046449935],[0.00057647266],[0.00070962244],[0.00086648649],[0.0010495826],[0.0012613351],[0.0015039956],[0.0017795613],[0.0020896959],[0.0024356574],[0.0028182378],[0.0032377191],[0.00369385],[0.0041858455],[0.0047124101],[0.005271784],[0.0058618085],[0.0064800071],[0.0071236732],[0.0077899579],[0.0084759487],[0.0091787307],[0.0098954229],[0.010623184],[0.011359186],[0.012100555],[0.012844287],[0.013587138],[0.014325512],[0.015055347],[0.015772024],[0.016470302],[0.017144304],[0.017787551],[0.018393058],[0.018953492],[0.019461384],[0.019909388],[0.020290572],[0.02059873],[0.020828685],[0.020976569],[0.021040059],[0.02101856],[0.020913303],[0.020727376],[0.020465662],[0.020134701],[0.01974249],[0.019298213],[0.018811944],[0.018294328],[0.017756257],[0.017208571],[0.016661795],[0.016125917],[0.015610229],[0.01512322],[0.014672528],[0.014264935],[0.013906406],[0.013602146],[0.013356668],[0.013173854],[0.013056999],[0.013008825],[0.013031463],[0.013126399],[0.013294378],[0.0135353],[0.013848078],[0.014230516],[0.014679179],[0.015189306],[0.015754754],[0.016367995],[0.017020173],[0.017701219],[0.018400033],[0.019104715],[0.019802852],[0.020481837],[0.021129209],[0.021733008],[0.02228212],[0.0227666],[0.023177966],[0.02350945],[0.023756192],[0.023915386],[0.023986359],[0.023970586],[0.02387166],[0.023695188],[0.023448653],[0.023141216],[0.022783492],[0.022387293],[0.021965346],[0.021530997],[0.021097914],[0.020679779],[0.020289991],[0.019941381],[0.019645927],[0.019414499],[0.019256609],[0.01918019],[0.019191386],[0.019294376],[0.019491217],[0.019781725],[0.020163395],[0.020631358],[0.021178403],[0.021795046],[0.022469667],[0.023188718],[0.023936991],[0.024697956],[0.025454145],[0.026187596],[0.026880307],[0.02751472],[0.028074183],[0.028543393],[0.028908792],[0.029158902],[0.029284584],[0.029279219],[0.029138807],[0.028861974],[0.028449917],[0.027906266],[0.027236897],[0.026449704],[0.025554333],[0.0245619],[0.023484699],[0.02233591],[0.02112931],[0.019878995],[0.018599115],[0.017303623],[0.016006039],[0.014719232],[0.013455225],[0.012225015],[0.011038426],[0.0099039837],[0.008828827],[0.0078186491],[0.0068776786],[0.006008695],[0.0052130815],[0.0044909108],[0.0038410608],[0.0032613547],[0.0027487191],[0.0022993538],[0.0019089045],[0.0015726344],[0.0012855856],[0.0010427268],[0.00083908381],[0.0006698482],[0.000530465],[0.00041669793],[0.00032467363],[0.00025090672],[0.00019230798],[0.00014617858],[0.00011019317],[8.2374825e-05],[6.1064511e-05],[4.4887411e-05],[3.2718195e-05],[2.364678e-05],[1.6945806e-05],[1.2040665e-05],[8.4825805e-06],[5.9249775e-06],[4.1031669e-06],[2.8172058e-06],[1.9176907e-06],[1.2941759e-06],[8.6587945e-07],[5.7433592e-07],[3.7767161e-07],[2.462058e-07],[1.59116e-07],[1.01943e-07],[6.4747891e-08],[4.0767616e-08],[2.5446238e-08],[1.5745184e-08],[9.6579562e-09],[5.8726449e-09],[3.5399007e-09],[2.1152184e-09],[1.2529225e-09],[7.3569248e-10],[4.2822285e-10],[2.4708321e-10],[1.413237e-10],[8.0127906e-11],[4.5034806e-11],[2.5090382e-11],[1.3856693e-11],[7.5858489e-12],[4.1166125e-12],[2.2144508e-12],[1.1808138e-12],[6.2414466e-13],[3.2702182e-13],[1.6984589e-13],[8.7441872e-14],[4.4624076e-14],[2.2573752e-14],[1.1319371e-14],[5.6263183e-15],[2.7721016e-15],[1.3538679e-15],[6.5542825e-16],[3.1452507e-16],[1.4961188e-16],[7.0543528e-17],[3.2970691e-17],[1.5274897e-17],[7.0146731e-18],[3.193119e-18],[1.4407907e-18]],"fill":"tonexty","fillcolor":"rgb(255, 69, 0)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"November","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164725,-0.18164725,-0.18164725,-0.18164724,-0.18164724,-0.18164722,-0.1816472,-0.18164717,-0.18164712,-0.18164705,-0.18164695,-0.18164679,-0.18164655,-0.18164621,-0.18164572,-0.18164501,-0.18164401,-0.18164259,-0.18164063,-0.18163791,-0.1816342,-0.18162917,-0.18162241,-0.18161343,-0.18160159,-0.18158612,-0.18156612,-0.18154049,-0.18150795,-0.18146702,-0.18141601,-0.18135305,-0.18127605,-0.18118276,-0.18107079,-0.18093764,-0.18078077,-0.18059768,-0.18038592,-0.18014326,-0.1798677,-0.17955756,-0.1792116,-0.17882902,-0.17840954,-0.17795341,-0.17746141,-0.17693485,-0.17637547,-0.17578545,-0.17516725,-0.17452358,-0.1738573,-0.17317131,-0.17246853,-0.17175183,-0.17102407,-0.17028807,-0.1695467,-0.16880297,-0.16806012,-0.16732175,-0.16659191,-0.16587523,-0.16517696,-0.16450295,-0.16385971,-0.1632542,-0.16269377,-0.16218587,-0.16173787,-0.16135669,-0.16104853,-0.16081857,-0.16067069,-0.1606072,-0.1606287,-0.16073395,-0.16091988,-0.1611816,-0.16151256,-0.16190477,-0.16234905,-0.16283531,-0.16335293,-0.163891,-0.16443869,-0.16498546,-0.16552134,-0.16603703,-0.16652404,-0.16697473,-0.16738232,-0.16774085,-0.16804511,-0.16829059,-0.1684734,-0.16859026,-0.16863843,-0.16861579,-0.16852086,-0.16835288,-0.16811196,-0.16779918,-0.16741674,-0.16696808,-0.16645795,-0.1658925,-0.16527926,-0.16462708,-0.16394604,-0.16324723,-0.16254254,-0.16184441,-0.16116542,-0.16051805,-0.15991425,-0.15936514,-0.15888066,-0.15846929,-0.15813781,-0.15789107,-0.15773187,-0.1576609,-0.15767667,-0.1577756,-0.15795207,-0.1581986,-0.15850604,-0.15886377,-0.15925996,-0.15968191,-0.16011626,-0.16054934,-0.16096748,-0.16135727,-0.16170588,-0.16200133,-0.16223276,-0.16239065,-0.16246707,-0.16245587,-0.16235288,-0.16215604,-0.16186553,-0.16148386,-0.1610159,-0.16046885,-0.15985221,-0.15917759,-0.15845854,-0.15771027,-0.1569493,-0.15619311,-0.15545966,-0.15476695,-0.15413254,-0.15357307,-0.15310386,-0.15273847,-0.15248836,-0.15236267,-0.15236804,-0.15250845,-0.15278528,-0.15319734,-0.15374099,-0.15441036,-0.15519755,-0.15609292,-0.15708536,-0.15816256,-0.15931135,-0.16051795,-0.16176826,-0.16304814,-0.16434363,-0.16564122,-0.16692803,-0.16819203,-0.16942224,-0.17060883,-0.17174327,-0.17281843,-0.17382861,-0.17476958,-0.17563856,-0.17643418,-0.17715635,-0.1778062,-0.1783859,-0.17889854,-0.1793479,-0.17973835,-0.18007462,-0.18036167,-0.18060453,-0.18080817,-0.18097741,-0.18111679,-0.18123056,-0.18132258,-0.18139635,-0.18145495,-0.18150108,-0.18153706,-0.18156488,-0.18158619,-0.18160237,-0.18161454,-0.18162361,-0.18163031,-0.18163522,-0.18163878,-0.18164133,-0.18164315,-0.18164444,-0.18164534,-0.18164596,-0.18164639,-0.18164668,-0.18164688,-0.18164701,-0.1816471,-0.18164716,-0.18164719,-0.18164722,-0.18164723,-0.18164724,-0.18164725,-0.18164725,-0.18164725,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726],"zorder":21,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198],"zorder":22,"type":"scatter"},{"customdata":[[7.0497533e-06],[9.7550087e-06],[1.3380184e-05],[1.8191971e-05],[2.4517919e-05],[3.2754953e-05],[4.3377424e-05],[5.6944053e-05],[7.4103029e-05],[9.5594379e-05],[0.00012224872],[0.00015498139],[0.00019478115],[0.00024269264],[0.00029979212],[0.00036715636],[0.00044582496],[0.00053675679],[0.00064078217],[0.0007585524],[0.00089048943],[0.0010367383],[0.0011971259],[0.0013711286],[0.0015578527],[0.0017560296],[0.0019640273],[0.0021798804],[0.0024013359],[0.0026259156],[0.0028509906],[0.0030738641],[0.0032918579],[0.0035023972],[0.0037030878],[0.0038917802],[0.0040666181],[0.0042260664],[0.0043689187],[0.0044942843],[0.004601558],[0.0046903757],[0.0047605618],[0.0048120739],[0.0048449525],[0.0048592797],[0.0048551533],[0.0048326787],[0.0047919809],[0.0047332355],[0.0046567162],[0.0045628552],[0.0044523099],[0.0043260306],[0.004185322],[0.0040318925],[0.003867886],[0.0036958921],[0.0035189337],[0.0033404299],[0.0031641366],[0.0029940675],[0.0028344001],[0.0026893704],[0.0025631637],[0.0024598048],[0.0023830548],[0.0023363183],[0.0023225635],[0.0023442607],[0.0024033385],[0.00250116],[0.0026385179],[0.0028156493],[0.0030322663],[0.0032876026],[0.0035804716],[0.0039093344],[0.0042723735],[0.0046675691],[0.0050927752],[0.0055457908],[0.006024425],[0.00652655],[0.0070501441],[0.0075933174],[0.0081543239],[0.0087315556],[0.0093235211],[0.0099288077],[0.010546031],[0.011173772],[0.011810508],[0.012454539],[0.01310392],[0.013756394],[0.014409343],[0.015059767],[0.015704276],[0.016339121],[0.016960267],[0.017563489],[0.018144523],[0.018699232],[0.019223817],[0.019715028],[0.020170394],[0.020588427],[0.020968808],[0.021312528],[0.02162196],[0.021900871],[0.022154346],[0.022388629],[0.02261089],[0.02282891],[0.023050728],[0.023284235],[0.023536774],[0.023814748],[0.024123273],[0.024465899],[0.024844419],[0.025258777],[0.025707086],[0.026185757],[0.026689715],[0.027212719],[0.027747724],[0.028287293],[0.028824021],[0.02935093],[0.029861836],[0.030351637],[0.030816536],[0.031254154],[0.031663559],[0.032045187],[0.032400686],[0.032732668],[0.033044411],[0.033339508],[0.033621506],[0.033893526],[0.034157924],[0.034415973],[0.034667613],[0.034911269],[0.035143747],[0.03536023],[0.035554349],[0.035718359],[0.035843384],[0.035919738],[0.035937299],[0.035885921],[0.03575586],[0.03553819],[0.035225199],[0.034810735],[0.034290485],[0.033662184],[0.032925733],[0.032083239],[0.031138957],[0.030099165],[0.028971966],[0.027767031],[0.026495311],[0.025168713],[0.023799782],[0.022401373],[0.020986351],[0.01956731],[0.018156329],[0.016764764],[0.015403074],[0.014080694],[0.012805933],[0.011585913],[0.010426538],[0.0093324897],[0.008307242],[0.0073531046],[0.0064712796],[0.0056619349],[0.0049242917],[0.0042567215],[0.0036568534],[0.003121686],[0.0026477029],[0.0022309895],[0.0018673469],[0.0015524009],[0.0012817046],[0.00105083],[0.0008554497],[0.00069140544],[0.00055476371],[0.00044185798],[0.00034931808],[0.00027408751],[0.00021342985],[0.00016492572],[0.00012646206],[9.6215186e-05],[7.2629484e-05],[5.4393143e-05],[4.0412389e-05],[2.9785348e-05],[2.1776521e-05],[1.5792579e-05],[1.1360006e-05],[8.1049099e-06],[5.7351689e-06],[4.0249247e-06],[2.8013597e-06],[1.933599e-06],[1.3235427e-06],[8.9840445e-07],[6.0472403e-07],[4.0363016e-07],[2.6714147e-07],[1.7531584e-07],[1.140813e-07],[7.360598e-08],[4.7087904e-08],[2.9867302e-08],[1.8783051e-08],[1.1711522e-08],[7.2398828e-09],[4.4372605e-09],[2.6962372e-09],[1.6242614e-09],[9.7007102e-10],[5.7437611e-10],[3.3715539e-10],[1.9620074e-10],[1.1318898e-10],[6.4734668e-11],[3.6702493e-11],[2.0628934e-11],[1.1494167e-11],[6.3488461e-12],[3.4763694e-12],[1.8869841e-12],[1.0153583e-12],[5.4159767e-13],[2.8637721e-13],[1.5010744e-13],[7.7994881e-14],[4.0172441e-14],[2.0510999e-14],[1.0381024e-14],[5.2081897e-15],[2.5901509e-15],[1.2768903e-15],[6.2398054e-16],[3.0225683e-16],[1.4513348e-16],[6.9078737e-17],[3.2591574e-17],[1.5242262e-17],[7.0660332e-18],[3.2470066e-18],[1.4790097e-18],[6.677877e-19],[2.9887153e-19],[1.3258935e-19],[5.830557e-20],[2.5414879e-20],[1.0981003e-20],[4.7029603e-21],[1.996528e-21],[8.4014403e-22],[3.5043364e-22],[1.4488755e-22],[5.9378485e-23],[2.4121231e-23],[9.7127391e-24],[3.87664e-24],[1.5336997e-24],[6.0144507e-25],[2.3378789e-25],[9.007788e-26],[3.4402031e-26],[1.3023254e-26],[4.8867951e-27],[1.8175975e-27],[6.7010057e-28],[2.4487854e-28],[8.8701243e-29],[3.1847599e-29],[1.1334217e-29],[3.9982868e-30],[1.3980535e-30],[4.845526e-31],[1.6646585e-31],[5.6686064e-32],[1.9133492e-32],[6.4014567e-33],[2.1229017e-33],[6.978263e-34],[2.2736889e-34],[7.3431241e-35],[2.3506974e-35],[7.4589636e-36],[2.3459895e-36],[7.3137375e-37],[2.2600513e-37],[6.9224966e-38],[2.1017094e-38],[6.324817e-39],[1.8866379e-39],[5.578204e-40],[1.6348028e-40],[4.7489924e-41],[1.3674221e-41],[3.9027318e-42],[1.1040779e-42],[3.095962e-43],[8.6051083e-44],[2.3707285e-44],[6.4739902e-45],[1.7523745e-45],[4.7016085e-46],[1.2503471e-46],[3.2959399e-47],[8.6117718e-48],[2.2303357e-48],[5.7254866e-49],[1.456864e-49],[3.6744302e-50],[9.1859776e-51],[2.276277e-51],[5.5909955e-52],[1.361186e-52],[3.2848087e-53],[7.8571842e-54],[1.8628935e-54],[4.3779754e-55],[1.0198183e-55],[2.3547047e-56],[5.3890754e-57],[1.2225207e-57],[2.7489211e-58],[6.1267824e-59],[1.3535264e-59],[2.9639104e-60],[6.4332064e-61],[1.3840569e-61],[2.9515114e-62],[6.2387705e-63],[1.3071264e-63],[2.7145644e-64],[5.5878755e-65],[1.1401376e-65],[2.3058541e-66],[4.6224301e-67],[9.1848663e-68],[1.809003e-68],[3.5315851e-69],[6.8338276e-70],[1.3107573e-70],[2.4919797e-71],[4.6960276e-72],[8.7716379e-73],[1.6240323e-73],[2.9803862e-74],[5.4214358e-75],[9.7750728e-76],[1.7469866e-76],[3.0947319e-77],[5.4340094e-78],[9.4576148e-79],[1.6315738e-79],[2.7899455e-80],[4.7287742e-81],[7.9444768e-82],[1.3229575e-82],[2.1836868e-83],[3.5727173e-84],[5.7938977e-85],[9.3133698e-86],[1.4839071e-86],[2.3435296e-87],[3.6685802e-88],[5.6923217e-89],[8.7547691e-90],[1.334639e-90],[2.0167253e-91],[3.0206021e-92],[4.4843978e-93],[6.5990069e-94],[9.6253574e-95],[1.3916146e-95],[1.9942744e-96],[2.8327921e-97],[3.9884881e-98],[5.5662886e-99]],"fill":"tonexty","fillcolor":"rgb(0, 191, 255)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"December","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.19980493,-0.19980223,-0.1997986,-0.19979379,-0.19978747,-0.19977923,-0.19976861,-0.19975504,-0.19973788,-0.19971639,-0.19968973,-0.199657,-0.1996172,-0.19956929,-0.19951219,-0.19944483,-0.19936616,-0.19927523,-0.1991712,-0.19905343,-0.19892149,-0.19877525,-0.19861486,-0.19844085,-0.19825413,-0.19805595,-0.19784796,-0.1976321,-0.19741065,-0.19718607,-0.19696099,-0.19673812,-0.19652013,-0.19630959,-0.1961089,-0.1959202,-0.19574537,-0.19558592,-0.19544306,-0.1953177,-0.19521043,-0.19512161,-0.19505142,-0.19499991,-0.19496703,-0.1949527,-0.19495683,-0.1949793,-0.19502,-0.19507875,-0.19515527,-0.19524913,-0.19535967,-0.19548595,-0.19562666,-0.19578009,-0.1959441,-0.19611609,-0.19629305,-0.19647155,-0.19664785,-0.19681792,-0.19697758,-0.19712261,-0.19724882,-0.19735218,-0.19742893,-0.19747567,-0.19748942,-0.19746772,-0.19740865,-0.19731082,-0.19717347,-0.19699633,-0.19677972,-0.19652438,-0.19623151,-0.19590265,-0.19553961,-0.19514441,-0.19471921,-0.19426619,-0.19378756,-0.19328543,-0.19276184,-0.19221867,-0.19165766,-0.19108043,-0.19048846,-0.18988318,-0.18926595,-0.18863821,-0.18800148,-0.18735744,-0.18670806,-0.18605559,-0.18540264,-0.18475222,-0.18410771,-0.18347286,-0.18285172,-0.18224849,-0.18166746,-0.18111275,-0.18058817,-0.18009696,-0.17964159,-0.17922356,-0.17884318,-0.17849946,-0.17819002,-0.17791111,-0.17765764,-0.17742335,-0.17720109,-0.17698307,-0.17676126,-0.17652775,-0.17627521,-0.17599724,-0.17568871,-0.17534608,-0.17496756,-0.17455321,-0.1741049,-0.17362623,-0.17312227,-0.17259926,-0.17206426,-0.17152469,-0.17098796,-0.17046105,-0.16995015,-0.16946035,-0.16899545,-0.16855783,-0.16814843,-0.1677668,-0.1674113,-0.16707932,-0.16676757,-0.16647248,-0.16619048,-0.16591846,-0.16565406,-0.16539601,-0.16514437,-0.16490072,-0.16466824,-0.16445175,-0.16425763,-0.16409362,-0.1639686,-0.16389225,-0.16387468,-0.16392606,-0.16405612,-0.16427379,-0.16458678,-0.16500125,-0.1655215,-0.1661498,-0.16688625,-0.16772874,-0.16867303,-0.16971282,-0.17084002,-0.17204495,-0.17331667,-0.17464327,-0.1760122,-0.17741061,-0.17882563,-0.18024467,-0.18165565,-0.18304722,-0.18440891,-0.18573129,-0.18700605,-0.18822607,-0.18938545,-0.19047949,-0.19150474,-0.19245888,-0.1933407,-0.19415005,-0.19488769,-0.19555526,-0.19615513,-0.1966903,-0.19716428,-0.19758099,-0.19794464,-0.19825958,-0.19853028,-0.19876115,-0.19895653,-0.19912058,-0.19925722,-0.19937013,-0.19946267,-0.1995379,-0.19959855,-0.19964706,-0.19968552,-0.19971577,-0.19973935,-0.19975759,-0.19977157,-0.1997822,-0.19979021,-0.19979619,-0.19980062,-0.19980388,-0.19980625,-0.19980796,-0.19980918,-0.19981005,-0.19981066,-0.19981109,-0.19981138,-0.19981158,-0.19981172,-0.19981181,-0.19981187,-0.19981191,-0.19981194,-0.19981195,-0.19981196,-0.19981197,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198],"zorder":22,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198],"zorder":23,"type":"scatter"},{"customdata":[[1.7309546e-34],[5.3232074e-34],[1.6226502e-33],[4.9027552e-33],[1.4683153e-32],[4.3587528e-32],[1.2825342e-31],[3.7405845e-31],[1.0813687e-30],[3.0986456e-30],[8.8010367e-30],[2.4777618e-29],[6.9143137e-29],[1.9125042e-28],[5.2434791e-28],[1.4249528e-27],[3.8383555e-27],[1.0248345e-26],[2.7122272e-26],[7.114792e-26],[1.8499592e-25],[4.7678862e-25],[1.2180172e-24],[3.0842159e-24],[7.7410508e-24],[1.9258341e-23],[4.7489939e-23],[1.1607753e-22],[2.8122797e-22],[6.7535585e-22],[1.6075727e-21],[3.7929086e-21],[8.8702924e-21],[2.0562092e-20],[4.7245501e-20],[1.0760128e-19],[2.4290597e-19],[5.4352904e-19],[1.2055108e-18],[2.6502283e-18],[5.7750967e-18],[1.2473807e-17],[2.6705617e-17],[5.6672189e-17],[1.1920684e-16],[2.4853991e-16],[5.1363537e-16],[1.0521496e-15],[2.1363081e-15],[4.2994616e-15],[8.576855e-15],[1.6959219e-14],[3.3238962e-14],[6.4573279e-14],[1.243432e-13],[2.3733131e-13],[4.4900567e-13],[8.4200065e-13],[1.565081e-12],[2.8835337e-12],[5.2659537e-12],[9.5321933e-12],[1.7103006e-11],[3.0416964e-11],[5.3619538e-11],[9.3690181e-11],[1.6226651e-10],[2.7856562e-10],[4.7401264e-10],[7.9949573e-10],[1.3366145e-09],[2.2149299e-09],[3.638125e-09],[5.923236e-09],[9.5588196e-09],[1.5290205e-08],[2.4242987e-08],[3.8099805e-08],[5.9350337e-08],[9.1640495e-08],[1.4025407e-07],[2.1276849e-07],[3.1993588e-07],[4.7685066e-07],[7.0447507e-07],[1.0316032e-06],[1.4973507e-06],[2.1542603e-06],[3.0721091e-06],[4.3424906e-06],[6.0842206e-06],[8.449574e-06],[1.1631306e-05],[1.587033e-05],[2.1463831e-05],[2.8773477e-05],[3.8233253e-05],[5.035632e-05],[6.5740127e-05],[8.5068922e-05],[0.00010911266],[0.00013872134],[0.00017481361],[0.00021835902],[0.00027035288],[0.00033178357],[0.00040359228],[0.00048662569],[0.00058158283],[0.00068895791],[0.00080898163],[0.00094156408],[0.0010862428],[0.0012421398],[0.0014079319],[0.0015818373],[0.0017616231],[0.0019446341],[0.0021278465],[0.0023079448],[0.002481421],[0.0026446939],[0.0027942427],[0.0029267508],[0.0030392527],[0.0031292777],[0.0031949828],[0.0032352704],[0.0032498826],[0.0032394719],[0.0032056422],[0.0031509624],[0.0030789515],[0.0029940391],[0.0029015037],[0.0028073928],[0.0027184304],[0.0026419134],[0.002585602],[0.0025576046],[0.0025662572],[0.002619998],[0.002727233],[0.0028961906],[0.0031347618],[0.0034503228],[0.0038495379],[0.0043381436],[0.0049207142],[0.005600416],[0.0063787569],[0.0072553419],[0.0082276496],[0.0092908442],[0.010437639],[0.011658228],[0.012940305],[0.014269166],[0.015627932],[0.016997862],[0.018358775],[0.01968956],[0.02096877],[0.022175254],[0.023288828],[0.024290929],[0.025165247],[0.025898268],[0.026479732],[0.026902971],[0.027165092],[0.027267029],[0.02721343],[0.027012408],[0.026675169],[0.026215525],[0.025649347],[0.024993961],[0.024267549],[0.02348856],[0.022675179],[0.021844867],[0.021013991],[0.020197551],[0.019409008],[0.018660205],[0.017961366],[0.017321163],[0.016746818],[0.016244244],[0.015818174],[0.015472287],[0.015209306],[0.01503107],[0.014938559],[0.014931904],[0.01501036],[0.015172278],[0.015415076],[0.015735218],[0.016128229],[0.01658875],[0.01711063],[0.017687068],[0.018310808],[0.018974357],[0.019670239],[0.020391259],[0.021130754],[0.021882824],[0.022642518],[0.023405962],[0.024170417],[0.024934246],[0.025696813],[0.026458286],[0.027219371],[0.027980983],[0.028743871],[0.029508224],[0.030273272],[0.031036921],[0.031795434],[0.032543192],[0.033272554],[0.033973826],[0.034635354],[0.035243748],[0.03578423],[0.036241083],[0.036598212],[0.036839759],[0.036950765],[0.036917838],[0.036729794],[0.036378229],[0.035858008],[0.035167627],[0.034309435],[0.033289703],[0.032118532],[0.030809616],[0.02937985],[0.027848826],[0.026238223],[0.024571139],[0.022871382],[0.021162753],[0.019468367],[0.017810017],[0.016207619],[0.014678755],[0.013238317],[0.011898259],[0.010667474],[0.0095517622],[0.0085539097],[0.0076738493],[0.0069088966],[0.0062540446],[0.005702303],[0.0052450674],[0.0048725035],[0.0045739344],[0.0043382199],[0.0041541163],[0.0040106084],[0.003897207],[0.003804204],[0.0037228822],[0.0036456748],[0.0035662747],[0.003479691],[0.0033822567],[0.0032715893],[0.0031465094],[0.0030069231],[0.0028536769],[0.0026883914],[0.0025132834],[0.0023309855],[0.0021443702],[0.0019563859],[0.0017699117],[0.0015876347],[0.0014119531],[0.0012449057],[0.0010881294],[0.00094284015],[0.00080983751],[0.00068952714],[0.00058195824],[0.00048687119],[0.00040375147],[0.00033188592],[0.00027041813],[0.00021840027],[0.00017483946],[0.0001387374],[0.00010912256],[8.507497e-05],[6.574379e-05],[5.035852e-05],[3.8234563e-05],[2.877425e-05],[2.1464284e-05],[1.5870593e-05],[1.1631457e-05],[8.4496602e-06],[6.0842693e-06],[4.3425179e-06],[3.0721243e-06],[2.1542687e-06],[1.4973553e-06],[1.0316057e-06],[7.044764e-07],[4.7685137e-07],[3.1993625e-07],[2.1276868e-07],[1.4025417e-07],[9.1640547e-08],[5.9350364e-08],[3.8099819e-08],[2.4242994e-08],[1.5290208e-08],[9.5588212e-09],[5.9232368e-09],[3.6381254e-09],[2.2149301e-09],[1.3366146e-09],[7.9949577e-10],[4.7401266e-10],[2.7856563e-10],[1.6226651e-10],[9.3690183e-11],[5.3619539e-11],[3.0416964e-11],[1.7103006e-11],[9.5321934e-12],[5.2659537e-12],[2.8835337e-12],[1.565081e-12],[8.4200065e-13],[4.4900567e-13],[2.3733131e-13],[1.243432e-13],[6.4573279e-14],[3.3238962e-14],[1.6959219e-14],[8.576855e-15],[4.2994616e-15],[2.1363081e-15],[1.0521496e-15],[5.1363537e-16],[2.4853991e-16],[1.1920684e-16],[5.6672189e-17],[2.6705617e-17],[1.2473807e-17],[5.7750967e-18],[2.6502283e-18],[1.2055108e-18],[5.4352904e-19],[2.4290597e-19],[1.0760128e-19],[4.7245501e-20],[2.0562092e-20],[8.8702924e-21],[3.7929086e-21],[1.6075727e-21],[6.7535585e-22],[2.8122797e-22],[1.1607753e-22],[4.7489939e-23],[1.9258341e-23],[7.7410508e-24],[3.0842159e-24],[1.2180172e-24],[4.7678862e-25],[1.8499592e-25],[7.114792e-26],[2.7122272e-26],[1.0248345e-26],[3.8383555e-27],[1.4249528e-27],[5.2434791e-28],[1.9125042e-28],[6.9143137e-29],[2.4777618e-29],[8.8010367e-30],[3.0986456e-30],[1.0813687e-30],[3.7405845e-31],[1.2825342e-31],[4.3587528e-32],[1.4683153e-32],[4.9027552e-33],[1.6226502e-33],[5.3232074e-34],[1.7309546e-34]],"fill":"tonexty","fillcolor":"rgb(255, 69, 0)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"December","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981197,-0.19981197,-0.19981196,-0.19981195,-0.19981192,-0.19981189,-0.19981184,-0.19981177,-0.19981166,-0.19981151,-0.19981128,-0.19981095,-0.19981049,-0.19980983,-0.19980891,-0.19980764,-0.1998059,-0.19980353,-0.19980035,-0.19979611,-0.19979052,-0.19978321,-0.19977375,-0.19976163,-0.19974624,-0.19972691,-0.19970287,-0.19967326,-0.19963717,-0.19959362,-0.19954163,-0.1994802,-0.19940839,-0.19932536,-0.1992304,-0.19912303,-0.199003,-0.19887042,-0.19872574,-0.19856984,-0.19840405,-0.19823015,-0.19805036,-0.19786735,-0.19768414,-0.19750404,-0.19733056,-0.19716729,-0.19701774,-0.19688523,-0.19677273,-0.19668271,-0.196617,-0.19657671,-0.1965621,-0.19657251,-0.19660634,-0.19666102,-0.19673303,-0.19681794,-0.19691048,-0.19700459,-0.19709355,-0.19717007,-0.19722638,-0.19725438,-0.19724573,-0.19719199,-0.19708475,-0.19691579,-0.19667722,-0.19636166,-0.19596245,-0.19547384,-0.19489127,-0.19421157,-0.19343323,-0.19255664,-0.19158433,-0.19052114,-0.18937434,-0.18815376,-0.18687168,-0.18554282,-0.18418405,-0.18281412,-0.18145321,-0.18012242,-0.17884321,-0.17763673,-0.17652316,-0.17552105,-0.17464674,-0.17391372,-0.17333225,-0.17290901,-0.17264689,-0.17254495,-0.17259855,-0.17279958,-0.17313681,-0.17359646,-0.17416264,-0.17481802,-0.17554443,-0.17632342,-0.1771368,-0.17796712,-0.17879799,-0.17961443,-0.18040298,-0.18115178,-0.18185062,-0.18249082,-0.18306517,-0.18356774,-0.18399381,-0.1843397,-0.18460268,-0.18478091,-0.18487342,-0.18488008,-0.18480162,-0.18463971,-0.18439691,-0.18407677,-0.18368375,-0.18322323,-0.18270135,-0.18212492,-0.18150118,-0.18083763,-0.18014174,-0.17942072,-0.17868123,-0.17792916,-0.17716947,-0.17640602,-0.17564157,-0.17487774,-0.17411517,-0.1733537,-0.17259261,-0.171831,-0.17106811,-0.17030376,-0.16953871,-0.16877506,-0.16801655,-0.16726879,-0.16653943,-0.16583816,-0.16517663,-0.16456824,-0.16402775,-0.1635709,-0.16321377,-0.16297222,-0.16286122,-0.16289415,-0.16308219,-0.16343376,-0.16395398,-0.16464436,-0.16550255,-0.16652228,-0.16769345,-0.16900237,-0.17043213,-0.17196316,-0.17357376,-0.17524084,-0.1769406,-0.17864923,-0.18034362,-0.18200197,-0.18360436,-0.18513323,-0.18657367,-0.18791372,-0.18914451,-0.19026022,-0.19125807,-0.19213813,-0.19290309,-0.19355794,-0.19410968,-0.19456692,-0.19493948,-0.19523805,-0.19547376,-0.19565787,-0.19580138,-0.19591478,-0.19600778,-0.1960891,-0.19616631,-0.19624571,-0.19633229,-0.19642973,-0.19654039,-0.19666547,-0.19680506,-0.19695831,-0.19712359,-0.1972987,-0.197481,-0.19766761,-0.1978556,-0.19804207,-0.19822435,-0.19840003,-0.19856708,-0.19872385,-0.19886914,-0.19900215,-0.19912246,-0.19923003,-0.19932511,-0.19940823,-0.1994801,-0.19954157,-0.19959358,-0.19963714,-0.19967325,-0.19970286,-0.19972691,-0.19974624,-0.19976163,-0.19977375,-0.19978321,-0.19979052,-0.19979611,-0.19980035,-0.19980353,-0.1998059,-0.19980764,-0.19980891,-0.19980983,-0.19981049,-0.19981095,-0.19981128,-0.19981151,-0.19981166,-0.19981177,-0.19981184,-0.19981189,-0.19981192,-0.19981195,-0.19981196,-0.19981197,-0.19981197,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198],"zorder":23,"type":"scatter"}],"layout":{"template":{"data":{"histogram2dcontour":[{"type":"histogram2dcontour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"choropleth":[{"type":"choropleth","colorbar":{"outlinewidth":0,"ticks":""}}],"histogram2d":[{"type":"histogram2d","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmap":[{"type":"heatmap","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmapgl":[{"type":"heatmapgl","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"contourcarpet":[{"type":"contourcarpet","colorbar":{"outlinewidth":0,"ticks":""}}],"contour":[{"type":"contour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"surface":[{"type":"surface","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"mesh3d":[{"type":"mesh3d","colorbar":{"outlinewidth":0,"ticks":""}}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"parcoords":[{"type":"parcoords","line":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolargl":[{"type":"scatterpolargl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"scattergeo":[{"type":"scattergeo","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolar":[{"type":"scatterpolar","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"scattergl":[{"type":"scattergl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatter3d":[{"type":"scatter3d","line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattermapbox":[{"type":"scattermapbox","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterternary":[{"type":"scatterternary","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattercarpet":[{"type":"scattercarpet","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"type":"carpet"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}],"barpolar":[{"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"pie":[{"automargin":true,"type":"pie"}]},"layout":{"autotypenumbers":"strict","colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"hovermode":"closest","hoverlabel":{"align":"left"},"paper_bgcolor":"white","plot_bgcolor":"#E5ECF6","polar":{"bgcolor":"#E5ECF6","angularaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"radialaxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"ternary":{"bgcolor":"#E5ECF6","aaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"baxis":{"gridcolor":"white","linecolor":"white","ticks":""},"caxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]]},"xaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"yaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"scene":{"xaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"yaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"zaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"geo":{"bgcolor":"white","landcolor":"#E5ECF6","subunitcolor":"white","showland":true,"showlakes":true,"lakecolor":"white"},"title":{"x":0.05},"mapbox":{"style":"light"}}},"legend":{"traceorder":"normal"},"yaxis":{"showticklabels":true,"tickvals":[0.0,-0.018164725780515447,-0.036329451561030894,-0.05449417734154635,-0.07265890312206179,-0.09082362890257724,-0.1089883546830927,-0.12715308046360815,-0.14531780624412358,-0.16348253202463903,-0.18164725780515448,-0.19981198358566993],"ticktext":[["January"],["February"],["March"],["April"],["May"],["June"],["July"],["August"],["September"],["October"],["November"],["December"]],"zeroline":false,"showgrid":true,"gridcolor":"white","title":{"text":"Month"}},"xaxis":{"range":[-47.5,117.5],"showticklabels":true,"zeroline":false,"showgrid":true,"gridcolor":"white","gridwidth":2,"title":{"text":"Temperature [F]"}},"barmode":"stack","bargap":0,"bargroupgap":0,"font":{"size":14},"title":{"text":"Minimum and maximum daily temperatures in Lincoln, NE (2016)"},"height":600,"width":800,"plot_bgcolor":"rgb(245, 245, 245)","showlegend":false}} +{"data":[{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"zorder":0,"type":"scatter"},{"customdata":[[2.9189075e-16],[6.0207336e-16],[1.2309595e-15],[2.4946152e-15],[5.0110528e-15],[9.9774646e-15],[1.9691438e-14],[3.8521299e-14],[7.4694895e-14],[1.4356472e-13],[2.73509e-13],[5.1649129e-13],[9.6676793e-13],[1.7936998e-12],[3.2987245e-12],[6.0132827e-12],[1.0865434e-11],[1.9460458e-11],[3.4548587e-11],[6.0796636e-11],[1.0604782e-10],[1.8335714e-10],[3.1424539e-10],[5.3384622e-10],[8.9896118e-10],[1.50053e-09],[2.4827275e-09],[4.0718883e-09],[6.6198338e-09],[1.0668048e-08],[1.7041662e-08],[2.698552e-08],[4.2358881e-08],[6.5910767e-08],[1.016647e-07],[1.5544973e-07],[2.3562443e-07],[3.5405135e-07],[5.2739173e-07],[7.7880307e-07],[1.1401345e-06],[1.6547259e-06],[2.3809263e-06],[3.3964471e-06],[4.8036669e-06],[6.7359858e-06],[9.3653052e-06],[1.2910667e-05],[1.7648028e-05],[2.3921075e-05],[3.215289e-05],[4.285817e-05],[5.665559e-05],[7.4279785e-05],[9.6592284e-05],[0.00012459067],[0.00015941511],[0.00020235141],[0.00025482974],[0.0003184182],[0.00039481057],[0.00048580775],[0.00059329254],[0.00071919784],[0.00086546838],[0.0010340165],[0.0012266727],[0.0014451323],[0.0016908978],[0.0019652203],[0.0022690389],[0.0026029207],[0.002967001],[0.0033609266],[0.0037838016],[0.0042341383],[0.0047098137],[0.0052080356],[0.005725319],[0.0062574778],[0.006799634],[0.0073462505],[0.0078911896],[0.0084278028],[0.0089490536],[0.009447675],[0.0099163618],[0.010347994],[0.010735883],[0.011074043],[0.011357455],[0.011582333],[0.011746361],[0.011848895],[0.011891105],[0.011876052],[0.011808684],[0.01169575],[0.01154562],[0.011368029],[0.011173738],[0.010974137],[0.010780809],[0.010605062],[0.010457477],[0.010347465],[0.010282891],[0.010269751],[0.010311949],[0.010411159],[0.010566802],[0.010776124],[0.011034372],[0.011335069],[0.011670355],[0.012031398],[0.012408835],[0.012793232],[0.013175545],[0.013547554],[0.013902251],[0.014234179],[0.014539695],[0.014817159],[0.015067041],[0.015291945],[0.015496555],[0.015687502],[0.015873168],[0.016063429],[0.016269353],[0.016502851],[0.016776312],[0.017102209],[0.0174927],[0.017959225],[0.018512112],[0.019160196],[0.019910458],[0.020767691],[0.021734215],[0.022809624],[0.023990597],[0.025270782],[0.026640745],[0.028088019],[0.029597237],[0.03115037],[0.032727074],[0.034305119],[0.035860928],[0.037370183],[0.038808495],[0.040152109],[0.041378619],[0.042467658],[0.043401539],[0.04416581],[0.044749698],[0.045146418],[0.045353325],[0.045371916],[0.045207661],[0.044869678],[0.044370281],[0.043724398],[0.042948919],[0.042061987],[0.041082271],[0.040028272],[0.038917671],[0.037766778],[0.036590075],[0.035399891],[0.034206214],[0.033016626],[0.031836373],[0.030668541],[0.029514328],[0.02837338],[0.02724418],[0.026124443],[0.025011516],[0.023902747],[0.022795809],[0.02168897],[0.020581292],[0.019472765],[0.018364373],[0.017258086],[0.016156806],[0.015064254],[0.013984823],[0.012923404],[0.011885192],[0.010875489],[0.0098995094],[0.0089621983],[0.0080680673],[0.0072210567],[0.0064244247],[0.0056806692],[0.0049914802],[0.0043577242],[0.0037794586],[0.0032559719],[0.0027858479],[0.0023670477],[0.0019970051],[0.0016727312],[0.0013909215],[0.0011480629],[0.00094053466],[0.00076470104],[0.00061699303],[0.0004939769],[0.00039240901],[0.00030927687],[0.00024182663],[0.00018757845],[0.00014433098],[0.00011015681],[8.3390615e-05],[6.2611984e-05],[4.6624483e-05],[3.4432614e-05],[2.5217948e-05],[1.83155e-05],[1.3191182e-05],[9.4208954e-06],[6.6716421e-06],[4.6848405e-06],[3.2618849e-06],[2.2518798e-06],[1.541403e-06],[1.0461018e-06],[7.0390059e-07],[4.6959324e-07],[3.1059855e-07],[2.0367536e-07],[1.32414e-07],[8.5345554e-08],[5.4534968e-08],[3.4547157e-08],[2.169646e-08],[1.3508318e-08],[8.3376999e-09],[5.1017692e-09],[3.0947255e-09],[1.8610054e-09],[1.1094172e-09],[6.5563431e-10],[3.8410135e-10],[2.2307219e-10],[1.2842767e-10],[7.3296571e-11],[4.146856e-11],[2.3257498e-11],[1.293047e-11],[7.1264228e-12],[3.8934405e-12],[2.1086231e-12],[1.1320529e-12],[6.0247042e-13],[3.1783737e-13],[1.6621623e-13],[8.6166851e-14],[4.4279676e-14],[2.2556162e-14],[1.1389948e-14],[5.7012917e-15],[2.8289092e-15],[1.39142e-15],[6.7840696e-16],[3.2787966e-16],[1.5708335e-16],[7.4599634e-17],[3.5118301e-17],[1.6387774e-17],[7.5804598e-18],[3.4758393e-18],[1.5798354e-18],[7.1178936e-19],[3.1789093e-19],[1.4073149e-19],[6.1757603e-20],[2.6864276e-20],[1.1583637e-20],[4.9510735e-21],[2.0976741e-21],[8.8096866e-22],[3.6674674e-22],[1.5134045e-22],[6.190509e-23],[2.5100355e-23],[1.0088234e-23],[4.0191283e-24],[1.5871927e-24],[6.2130968e-25],[2.4108319e-25],[9.2726904e-26],[3.5352836e-26],[1.3360481e-26],[5.0049407e-27],[1.8584654e-27],[6.840509e-28],[2.4957464e-28],[9.0258946e-29],[3.2356204e-29],[1.1497465e-29],[4.0497063e-30],[1.4139095e-30],[4.8932354e-31],[1.678598e-31],[5.7078581e-32],[1.9238678e-32],[6.4276563e-33],[2.1286545e-33],[6.987673e-34],[2.2737076e-34],[7.3334957e-35],[2.3445617e-35],[7.4299558e-36],[2.3339124e-36],[7.2670206e-37],[2.2428568e-37],[6.861512e-38],[2.0807074e-38],[6.2542455e-39],[1.8634226e-39],[5.5032613e-40],[1.6110205e-40],[4.6747023e-41],[1.3445552e-41],[3.833319e-42],[1.083285e-42],[3.0344624e-43],[8.4254273e-44],[2.3188522e-44],[6.3259389e-45],[1.7105965e-45],[4.585014e-46],[1.2181593e-46],[3.208025e-47],[8.3741641e-48],[2.1667815e-48],[5.5572323e-49],[1.4127706e-49],[3.5600352e-50],[8.892141e-51],[2.2015455e-51],[5.4027908e-52],[1.3142491e-52],[3.1688825e-53],[7.5736181e-54],[1.7941939e-54],[4.2131209e-55],[9.8063404e-56],[2.2624468e-56],[5.1739006e-57],[1.1728054e-57],[2.6351291e-58],[5.868753e-59],[1.2955604e-59],[2.8348969e-60],[6.1487184e-61],[1.3219029e-61],[2.8169688e-62],[5.9502055e-63],[1.2458027e-63],[2.5854363e-64],[5.3184569e-65],[1.0844376e-65],[2.1917477e-66],[4.3907986e-67],[8.7189342e-68],[1.7161297e-68],[3.34814e-69],[6.4747619e-70],[1.241111e-70],[2.3581099e-71],[4.4410326e-72],[8.2903017e-73],[1.533992e-73],[2.8134693e-74],[5.114787e-75],[9.2167781e-76],[1.6462541e-76],[2.9146118e-77],[5.1148233e-78],[8.8970606e-79],[1.5340108e-79],[2.6216589e-80],[4.4410925e-81],[7.4570878e-82],[1.241122e-82],[2.0475069e-83],[3.3481275e-84],[5.426805e-85],[8.7187061e-86]],"fill":"tonexty","fillcolor":"rgb(0, 191, 255)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"January","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[2.9189075e-16,6.0207336e-16,1.2309595e-15,2.4946152e-15,5.0110528e-15,9.9774646e-15,1.9691438e-14,3.8521299e-14,7.4694895e-14,1.4356472e-13,2.73509e-13,5.1649129e-13,9.6676793e-13,1.7936998e-12,3.2987245e-12,6.0132827e-12,1.0865434e-11,1.9460458e-11,3.4548587e-11,6.0796636e-11,1.0604782e-10,1.8335714e-10,3.1424539e-10,5.3384622e-10,8.9896118e-10,1.50053e-09,2.4827275e-09,4.0718883e-09,6.6198338e-09,1.0668048e-08,1.7041662e-08,2.698552e-08,4.2358881e-08,6.5910767e-08,1.016647e-07,1.5544973e-07,2.3562443e-07,3.5405135e-07,5.2739173e-07,7.7880307e-07,1.1401345e-06,1.6547259e-06,2.3809263e-06,3.3964471e-06,4.8036669e-06,6.7359858e-06,9.3653052e-06,1.2910667e-05,1.7648028e-05,2.3921075e-05,3.215289e-05,4.285817e-05,5.665559e-05,7.4279785e-05,9.6592284e-05,0.00012459067,0.00015941511,0.00020235141,0.00025482974,0.0003184182,0.00039481057,0.00048580775,0.00059329254,0.00071919784,0.00086546838,0.0010340165,0.0012266727,0.0014451323,0.0016908978,0.0019652203,0.0022690389,0.0026029207,0.002967001,0.0033609266,0.0037838016,0.0042341383,0.0047098137,0.0052080356,0.005725319,0.0062574778,0.006799634,0.0073462505,0.0078911896,0.0084278028,0.0089490536,0.009447675,0.0099163618,0.010347994,0.010735883,0.011074043,0.011357455,0.011582333,0.011746361,0.011848895,0.011891105,0.011876052,0.011808684,0.01169575,0.01154562,0.011368029,0.011173738,0.010974137,0.010780809,0.010605062,0.010457477,0.010347465,0.010282891,0.010269751,0.010311949,0.010411159,0.010566802,0.010776124,0.011034372,0.011335069,0.011670355,0.012031398,0.012408835,0.012793232,0.013175545,0.013547554,0.013902251,0.014234179,0.014539695,0.014817159,0.015067041,0.015291945,0.015496555,0.015687502,0.015873168,0.016063429,0.016269353,0.016502851,0.016776312,0.017102209,0.0174927,0.017959225,0.018512112,0.019160196,0.019910458,0.020767691,0.021734215,0.022809624,0.023990597,0.025270782,0.026640745,0.028088019,0.029597237,0.03115037,0.032727074,0.034305119,0.035860928,0.037370183,0.038808495,0.040152109,0.041378619,0.042467658,0.043401539,0.04416581,0.044749698,0.045146418,0.045353325,0.045371916,0.045207661,0.044869678,0.044370281,0.043724398,0.042948919,0.042061987,0.041082271,0.040028272,0.038917671,0.037766778,0.036590075,0.035399891,0.034206214,0.033016626,0.031836373,0.030668541,0.029514328,0.02837338,0.02724418,0.026124443,0.025011516,0.023902747,0.022795809,0.02168897,0.020581292,0.019472765,0.018364373,0.017258086,0.016156806,0.015064254,0.013984823,0.012923404,0.011885192,0.010875489,0.0098995094,0.0089621983,0.0080680673,0.0072210567,0.0064244247,0.0056806692,0.0049914802,0.0043577242,0.0037794586,0.0032559719,0.0027858479,0.0023670477,0.0019970051,0.0016727312,0.0013909215,0.0011480629,0.00094053466,0.00076470104,0.00061699303,0.0004939769,0.00039240901,0.00030927687,0.00024182663,0.00018757845,0.00014433098,0.00011015681,8.3390615e-05,6.2611984e-05,4.6624483e-05,3.4432614e-05,2.5217948e-05,1.83155e-05,1.3191182e-05,9.4208954e-06,6.6716421e-06,4.6848405e-06,3.2618849e-06,2.2518798e-06,1.541403e-06,1.0461018e-06,7.0390059e-07,4.6959324e-07,3.1059855e-07,2.0367536e-07,1.32414e-07,8.5345554e-08,5.4534968e-08,3.4547157e-08,2.169646e-08,1.3508318e-08,8.3376999e-09,5.1017692e-09,3.0947255e-09,1.8610054e-09,1.1094172e-09,6.5563431e-10,3.8410135e-10,2.2307219e-10,1.2842767e-10,7.3296571e-11,4.146856e-11,2.3257498e-11,1.293047e-11,7.1264228e-12,3.8934405e-12,2.1086231e-12,1.1320529e-12,6.0247042e-13,3.1783737e-13,1.6621623e-13,8.6166851e-14,4.4279676e-14,2.2556162e-14,1.1389948e-14,5.7012917e-15,2.8289092e-15,1.39142e-15,6.7840696e-16,3.2787966e-16,1.5708335e-16,7.4599634e-17,3.5118301e-17,1.6387774e-17,7.5804598e-18,3.4758393e-18,1.5798354e-18,7.1178936e-19,3.1789093e-19,1.4073149e-19,6.1757603e-20,2.6864276e-20,1.1583637e-20,4.9510735e-21,2.0976741e-21,8.8096866e-22,3.6674674e-22,1.5134045e-22,6.190509e-23,2.5100355e-23,1.0088234e-23,4.0191283e-24,1.5871927e-24,6.2130968e-25,2.4108319e-25,9.2726904e-26,3.5352836e-26,1.3360481e-26,5.0049407e-27,1.8584654e-27,6.840509e-28,2.4957464e-28,9.0258946e-29,3.2356204e-29,1.1497465e-29,4.0497063e-30,1.4139095e-30,4.8932354e-31,1.678598e-31,5.7078581e-32,1.9238678e-32,6.4276563e-33,2.1286545e-33,6.987673e-34,2.2737076e-34,7.3334957e-35,2.3445617e-35,7.4299558e-36,2.3339124e-36,7.2670206e-37,2.2428568e-37,6.861512e-38,2.0807074e-38,6.2542455e-39,1.8634226e-39,5.5032613e-40,1.6110205e-40,4.6747023e-41,1.3445552e-41,3.833319e-42,1.083285e-42,3.0344624e-43,8.4254273e-44,2.3188522e-44,6.3259389e-45,1.7105965e-45,4.585014e-46,1.2181593e-46,3.208025e-47,8.3741641e-48,2.1667815e-48,5.5572323e-49,1.4127706e-49,3.5600352e-50,8.892141e-51,2.2015455e-51,5.4027908e-52,1.3142491e-52,3.1688825e-53,7.5736181e-54,1.7941939e-54,4.2131209e-55,9.8063404e-56,2.2624468e-56,5.1739006e-57,1.1728054e-57,2.6351291e-58,5.868753e-59,1.2955604e-59,2.8348969e-60,6.1487184e-61,1.3219029e-61,2.8169688e-62,5.9502055e-63,1.2458027e-63,2.5854363e-64,5.3184569e-65,1.0844376e-65,2.1917477e-66,4.3907986e-67,8.7189342e-68,1.7161297e-68,3.34814e-69,6.4747619e-70,1.241111e-70,2.3581099e-71,4.4410326e-72,8.2903017e-73,1.533992e-73,2.8134693e-74,5.114787e-75,9.2167781e-76,1.6462541e-76,2.9146118e-77,5.1148233e-78,8.8970606e-79,1.5340108e-79,2.6216589e-80,4.4410925e-81,7.4570878e-82,1.241122e-82,2.0475069e-83,3.3481275e-84,5.426805e-85,8.7187061e-86],"zorder":0,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"zorder":1,"type":"scatter"},{"customdata":[[2.838495e-44],[1.0289775e-43],[3.6973229e-43],[1.3168391e-42],[4.6488104e-42],[1.6267273e-41],[5.6422391e-41],[1.939778e-40],[6.6102267e-40],[2.2327726e-39],[7.4754342e-39],[2.4808023e-38],[8.1604047e-38],[2.6606947e-37],[8.5988858e-37],[2.7545656e-36],[8.7463705e-36],[2.7527478e-35],[8.5875399e-35],[2.6554304e-34],[8.1388842e-34],[2.4726271e-33],[7.4458825e-33],[2.2224783e-32],[6.5754078e-32],[1.9282869e-31],[5.6051136e-31],[1.6149571e-30],[4.6121279e-30],[1.3055861e-29],[3.6633084e-29],[1.0188383e-28],[2.8086707e-28],[7.6746786e-28],[2.0786596e-27],[5.5804645e-27],[1.4849818e-26],[3.9168389e-26],[1.0240333e-25],[2.6537272e-25],[6.8165128e-25],[1.7355297e-24],[4.3799145e-24],[1.0956277e-23],[2.7165907e-23],[6.6765055e-23],[1.6264398e-22],[3.9272686e-22],[9.3995487e-22],[2.2299093e-21],[5.2436199e-21],[1.2221908e-20],[2.8236484e-20],[6.4661538e-20],[1.4677269e-19],[3.3022371e-19],[7.364361e-19],[1.6278924e-18],[3.5668111e-18],[7.7463717e-18],[1.6675557e-17],[3.5581659e-17],[7.5255081e-17],[1.5776449e-16],[3.2782835e-16],[6.7522351e-16],[1.3785179e-15],[2.7895945e-15],[5.5954309e-15],[1.1124739e-14],[2.19235e-14],[4.2824647e-14],[8.2916603e-14],[1.5913035e-13],[3.0271111e-13],[5.7077839e-13],[1.0667693e-12],[1.9762292e-12],[3.628841e-12],[6.6048417e-12],[1.1915732e-11],[2.130801e-11],[3.7768428e-11],[6.6355786e-11],[1.1555602e-10],[1.9946662e-10],[3.4128075e-10],[5.7878503e-10],[9.7294152e-10],[1.6211387e-09],[2.6774268e-09],[4.3830769e-09],[7.1122116e-09],[1.1439167e-08],[1.8236787e-08],[2.8818179e-08],[4.5138706e-08],[7.0080333e-08],[1.0784693e-07],[1.6450692e-07],[2.4872843e-07],[3.7276214e-07],[5.5373695e-07],[8.1534391e-07],[1.1899922e-06],[1.7215265e-06],[2.4685966e-06],[3.5087618e-06],[4.9433989e-06],[6.9034502e-06],[9.5560063e-06],[1.3111652e-05],[1.7832429e-05],[2.4040149e-05],[3.212471e-05],[4.255189e-05],[5.5869993e-05],[7.2714592e-05],[9.3810479e-05],[0.0001199699],[0.00015208611],[0.00019112137],[0.0002380887],[0.00029402678],[0.0003599681],[0.00043690066],[0.00052572409],[0.00062720202],[0.00074191269],[0.00087020094],[0.0010121348],[0.0011674704],[0.0013356297],[0.0015156935],[0.0017064144],[0.0019062518],[0.0021134293],[0.0023260158],[0.0025420279],[0.0027595497],[0.0029768669],[0.0031926054],[0.0034058704],[0.0036163749],[0.0038245501],[0.0040316297],[0.004239701],[0.0044517168],[0.0046714663],[0.004903502],[0.0051530264],[0.0054257415],[0.0057276686],[0.0060649458],[0.0064436147],[0.0068694054],[0.0073475317],[0.0078825053],[0.0084779783],[0.00913662],[0.0098600335],[0.010648711],[0.011502033],[0.012418299],[0.013394794],[0.01442788],[0.015513104],[0.016645316],[0.017818791],[0.019027344],[0.020264441],[0.021523292],[0.022796932],[0.024078289],[0.02536024],[0.026635657],[0.027897441],[0.029138571],[0.030352131],[0.031531362],[0.032669704],[0.033760847],[0.034798787],[0.035777875],[0.036692865],[0.037538957],[0.03831182],[0.03900761],[0.039622967],[0.040155004],[0.040601277],[0.040959757],[0.0412288],[0.041407112],[0.041493743],[0.041488084],[0.041389888],[0.041199319],[0.040917012],[0.04054416],[0.04008261],[0.039534965],[0.038904683],[0.038196169],[0.037414842],[0.036567181],[0.035660735],[0.0347041],[0.033706857],[0.032679471],[0.031633154],[0.030579691],[0.029531241],[0.028500101],[0.027498457],[0.026538113],[0.025630211],[0.024784942],[0.024011263],[0.023316628],[0.022706734],[0.0221853],[0.021753891],[0.02141179],[0.021155939],[0.020980949],[0.020879184],[0.02084093],[0.020854641],[0.020907258],[0.020984594],[0.021071761],[0.021153641],[0.021215361],[0.021242763],[0.021222853],[0.021144189],[0.020997223],[0.020774552],[0.020471091],[0.020084156],[0.01961346],[0.019061014],[0.018430971],[0.017729386],[0.016963941],[0.016143623],[0.015278394],[0.014378842],[0.013455852],[0.012520287],[0.011582705],[0.010653111],[0.0097407437],[0.0088539148],[0.0079998858],[0.0071847904],[0.0064135963],[0.0056901041],[0.005016978],[0.004395804],[0.0038271705],[0.0033107659],[0.0028454887],[0.0024295644],[0.0020606664],[0.0017360351],[0.0014525941],[0.001207058],[0.00099603172],[0.00081609858],[0.0006638961],[0.00053617897],[0.00042986929],[0.00034209417],[0.00027021167],[0.000211826],[0.00016479343],[0.00012722012],[9.7453639e-05],[7.4069427e-05],[5.5853722e-05],[4.1784217e-05],[3.1009552e-05],[2.282859e-05],[1.6670228e-05],[1.2074316e-05],[8.6740695e-06],[6.1802288e-06],[4.3670736e-06],[3.0603054e-06],[2.1267298e-06],[1.4656123e-06],[1.0015484e-06],[6.7866965e-07],[4.5600232e-07],[3.0379946e-07],[2.0068188e-07],[1.3143805e-07],[8.5352662e-08],[5.4952544e-08],[3.5077258e-08],[2.2198491e-08],[1.3927546e-08],[8.6630906e-09],[5.3421054e-09],[3.2657881e-09],[1.979222e-09],[1.1891244e-09],[7.0824257e-10],[4.1817172e-10],[2.4476056e-10],[1.4201651e-10],[8.1685251e-11],[4.6574994e-11],[2.6324704e-11],[1.4749358e-11],[8.1917973e-12],[4.5100306e-12],[2.4613415e-12],[1.3315406e-12],[7.1404442e-13],[3.7956194e-13],[1.9999775e-13],[1.0446027e-13],[5.4082819e-14],[2.775546e-14],[1.4119433e-14],[7.1197499e-15],[3.5586871e-15],[1.7631591e-15],[8.6590249e-16],[4.2152312e-16],[2.0339861e-16],[9.7285474e-17],[4.6123346e-17],[2.1675333e-17],[1.0096767e-17],[4.6619753e-18],[2.1336744e-18],[9.6795777e-19],[4.3526558e-19],[1.9400883e-19],[8.5715143e-20],[3.7537223e-20],[1.6294271e-20],[7.0109297e-21],[2.9900877e-21],[1.2640365e-21],[5.2966635e-22],[2.1999462e-22],[9.0570842e-23],[3.6959938e-23],[1.4949971e-23],[5.9939844e-24],[2.3820826e-24],[9.3834784e-25],[3.6638406e-25],[1.4179954e-25],[5.4397448e-26],[2.068462e-26],[7.7961784e-27],[2.9126018e-27],[1.0785629e-27],[3.9589026e-28],[1.4403532e-28],[5.1943115e-29],[1.8567426e-29],[6.5786998e-30],[2.3104312e-30],[8.0428612e-31],[2.7751892e-31],[9.4915923e-32],[3.2177327e-32],[1.0812477e-32],[3.6013455e-33],[1.1889638e-33],[3.8907809e-34],[1.2620284e-34],[4.0575667e-35],[1.293083e-35],[4.0846161e-36],[1.2789107e-36],[3.9691117e-37],[1.2209854e-37],[3.7229886e-38],[1.1252188e-38],[3.3709031e-39],[1.0009666e-39],[2.9461637e-40],[8.5952431e-41],[2.4855553e-41],[7.1244713e-42],[2.0241645e-42],[5.7003683e-43],[1.591197e-43],[4.4025967e-44],[1.2074184e-44],[3.2822416e-45],[8.8439691e-46]],"fill":"tonexty","fillcolor":"rgb(255, 69, 0)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"January","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[2.838495e-44,1.0289775e-43,3.6973229e-43,1.3168391e-42,4.6488104e-42,1.6267273e-41,5.6422391e-41,1.939778e-40,6.6102267e-40,2.2327726e-39,7.4754342e-39,2.4808023e-38,8.1604047e-38,2.6606947e-37,8.5988858e-37,2.7545656e-36,8.7463705e-36,2.7527478e-35,8.5875399e-35,2.6554304e-34,8.1388842e-34,2.4726271e-33,7.4458825e-33,2.2224783e-32,6.5754078e-32,1.9282869e-31,5.6051136e-31,1.6149571e-30,4.6121279e-30,1.3055861e-29,3.6633084e-29,1.0188383e-28,2.8086707e-28,7.6746786e-28,2.0786596e-27,5.5804645e-27,1.4849818e-26,3.9168389e-26,1.0240333e-25,2.6537272e-25,6.8165128e-25,1.7355297e-24,4.3799145e-24,1.0956277e-23,2.7165907e-23,6.6765055e-23,1.6264398e-22,3.9272686e-22,9.3995487e-22,2.2299093e-21,5.2436199e-21,1.2221908e-20,2.8236484e-20,6.4661538e-20,1.4677269e-19,3.3022371e-19,7.364361e-19,1.6278924e-18,3.5668111e-18,7.7463717e-18,1.6675557e-17,3.5581659e-17,7.5255081e-17,1.5776449e-16,3.2782835e-16,6.7522351e-16,1.3785179e-15,2.7895945e-15,5.5954309e-15,1.1124739e-14,2.19235e-14,4.2824647e-14,8.2916603e-14,1.5913035e-13,3.0271111e-13,5.7077839e-13,1.0667693e-12,1.9762292e-12,3.628841e-12,6.6048417e-12,1.1915732e-11,2.130801e-11,3.7768428e-11,6.6355786e-11,1.1555602e-10,1.9946662e-10,3.4128075e-10,5.7878503e-10,9.7294152e-10,1.6211387e-09,2.6774268e-09,4.3830769e-09,7.1122116e-09,1.1439167e-08,1.8236787e-08,2.8818179e-08,4.5138706e-08,7.0080333e-08,1.0784693e-07,1.6450692e-07,2.4872843e-07,3.7276214e-07,5.5373695e-07,8.1534391e-07,1.1899922e-06,1.7215265e-06,2.4685966e-06,3.5087618e-06,4.9433989e-06,6.9034502e-06,9.5560063e-06,1.3111652e-05,1.7832429e-05,2.4040149e-05,3.212471e-05,4.255189e-05,5.5869993e-05,7.2714592e-05,9.3810479e-05,0.0001199699,0.00015208611,0.00019112137,0.0002380887,0.00029402678,0.0003599681,0.00043690066,0.00052572409,0.00062720202,0.00074191269,0.00087020094,0.0010121348,0.0011674704,0.0013356297,0.0015156935,0.0017064144,0.0019062518,0.0021134293,0.0023260158,0.0025420279,0.0027595497,0.0029768669,0.0031926054,0.0034058704,0.0036163749,0.0038245501,0.0040316297,0.004239701,0.0044517168,0.0046714663,0.004903502,0.0051530264,0.0054257415,0.0057276686,0.0060649458,0.0064436147,0.0068694054,0.0073475317,0.0078825053,0.0084779783,0.00913662,0.0098600335,0.010648711,0.011502033,0.012418299,0.013394794,0.01442788,0.015513104,0.016645316,0.017818791,0.019027344,0.020264441,0.021523292,0.022796932,0.024078289,0.02536024,0.026635657,0.027897441,0.029138571,0.030352131,0.031531362,0.032669704,0.033760847,0.034798787,0.035777875,0.036692865,0.037538957,0.03831182,0.03900761,0.039622967,0.040155004,0.040601277,0.040959757,0.0412288,0.041407112,0.041493743,0.041488084,0.041389888,0.041199319,0.040917012,0.04054416,0.04008261,0.039534965,0.038904683,0.038196169,0.037414842,0.036567181,0.035660735,0.0347041,0.033706857,0.032679471,0.031633154,0.030579691,0.029531241,0.028500101,0.027498457,0.026538113,0.025630211,0.024784942,0.024011263,0.023316628,0.022706734,0.0221853,0.021753891,0.02141179,0.021155939,0.020980949,0.020879184,0.02084093,0.020854641,0.020907258,0.020984594,0.021071761,0.021153641,0.021215361,0.021242763,0.021222853,0.021144189,0.020997223,0.020774552,0.020471091,0.020084156,0.01961346,0.019061014,0.018430971,0.017729386,0.016963941,0.016143623,0.015278394,0.014378842,0.013455852,0.012520287,0.011582705,0.010653111,0.0097407437,0.0088539148,0.0079998858,0.0071847904,0.0064135963,0.0056901041,0.005016978,0.004395804,0.0038271705,0.0033107659,0.0028454887,0.0024295644,0.0020606664,0.0017360351,0.0014525941,0.001207058,0.00099603172,0.00081609858,0.0006638961,0.00053617897,0.00042986929,0.00034209417,0.00027021167,0.000211826,0.00016479343,0.00012722012,9.7453639e-05,7.4069427e-05,5.5853722e-05,4.1784217e-05,3.1009552e-05,2.282859e-05,1.6670228e-05,1.2074316e-05,8.6740695e-06,6.1802288e-06,4.3670736e-06,3.0603054e-06,2.1267298e-06,1.4656123e-06,1.0015484e-06,6.7866965e-07,4.5600232e-07,3.0379946e-07,2.0068188e-07,1.3143805e-07,8.5352662e-08,5.4952544e-08,3.5077258e-08,2.2198491e-08,1.3927546e-08,8.6630906e-09,5.3421054e-09,3.2657881e-09,1.979222e-09,1.1891244e-09,7.0824257e-10,4.1817172e-10,2.4476056e-10,1.4201651e-10,8.1685251e-11,4.6574994e-11,2.6324704e-11,1.4749358e-11,8.1917973e-12,4.5100306e-12,2.4613415e-12,1.3315406e-12,7.1404442e-13,3.7956194e-13,1.9999775e-13,1.0446027e-13,5.4082819e-14,2.775546e-14,1.4119433e-14,7.1197499e-15,3.5586871e-15,1.7631591e-15,8.6590249e-16,4.2152312e-16,2.0339861e-16,9.7285474e-17,4.6123346e-17,2.1675333e-17,1.0096767e-17,4.6619753e-18,2.1336744e-18,9.6795777e-19,4.3526558e-19,1.9400883e-19,8.5715143e-20,3.7537223e-20,1.6294271e-20,7.0109297e-21,2.9900877e-21,1.2640365e-21,5.2966635e-22,2.1999462e-22,9.0570842e-23,3.6959938e-23,1.4949971e-23,5.9939844e-24,2.3820826e-24,9.3834784e-25,3.6638406e-25,1.4179954e-25,5.4397448e-26,2.068462e-26,7.7961784e-27,2.9126018e-27,1.0785629e-27,3.9589026e-28,1.4403532e-28,5.1943115e-29,1.8567426e-29,6.5786998e-30,2.3104312e-30,8.0428612e-31,2.7751892e-31,9.4915923e-32,3.2177327e-32,1.0812477e-32,3.6013455e-33,1.1889638e-33,3.8907809e-34,1.2620284e-34,4.0575667e-35,1.293083e-35,4.0846161e-36,1.2789107e-36,3.9691117e-37,1.2209854e-37,3.7229886e-38,1.1252188e-38,3.3709031e-39,1.0009666e-39,2.9461637e-40,8.5952431e-41,2.4855553e-41,7.1244713e-42,2.0241645e-42,5.7003683e-43,1.591197e-43,4.4025967e-44,1.2074184e-44,3.2822416e-45,8.8439691e-46],"zorder":1,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726],"zorder":2,"type":"scatter"},{"customdata":[[3.9443552e-27],[1.0535101e-26],[2.7891077e-26],[7.3190671e-26],[1.9037506e-25],[4.9082683e-25],[1.254326e-24],[3.1772872e-24],[7.9774932e-24],[1.985365e-23],[4.8975425e-23],[1.1975125e-22],[2.9023237e-22],[6.9722936e-22],[1.6602347e-21],[3.9185678e-21],[9.1674657e-21],[2.1258632e-20],[4.88636e-20],[1.1132681e-19],[2.514075e-19],[5.6275702e-19],[1.2486131e-18],[2.7459913e-18],[5.9859734e-18],[1.2934059e-17],[2.7701248e-17],[5.8806914e-17],[1.237434e-16],[2.5809549e-16],[5.3358493e-16],[1.0934315e-15],[2.2209796e-15],[4.4715971e-15],[8.9237212e-15],[1.7652031e-14],[3.4610582e-14],[6.7264947e-14],[1.2957899e-13],[2.4742663e-13],[4.6830049e-13],[8.7855577e-13],[1.6337322e-12],[3.0113383e-12],[5.5018109e-12],[9.9636757e-12],[1.7885526e-11],[3.1823832e-11],[5.6127066e-11],[9.8120972e-11],[1.7002843e-10],[2.9204657e-10],[4.9722642e-10],[8.3912869e-10],[1.4037057e-09],[2.3275425e-09],[3.8255531e-09],[6.2325676e-09],[1.0065078e-08],[1.6111872e-08],[2.5565544e-08],[4.0211091e-08],[6.269317e-08],[9.6890255e-08],[1.4843202e-07],[2.2540578e-07],[3.3930874e-07],[5.0631454e-07],[7.4893511e-07],[1.0981706e-06],[1.5962504e-06],[2.3000744e-06],[3.2854654e-06],[4.6523348e-06],[6.5308469e-06],[9.08863e-06],[1.2539038e-05],[1.7150391e-05],[2.3256033e-05],[3.126494e-05],[4.1672474e-05],[5.5070745e-05],[7.2157894e-05],[9.3745465e-05],[0.00012076294],[0.00015425839],[0.00019539422],[0.00024543699],[0.00030574048],[0.00037772126],[0.00046282667],[0.00056249504],[0.00067810907],[0.0008109433],[0.00096210759],[0.0011324887],[0.001322693],[0.001532993],[0.0017632812],[0.0020130345],[0.0022812915],[0.0025666457],[0.0028672564],[0.0031808767],[0.0035049],[0.003836423],[0.0041723233],[0.0045093473],[0.0048442075],[0.0051736819],[0.0054947146],[0.0058045119],[0.0061006316],[0.0063810631],[0.0066442967],[0.0068893823],[0.0071159772],[0.0073243842],[0.0075155828],[0.0076912539],[0.0078538002],[0.0080063646],[0.008152844],[0.0082979013],[0.0084469705],[0.0086062534],[0.0087827032],[0.0089839904],[0.0092184442],[0.0094949665],[0.0098229116],[0.010211931],[0.01067178],[0.011212087],[0.011842092],[0.012570361],[0.013404476],[0.014350731],[0.015413823],[0.016596576],[0.017899699],[0.019321582],[0.020858171],[0.022502897],[0.024246689],[0.026078055],[0.027983246],[0.029946478],[0.03195022],[0.033975523],[0.036002388],[0.03801015],[0.039977869],[0.041884714],[0.043710337],[0.045435212],[0.047040957],[0.048510611],[0.04982889],[0.050982397],[0.051959811],[0.052752032],[0.053352304],[0.053756308],[0.053962212],[0.053970698],[0.053784942],[0.053410555],[0.052855482],[0.052129846],[0.051245753],[0.05021704],[0.04905899],[0.047787997],[0.046421218],[0.044976195],[0.043470476],[0.041921246],[0.040344979],[0.038757118],[0.037171801],[0.035601644],[0.034057571],[0.032548715],[0.03108237],[0.029664003],[0.028297324],[0.026984392],[0.025725768],[0.024520698],[0.023367306],[0.022262818],[0.02120378],[0.020186276],[0.019206144],[0.01825917],[0.017341275],[0.016448673],[0.015578007],[0.014726456],[0.013891817],[0.013072552],[0.012267814],[0.011477432],[0.010701881],[0.0099422152],[0.0091999942],[0.0084771781],[0.0077760187],[0.007098941],[0.0064484223],[0.0058268759],[0.0052365412],[0.004679388],[0.0041570359],[0.0036706922],[0.0032211104],[0.0028085693],[0.0024328719],[0.0020933633],[0.0017889643],[0.0015182194],[0.0012793536],[0.0010703369],[0.00088895093],[0.0007328565],[0.00059965721],[0.00048695826],[0.00039241804],[0.00031379134],[0.00024896371],[0.00019597674],[0.00015304482],[0.00011856385],[9.1113162e-05],[6.9451615e-05],[5.2509109e-05],[3.9374776e-05],[2.9282899e-05],[2.1597585e-05],[1.5797023e-05],[1.1458007e-05],[8.2412414e-06],[5.8777715e-06],[4.1567801e-06],[2.9148368e-06],[2.0266264e-06],[1.3970935e-06],[9.5490557e-07],[6.4709785e-07],[4.3475654e-07],[2.8958865e-07],[1.9123585e-07],[1.2519963e-07],[8.1260009e-08],[5.2285976e-08],[3.3352086e-08],[2.1090432e-08],[1.3221119e-08],[8.2161273e-09],[5.0614913e-09],[3.0909978e-09],[1.8712186e-09],[1.1229306e-09],[6.6800712e-10],[3.9391855e-10],[2.3026425e-10],[1.3342558e-10],[7.6637642e-11],[4.3634867e-11],[2.4627022e-11],[1.3777651e-11],[7.6405038e-12],[4.2000156e-12],[2.288551e-12],[1.2360892e-12],[6.6178583e-13],[3.5120644e-13],[1.8474975e-13],[9.6334248e-14],[4.9791156e-14],[2.5509242e-14],[1.2954363e-14],[6.5208919e-15],[3.2536422e-15],[1.6091771e-15],[7.8887582e-16],[3.8333959e-16],[1.8464114e-16],[8.815412e-17],[4.1718215e-17],[1.9569395e-17],[9.0990765e-18],[4.1935823e-18],[1.915758e-18],[8.6748802e-19],[3.8936188e-19],[1.7322487e-19],[7.6389509e-20],[3.3390555e-20],[1.4467045e-20],[6.2130106e-21],[2.6447845e-21],[1.1159488e-21],[4.6672803e-22],[1.9348576e-22],[7.9505928e-23],[3.2382867e-23],[1.3073632e-23],[5.2316932e-24],[2.0751681e-24],[8.1588546e-25],[3.1795812e-25],[1.2282179e-25],[4.7026817e-26],[1.7847623e-26],[6.7139754e-27],[2.5034771e-27],[9.2527741e-28],[3.3897269e-28],[1.2308974e-28],[4.4304037e-29],[1.5806258e-29],[5.5895786e-30],[1.9592656e-30],[6.807251e-31],[2.3443064e-31],[8.0024163e-32],[2.7076469e-32],[9.0808606e-33],[3.0187425e-33],[9.9469331e-34],[3.2487505e-34],[1.051738e-34],[3.3749143e-35],[1.0734503e-35],[3.3842709e-36],[1.0575776e-36],[3.2758451e-37],[1.0057694e-37],[3.0608172e-38],[9.2329462e-39],[2.7606232e-39],[8.1815931e-40],[2.4034358e-40],[6.9982759e-41],[2.0198238e-41],[5.7782962e-42],[1.6385134e-42],[4.605365e-43],[1.2830453e-43],[3.543103e-44],[9.6981619e-45],[2.6312307e-45],[7.0760728e-46],[1.8862076e-46],[4.9836846e-47],[1.3051951e-47],[3.388162e-48],[8.7179974e-49],[2.2234795e-49],[5.6209972e-50],[1.4085019e-50],[3.4983666e-51],[8.6126547e-52],[2.1017089e-52],[5.0836066e-53],[1.2188075e-53],[2.8964239e-54],[6.8226477e-55],[1.5929699e-55],[3.6866002e-56],[8.4568438e-57],[1.9228898e-57],[4.3337544e-58],[9.6813965e-59],[2.1437569e-59],[4.7051867e-60],[1.0236277e-60],[2.2073488e-61],[4.7180629e-62],[9.9958632e-63],[2.0991365e-63],[4.3694309e-64],[9.0151482e-65],[1.8436763e-65],[3.73732e-66],[7.5093043e-67],[1.4955569e-67],[2.9523644e-68],[5.776979e-69],[1.1204576e-69],[2.1540406e-70],[4.10465e-71],[7.7528643e-72],[1.4514833e-72],[2.6935541e-73],[4.9545381e-74],[9.0332585e-75],[1.6324862e-75]],"fill":"tonexty","fillcolor":"rgb(0, 191, 255)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"February","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164725,-0.018164725,-0.018164725,-0.018164724,-0.018164723,-0.018164722,-0.01816472,-0.018164716,-0.01816471,-0.0181647,-0.018164686,-0.018164663,-0.018164629,-0.018164577,-0.0181645,-0.018164386,-0.018164219,-0.018163977,-0.018163628,-0.01816313,-0.018162426,-0.01816144,-0.018160073,-0.018158195,-0.018155637,-0.018152187,-0.018147575,-0.01814147,-0.018133461,-0.018123053,-0.018109655,-0.018092568,-0.01807098,-0.018043963,-0.018010467,-0.017969332,-0.017919289,-0.017858985,-0.017787005,-0.017701899,-0.017602231,-0.017486617,-0.017353782,-0.017202618,-0.017032237,-0.016842033,-0.016631733,-0.016401445,-0.016151691,-0.015883434,-0.01559808,-0.015297469,-0.014983849,-0.014659826,-0.014328303,-0.013992403,-0.013655378,-0.013320518,-0.012991044,-0.012670011,-0.012360214,-0.012064094,-0.011783663,-0.011520429,-0.011275343,-0.011048749,-0.010840342,-0.010649143,-0.010473472,-0.010310926,-0.010158361,-0.010011882,-0.0098668244,-0.0097177553,-0.0095584724,-0.0093820225,-0.0091807354,-0.0089462816,-0.0086697593,-0.0083418141,-0.0079527946,-0.0074929459,-0.0069526391,-0.0063226336,-0.0055943648,-0.0047602493,-0.003813995,-0.0027509031,-0.0015681493,-0.00026502718,0.0011568559,0.0026934448,0.0043381713,0.0060819632,0.0079133297,0.0098185207,0.011781753,0.013785494,0.015810797,0.017837662,0.019845424,0.021813143,0.023719989,0.025545611,0.027270487,0.028876231,0.030345885,0.031664164,0.032817672,0.033795085,0.034587306,0.035187578,0.035591582,0.035797487,0.035805973,0.035620216,0.03524583,0.034690756,0.03396512,0.033081027,0.032052314,0.030894264,0.029623271,0.028256492,0.026811469,0.02530575,0.02375652,0.022180254,0.020592392,0.019007075,0.017436918,0.015892845,0.01438399,0.012917644,0.011499277,0.010132598,0.0088196658,0.0075610427,0.0063559718,0.0052025799,0.0040980923,0.0030390543,0.0020215506,0.0010414178,9.444372e-05,-0.00082345096,-0.0017160525,-0.0025867186,-0.0034382696,-0.004272909,-0.0050921734,-0.0058969116,-0.0066872934,-0.0074628453,-0.0082225106,-0.0089647316,-0.0096875477,-0.010388707,-0.011065785,-0.011716303,-0.01233785,-0.012928185,-0.013485338,-0.01400769,-0.014494034,-0.014943615,-0.015356156,-0.015731854,-0.016071363,-0.016375761,-0.016646506,-0.016885372,-0.017094389,-0.017275775,-0.017431869,-0.017565069,-0.017677768,-0.017772308,-0.017850934,-0.017915762,-0.017968749,-0.018011681,-0.018046162,-0.018073613,-0.018095274,-0.018112217,-0.018125351,-0.018135443,-0.018143128,-0.018148929,-0.018153268,-0.018156485,-0.018158848,-0.018160569,-0.018161811,-0.018162699,-0.018163329,-0.018163771,-0.018164079,-0.018164291,-0.018164436,-0.018164535,-0.018164601,-0.018164645,-0.018164673,-0.018164692,-0.018164705,-0.018164713,-0.018164718,-0.018164721,-0.018164723,-0.018164724,-0.018164725,-0.018164725,-0.018164725,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726],"zorder":2,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726],"zorder":3,"type":"scatter"},{"customdata":[[4.6812804e-57],[2.0479374e-56],[8.8803996e-56],[3.8169119e-55],[1.6261312e-54],[6.8669329e-54],[2.8743116e-53],[1.1925283e-52],[4.9041904e-52],[1.9990781e-51],[8.0771102e-51],[3.2347897e-50],[1.2841031e-49],[5.0526308e-49],[1.9706024e-48],[7.618058e-48],[2.9191293e-47],[1.108731e-46],[4.1741002e-46],[1.5576266e-45],[5.7613946e-45],[2.1123005e-44],[7.676223e-44],[2.7650518e-43],[9.8724005e-43],[3.4938645e-42],[1.2256124e-41],[4.2615155e-41],[1.4687192e-40],[5.0173836e-40],[1.6989462e-39],[5.7022436e-39],[1.8970366e-38],[6.255607e-38],[2.0446879e-37],[6.6244281e-37],[2.1273237e-36],[6.7714638e-36],[2.136463e-35],[6.6814694e-35],[2.0711541e-34],[6.3638021e-34],[1.9381382e-33],[5.8508184e-33],[1.7507024e-32],[5.1924444e-32],[1.5264944e-31],[4.4481804e-31],[1.2847937e-30],[3.6783093e-30],[1.0438232e-29],[2.9360906e-29],[8.1860767e-29],[2.2622782e-28],[6.1969797e-28],[1.6825888e-27],[4.5283477e-27],[1.2079958e-26],[3.1941472e-26],[8.3715973e-26],[2.1748315e-25],[5.6002422e-25],[1.4293938e-24],[3.6162705e-24],[9.0684665e-24],[2.2540873e-23],[5.5535613e-23],[1.3562395e-22],[3.2829569e-22],[7.8769481e-22],[1.8733323e-21],[4.4160675e-21],[1.0318597e-20],[2.3898449e-20],[5.4863423e-20],[1.2484187e-19],[2.8158e-19],[6.2951721e-19],[1.3950112e-18],[3.0641647e-18],[6.6713067e-18],[1.4397071e-17],[3.0796539e-17],[6.5297154e-17],[1.3723069e-16],[2.8587291e-16],[5.9028207e-16],[1.2081229e-15],[2.4509121e-15],[4.9284405e-15],[9.8232826e-15],[1.9407485e-14],[3.8005593e-14],[7.3772012e-14],[1.4193902e-13],[2.7069377e-13],[5.1170687e-13],[9.588067e-13],[1.7807707e-12],[3.278328e-12],[5.9822514e-12],[1.0820446e-11],[1.9399674e-11],[3.4475684e-11],[6.0729704e-11],[1.0603759e-10],[1.8352263e-10],[3.14841e-10],[5.3538432e-10],[9.0243024e-10],[1.5077742e-09],[2.4970934e-09],[4.0993059e-09],[6.6705917e-09],[1.0759657e-08],[1.7203398e-08],[2.7265515e-08],[4.2835018e-08],[6.6707142e-08],[1.029761e-07],[1.5757749e-07],[2.3902799e-07],[3.5942125e-07],[5.3575113e-07],[7.9164633e-07],[1.1596127e-06],[1.6838904e-06],[2.42404e-06],[3.4593746e-06],[4.8943461e-06],[6.864981e-06],[9.5464256e-06],[1.3161618e-05],[1.7991035e-05],[2.4383389e-05],[3.2767029e-05],[4.3661706e-05],[5.7690231e-05],[7.558941e-05],[9.8219555e-05],[0.00012657176],[0.00016177206],[0.00020508162],[0.00025789217],[0.00032171597],[0.00039816991],[0.00048895351],[0.00059582117],[0.00072054909],[0.00086489802],[0.0010305731],[0.0012191828],[0.001432198],[0.0016709149],[0.0019364212],[0.0022295693],[0.002550956],[0.0029009105],[0.0032794883],[0.0036864726],[0.0041213797],[0.0045834666],[0.0050717387],[0.0055849556],[0.0061216325],[0.0066800352],[0.0072581715],[0.0078537755],[0.0084642913],[0.0090868569],[0.0097182927],[0.010355101],[0.010993481],[0.01162936],[0.012258455],[0.012876348],[0.013478601],[0.014060881],[0.014619111],[0.015149633],[0.015649371],[0.016115996],[0.016548064],[0.016945138],[0.017307866],[0.017638022],[0.017938484],[0.018213172],[0.018466917],[0.018705283],[0.018934342],[0.019160401],[0.019389712],[0.019628159],[0.019880948],[0.020152317],[0.020445279],[0.020761417],[0.02110074],[0.021461626],[0.021840846],[0.022233675],[0.022634107],[0.02303514],[0.02342915],[0.023808306],[0.024165038],[0.024492503],[0.024785045],[0.025038602],[0.025251046],[0.025422424],[0.025555077],[0.02565363],[0.025724837],[0.025777286],[0.025820971],[0.025866752],[0.02592573],[0.026008566],[0.026124789],[0.026282132],[0.026485939],[0.026738685],[0.027039643],[0.027384729],[0.02776654],[0.028174589],[0.028595743],[0.029014831],[0.029415397],[0.029780554],[0.030093901],[0.030340424],[0.030507353],[0.030584892],[0.0305668],[0.030450763],[0.030238548],[0.029935906],[0.029552252],[0.029100121],[0.028594442],[0.028051676],[0.027488866],[0.026922673],[0.026368439],[0.025839354],[0.025345765],[0.024894678],[0.024489469],[0.024129827],[0.023811923],[0.023528778],[0.023270822],[0.023026574],[0.02278342],[0.022528417],[0.022249092],[0.021934162],[0.021574156],[0.021161898],[0.020692825],[0.020165139],[0.019579795],[0.018940328],[0.01825255],[0.017524146],[0.016764199],[0.01598267],[0.015189886],[0.014396049],[0.013610802],[0.012842871],[0.01209979],[0.011387728],[0.010711403],[0.010074091],[0.0094777098],[0.0089229699],[0.0084095653],[0.0079363965],[0.0075018007],[0.0071037742],[0.0067401712],[0.0064088683],[0.0061078854],[0.0058354586],[0.0055900663],[0.0053704095],[0.005175355],[0.0050038495],[0.0048548173],[0.0047270509],[0.0046191104],[0.0045292386],[0.0044553048],[0.0043947809],[0.0043447552],[0.0043019839],[0.0042629777],[0.0042241172],[0.0041817904],[0.0041325405],[0.0040732162],[0.0040011105],[0.0039140819],[0.0038106468],[0.0036900385],[0.0035522295],[0.0033979157],[0.0032284646],[0.0030458322],[0.0028524542],[0.0026511197],[0.0024448348],[0.0022366853],[0.0020297061],[0.0018267632],[0.0016304544],[0.0014430326],[0.0012663524],[0.0011018408],[0.00095049131],[0.00081287762],[0.00068918458],[0.0005792518],[0.0004826261],[0.00039861865],[0.00032636309],[0.00026487162],[0.00021308661],[0.0001699258],[0.00013432034],[0.00010524484],[8.1739934e-05],[6.2927479e-05],[4.8019482e-05],[3.6321556e-05],[2.7232042e-05],[2.023783e-05],[1.4907846e-05],[1.0885101e-05],[7.8780046e-06],[5.6515261e-06],[4.0186545e-06],[2.8324401e-06],[1.9788174e-06],[1.3702992e-06],[9.4056687e-07],[6.3992396e-07],[4.3155027e-07],[2.8846867e-07],[1.9113053e-07],[1.2552366e-07],[8.1711872e-08],[5.2724046e-08],[3.3720676e-08],[2.1377049e-08],[1.3432695e-08],[8.366474e-09],[5.1651823e-09],[3.1607686e-09],[1.9171832e-09],[1.1526524e-09],[6.8690545e-10],[4.057508e-10],[2.3756674e-10],[1.3787189e-10],[7.9310304e-11],[4.5221746e-11],[2.5558117e-11],[1.4317731e-11],[7.9502968e-12],[4.3757883e-12],[2.3872234e-12],[1.2909031e-12],[6.9192339e-13],[3.6760905e-13],[1.9358789e-13],[1.0104945e-13],[5.2282165e-14],[2.6812478e-14],[1.3629633e-14],[6.8674445e-15],[3.4298092e-15],[1.6978862e-15],[8.3312656e-16],[4.0520724e-16],[1.9534721e-16],[9.3347141e-17],[4.4213881e-17],[2.075774e-17],[9.6597365e-18],[4.4556832e-18],[2.0371693e-18],[9.2321692e-19],[4.1470969e-19],[1.8464962e-19],[8.1492275e-20]],"fill":"tonexty","fillcolor":"rgb(255, 69, 0)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"February","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164725,-0.018164725,-0.018164725,-0.018164724,-0.018164723,-0.018164722,-0.018164719,-0.018164715,-0.018164709,-0.018164699,-0.018164683,-0.018164659,-0.018164623,-0.018164568,-0.018164487,-0.018164366,-0.01816419,-0.018163934,-0.018163566,-0.018163042,-0.018162302,-0.018161266,-0.018159831,-0.018157861,-0.018155179,-0.018151564,-0.018146735,-0.018140342,-0.018131959,-0.018121064,-0.018107036,-0.018089136,-0.018066506,-0.018038154,-0.018002954,-0.017959644,-0.017906834,-0.01784301,-0.017766556,-0.017675772,-0.017568905,-0.017444177,-0.017299828,-0.017134153,-0.016945543,-0.016732528,-0.016493811,-0.016228305,-0.015935157,-0.01561377,-0.015263815,-0.014885238,-0.014478253,-0.014043346,-0.013581259,-0.013092987,-0.01257977,-0.012043093,-0.011484691,-0.010906554,-0.01031095,-0.0097004344,-0.0090778689,-0.0084464331,-0.0078096246,-0.0071712449,-0.0065353655,-0.0059062712,-0.0052883778,-0.0046861248,-0.0041038451,-0.003545615,-0.0030150932,-0.0025153543,-0.0020487294,-0.0016166614,-0.0012195877,-0.0008568593,-0.00052670413,-0.00022624193,4.8445944e-05,0.00030219087,0.00054055751,0.00076961619,0.00099567551,0.0012249867,0.0014634333,0.001716222,0.001987591,0.0022805534,0.0025966908,0.0029360141,0.0032969007,0.00367612,0.0040689493,0.0044693809,0.0048704146,0.0052644239,0.00564358,0.0060003118,0.0063277772,0.0066203193,0.0068738764,0.0070863206,0.0072576982,0.0073903511,0.0074889042,0.0075601116,0.0076125606,0.0076562453,0.0077020263,0.0077610042,0.0078438402,0.0079600634,0.0081174065,0.0083212136,0.0085739594,0.0088749175,0.0092200037,0.0096018139,0.010009863,0.010431017,0.010850106,0.011250671,0.011615828,0.011929175,0.012175699,0.012342627,0.012420166,0.012402074,0.012286038,0.012073822,0.01177118,0.011387526,0.010935395,0.010429716,0.0098869498,0.0093241403,0.0087579474,0.0082037137,0.0076746285,0.0071810397,0.0067299525,0.0063247432,0.0059651015,0.0056471968,0.0053640523,0.0051060963,0.0048618484,0.0046186938,0.0043636914,0.0040843665,0.0037694363,0.0034094306,0.0029971725,0.0025280991,0.0020004136,0.0014150697,0.00077560198,8.7823728e-05,-0.00064057938,-0.0014005265,-0.0021820555,-0.0029748398,-0.0037686772,-0.0045539239,-0.0053218549,-0.0060649353,-0.0067769973,-0.0074533227,-0.0080906351,-0.008687016,-0.0092417559,-0.0097551605,-0.010228329,-0.010662925,-0.011060952,-0.011424555,-0.011755857,-0.01205684,-0.012329267,-0.012574659,-0.012794316,-0.012989371,-0.013160876,-0.013309908,-0.013437675,-0.013545615,-0.013635487,-0.013709421,-0.013769945,-0.013819971,-0.013862742,-0.013901748,-0.013940609,-0.013982935,-0.014032185,-0.01409151,-0.014163615,-0.014250644,-0.014354079,-0.014474687,-0.014612496,-0.01476681,-0.014936261,-0.015118894,-0.015312272,-0.015513606,-0.015719891,-0.01592804,-0.01613502,-0.016337963,-0.016534271,-0.016721693,-0.016898373,-0.017062885,-0.017214234,-0.017351848,-0.017475541,-0.017585474,-0.0176821,-0.017766107,-0.017838363,-0.017899854,-0.017951639,-0.0179948,-0.018030405,-0.018059481,-0.018082986,-0.018101798,-0.018116706,-0.018128404,-0.018137494,-0.018144488,-0.018149818,-0.018153841,-0.018156848,-0.018159074,-0.018160707,-0.018161893,-0.018162747,-0.018163355,-0.018163785,-0.018164086,-0.018164294,-0.018164437,-0.018164535,-0.0181646,-0.018164644,-0.018164673,-0.018164692,-0.018164704,-0.018164712,-0.018164717,-0.018164721,-0.018164723,-0.018164724,-0.018164725,-0.018164725,-0.018164725,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726,-0.018164726],"zorder":3,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452],"zorder":4,"type":"scatter"},{"customdata":[[5.7655685e-44],[2.0908313e-43],[7.5155956e-43],[2.6777835e-42],[9.4570411e-42],[3.3105711e-41],[1.1487314e-40],[3.9509553e-40],[1.3469574e-39],[4.5517023e-39],[1.524622e-38],[5.0619628e-38],[1.6658822e-37],[5.4342337e-37],[1.7571188e-36],[5.6316136e-36],[1.7890959e-35],[5.6338274e-35],[1.7585016e-34],[5.4406578e-34],[1.6685131e-33],[5.0719802e-33],[1.5282532e-32],[4.5643934e-32],[1.3512664e-31],[3.9652374e-31],[1.1533679e-30],[3.3253486e-30],[9.5033621e-30],[2.6920824e-29],[7.5591084e-29],[2.1038953e-28],[5.8042915e-28],[1.5872525e-27],[4.3024391e-27],[1.155994e-26],[3.0787099e-26],[8.1274538e-26],[2.1267333e-25],[5.5162581e-25],[1.4182388e-24],[3.614329e-24],[9.1301885e-24],[2.2861558e-23],[5.6742206e-23],[1.3959864e-22],[3.4043251e-22],[8.2291702e-22],[1.9717713e-21],[4.6830938e-21],[1.102517e-20],[2.5728488e-20],[5.9514126e-20],[1.3645928e-19],[3.1014425e-19],[6.9871874e-19],[1.5603409e-18],[3.4539453e-18],[7.5786308e-18],[1.6483364e-17],[3.5537038e-17],[7.5944689e-17],[1.6087736e-16],[3.3781143e-16],[7.03131e-16],[1.4507121e-15],[2.9669481e-15],[6.0148259e-15],[1.2087077e-14],[2.4077163e-14],[4.7541837e-14],[9.305378e-14],[1.8054287e-13],[3.4722886e-13],[6.6197469e-13],[1.2510021e-12],[2.3435102e-12],[4.3517995e-12],[8.0106049e-12],[1.4616971e-11],[2.6439082e-11],[4.740604e-11],[8.4259864e-11],[1.4845989e-10],[2.5929879e-10],[4.489485e-10],[7.7054697e-10],[1.3110227e-09],[2.21122e-09],[3.6971453e-09],[6.1279654e-09],[1.0068943e-08],[1.6401059e-08],[2.6483983e-08],[4.2395639e-08],[6.7280444e-08],[1.0584975e-07],[1.6509275e-07],[2.5527446e-07],[3.9132027e-07],[5.9471326e-07],[8.9606243e-07],[1.3385349e-06],[1.9823841e-06],[2.9108433e-06],[4.2376939e-06],[6.1168434e-06],[8.7542722e-06],[1.2422704e-05],[1.7479331e-05],[2.4386862e-05],[3.3738066e-05],[4.6283812e-05],[6.2964417e-05],[8.4943828e-05],[0.00011364584],[0.00015079122],[0.00019843408],[0.00025899562],[0.0003352928],[0.00043055926],[0.0005484555],[0.00069306546],[0.00086887636],[0.0010807395],[0.0013338097],[0.0016334626],[0.0019851895],[0.0023944703],[0.0028666282],[0.0034066687],[0.0040191087],[0.0047078019],[0.0054757668],[0.006325026],[0.0072564629],[0.0082697033],[0.0093630283],[0.010533323],[0.011776061],[0.013085336],[0.014453924],[0.015873388],[0.017334216],[0.018825991],[0.020337577],[0.021857336],[0.023373351],[0.024873659],[0.026346494],[0.027780527],[0.029165101],[0.030490466],[0.031747995],[0.032930389],[0.03403185],[0.035048232],[0.035977143],[0.036818006],[0.037572058],[0.038242288],[0.0388333],[0.039351108],[0.039802863],[0.040196507],[0.040540386],[0.040842817],[0.041111639],[0.041353776],[0.041574823],[0.041778696],[0.041967353],[0.04214063],[0.042296175],[0.042429523],[0.042534285],[0.042602461],[0.042624862],[0.042591606],[0.042492677],[0.04231851],[0.042060564],[0.04171186],[0.041267441],[0.040724743],[0.040083846],[0.039347588],[0.038521553],[0.037613918],[0.036635178],[0.035597762],[0.034515556],[0.033403375],[0.032276388],[0.031149541],[0.030037003],[0.028951651],[0.027904632],[0.026905004],[0.025959485],[0.025072302],[0.024245158],[0.023477311],[0.022765746],[0.022105444],[0.021489726],[0.020910644],[0.020359417],[0.019826869],[0.019303865],[0.01878171],[0.018252509],[0.01770946],[0.017147077],[0.016561341],[0.015949771],[0.01531142],[0.014646809],[0.013957803],[0.013247442],[0.01251974],[0.01177947],[0.011031936],[0.010282755],[0.009537651],[0.0088022647],[0.0080819951],[0.0073818622],[0.0067063999],[0.0060595758],[0.0054447373],[0.0048645803],[0.0043211395],[0.0038157966],[0.0033493046],[0.0029218242],[0.0025329717],[0.0021818746],[0.0018672338],[0.0015873899],[0.0013403911],[0.0011240626],[0.00093607257],[0.00077399684],[0.00063537722],[0.00051777474],[0.00041881553],[0.00033622914],[0.00026787902],[0.00021178492],[0.00016613792],[0.00012930831],[9.9847376e-05],[7.6483908e-05],[5.8116481e-05],[4.38025e-05],[3.2745011e-05],[2.4278177e-05],[1.7852183e-05],[1.3018233e-05],[9.4141444e-06],[6.7508997e-06],[4.8004242e-06],[3.3847069e-06],[2.3663196e-06],[1.6403066e-06],[1.1273669e-06],[7.6821768e-07],[5.1900681e-07],[3.476348e-07],[2.3084858e-07],[1.5197701e-07],[9.9190228e-08],[6.4179185e-08],[4.1166919e-08],[2.617739e-08],[1.6501504e-08],[1.0311828e-08],[6.3879101e-09],[3.9227384e-09],[2.3879431e-09],[1.4409856e-09],[8.6197271e-10],[5.1112015e-10],[3.0043167e-10],[1.7504892e-10],[1.0110256e-10],[5.7883126e-11],[3.284938e-11],[1.8479327e-11],[1.0304512e-11],[5.6957332e-12],[3.1206965e-12],[1.6948527e-12],[9.1240953e-13],[4.8688245e-13],[2.5753364e-13],[1.3502634e-13],[7.017411e-14],[3.6150017e-14],[1.8459188e-14],[9.3430471e-15],[4.6874406e-15],[2.3310617e-15],[1.1490582e-15],[5.6143579e-16],[2.7191147e-16],[1.3053408e-16],[6.2113921e-17],[2.9296938e-17],[1.3696938e-17],[6.3473491e-18],[2.915605e-18],[1.3274926e-18],[5.9910432e-19],[2.6800289e-19],[1.1883462e-19],[5.2229131e-20],[2.2753527e-20],[9.8254085e-21],[4.2055066e-21],[1.7842335e-21],[7.5032704e-22],[3.1276268e-22],[1.2922441e-22],[5.2922385e-23],[2.1483219e-23],[8.6441902e-24],[3.4475788e-24],[1.3629156e-24],[5.3405807e-25],[2.0743055e-25],[7.9858585e-26],[3.0474395e-26],[1.1526915e-26],[4.3217099e-27],[1.6060629e-27],[5.9160781e-28],[2.1600788e-28],[7.8175308e-29],[2.8043608e-29],[9.9715446e-30],[3.5144324e-30],[1.2277562e-30],[4.2514125e-31],[1.4592123e-31],[4.9644125e-32],[1.6740997e-32],[5.5957569e-33],[1.8539603e-33],[6.0884402e-34],[1.9818724e-34],[6.3945403e-35],[2.0450643e-35],[6.4828891e-36],[2.0370148e-36],[6.3443001e-37],[1.9585615e-37],[5.9931428e-38],[1.8177576e-38],[5.4648876e-39],[1.6285099e-39],[4.810204e-40],[1.4083171e-40],[4.0869688e-41],[1.1756176e-41],[3.3519281e-42],[9.4729925e-43],[2.6536495e-43],[7.3682403e-44],[2.0279062e-44],[5.5321737e-45],[1.4959173e-45],[4.0094355e-46],[1.0651793e-46],[2.804956e-47],[7.3213844e-48],[1.8941929e-48],[4.8575698e-49],[1.2347463e-49],[3.1110015e-50],[7.7693831e-51],[1.9232542e-51],[4.7190075e-52],[1.1477002e-52],[2.7667511e-53],[6.6111274e-54],[1.5658306e-54],[3.67602e-55],[8.5541086e-56],[1.9730381e-56],[4.5108667e-57],[1.0222293e-57],[2.2961512e-58],[5.1123013e-59],[1.1282263e-59],[2.4679696e-60],[5.3511509e-61],[1.1500544e-61],[2.4499285e-62]],"fill":"tonexty","fillcolor":"rgb(0, 191, 255)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"March","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.03632945,-0.036329449,-0.036329448,-0.036329445,-0.036329441,-0.036329435,-0.036329425,-0.036329409,-0.036329384,-0.036329346,-0.036329286,-0.036329196,-0.03632906,-0.036328857,-0.036328555,-0.036328113,-0.036327469,-0.036326541,-0.036325214,-0.036323335,-0.036320697,-0.036317029,-0.036311972,-0.036305065,-0.036295713,-0.036283168,-0.036266487,-0.036244508,-0.036215806,-0.03617866,-0.036131017,-0.036070456,-0.035994159,-0.035898892,-0.035780996,-0.035636386,-0.035460575,-0.035248712,-0.034995642,-0.034695989,-0.034344262,-0.033934981,-0.033462823,-0.032922783,-0.032310343,-0.03162165,-0.030853685,-0.030004426,-0.029072989,-0.028059748,-0.026966423,-0.025796129,-0.02455339,-0.023244115,-0.021875528,-0.020456064,-0.018995235,-0.017503461,-0.015991875,-0.014472115,-0.0129561,-0.011455792,-0.0099829571,-0.0085489248,-0.007164351,-0.0058389861,-0.0045814564,-0.0033990624,-0.0022976011,-0.0012812197,-0.00035230902,0.00048855397,0.0012426066,0.0019128368,0.0025038486,0.0030216569,0.0034734113,0.0038670554,0.0042109345,0.0045133651,0.0047821875,0.0050243246,0.0052453719,0.0054492442,0.0056379018,0.0058111784,0.0059667237,0.0061000716,0.0062048331,0.0062730098,0.0062954109,0.0062621545,0.0061632256,0.0059890585,0.0057311128,0.0053824082,0.0049379891,0.0043952918,0.0037543943,0.0030181361,0.0021921009,0.0012844662,0.00030572662,-0.00073169003,-0.0018138956,-0.0029260763,-0.0040530634,-0.0051799102,-0.0062924487,-0.0073778007,-0.0084248199,-0.0094244473,-0.010369967,-0.01125715,-0.012084293,-0.01285214,-0.013563705,-0.014224007,-0.014839726,-0.015418808,-0.015970035,-0.016502583,-0.017025587,-0.017547742,-0.018076942,-0.018619992,-0.019182375,-0.01976811,-0.020379681,-0.021018032,-0.021682643,-0.022371649,-0.02308201,-0.023809711,-0.024549981,-0.025297515,-0.026046696,-0.026791801,-0.027527187,-0.028247456,-0.028947589,-0.029623052,-0.030269876,-0.030884714,-0.031464871,-0.032008312,-0.032513655,-0.032980147,-0.033407627,-0.03379648,-0.034147577,-0.034462218,-0.034742062,-0.03498906,-0.035205389,-0.035393379,-0.035555455,-0.035694074,-0.035811677,-0.035910636,-0.035993222,-0.036061573,-0.036117667,-0.036163314,-0.036200143,-0.036229604,-0.036252968,-0.036271335,-0.036285649,-0.036296707,-0.036305173,-0.036311599,-0.036316433,-0.036320037,-0.036322701,-0.036324651,-0.036326067,-0.036327085,-0.036327811,-0.036328324,-0.036328683,-0.036328933,-0.036329104,-0.036329221,-0.0363293,-0.036329352,-0.036329387,-0.03632941,-0.036329425,-0.036329435,-0.036329441,-0.036329445,-0.036329448,-0.036329449,-0.03632945,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452],"zorder":4,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452],"zorder":5,"type":"scatter"},{"customdata":[[1.7309323e-85],[1.0772002e-84],[6.6447181e-84],[4.0627538e-83],[2.462228e-82],[1.4791077e-81],[8.8071453e-81],[5.1979765e-80],[3.0408659e-79],[1.7632912e-78],[1.0134786e-77],[5.773896e-77],[3.2605219e-76],[1.8250261e-75],[1.0125462e-74],[5.5683232e-74],[3.0352734e-73],[1.6399666e-72],[8.7828603e-72],[4.6623058e-71],[2.4531796e-70],[1.2794453e-69],[6.6142093e-69],[3.3892057e-68],[1.7213997e-67],[8.6662126e-67],[4.3245482e-66],[2.1390255e-65],[1.048709e-64],[5.096333e-64],[2.454847e-63],[1.1720735e-62],[5.546884e-62],[2.601999e-61],[1.2098429e-60],[5.5758955e-60],[2.5472061e-59],[1.1533931e-58],[5.1767169e-58],[2.3030072e-57],[1.0155469e-56],[4.4388295e-56],[1.9230951e-55],[8.2584182e-55],[3.5152546e-54],[1.4831344e-53],[6.2025183e-53],[2.5711026e-52],[1.056415e-51],[4.3024272e-51],[1.736826e-50],[6.9496498e-50],[2.7563435e-49],[1.0835964e-48],[4.2224607e-48],[1.6309005e-47],[6.24386e-47],[2.3694234e-46],[8.9124271e-46],[3.3228684e-45],[1.227988e-44],[4.4982016e-44],[1.6332307e-43],[5.8778704e-43],[2.0967966e-42],[7.4140656e-42],[2.598486e-41],[9.0270987e-41],[3.108421e-40],[1.060951e-39],[3.5893406e-39],[1.2036435e-38],[4.0007822e-38],[1.3181226e-37],[4.304578e-37],[1.3933789e-36],[4.470661e-36],[1.4217988e-35],[4.4819644e-35],[1.4004338e-34],[4.3373117e-34],[1.3315044e-33],[4.0516179e-33],[1.2220199e-32],[3.653356e-32],[1.0826041e-31],[3.1798839e-31],[9.2579926e-31],[2.6716918e-30],[7.642226e-30],[2.1667928e-29],[6.0894617e-29],[1.696307e-28],[4.6837534e-28],[1.2818808e-27],[3.4774858e-27],[9.3507657e-27],[2.4922586e-26],[6.5842022e-26],[1.7241593e-25],[4.4752346e-25],[1.1513794e-24],[2.936198e-24],[7.421924e-24],[1.8595677e-23],[4.6181904e-23],[1.1368314e-22],[2.7738614e-22],[6.7086931e-22],[1.6082577e-21],[3.8215357e-21],[9.0008777e-21],[2.1013409e-20],[4.8626491e-20],[1.1153578e-19],[2.5358316e-19],[5.7146759e-19],[1.2765208e-18],[2.8263724e-18],[6.2029198e-18],[1.3493616e-17],[2.9095514e-17],[6.2185533e-17],[1.3174024e-16],[2.7663906e-16],[5.758039e-16],[1.1879604e-15],[2.4293815e-15],[4.9244315e-15],[9.8942597e-15],[1.970505e-14],[3.8899057e-14],[7.611463e-14],[1.4762673e-13],[2.838115e-13],[5.4083325e-13],[1.0215639e-12],[1.9126559e-12],[3.5495855e-12],[6.5296272e-12],[1.19061e-11],[2.1518974e-11],[3.8551829e-11],[6.846055e-11],[1.2050591e-10],[2.1025656e-10],[3.6363416e-10],[6.2338231e-10],[1.0593019e-09],[1.7842734e-09],[2.9790676e-09],[4.9303484e-09],[8.0882443e-09],[1.3152596e-08],[2.1200717e-08],[3.3874493e-08],[5.3651236e-08],[8.4231184e-08],[1.3108532e-07],[2.0222041e-07],[3.0923436e-07],[4.6875343e-07],[7.0436451e-07],[1.0491783e-06],[1.5491828e-06],[2.2675692e-06],[3.2902291e-06],[4.7326341e-06],[6.7483048e-06],[9.5390591e-06],[1.3367184e-05],[1.8569608e-05],[2.5574034e-05],[3.4916863e-05],[4.7262533e-05],[6.342368e-05],[8.4381278e-05],[0.00011130361],[0.00014556263],[0.00018874612],[0.00024266357],[0.0003093439],[0.00039102292],[0.0004901186],[0.00060919258],[0.00075089696],[0.00091790594],[0.001112833],[0.0013381357],[0.0015960099],[0.0018882795],[0.0022162849],[0.0025807775],[0.0029818274],[0.0034187491],[0.0038900557],[0.004393443],[0.0049258108],[0.0054833236],[0.0060615094],[0.0066553947],[0.0072596723],[0.0078688911],[0.0084776612],[0.0090808615],[0.0096738377],[0.01025258],[0.010813868],[0.011355374],[0.011875724],[0.012374498],[0.01285219],[0.013310115],[0.013750278],[0.014175215],[0.014587815],[0.014991133],[0.015388216],[0.015781951],[0.016174932],[0.016569381],[0.016967099],[0.017369468],[0.017777493],[0.018191878],[0.018613131],[0.019041683],[0.01947801],[0.019922745],[0.020376765],[0.02084124],[0.021317643],[0.021807695],[0.02231327],[0.022836236],[0.023378251],[0.023940526],[0.024523562],[0.025126887],[0.025748805],[0.026386192],[0.027034342],[0.027686899],[0.028335881],[0.028971802],[0.02958391],[0.030160522],[0.030689446],[0.03115849],[0.031555998],[0.031871417],[0.032095845],[0.032222521],[0.032247237],[0.032168637],[0.03198838],[0.031711149],[0.031344518],[0.030898653],[0.030385896],[0.029820224],[0.029216641],[0.028590519],[0.027956942],[0.027330089],[0.026722685],[0.026145566],[0.025607368],[0.025114359],[0.024670423],[0.024277178],[0.023934224],[0.02363948],[0.023389597],[0.023180393],[0.02300729],[0.022865702],[0.022751365],[0.022660565],[0.022590269],[0.022538143],[0.022502472],[0.02248199],[0.022475652],[0.022482361],[0.022500701],[0.022528686],[0.022563568],[0.022601712],[0.022638569],[0.022668733],[0.022686099],[0.022684093],[0.022655968],[0.022595137],[0.02249551],[0.02235182],[0.022159901],[0.0219169],[0.021621405],[0.021273485],[0.020874637],[0.020427647],[0.019936382],[0.019405523],[0.018840276],[0.018246067],[0.01762826],[0.016991913],[0.016341575],[0.015681165],[0.015013906],[0.014342335],[0.013668366],[0.012993413],[0.012318538],[0.011644623],[0.010972536],[0.01030329],[0.0096381671],[0.0089788031],[0.0083272338],[0.007685889],[0.0070575464],[0.0064452467],[0.0058521802],[0.0052815557],[0.0047364617],[0.0042197319],[0.0037338239],[0.0032807201],[0.0028618544],[0.0024780699],[0.0021296067],[0.0018161186],[0.0015367157],[0.0012900268],[0.0010742777],[0.00088737753],[0.00072700952],[0.0005907193],[0.00047599744],[0.00038035273],[0.00030137392],[0.00023677899],[0.00018445155],[0.00014246504],[0.00010909577],[8.2826536e-05],[6.2342274e-05],[4.6519828e-05],[3.4413405e-05],[2.5237364e-05],[1.8347655e-05],[1.3223049e-05],[9.446956e-06],[6.6904727e-06],[4.6970178e-06],[3.2687703e-06],[2.2549664e-06],[1.5420067e-06],[1.0452504e-06],[7.0232781e-07],[4.6778119e-07],[3.088354e-07],[2.0211154e-07],[1.3110924e-07],[8.4304796e-08],[5.3733703e-08],[3.3948114e-08],[2.1259738e-08],[1.3196922e-08],[8.1200554e-09],[4.952406e-09],[2.9939443e-09],[1.7940758e-09],[1.0656313e-09],[6.2739589e-10],[3.6613776e-10],[2.117947e-10],[1.2143755e-10],[6.9017296e-11],[3.8880299e-11],[2.1710394e-11],[1.2016335e-11],[6.5923816e-12],[3.5849114e-12],[1.9323247e-12],[1.0323982e-12],[5.4673845e-13],[2.8699687e-13],[1.4932748e-13],[7.7013563e-14],[3.9369465e-14],[1.9948788e-14],[1.0019318e-14],[4.987976e-15],[2.4613595e-15],[1.2038993e-15],[5.8367306e-16]],"fill":"tonexty","fillcolor":"rgb(255, 69, 0)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"March","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.03632945,-0.036329449,-0.036329447,-0.036329443,-0.036329438,-0.03632943,-0.036329418,-0.036329398,-0.036329367,-0.03632932,-0.036329249,-0.036329142,-0.036328983,-0.036328747,-0.036328402,-0.036327902,-0.036327184,-0.036326161,-0.036324719,-0.036322703,-0.036319913,-0.036316084,-0.036310882,-0.036303878,-0.036294535,-0.036282189,-0.036266028,-0.03624507,-0.036218148,-0.036183889,-0.036140705,-0.036086788,-0.036020108,-0.035938429,-0.035839333,-0.035720259,-0.035578555,-0.035411546,-0.035216619,-0.034991316,-0.034733442,-0.034441172,-0.034113167,-0.033748674,-0.033347624,-0.032910702,-0.032439396,-0.031936009,-0.031403641,-0.030846128,-0.030267942,-0.029674057,-0.029069779,-0.028460561,-0.02785179,-0.02724859,-0.026655614,-0.026076872,-0.025515584,-0.024974077,-0.024453727,-0.023954953,-0.023477261,-0.023019337,-0.022579174,-0.022154236,-0.021741637,-0.021338319,-0.020941235,-0.020547501,-0.02015452,-0.019760071,-0.019362353,-0.018959984,-0.018551958,-0.018137573,-0.01771632,-0.017287769,-0.016851442,-0.016406707,-0.015952687,-0.015488211,-0.015011809,-0.014521757,-0.014016182,-0.013493216,-0.012951201,-0.012388926,-0.01180589,-0.011202565,-0.010580646,-0.0099432596,-0.0092951096,-0.0086425521,-0.0079935707,-0.0073576497,-0.0067455413,-0.0061689301,-0.0056400051,-0.0051709615,-0.004773454,-0.0044580346,-0.0042336067,-0.004106931,-0.0040822147,-0.0041608142,-0.0043410718,-0.0046183023,-0.004984934,-0.0054307986,-0.0059435558,-0.0065092272,-0.0071128101,-0.0077389324,-0.0083725092,-0.0089993628,-0.0096067667,-0.010183886,-0.010722084,-0.011215093,-0.011659029,-0.012052274,-0.012395228,-0.012689972,-0.012939855,-0.013149059,-0.013322162,-0.01346375,-0.013578086,-0.013668886,-0.013739182,-0.013791308,-0.01382698,-0.013847461,-0.0138538,-0.013847091,-0.013828751,-0.013800765,-0.013765884,-0.01372774,-0.013690883,-0.013660719,-0.013643353,-0.013645359,-0.013673483,-0.013734315,-0.013833942,-0.013977632,-0.01416955,-0.014412551,-0.014708046,-0.015055966,-0.015454814,-0.015901804,-0.016393069,-0.016923928,-0.017489176,-0.018083385,-0.018701191,-0.019337539,-0.019987877,-0.020648287,-0.021315545,-0.021987117,-0.022661086,-0.023336039,-0.024010913,-0.024684829,-0.025356916,-0.026026161,-0.026691285,-0.027350648,-0.028002218,-0.028643563,-0.029271905,-0.029884205,-0.030477271,-0.031047896,-0.03159299,-0.03210972,-0.032595628,-0.033048731,-0.033467597,-0.033851382,-0.034199845,-0.034513333,-0.034792736,-0.035039425,-0.035255174,-0.035442074,-0.035602442,-0.035738732,-0.035853454,-0.035949099,-0.036028078,-0.036092673,-0.036145,-0.036186987,-0.036220356,-0.036246625,-0.036267109,-0.036282932,-0.036295038,-0.036304214,-0.036311104,-0.036316229,-0.036320005,-0.036322761,-0.036324755,-0.036326183,-0.036327197,-0.03632791,-0.036328406,-0.036328749,-0.036328984,-0.036329143,-0.036329249,-0.03632932,-0.036329367,-0.036329398,-0.036329418,-0.03632943,-0.036329438,-0.036329443,-0.036329447,-0.036329449,-0.03632945,-0.03632945,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.036329451,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452,-0.036329452],"zorder":5,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177],"zorder":6,"type":"scatter"},{"customdata":[[3.0614177e-60],[1.4040049e-59],[6.3823478e-59],[2.8757967e-58],[1.2844045e-57],[5.6860596e-57],[2.4950946e-56],[1.0852472e-55],[4.6788215e-55],[1.9994495e-54],[8.469361e-54],[3.5559621e-53],[1.4798918e-52],[6.1047683e-52],[2.4961741e-51],[1.0116892e-50],[4.0643015e-50],[1.6184206e-49],[6.3879805e-49],[2.4992089e-48],[9.6918886e-48],[3.725471e-47],[1.4194529e-46],[5.3607783e-46],[2.0067897e-45],[7.4463447e-45],[2.7387458e-44],[9.9845316e-44],[3.6080385e-43],[1.2923561e-42],[4.5883959e-42],[1.6147575e-41],[5.6327645e-41],[1.9476181e-40],[6.6750427e-40],[2.2676312e-39],[7.6358788e-39],[2.5486721e-38],[8.4321311e-38],[2.7652174e-37],[8.9885548e-37],[2.8961379e-36],[9.2494837e-36],[2.9280923e-35],[9.1880037e-35],[2.857767e-34],[8.8105265e-34],[2.6924424e-33],[8.1556885e-33],[2.448751e-32],[7.2878354e-32],[2.1499213e-31],[6.2866138e-31],[1.8221385e-30],[5.2349978e-30],[1.4908101e-29],[4.2082253e-29],[1.1774613e-28],[3.2656191e-28],[8.9775071e-28],[2.446344e-27],[6.6077109e-27],[1.7691166e-26],[4.6949825e-26],[1.235048e-25],[3.220373e-25],[8.3234094e-25],[2.132403e-24],[5.4151496e-24],[1.3630915e-23],[3.4010516e-23],[8.4115352e-23],[2.0621081e-22],[5.0109715e-22],[1.2069995e-21],[2.8818216e-21],[6.8202812e-21],[1.599974e-20],[3.7204826e-20],[8.5755442e-20],[1.9592978e-19],[4.43727e-19],[9.9611223e-19],[2.2165525e-18],[4.8890609e-18],[1.0689341e-17],[2.3166201e-17],[4.9766547e-17],[1.0597402e-16],[2.2368708e-16],[4.6801788e-16],[9.7065404e-16],[1.9954802e-15],[4.0664158e-15],[8.2140632e-15],[1.6447001e-14],[3.264362e-14],[6.4223417e-14],[1.2524851e-13],[2.4212318e-13],[4.6396523e-13],[8.8129322e-13],[1.6593653e-12],[3.0970689e-12],[5.7299095e-12],[1.0508324e-11],[1.9103314e-11],[3.4425037e-11],[6.1493813e-11],[1.0888816e-10],[1.9112747e-10],[3.3255215e-10],[5.7357696e-10],[9.806636e-10],[1.6620574e-09],[2.7923563e-09],[4.6504591e-09],[7.6775456e-09],[1.2564698e-08],[2.0383855e-08],[3.2781354e-08],[5.2260738e-08],[8.2591267e-08],[1.2939118e-07],[2.0095061e-07],[3.0937864e-07],[4.7218279e-07],[7.1441634e-07],[1.0715608e-06],[1.5933436e-06],[2.3487267e-06],[3.4323329e-06],[4.9726044e-06],[7.142003e-06],[1.0169558e-05],[1.4356044e-05],[2.0091999e-05],[2.7878712e-05],[3.8352123e-05],[5.23094e-05],[7.0737666e-05],[9.484404e-05],[0.00012608576],[0.00016619879],[0.00021722282],[0.00028152031],[0.00036178672],[0.00046104911],[0.00058265005],[0.00073021398],[0.0009075938],[0.001118796],[0.0013678836],[0.0016588579],[0.0019955204],[0.0023813206],[0.0028191923],[0.0033113884],[0.0038593208],[0.004463415],[0.0051229896],[0.0058361686],[0.0065998365],[0.0074096407],[0.0082600462],[0.0091444433],[0.010055306],[0.010984395],[0.011922998],[0.012862195],[0.013793136],[0.014707319],[0.015596853],[0.016454693],[0.017274846],[0.018052532],[0.018784296],[0.019468089],[0.020103295],[0.020690737],[0.021232656],[0.021732663],[0.022195703],[0.022627992],[0.023036974],[0.023431258],[0.023820564],[0.024215638],[0.024628148],[0.025070537],[0.025555823],[0.026097329],[0.026708348],[0.027401725],[0.028189372],[0.02908172],[0.030087133],[0.031211299],[0.032456644],[0.033821794],[0.035301133],[0.036884475],[0.038556913],[0.040298845],[0.04208621],[0.043890929],[0.045681568],[0.047424173],[0.049083271],[0.050622986],[0.052008222],[0.05320585],[0.05418586],[0.054922398],[0.055394656],[0.055587572],[0.055492295],[0.055106419],[0.054433966],[0.053485131],[0.05227582],[0.050827002],[0.049163913],[0.047315165],[0.045311799],[0.043186318],[0.040971755],[0.038700789],[0.036404951],[0.03411393],[0.031854996],[0.029652542],[0.027527739],[0.025498318],[0.02357845],[0.021778728],[0.020106245],[0.018564739],[0.017154821],[0.015874253],[0.01471828],[0.013680001],[0.012750767],[0.0119206],[0.011178612],[0.010513428],[0.0099135807],[0.0093678819],[0.0088657516],[0.0083974984],[0.0079545423],[0.0075295769],[0.0071166675],[0.0067112867],[0.0063102902],[0.005911839],[0.0055152767],[0.0051209701],[0.0047301252],[0.0043445884],[0.0039666444],[0.0035988193],[0.0032437001],[0.002903774],[0.0025812956],[0.002278183],[0.0019959454],[0.0017356401],[0.0014978583],[0.0012827355],[0.0010899818],[0.00091892926],[0.0007685892],[0.00063771659],[0.00052487637],[0.00042850824],[0.00034698701],[0.00027867622],[0.00022197375],[0.00017534849],[0.00013736815],[0.00010671849],[8.2214769e-05],[6.2806473e-05],[4.7576447e-05],[3.5735675e-05],[2.6614874e-05],[1.9653954e-05],[1.4390299e-05],[1.044662e-05],[7.5190014e-06],[5.365568e-06],[3.796082e-06],[2.662646e-06],[1.8515832e-06],[1.2764956e-06],[8.7244183e-07],[5.9113909e-07],[3.9707659e-07],[2.6441489e-07],[1.7455025e-07],[1.1422841e-07],[7.4104273e-08],[4.7656757e-08],[3.0381881e-08],[1.9200423e-08],[1.2028464e-08],[7.4698196e-09],[4.5984158e-09],[2.8060944e-09],[1.697423e-09],[1.0178169e-09],[6.0497741e-10],[3.5644854e-10],[2.08181e-10],[1.2052312e-10],[6.9164501e-11],[3.9343992e-11],[2.2184756e-11],[1.2399689e-11],[6.8698257e-12],[3.7727538e-12],[2.0537523e-12],[1.1081885e-12],[5.9272658e-13],[3.1424585e-13],[1.6514232e-13],[8.6024118e-14],[4.4417536e-14],[2.2733197e-14],[1.1532882e-14],[5.7994383e-15],[2.8907086e-15],[1.4282116e-15],[6.9943963e-16],[3.3952909e-16],[1.6337005e-16],[7.7917726e-17],[3.6835635e-17],[1.7261075e-17],[8.0174268e-18],[3.6912158e-18],[1.6844995e-18],[7.6197221e-19],[3.4164414e-19],[1.5183617e-19],[6.6887155e-20],[2.9206282e-20],[1.2640835e-20],[5.4230172e-21],[2.3060666e-21],[9.720044e-22],[4.0609721e-22],[1.6817331e-22],[6.9031819e-23],[2.8087084e-23],[1.1327368e-23],[4.5281026e-24],[1.7941897e-24],[7.0466914e-25],[2.7432592e-25],[1.0585542e-25],[4.0487775e-26],[1.5349678e-26],[5.7681843e-27],[2.1485399e-27],[7.9325369e-28],[2.9029873e-28],[1.0530343e-28],[3.7862052e-29],[1.3493668e-29],[4.7667255e-30],[1.6690696e-30],[5.7928584e-31],[1.9928542e-31],[6.7955129e-32],[2.2968523e-32],[7.6949881e-33],[2.5553295e-33],[8.4110438e-34],[2.7442073e-34],[8.8745825e-35],[2.8447424e-35],[9.0386161e-36],[2.8465899e-36],[8.886113e-37],[2.7495568e-37],[8.4329108e-38],[2.5636353e-38],[7.7250072e-39],[2.3073074e-39],[6.8308685e-40],[2.0045195e-40],[5.8305369e-41],[1.6810115e-41],[4.8039304e-42],[1.3607759e-42],[3.8206773e-43],[1.0633053e-43],[2.9331851e-44]],"fill":"tonexty","fillcolor":"rgb(0, 191, 255)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"April","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494176,-0.054494176,-0.054494175,-0.054494173,-0.05449417,-0.054494165,-0.054494157,-0.054494145,-0.054494125,-0.054494095,-0.054494048,-0.054493976,-0.054493868,-0.054493705,-0.054493463,-0.054493106,-0.054492584,-0.054491829,-0.054490745,-0.054489205,-0.054487035,-0.054484008,-0.054479821,-0.054474085,-0.054466299,-0.054455825,-0.054441868,-0.05442344,-0.054399333,-0.054368092,-0.054327979,-0.054276955,-0.054212657,-0.054132391,-0.054033128,-0.053911527,-0.053763963,-0.053586584,-0.053375381,-0.053126294,-0.052835319,-0.052498657,-0.052112857,-0.051674985,-0.051182789,-0.050634857,-0.050030762,-0.049371188,-0.048658009,-0.047894341,-0.047084537,-0.046234131,-0.045349734,-0.044438871,-0.043509782,-0.042571179,-0.041631982,-0.040701041,-0.039786858,-0.038897324,-0.038039484,-0.037219331,-0.036441645,-0.035709881,-0.035026089,-0.034390883,-0.03380344,-0.033261522,-0.032761514,-0.032298474,-0.031866185,-0.031457204,-0.031062919,-0.030673613,-0.03027854,-0.02986603,-0.02942364,-0.028938355,-0.028396848,-0.02778583,-0.027092453,-0.026304806,-0.025412457,-0.024407044,-0.023282878,-0.022037534,-0.020672383,-0.019193045,-0.017609703,-0.015937264,-0.014195332,-0.012407968,-0.010603248,-0.0088126089,-0.0070700041,-0.0054109062,-0.003871191,-0.0024859556,-0.0012883271,-0.00030831701,0.00042822062,0.00090047915,0.0010933949,0.00099811798,0.00061224216,-6.0211611e-05,-0.0010090468,-0.0022183571,-0.0036671751,-0.0053302645,-0.0071790124,-0.0091823788,-0.011307859,-0.013522422,-0.015793388,-0.018089227,-0.020380248,-0.022639181,-0.024841636,-0.026966438,-0.028995859,-0.030915728,-0.032715449,-0.034387933,-0.035929439,-0.037339357,-0.038619925,-0.039775897,-0.040814176,-0.04174341,-0.042573578,-0.043315565,-0.043980749,-0.044580597,-0.045126295,-0.045628426,-0.046096679,-0.046539635,-0.0469646,-0.04737751,-0.047782891,-0.048183887,-0.048582338,-0.048978901,-0.049373207,-0.049764052,-0.050149589,-0.050527533,-0.050895358,-0.051250477,-0.051590403,-0.051912882,-0.052215994,-0.052498232,-0.052758537,-0.052996319,-0.053211442,-0.053404196,-0.053575248,-0.053725588,-0.053856461,-0.053969301,-0.054065669,-0.05414719,-0.054215501,-0.054272204,-0.054318829,-0.054356809,-0.054387459,-0.054411963,-0.054431371,-0.054446601,-0.054458442,-0.054467562,-0.054474523,-0.054479787,-0.054483731,-0.054486658,-0.054488812,-0.054490381,-0.054491515,-0.054492326,-0.054492901,-0.054493305,-0.054493586,-0.05449378,-0.054493913,-0.054494003,-0.054494063,-0.054494103,-0.05449413,-0.054494147,-0.054494158,-0.054494165,-0.05449417,-0.054494173,-0.054494175,-0.054494176,-0.054494176,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177],"zorder":6,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177],"zorder":7,"type":"scatter"},{"customdata":[[1.8433206e-94],[1.2601852e-93],[8.5394847e-93],[5.7357837e-92],[3.8187186e-91],[2.5200338e-90],[1.6483858e-89],[1.0687476e-88],[6.8683952e-88],[4.3752128e-87],[2.7625293e-86],[1.728934e-85],[1.0725406e-84],[6.5949703e-84],[4.0195345e-83],[2.4283008e-82],[1.4540958e-81],[8.6307263e-81],[5.0776817e-80],[2.9610614e-79],[1.711564e-78],[9.8062439e-78],[5.5689848e-77],[3.1348241e-76],[1.749098e-75],[9.6733942e-75],[5.3028268e-74],[2.8813751e-73],[1.5518723e-72],[8.2846839e-72],[4.3838907e-71],[2.2993617e-70],[1.1954149e-69],[6.1601866e-69],[3.1465371e-68],[1.5930729e-67],[7.9947017e-67],[3.9767901e-66],[1.9607711e-65],[9.5826343e-65],[4.6420172e-64],[2.2289092e-63],[1.0608203e-62],[5.0044354e-62],[2.3400878e-61],[1.0846086e-60],[4.9828488e-60],[2.2690612e-59],[1.0241852e-58],[4.5822062e-58],[2.0320508e-57],[8.9321971e-57],[3.8917583e-56],[1.6807272e-55],[7.1946955e-55],[3.0527513e-54],[1.283909e-53],[5.3523056e-53],[2.2116244e-52],[9.0582783e-52],[3.6774246e-51],[1.4798092e-50],[5.9024387e-50],[2.3335713e-49],[9.1448063e-49],[3.5521539e-48],[1.3676434e-47],[5.2193668e-47],[1.9743612e-46],[7.4028547e-46],[2.7512857e-45],[1.0135286e-44],[3.7008391e-44],[1.3394554e-43],[4.8052961e-43],[1.7087398e-42],[6.0227601e-42],[2.1041616e-41],[7.2866263e-41],[2.5011388e-40],[8.5096753e-40],[2.869803e-39],[9.5930144e-39],[3.1784986e-38],[1.0438855e-37],[3.3981902e-37],[1.0964944e-36],[3.5069464e-36],[1.1117722e-35],[3.4935459e-35],[1.0881308e-34],[3.359385e-34],[1.0280221e-33],[3.1182376e-33],[9.3751886e-33],[2.793926e-32],[8.2530387e-32],[2.4164455e-31],[7.0130069e-31],[2.0174171e-30],[5.7524302e-30],[1.6258154e-29],[4.554654e-29],[1.2647476e-28],[3.4811012e-28],[9.4971618e-28],[2.5682391e-27],[6.8840108e-27],[1.8289935e-26],[4.8166751e-26],[1.257324e-25],[3.2532073e-25],[8.3433615e-25],[2.1209734e-24],[5.3443431e-24],[1.3348069e-23],[3.3045146e-23],[8.1089032e-23],[1.9723404e-22],[4.7551811e-22],[1.1363649e-21],[2.6917472e-21],[6.3199927e-21],[1.4708381e-20],[3.3929648e-20],[7.7581862e-20],[1.7583592e-19],[3.9502245e-19],[8.7963593e-19],[1.9415626e-18],[4.2478324e-18],[9.2119414e-18],[1.9801728e-17],[4.2191359e-17],[8.9107198e-17],[1.8653971e-16],[3.8707891e-16],[7.9615545e-16],[1.6231808e-15],[3.2802513e-15],[6.5708134e-15],[1.3046788e-14],[2.5678e-14],[5.0094803e-14],[9.6872129e-14],[1.8568662e-13],[3.5280838e-13],[6.6446902e-13],[1.2404786e-12],[2.2955339e-12],[4.2107492e-12],[7.6562777e-12],[1.3799399e-11],[2.4654064e-11],[4.3662094e-11],[7.6649666e-11],[1.3338524e-10],[2.3009088e-10],[3.9344831e-10],[6.6692248e-10],[1.1206381e-09],[1.8666417e-09],[3.0822343e-09],[5.045256e-09],[8.1868677e-09],[1.3169637e-08],[2.1001785e-08],[3.3202456e-08],[5.2038116e-08],[8.0856787e-08],[1.2455515e-07],[1.9022366e-07],[2.8802681e-07],[4.3238981e-07],[6.435784e-07],[9.4977563e-07],[1.3897769e-06],[2.0164407e-06],[2.9010482e-06],[4.1387324e-06],[5.8551441e-06],[8.2145118e-06],[1.1429236e-05],[1.5771119e-05],[2.1584292e-05],[2.9299793e-05],[3.9451706e-05],[5.2694605e-05],[6.9821946e-05],[9.1784884e-05],[0.00011971086],[0.00015492111],[0.00019894619],[0.00025353837],[0.00032067978],[0.0004025852],[0.00050169806],[0.00062067895],[0.00076238526],[0.00092984149],[0.0011261995],[0.0013546883],[0.0016185544],[0.0019209911],[0.0022650593],[0.0026536005],[0.0030891424],[0.0035737998],[0.0041091721],[0.0046962413],[0.0053352705],[0.00602571],[0.0067661104],[0.0075540499],[0.008386078],[0.0092576812],[0.010163274],[0.011096218],[0.01204888],[0.013012717],[0.013978405],[0.014936002],[0.01587515],[0.016785304],[0.017655989],[0.018477076],[0.019239069],[0.019933395],[0.020552672],[0.02109097],[0.021544029],[0.021909443],[0.022186786],[0.022377688],[0.022485848],[0.022516984],[0.022478719],[0.022380411],[0.02223292],[0.022048332],[0.021839637],[0.021620378],[0.021404274],[0.021204835],[0.021034975],[0.020906641],[0.020830461],[0.020815435],[0.020868663],[0.02099514],[0.021197601],[0.021476449],[0.021829743],[0.022253274],[0.022740698],[0.023283754],[0.023872531],[0.024495796],[0.025141361],[0.025796484],[0.026448284],[0.027084158],[0.027692192],[0.028261538],[0.028782764],[0.029248142],[0.029651879],[0.029990282],[0.030261835],[0.030467206],[0.030609156],[0.030692375],[0.030723235],[0.03070947],[0.030659797],[0.030583486],[0.03048991],[0.030388078],[0.030286189],[0.030191216],[0.030108554],[0.030041747],[0.029992312],[0.02995967],[0.029941195],[0.029932379],[0.029927099],[0.029917977],[0.029896819],[0.029855082],[0.029784372],[0.029676907],[0.02952595],[0.029326153],[0.029073811],[0.028767007],[0.028405637],[0.027991316],[0.027527188],[0.027017639],[0.026467954],[0.025883928],[0.025271476],[0.024636261],[0.023983366],[0.023317039],[0.022640511],[0.021955916],[0.021264294],[0.020565687],[0.019859309],[0.019143774],[0.018417367],[0.017678324],[0.016925125],[0.016156743],[0.015372863],[0.014574049],[0.013761834],[0.012938755],[0.012108314],[0.011274873],[0.010443509],[0.0096198158],[0.0088096829],[0.0080190654],[0.0072537527],[0.0065191534],[0.0058201073],[0.0051607328],[0.0045443145],[0.0039732349],[0.0034489492],[0.0029720011],[0.002542074],[0.0021580725],[0.001818225],[0.0015202024],[0.0012612426],[0.0010382767],[0.00084804906],[0.00068722717],[0.00055249842],[0.00044065085],[0.00034863736],[0.00027362333],[0.00021301856],[0.00016449517],[0.00012599328],[9.5716777e-05],[7.2121348e-05],[5.3896924e-05],[3.9946465e-05],[2.9362793e-05],[2.1404833e-05],[1.5474374e-05],[1.1094119e-05],[7.8875661e-06],[5.5610411e-06],[3.8879867e-06],[2.6955164e-06],[1.8531091e-06],[1.2632673e-06],[8.5392265e-07],[5.7235406e-07],[3.8038915e-07],[2.5067033e-07],[1.6378864e-07],[1.0611221e-07],[6.8162043e-08],[4.3412077e-08],[2.7413501e-08],[1.7163261e-08],[1.0653983e-08],[6.5568735e-09],[4.0008294e-09],[2.4202915e-09],[1.4515962e-09],[8.6313893e-10],[5.0882532e-10],[2.9737628e-10],[1.7230193e-10],[9.897304e-11],[5.6361618e-11],[3.1819015e-11],[1.7808355e-11],[9.8807934e-12],[5.4348564e-12],[2.963534e-12],[1.6019716e-12],[8.5846052e-13],[4.5604122e-13],[2.4016177e-13],[1.2537688e-13],[6.4884771e-14],[3.3287241e-14],[1.6928582e-14],[8.5343274e-15],[4.2650304e-15],[2.1128923e-15]],"fill":"tonexty","fillcolor":"rgb(255, 69, 0)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"April","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494176,-0.054494175,-0.054494174,-0.054494172,-0.054494169,-0.054494164,-0.054494156,-0.054494144,-0.054494125,-0.054494096,-0.054494053,-0.054493987,-0.054493889,-0.054493745,-0.054493534,-0.054493228,-0.054492788,-0.054492161,-0.054491276,-0.054490039,-0.054488322,-0.054485963,-0.054482748,-0.054478406,-0.054472593,-0.054464878,-0.054454726,-0.054441483,-0.054424355,-0.054402392,-0.054374466,-0.054339256,-0.054295231,-0.054240639,-0.054173498,-0.054091592,-0.053992479,-0.053873498,-0.053731792,-0.053564336,-0.053367978,-0.053139489,-0.052875623,-0.052573186,-0.052229118,-0.051840577,-0.051405035,-0.050920378,-0.050385005,-0.049797936,-0.049158907,-0.048468467,-0.047728067,-0.046940127,-0.046108099,-0.045236496,-0.044330904,-0.043397959,-0.042445297,-0.04148146,-0.040515773,-0.039558175,-0.038619027,-0.037708873,-0.036838188,-0.036017102,-0.035255108,-0.034560782,-0.033941505,-0.033403208,-0.032950148,-0.032584734,-0.032307392,-0.03211649,-0.03200833,-0.031977193,-0.032015458,-0.032113766,-0.032261257,-0.032445846,-0.032654541,-0.0328738,-0.033089904,-0.033289343,-0.033459202,-0.033587537,-0.033663716,-0.033678743,-0.033625514,-0.033499037,-0.033296576,-0.033017729,-0.032664434,-0.032240904,-0.031753479,-0.031210423,-0.030621646,-0.029998381,-0.029352816,-0.028697693,-0.028045893,-0.027410019,-0.026801986,-0.026232639,-0.025711413,-0.025246035,-0.024842298,-0.024503896,-0.024232342,-0.024026971,-0.023885022,-0.023801803,-0.023770943,-0.023784707,-0.023834381,-0.023910692,-0.024004268,-0.024106099,-0.024207988,-0.024302961,-0.024385623,-0.02445243,-0.024501866,-0.024534508,-0.024552982,-0.024561798,-0.024567079,-0.0245762,-0.024597359,-0.024639095,-0.024709806,-0.02481727,-0.024968227,-0.025168024,-0.025420366,-0.02572717,-0.026088541,-0.026502862,-0.02696699,-0.027476538,-0.028026223,-0.028610249,-0.029222701,-0.029857916,-0.030510811,-0.031177138,-0.031853666,-0.032538261,-0.033229883,-0.03392849,-0.034634868,-0.035350403,-0.036076811,-0.036815853,-0.037569052,-0.038337435,-0.039121314,-0.039920129,-0.040732343,-0.041555422,-0.042385864,-0.043219304,-0.044050668,-0.044874362,-0.045684494,-0.046475112,-0.047240425,-0.047975024,-0.04867407,-0.049333445,-0.049949863,-0.050520942,-0.051045228,-0.051522176,-0.051952103,-0.052336105,-0.052675952,-0.052973975,-0.053232935,-0.053455901,-0.053646128,-0.05380695,-0.053941679,-0.054053526,-0.05414554,-0.054220554,-0.054281159,-0.054329682,-0.054368184,-0.054398461,-0.054422056,-0.05444028,-0.054454231,-0.054464815,-0.054472773,-0.054478703,-0.054483083,-0.05448629,-0.054488616,-0.054490289,-0.054491482,-0.054492324,-0.054492914,-0.054493323,-0.054493605,-0.054493797,-0.054493927,-0.054494014,-0.054494071,-0.054494109,-0.054494134,-0.05449415,-0.05449416,-0.054494167,-0.054494171,-0.054494173,-0.054494175,-0.054494176,-0.054494176,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177,-0.054494177],"zorder":7,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903],"zorder":8,"type":"scatter"},{"customdata":[[1.0267685e-69],[5.2964135e-69],[2.7080588e-68],[1.3724648e-67],[6.8946364e-67],[3.433117e-66],[1.6944666e-65],[8.2898116e-65],[4.0199777e-64],[1.93228e-63],[9.2062755e-63],[4.3477592e-62],[2.0352356e-61],[9.4434714e-61],[4.3432671e-60],[1.9800191e-59],[8.9472654e-59],[4.0075545e-58],[1.7792495e-57],[7.8300166e-57],[3.4155215e-56],[1.4767943e-55],[6.3292423e-55],[2.6887617e-54],[1.1321968e-53],[4.72564e-53],[1.9550984e-52],[8.0176294e-52],[3.2590639e-51],[1.3131352e-50],[5.2444e-50],[2.0761185e-49],[8.1466411e-49],[3.1686575e-48],[1.2216377e-47],[4.6685302e-47],[1.7684332e-46],[6.64e-46],[2.4712609e-45],[9.1167579e-45],[3.3337552e-44],[1.2083665e-43],[4.3414567e-43],[1.5461241e-42],[5.4578989e-42],[1.9097614e-41],[6.6237725e-41],[2.2772181e-40],[7.7602728e-40],[2.6213362e-39],[8.7769185e-39],[2.912965e-38],[9.5830243e-38],[3.1249586e-37],[1.0100912e-36],[3.2363227e-36],[1.0278227e-35],[3.2356393e-35],[1.009666e-34],[3.1229962e-34],[9.5750608e-34],[2.9099687e-33],[8.766215e-33],[2.6176602e-32],[7.7480446e-32],[2.2732595e-31],[6.6112611e-31],[1.9058925e-30],[5.4461755e-30],[1.5426394e-29],[4.3312892e-29],[1.205453e-28],[3.3255554e-28],[9.0940914e-28],[2.4651089e-27],[6.623614e-27],[1.7641541e-26],[4.6575884e-26],[1.2189033e-25],[3.1619974e-25],[8.1308949e-25],[2.0725276e-24],[5.236583e-24],[1.3115411e-23],[3.2561371e-23],[8.0132903e-23],[1.9548216e-22],[4.7270701e-22],[1.1330949e-21],[2.6923438e-21],[6.3414041e-21],[1.4805794e-20],[3.4266527e-20],[7.8614256e-20],[1.7878296e-19],[4.0303739e-19],[9.0065763e-19],[1.9951252e-18],[4.3810423e-18],[9.5363568e-18],[2.0577196e-17],[4.4013861e-17],[9.3323987e-17],[1.9615465e-16],[4.0870174e-16],[8.441467e-16],[1.7283592e-15],[3.5079699e-15],[7.0580479e-15],[1.4077366e-14],[2.783348e-14],[5.455369e-14],[1.0599676e-13],[2.0416166e-13],[3.8982556e-13],[7.3787432e-13],[1.3845604e-12],[2.5754928e-12],[4.7492967e-12],[8.6820124e-12],[1.5733862e-11],[2.8266748e-11],[5.0343541e-11],[8.8887552e-11],[1.5558559e-10],[2.6997969e-10],[4.6443849e-10],[7.9206885e-10],[1.3391758e-09],[2.2446807e-09],[3.730065e-09],[6.1450541e-09],[1.0036569e-08],[1.6251669e-08],[2.6089567e-08],[4.1523614e-08],[6.5521855e-08],[1.0250464e-07],[1.5899042e-07],[2.4449636e-07],[3.7277957e-07],[5.635267e-07],[8.446258e-07],[1.2551819e-06],[1.8494681e-06],[2.7020326e-06],[3.9142091e-06],[5.6222961e-06],[8.0076789e-06],[1.1309161e-05],[1.583773e-05],[2.1993942e-05],[3.0287965e-05],[4.1362246e-05],[5.6016504e-05],[7.5234581e-05],[0.00010021237],[0.00013238575],[0.00017345709],[0.0002254187],[0.00029057103],[0.00037153361],[0.00047124618],[0.00059295775],[0.00074020144],[0.00091675335],[0.0011265741],[0.0013737332],[0.0016623155],[0.0019963136],[0.0023795069],[0.0028153324],[0.0033067519],[0.0038561224],[0.0044650738],[0.0051344031],[0.0058639885],[0.0066527302],[0.0074985215],[0.0083982512],[0.0093478391],[0.010342302],[0.011375846],[0.012441979],[0.013533644],[0.014643345],[0.015763291],[0.016885515],[0.01800199],[0.019104721],[0.020185824],[0.021237578],[0.022252465],[0.023223202],[0.024142762],[0.025004402],[0.025801705],[0.026528634],[0.027179618],[0.027749659],[0.028234474],[0.028630659],[0.028935876],[0.029149052],[0.029270577],[0.029302491],[0.029248638],[0.02911478],[0.028908653],[0.028639948],[0.02832022],[0.027962708],[0.027582077],[0.027194076],[0.026815135],[0.026461907],[0.026150776],[0.025897357],[0.025716005],[0.025619359],[0.025617947],[0.025719856],[0.025930496],[0.026252462],[0.026685484],[0.02722649],[0.02786974],[0.028607051],[0.029428078],[0.030320632],[0.031271042],[0.032264502],[0.033285436],[0.034317821],[0.0353455],[0.036352438],[0.037322959],[0.038241931],[0.039094918],[0.039868303],[0.040549386],[0.041126463],[0.041588903],[0.041927212],[0.042133113],[0.042199621],[0.042121137],[0.041893544],[0.04151431],[0.040982596],[0.040299348],[0.039467384],[0.038491446],[0.037378227],[0.03613635],[0.034776301],[0.033310305],[0.031752153],[0.030116965],[0.028420914],[0.026680904],[0.024914217],[0.023138149],[0.021369632],[0.01962488],[0.017919055],[0.016265966],[0.014677832],[0.013165086],[0.011736254],[0.010397889],[0.0091545723],[0.0080089743],[0.0069619603],[0.006012746],[0.0051590839],[0.004397473],[0.0037233827],[0.0031314798],[0.0026158501],[0.0021702094],[0.001788094],[0.0014630312],[0.0011886831],[0.00095896507],[0.0007681369],[0.00061086993],[0.00048229017],[0.00037800111],[0.00029408872],[0.00022711205],[0.00017408233],[0.00013243365],[9.9988028e-05],[7.4917097e-05],[5.5702519e-05],[4.1096789e-05],[3.0085609e-05],[2.1852787e-05],[1.5748233e-05],[1.1259373e-05],[7.9861055e-06],[5.6192199e-06],[3.9221076e-06],[2.7154917e-06],[1.8648615e-06],[1.2702761e-06],[8.5819918e-07],[5.7504529e-07],[3.8214329e-07],[2.5185323e-07],[1.6460893e-07],[1.06692e-07],[6.8575912e-08],[4.3708086e-08],[2.7624357e-08],[1.7312231e-08],[1.0758089e-08],[6.6287199e-09],[4.0497517e-09],[2.4531463e-09],[1.473355e-09],[8.7735074e-10],[5.179816e-10],[3.0319664e-10],[1.7595333e-10],[1.0123439e-10],[5.7744522e-11],[3.2654326e-11],[1.830683e-11],[1.0174748e-11],[5.6061928e-12],[3.062262e-12],[1.6582228e-12],[8.9015602e-13],[4.7370591e-13],[2.4990087e-13],[1.3068932e-13],[6.7752138e-14],[3.4818809e-14],[1.7738233e-14],[8.9579779e-15],[4.4844652e-15],[2.2254113e-15],[1.0947298e-15],[5.3382485e-16],[2.5803826e-16],[1.2364064e-16],[5.872577e-17],[2.7649357e-17],[1.2904133e-17],[5.9697872e-18],[2.7376243e-18],[1.2444364e-18],[5.6073064e-19],[2.5044804e-19],[1.1088218e-19],[4.8661526e-20],[2.1168433e-20],[9.1278792e-21],[3.901472e-21],[1.6529656e-21],[6.9418486e-22],[2.8897605e-22],[1.1924037e-22],[4.87707e-23],[1.9772805e-23],[7.9460396e-24],[3.1652338e-24],[1.2497785e-24],[4.8913873e-25],[1.89759e-25],[7.2969884e-26],[2.7813491e-26],[1.0508423e-26],[3.9354058e-27],[1.4608683e-27],[5.3752899e-28],[1.9604769e-28],[7.0874546e-29],[2.5397288e-29],[9.0209577e-30],[3.1760401e-30],[1.108376e-30],[3.834033e-31],[1.3145951e-31],[4.4678172e-32],[1.5051017e-32],[5.0257767e-33],[1.6634405e-33],[5.4573017e-34],[1.7746598e-34],[5.7202968e-35],[1.8276298e-35],[5.7879392e-36],[1.8168776e-36],[5.6531854e-37],[1.7435184e-37],[5.3299793e-38],[1.6150653e-38]],"fill":"tonexty","fillcolor":"rgb(0, 191, 255)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"May","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658902,-0.072658902,-0.072658901,-0.072658899,-0.072658897,-0.072658893,-0.072658887,-0.072658877,-0.072658862,-0.072658838,-0.072658801,-0.072658744,-0.072658659,-0.07265853,-0.07265834,-0.072658058,-0.072657648,-0.072657054,-0.072656201,-0.072654989,-0.072653281,-0.072650895,-0.072647594,-0.072643065,-0.072636909,-0.072628615,-0.072617541,-0.072602887,-0.072583669,-0.072558691,-0.072526517,-0.072485446,-0.072433484,-0.072368332,-0.07228737,-0.072187657,-0.072065945,-0.071918702,-0.07174215,-0.071532329,-0.07128517,-0.070996588,-0.07066259,-0.070279396,-0.069843571,-0.069352151,-0.068802781,-0.068193829,-0.0675245,-0.066794915,-0.066006173,-0.065160382,-0.064260652,-0.063311064,-0.062316601,-0.061283058,-0.060216924,-0.059125259,-0.058015558,-0.056895612,-0.055773388,-0.054656913,-0.053554182,-0.052473079,-0.051421325,-0.050406438,-0.049435701,-0.048516141,-0.047654501,-0.046857199,-0.046130269,-0.045479285,-0.044909244,-0.044424429,-0.044028244,-0.043723027,-0.043509852,-0.043388326,-0.043356413,-0.043410265,-0.043544123,-0.04375025,-0.044018955,-0.044338683,-0.044696195,-0.045076826,-0.045464827,-0.045843768,-0.046196996,-0.046508127,-0.046761546,-0.046942898,-0.047039544,-0.047040956,-0.046939047,-0.046728407,-0.046406441,-0.045973419,-0.045432413,-0.044789163,-0.044051852,-0.043230826,-0.042338271,-0.041387862,-0.040394401,-0.039373467,-0.038341082,-0.037313404,-0.036306465,-0.035335944,-0.034416972,-0.033563985,-0.0327906,-0.032109517,-0.03153244,-0.03107,-0.030731691,-0.03052579,-0.030459282,-0.030537766,-0.030765359,-0.031144593,-0.031676307,-0.032359555,-0.033191519,-0.034167457,-0.035280676,-0.036522553,-0.037882602,-0.039348598,-0.04090675,-0.042541938,-0.044237989,-0.045978,-0.047744686,-0.049520754,-0.051289271,-0.053034023,-0.054739848,-0.056392937,-0.057981071,-0.059493817,-0.060922649,-0.062261015,-0.063504331,-0.064649929,-0.065696943,-0.066646157,-0.067499819,-0.06826143,-0.06893552,-0.069527423,-0.070043053,-0.070488694,-0.070870809,-0.071195872,-0.07147022,-0.071699938,-0.071890766,-0.072048033,-0.072176613,-0.072280902,-0.072364814,-0.072431791,-0.072484821,-0.072526469,-0.072558915,-0.072583986,-0.072603201,-0.072617806,-0.072628818,-0.07263705,-0.072643155,-0.072647644,-0.072650917,-0.072653284,-0.072654981,-0.072656188,-0.072657038,-0.072657633,-0.072658045,-0.072658328,-0.072658521,-0.072658651,-0.072658739,-0.072658796,-0.072658835,-0.072658859,-0.072658875,-0.072658886,-0.072658892,-0.072658896,-0.072658899,-0.072658901,-0.072658902,-0.072658902,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903],"zorder":8,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903],"zorder":9,"type":"scatter"},{"customdata":[[1.336092e-120],[1.182816e-119],[1.0379151e-118],[9.0275572e-118],[7.7829187e-117],[6.6508714e-116],[5.6335015e-115],[4.7297926e-114],[3.9361314e-113],[3.24684e-112],[2.6547034e-111],[2.1514683e-110],[1.7282943e-109],[1.3761452e-108],[1.086112e-107],[8.4966713e-107],[6.5885042e-106],[5.0639412e-105],[3.8579296e-104],[2.9132903e-103],[2.1806052e-102],[1.6178347e-101],[1.1897483e-100],[8.6724107e-100],[6.2659714e-99],[4.4874623e-98],[3.1854958e-97],[2.2413882e-96],[1.5632231e-95],[1.080659e-94],[7.4049175e-94],[5.0293933e-93],[3.3859053e-92],[2.2594246e-91],[1.4944615e-90],[9.7979554e-90],[6.3672224e-89],[4.101365e-88],[2.6186091e-87],[1.6572071e-86],[1.0395532e-85],[6.4636899e-85],[3.9836224e-84],[2.4335466e-83],[1.4735505e-82],[8.8441126e-82],[5.2614731e-81],[3.1025895e-80],[1.8134481e-79],[1.0506301e-78],[6.0333487e-78],[3.4342419e-77],[1.9376139e-76],[1.0835962e-75],[6.0066399e-75],[3.3003471e-74],[1.7974282e-73],[9.7030301e-73],[5.1919096e-72],[2.753663e-71],[1.4476327e-70],[7.5434477e-70],[3.8962367e-69],[1.9947328e-68],[1.0122506e-67],[5.0916126e-67],[2.5385552e-66],[1.2545322e-65],[6.1452709e-65],[2.9837623e-64],[1.43599e-63],[6.8501896e-63],[3.239051e-62],[1.5180883e-61],[7.0524543e-61],[3.2474883e-60],[1.4822415e-59],[6.7058586e-59],[3.0071419e-58],[1.3366495e-57],[5.8890503e-57],[2.5717996e-56],[1.1132511e-55],[4.7765384e-55],[2.0314101e-54],[8.563398e-54],[3.5781527e-53],[1.4819578e-52],[6.0838298e-52],[2.4756119e-51],[9.9850983e-51],[3.9919626e-50],[1.5819215e-49],[6.2136638e-49],[2.4192179e-48],[9.3361246e-48],[3.5712706e-47],[1.354077e-46],[5.0889536e-46],[1.8957374e-45],[6.99991e-45],[2.5619543e-44],[9.2942629e-44],[3.3421293e-43],[1.1912319e-42],[4.2085662e-42],[1.4737943e-41],[5.1156931e-41],[1.7600988e-40],[6.0025339e-40],[2.0290711e-39],[6.7986868e-39],[2.2579691e-38],[7.4332069e-38],[2.4254916e-37],[7.8449238e-37],[2.51503e-36],[7.9921414e-36],[2.5173801e-35],[7.8595949e-35],[2.4323012e-34],[7.461059e-34],[2.2685566e-33],[6.8369891e-33],[2.0424263e-32],[6.0477561e-32],[1.775042e-31],[5.1640399e-31],[1.489146e-30],[4.2564926e-30],[1.2059617e-29],[3.3867436e-29],[9.4275423e-29],[2.6012505e-28],[7.1143226e-28],[1.9286473e-27],[5.1825102e-27],[1.3803709e-26],[3.6443487e-26],[9.5370218e-26],[2.473857e-25],[6.3607101e-25],[1.6210861e-24],[4.0952111e-24],[1.0254548e-23],[2.5452303e-23],[6.2619306e-23],[1.527075e-22],[3.6913378e-22],[8.8446136e-22],[2.1006126e-21],[4.9452184e-21],[1.1539788e-20],[2.6692141e-20],[6.1198776e-20],[1.390837e-19],[3.1331733e-19],[6.9962898e-19],[1.548556e-18],[3.3975225e-18],[7.3888132e-18],[1.5928122e-17],[3.4035539e-17],[7.2090755e-17],[1.5135826e-16],[3.1500178e-16],[6.4983191e-16],[1.3288349e-15],[2.6935428e-15],[5.4120333e-15],[1.0779081e-14],[2.1280839e-14],[4.1646883e-14],[8.079121e-14],[1.553584e-13],[2.9613898e-13],[5.5956162e-13],[1.0480768e-12],[1.9459537e-12],[3.581522e-12],[6.5343139e-12],[1.1817653e-11],[2.1186689e-11],[3.7652805e-11],[6.6333948e-11],[1.1584589e-10],[2.0055513e-10],[3.4418942e-10],[5.8556369e-10],[9.8756596e-10],[1.6511101e-09],[2.7365704e-09],[4.4963568e-09],[7.3238852e-09],[1.1826388e-08],[1.8931978e-08],[3.0045312e-08],[4.7271367e-08],[7.3733422e-08],[1.1401966e-07],[1.7480297e-07],[2.6569079e-07],[4.0037599e-07],[5.9817595e-07],[8.8606421e-07],[1.3013171e-06],[1.894914e-06],[2.7358459e-06],[3.916492e-06],[5.5592312e-06],[7.8244362e-06],[1.091998e-05],[1.5112331e-05],[2.0739253e-05],[2.8224015e-05],[3.8090923e-05],[5.0981809e-05],[6.7672954e-05],[8.9091757e-05],[0.00011633223],[0.00015066828],[0.00019356351],[0.00024667623],[0.00031185837],[0.00039114684],[0.00048674633],[0.00060100255],[0.00073636543],[0.00089534228],[0.0010804414],[0.0012941074],[0.0015386497],[0.0018161673],[0.0021284719],[0.0024770126],[0.0028628068],[0.0032863786],[0.0037477088],[0.0042461991],[0.0047806512],[0.0053492622],[0.0059496361],[0.00657881],[0.0072332938],[0.0079091205],[0.0086019049],[0.0093069092],[0.010019111],[0.010733276],[0.011444033],[0.012145948],[0.01283361],[0.013501718],[0.014145177],[0.014759211],[0.015339483],[0.015882235],[0.016384437],[0.01684395],[0.01725969],[0.017631799],[0.017961791],[0.018252688],[0.01850911],[0.018737326],[0.018945239],[0.019142301],[0.019339352],[0.019548375],[0.019782171],[0.020053956],[0.02037689],[0.020763563],[0.021225449],[0.021772346],[0.022411859],[0.023148912],[0.023985356],[0.024919671],[0.025946808],[0.027058157],[0.028241685],[0.029482221],[0.030761888],[0.032060669],[0.033357084],[0.034628943],[0.035854152],[0.037011513],[0.038081506],[0.039046994],[0.039893827],[0.040611321],[0.041192575],[0.04163463],[0.041938455],[0.04210877],[0.042153713],[0.042084365],[0.041914181],[0.041658321],[0.041332947],[0.040954492],[0.040538948],[0.040101198],[0.039654421],[0.039209589],[0.038775073],[0.038356379],[0.037956008],[0.037573457],[0.037205342],[0.036845644],[0.036486065],[0.036116471],[0.035725406],[0.03530066],[0.034829851],[0.034301019],[0.033703184],[0.033026866],[0.032264533],[0.031410962],[0.030463507],[0.029422252],[0.028290061],[0.027072505],[0.025777689],[0.024415987],[0.022999683],[0.021542559],[0.020059434],[0.018565678],[0.017076728],[0.01560762],[0.01417256],[0.012784548],[0.011455073],[0.010193872],[0.0090087822],[0.0079056626],[0.0068883952],[0.0059589559],[0.0051175437],[0.0043627584],[0.0036918137],[0.0031007724],[0.0025847918],[0.0021383675],[0.0017555656],[0.0014302365],[0.0011562029],[0.00092741904],[0.0007380999],[0.00058281921],[0.00045657844],[0.00035484927],[0.00027359256],[0.00020925806],[0.00015876837],[0.00011949141],[8.9204739e-05],[6.6055032e-05],[4.8515376e-05],[3.5342535e-05],[2.5535864e-05],[1.8299035e-05],[1.3005327e-05],[9.1668658e-06],[6.4079398e-06],[4.4422781e-06],[3.0540419e-06],[2.0821818e-06],[1.4077628e-06],[9.4384486e-07],[6.2751679e-07],[4.1371125e-07],[2.7046458e-07],[1.7533098e-07],[1.1270325e-07],[7.1835356e-08],[4.5400312e-08],[2.8450712e-08],[1.7678128e-08],[1.0891395e-08],[6.6531954e-09],[4.0296957e-09],[2.4199432e-09],[1.4408705e-09],[8.5060451e-10],[4.9786262e-10],[2.8891282e-10],[1.6622487e-10],[9.4818626e-11],[5.3623662e-11],[3.0066386e-11],[1.6713402e-11],[9.210948e-12],[5.0326506e-12],[2.726085e-12]],"fill":"tonexty","fillcolor":"rgb(255, 69, 0)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"May","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658902,-0.072658901,-0.0726589,-0.072658899,-0.072658896,-0.072658891,-0.072658884,-0.072658873,-0.072658856,-0.072658829,-0.072658789,-0.072658728,-0.072658637,-0.072658503,-0.072658305,-0.072658017,-0.072657602,-0.072657008,-0.072656167,-0.072654987,-0.072653344,-0.072651079,-0.072647983,-0.072643791,-0.072638164,-0.072630679,-0.072620812,-0.072607921,-0.07259123,-0.072569811,-0.072542571,-0.072508235,-0.07246534,-0.072412227,-0.072347045,-0.072267756,-0.072172157,-0.072057901,-0.071922538,-0.071763561,-0.071578462,-0.071364796,-0.071120253,-0.070842736,-0.070530431,-0.070181891,-0.069796096,-0.069372524,-0.068911194,-0.068412704,-0.067878252,-0.067309641,-0.066709267,-0.066080093,-0.065425609,-0.064749783,-0.064056998,-0.063351994,-0.062639792,-0.061925627,-0.06121487,-0.060512955,-0.059825293,-0.059157185,-0.058513726,-0.057899692,-0.05731942,-0.056776668,-0.056274466,-0.055814954,-0.055399213,-0.055027104,-0.054697112,-0.054406215,-0.054149793,-0.053921577,-0.053713664,-0.053516602,-0.053319551,-0.053110528,-0.052876732,-0.052604948,-0.052282014,-0.05189534,-0.051433455,-0.050886557,-0.050247044,-0.049509991,-0.048673548,-0.047739232,-0.046712095,-0.045600747,-0.044417218,-0.043176682,-0.041897015,-0.040598234,-0.03930182,-0.03802996,-0.036804751,-0.03564739,-0.034577397,-0.033611909,-0.032765076,-0.032047582,-0.031466328,-0.031024274,-0.030720448,-0.030550133,-0.030505191,-0.030574538,-0.030744723,-0.031000582,-0.031325956,-0.031704411,-0.032119955,-0.032557705,-0.033004482,-0.033449314,-0.03388383,-0.034302525,-0.034702895,-0.035085446,-0.035453561,-0.035813259,-0.036172838,-0.036542432,-0.036933497,-0.037358244,-0.037829052,-0.038357884,-0.038955719,-0.039632037,-0.04039437,-0.041247941,-0.042195397,-0.043236651,-0.044368842,-0.045586398,-0.046881214,-0.048242916,-0.049659221,-0.051116344,-0.052599469,-0.054093225,-0.055582175,-0.057051283,-0.058486343,-0.059874355,-0.06120383,-0.062465031,-0.063650121,-0.064753241,-0.065770508,-0.066699947,-0.067541359,-0.068296145,-0.068967089,-0.069558131,-0.070074111,-0.070520536,-0.070903338,-0.071228667,-0.0715027,-0.071731484,-0.071920803,-0.072076084,-0.072202325,-0.072304054,-0.072385311,-0.072449645,-0.072500135,-0.072539412,-0.072569698,-0.072592848,-0.072610388,-0.072623561,-0.072633367,-0.072640604,-0.072645898,-0.072649736,-0.072652495,-0.072654461,-0.072655849,-0.072656821,-0.072657495,-0.072657959,-0.072658276,-0.072658489,-0.072658633,-0.072658728,-0.07265879,-0.072658831,-0.072658858,-0.072658875,-0.072658885,-0.072658892,-0.072658896,-0.072658899,-0.072658901,-0.072658902,-0.072658902,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903,-0.072658903],"zorder":9,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629],"zorder":10,"type":"scatter"},{"customdata":[[2.92535e-101],[2.1459726e-100],[1.5603942e-99],[1.1246264e-98],[8.0342629e-98],[5.6891528e-97],[3.9931254e-96],[2.7780631e-95],[1.9157334e-94],[1.3094588e-93],[8.8718135e-93],[5.9579488e-92],[3.965929e-91],[2.6167179e-90],[1.7113257e-89],[1.1093594e-88],[7.1281302e-88],[4.5398636e-87],[2.8659841e-86],[1.7933645e-85],[1.1123133e-84],[6.8383217e-84],[4.1671172e-83],[2.5170144e-82],[1.5069522e-81],[8.9428732e-81],[5.2603963e-80],[3.0670698e-79],[1.7725262e-78],[1.0153726e-77],[5.7653018e-77],[3.244759e-76],[1.810117e-75],[1.0009091e-74],[5.4858819e-74],[2.9803143e-73],[1.604876e-72],[8.5661303e-72],[4.5320187e-71],[2.3766351e-70],[1.2353702e-69],[6.3649579e-69],[3.2505567e-68],[1.6454465e-67],[8.2560743e-67],[4.1060782e-66],[2.0241591e-65],[9.8906736e-65],[4.7903903e-64],[2.2997452e-63],[1.0943402e-62],[5.1616529e-62],[2.4131762e-61],[1.1182865e-60],[5.136661e-60],[2.3386894e-59],[1.0554265e-58],[4.7211439e-58],[2.0932943e-57],[9.1997734e-57],[4.0076315e-56],[1.7304627e-55],[7.4062862e-55],[3.1419737e-54],[1.3211995e-53],[5.5067843e-53],[2.2750531e-52],[9.3164144e-52],[3.7815502e-51],[1.5214397e-50],[6.0674109e-50],[2.3983684e-49],[9.3970636e-49],[3.6494906e-48],[1.40487e-47],[5.3604817e-47],[2.0273807e-46],[7.6002977e-46],[2.8241626e-45],[1.0401898e-44],[3.7975134e-44],[1.3741996e-43],[4.9290604e-43],[1.7524364e-42],[6.1756714e-42],[2.1571975e-41],[7.4689482e-41],[2.5632608e-40],[8.719467e-40],[2.9400241e-39],[9.8259751e-39],[3.2550992e-38],[1.0688496e-37],[3.4788268e-37],[1.1223099e-36],[3.5888609e-36],[1.1375337e-35],[3.5738448e-35],[1.1129379e-34],[3.4353423e-34],[1.0510731e-33],[3.1875692e-33],[9.5818673e-33],[2.8549894e-32],[8.4318463e-32],[2.4683383e-31],[7.1622673e-31],[2.0599667e-30],[5.8726443e-30],[1.6594763e-29],[4.6480654e-29],[1.2904384e-28],[3.5511266e-28],[9.6863221e-28],[2.6188795e-27],[7.0183658e-27],[1.8643195e-26],[4.9087238e-26],[1.2810932e-25],[3.3140325e-25],[8.4976083e-25],[2.1597355e-24],[5.4408704e-24],[1.3586267e-23],[3.3627598e-23],[8.2500303e-23],[2.0062231e-22],[4.8357846e-22],[1.1553637e-21],[2.7361161e-21],[6.4226525e-21],[1.4943711e-20],[3.4464076e-20],[7.878418e-20],[1.7851538e-19],[4.0093735e-19],[8.9256883e-19],[1.9695694e-18],[4.3078971e-18],[9.3395046e-18],[2.006998e-17],[4.2749859e-17],[9.0258307e-17],[1.8888807e-16],[3.9182019e-16],[8.0562728e-16],[1.6419001e-15],[3.3168408e-15],[6.6415286e-15],[1.3181874e-14],[2.5932963e-14],[5.0570034e-14],[9.7746383e-14],[1.8727283e-13],[3.5564422e-13],[6.6945899e-13],[1.2491075e-12],[2.3101687e-12],[4.2350254e-12],[7.6955083e-12],[1.3860794e-11],[2.4746231e-11],[4.3792608e-11],[7.6818198e-11],[1.335672e-10],[2.3020188e-10],[3.932713e-10],[6.6596462e-10],[1.1178585e-09],[1.8599476e-09],[3.067569e-09],[5.0149831e-09],[8.126959e-09],[1.3054861e-08],[2.0787606e-08],[3.2811598e-08],[5.133859e-08],[7.9626468e-08],[1.2242543e-07],[1.8659093e-07],[2.8191537e-07],[4.2224193e-07],[6.2693715e-07],[9.2281146e-07],[1.3465897e-06],[1.948044e-06],[2.7939075e-06],[3.972691e-06],[5.6005124e-06],[7.8280379e-06],[1.0848596e-05],[1.4907484e-05],[2.0312426e-05],[2.7445049e-05],[3.6773178e-05],[4.8863614e-05],[6.4394971e-05],[8.4170042e-05],[0.00010912705],[0.00014034913],[0.00017907121],[0.00022668378],[0.00028473268],[0.00035491455],[0.00043906768],[0.00053915799],[0.00065726053],[0.0007955369],[0.00095620922],[0.0011415317],[0.0013537605],[0.0015951235],[0.0018677896],[0.0021738395],[0.0025152366],[0.0028937988],[0.0033111692],[0.003768786],[0.0042678476],[0.0048092744],[0.0053936624],[0.0060212315],[0.0066917658],[0.0074045494],[0.0081582996],[0.0089511027],[0.0097803574],[0.010642735],[0.01153416],[0.012449827],[0.013384248],[0.014331347],[0.015284603],[0.016237231],[0.017182412],[0.01811355],[0.019024556],[0.019910135],[0.020766066],[0.021589452],[0.022378924],[0.023134782],[0.02385906],[0.024555499],[0.025229436],[0.0258876],[0.026537828],[0.027188706],[0.027849168],[0.028528057],[0.029233689],[0.029973436],[0.030753343],[0.031577829],[0.032449452],[0.033368775],[0.034334332],[0.035342682],[0.036388556],[0.037465075],[0.038564017],[0.039676128],[0.040791428],[0.041899515],[0.042989828],[0.044051866],[0.045075349],[0.046050309],[0.046967126],[0.047816509],[0.048589437],[0.049277073],[0.049870686],[0.050361571],[0.050741023],[0.051000348],[0.051130937],[0.051124408],[0.050972812],[0.050668895],[0.050206403],[0.049580424],[0.048787725],[0.047827087],[0.046699589],[0.045408848],[0.043961168],[0.042365612],[0.04063396],[0.038780573],[0.036822149],[0.034777391],[0.032666583],[0.030511113],[0.028332942],[0.026154061],[0.023995942],[0.021879016],[0.019822203],[0.017842494],[0.015954624],[0.014170829],[0.012500695],[0.01095111],[0.0095262977],[0.0082279419],[0.0070553799],[0.0060058528],[0.0050747997],[0.0042561774],[0.0035427909],[0.0029266201],[0.0023991308],[0.0019515581],[0.0015751565],[0.0012614116],[0.0010022091],[0.00078996368],[0.00061770803],[0.00047914617],[0.00036867516],[0.0002813807],[0.0002130119],[0.00015994035],[0.00011910863],[8.7972449e-05],[6.4440146e-05],[4.6812471e-05],[3.3724955e-05],[2.4094405e-05],[1.7070526e-05],[1.1993195e-05],[8.3554962e-06],[5.7723337e-06],[3.9542621e-06],[2.6860108e-06],[1.8091402e-06],[1.2082397e-06],[8.0010135e-07],[5.2534291e-07],[3.4201251e-07],[2.2076889e-07],[1.4129487e-07],[8.9660999e-08],[5.6411252e-08],[3.5189201e-08],[2.1763627e-08],[1.3345297e-08],[8.1132978e-09],[4.8903053e-09],[2.9224111e-09],[1.7314539e-09],[1.0170503e-09],[5.9228895e-10],[3.4196552e-10],[1.9574311e-10],[1.1108211e-10],[6.2496174e-11],[3.4858811e-11],[1.9276129e-11],[1.0567531e-11],[5.7434407e-12],[3.0946681e-12],[1.6530953e-12],[8.7543138e-13],[4.5960567e-13],[2.3921387e-13],[1.2343085e-13],[6.3138786e-14],[3.2018622e-14],[1.6096881e-14],[8.022549e-15],[3.9638153e-15],[1.9415283e-15],[9.4276233e-16],[4.538244e-16],[2.1657062e-16],[1.0245573e-16],[4.8050405e-17],[2.2339883e-17],[1.0296434e-17],[4.7045044e-18],[2.1308905e-18],[9.5681431e-19],[4.2590482e-19],[1.8793814e-19],[8.2211744e-20],[3.5650739e-20],[1.532562e-20],[6.5310291e-21],[2.7590423e-21],[1.1554402e-21],[4.7967614e-22],[1.9740563e-22],[8.0534306e-23],[3.256953e-23],[1.3057213e-23],[5.1891609e-24],[2.0443286e-24],[7.9838144e-25]],"fill":"tonexty","fillcolor":"rgb(0, 191, 255)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"June","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823628,-0.090823628,-0.090823627,-0.090823626,-0.090823624,-0.090823621,-0.090823616,-0.090823608,-0.090823596,-0.090823578,-0.090823549,-0.090823506,-0.090823442,-0.090823347,-0.090823207,-0.090823002,-0.090822706,-0.090822282,-0.090821681,-0.090820835,-0.090819656,-0.090818028,-0.090815801,-0.09081278,-0.090808721,-0.090803316,-0.090796184,-0.090786856,-0.090774765,-0.090759234,-0.090739459,-0.090714502,-0.09068328,-0.090644558,-0.090596945,-0.090538896,-0.090468714,-0.090384561,-0.090284471,-0.090166368,-0.090028092,-0.08986742,-0.089682097,-0.089469868,-0.089228505,-0.088955839,-0.088649789,-0.088308392,-0.08792983,-0.08751246,-0.087054843,-0.086555781,-0.086014354,-0.085429966,-0.084802397,-0.084131863,-0.08341908,-0.082665329,-0.081872526,-0.081043272,-0.080180894,-0.079289469,-0.078373802,-0.077439381,-0.076492282,-0.075539026,-0.074586398,-0.073641217,-0.072710079,-0.071799073,-0.070913494,-0.070057563,-0.069234177,-0.068444705,-0.067688846,-0.066964569,-0.06626813,-0.065594193,-0.064936029,-0.064285801,-0.063634923,-0.062974461,-0.062295572,-0.06158994,-0.060850193,-0.060070286,-0.0592458,-0.058374177,-0.057454854,-0.056489297,-0.055480947,-0.054435073,-0.053358554,-0.052259612,-0.051147501,-0.050032201,-0.048924114,-0.047833801,-0.046771763,-0.04574828,-0.04477332,-0.043856503,-0.04300712,-0.042234192,-0.041546555,-0.040952943,-0.040462058,-0.040082605,-0.039823281,-0.039692692,-0.039699221,-0.039850817,-0.040154734,-0.040617226,-0.041243205,-0.042035904,-0.042996542,-0.04412404,-0.045414781,-0.046862461,-0.048458017,-0.050189669,-0.052043056,-0.054001479,-0.056046238,-0.058157046,-0.060312516,-0.062490687,-0.064669568,-0.066827687,-0.068944612,-0.071001426,-0.072981135,-0.074869005,-0.0766528,-0.078322934,-0.079872519,-0.081297331,-0.082595687,-0.083768249,-0.084817776,-0.085748829,-0.086567452,-0.087280838,-0.087897009,-0.088424498,-0.088872071,-0.089248472,-0.089562217,-0.08982142,-0.090033665,-0.090205921,-0.090344483,-0.090454954,-0.090542248,-0.090610617,-0.090663689,-0.09070452,-0.090735656,-0.090759189,-0.090776816,-0.090789904,-0.090799534,-0.090806558,-0.090811636,-0.090815273,-0.090817857,-0.090819675,-0.090820943,-0.09082182,-0.090822421,-0.090822829,-0.090823104,-0.090823287,-0.090823408,-0.090823488,-0.090823539,-0.090823572,-0.090823594,-0.090823607,-0.090823616,-0.090823621,-0.090823624,-0.090823626,-0.090823627,-0.090823628,-0.090823628,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629],"zorder":10,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629],"zorder":11,"type":"scatter"},{"customdata":[[7.9597455e-186],[1.2097021e-184],[1.8223069e-183],[2.720999e-182],[4.0271616e-181],[5.9079054e-180],[8.5907643e-179],[1.2382088e-177],[1.7689671e-176],[2.5050099e-175],[3.5161138e-174],[4.8919297e-173],[6.7462323e-172],[9.2215978e-171],[1.2494384e-169],[1.6779822e-168],[2.2336938e-167],[2.9472959e-166],[3.8546738e-165],[4.9970688e-164],[6.4210615e-163],[8.1782829e-162],[1.032479e-160],[1.2920048e-159],[1.6025472e-158],[1.97025e-157],[2.4010193e-156],[2.9002388e-155],[3.4724474e-154],[4.1209883e-153],[4.847646e-152],[5.6522872e-151],[6.5325288e-150],[7.4834568e-149],[8.4974179e-148],[9.5639104e-147],[1.0669592e-145],[1.1798423e-144],[1.2931946e-143],[1.4049718e-142],[1.5129868e-141],[1.6149775e-140],[1.7086834e-139],[1.7919279e-138],[1.8627016e-137],[1.9192423e-136],[1.9601087e-135],[1.9842405e-134],[1.9910045e-133],[1.9802225e-132],[1.9521786e-131],[1.9076069e-130],[1.8476599e-129],[1.7738586e-128],[1.6880284e-127],[1.5922245e-126],[1.4886502e-125],[1.3795734e-124],[1.2672456e-123],[1.1538266e-122],[1.0413197e-121],[9.3151847e-121],[8.2596689e-120],[7.2593478e-119],[6.3240658e-118],[5.4608337e-117],[4.6739636e-116],[3.965295e-115],[3.3344905e-114],[2.7793757e-113],[2.2963011e-112],[1.8805038e-111],[1.5264529e-110],[1.2281641e-109],[9.7947461e-109],[7.7427239e-108],[6.0667788e-107],[4.7117947e-106],[3.6272572e-105],[2.7677964e-104],[2.0934074e-103],[1.5694126e-102],[1.1662304e-101],[8.5900433e-101],[6.2714817e-100],[4.5384627e-99],[3.2554511e-98],[2.3146077e-97],[1.6312007e-96],[1.1394656e-95],[7.8896699e-95],[5.414773e-94],[3.6835407e-93],[2.4837879e-92],[1.6600735e-91],[1.0997753e-90],[7.2217821e-90],[4.7005493e-89],[3.0326106e-88],[1.9393156e-87],[1.2292611e-86],[7.7233117e-86],[4.8097977e-85],[2.969025e-84],[1.8166226e-83],[1.1017406e-82],[6.6230465e-82],[3.9463905e-81],[2.330806e-80],[1.3645077e-79],[7.9178933e-79],[4.5541477e-78],[2.5963808e-77],[1.467214e-76],[8.2183065e-76],[4.5628377e-75],[2.5110277e-74],[1.36972e-73],[7.4058666e-73],[3.9690245e-72],[2.108412e-71],[1.1101738e-70],[5.7941575e-70],[2.9974601e-69],[1.5370229e-68],[7.8121587e-68],[3.9357326e-67],[1.9653682e-66],[9.7280561e-66],[4.7727866e-65],[2.3210354e-64],[1.1188074e-63],[5.3455539e-63],[2.531593e-62],[1.1883897e-61],[5.5295231e-61],[2.5502355e-60],[1.165834e-59],[5.2827121e-59],[2.3726899e-58],[1.0563038e-57],[4.6612297e-57],[2.0388064e-56],[8.8392474e-56],[3.7985549e-55],[1.6180254e-54],[6.8315002e-54],[2.858977e-53],[1.1859573e-52],[4.8763095e-52],[1.9873635e-51],[8.0283662e-51],[3.2147031e-50],[1.2759051e-49],[5.0194917e-49],[1.957334e-48],[7.565436e-48],[2.8984568e-47],[1.1006862e-46],[4.1430873e-46],[1.5457829e-45],[5.716586e-45],[2.0955057e-44],[7.6138587e-44],[2.7421086e-43],[9.7887751e-43],[3.4636653e-42],[1.2148073e-41],[4.2232104e-41],[1.4552645e-40],[4.9705572e-40],[1.6827985e-39],[5.6470686e-39],[1.8783561e-38],[6.192938e-38],[2.0238554e-37],[6.5558071e-37],[2.104926e-36],[6.6990228e-36],[2.1132461e-35],[6.6077362e-35],[2.0479499e-34],[6.2914393e-34],[1.915776e-33],[5.7823388e-33],[1.7299216e-32],[5.1299534e-32],[1.5078723e-31],[4.3931888e-31],[1.2687012e-30],[3.6316424e-30],[1.0304123e-29],[2.8978995e-29],[8.0782986e-29],[2.232137e-28],[6.113448e-28],[1.6596482e-27],[4.4659142e-27],[1.1911577e-26],[3.1491459e-26],[8.2524137e-26],[2.1435517e-25],[5.5188901e-25],[1.4084274e-24],[3.5627238e-24],[8.9329509e-24],[2.220102e-23],[5.4691045e-23],[1.3354417e-22],[3.2322072e-22],[7.7542381e-22],[1.843932e-21],[4.3462698e-21],[1.0154408e-20],[2.3515755e-20],[5.3979617e-20],[1.2281953e-19],[2.7699512e-19],[6.1921869e-19],[1.372093e-18],[3.0136368e-18],[6.5609459e-18],[1.4158281e-17],[3.0284717e-17],[6.4210471e-17],[1.3494536e-16],[2.8111261e-16],[5.804616e-16],[1.188059e-15],[2.4103189e-15],[4.8471187e-15],[9.6619807e-15],[1.9090743e-14],[3.7389916e-14],[7.2587542e-14],[1.3968398e-13],[2.6644597e-13],[5.0379155e-13],[9.4421975e-13],[1.754192e-12],[3.2304614e-12],[5.8970793e-12],[1.067078e-11],[1.9140093e-11],[3.4031626e-11],[5.9981101e-11],[1.0479527e-10],[1.8149604e-10],[3.1159733e-10],[5.3030364e-10],[8.9467067e-10],[1.4962814e-09],[2.4807263e-09],[4.0772222e-09],[6.6431592e-09],[1.0730375e-08],[1.7182675e-08],[2.7277745e-08],[4.2931361e-08],[6.6987943e-08],[1.0362925e-07],[1.5894262e-07],[2.4170191e-07],[3.6442791e-07],[5.4481125e-07],[8.0759826e-07],[1.1870597e-06],[1.730182e-06],[2.5007388e-06],[3.5844195e-06],[5.0952008e-06],[7.183155e-06],[1.0043885e-05],[1.392976e-05],[1.9163093e-05],[2.6151357e-05],[3.540448e-05],[4.7554152e-05],[6.3375021e-05],[8.3807496e-05],[0.00010998181],[0.00014324284],[0.00018517509],[0.00023762716],[0.00030273499],[0.00038294298],[0.00048102241],[0.00060008627],[0.00074359989],[0.00091538689],[0.0011196299],[0.0013608656],[0.001643974],[0.0019741615],[0.0023569366],[0.002798079],[0.0033036],[0.0038796926],[0.0045326704],[0.0052688933],[0.006094675],[0.0070161729],[0.0080392536],[0.0091693349],[0.010411199],[0.011768777],[0.013244909],[0.014841074],[0.016557104],[0.018390885],[0.02033806],[0.022391747],[0.024542289],[0.026777057],[0.029080332],[0.031433278],[0.033814039],[0.036197963],[0.038557985],[0.040865153],[0.043089306],[0.045199901],[0.047166939],[0.048961989],[0.050559239],[0.051936546],[0.053076412],[0.053966839],[0.054601999],[0.054982674],[0.05511642],[0.055017432],[0.054706093],[0.05420822],[0.053554024],[0.052776841],[0.051911677],[0.050993659],[0.050056453],[0.049130751],[0.048242905],[0.047413777],[0.046657877],[0.045982833],[0.045389221],[0.044870756],[0.044414837],[0.044003411],[0.043614094],[0.043221494],[0.042798649],[0.042318509],[0.041755375],[0.041086224],[0.040291849],[0.039357772],[0.038274877],[0.037039764],[0.035654796],[0.034127884],[0.032472005],[0.030704517],[0.028846315],[0.026920874],[0.02495324],[0.022969028],[0.020993465],[0.019050531],[0.017162226],[0.015347976],[0.013624217],[0.012004126],[0.010497523],[0.0091109063],[0.0078476229],[0.0067081293],[0.0056903348],[0.0047899917],[0.0040011108],[0.0033163805],[0.0027275687],[0.0022258951],[0.0018023612],[0.0014480308],[0.0011542598],[0.00091287285],[0.00071629057],[0.00055761159],[0.00043065495],[0.00032996945],[0.00025081661],[0.00018913365],[0.00014148259],[0.00010499065],[7.7286494e-05],[5.6435681e-05],[4.0878326e-05],[2.9370655e-05],[2.0931842e-05],[1.4796764e-05]],"fill":"tonexty","fillcolor":"rgb(255, 69, 0)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"June","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823629,-0.090823628,-0.090823628,-0.090823627,-0.090823626,-0.090823625,-0.090823622,-0.090823618,-0.090823612,-0.090823602,-0.090823586,-0.090823562,-0.090823525,-0.09082347,-0.090823387,-0.090823264,-0.090823084,-0.090822821,-0.090822442,-0.090821899,-0.090821128,-0.090820044,-0.090818534,-0.090816446,-0.090813585,-0.090809699,-0.090804466,-0.090797478,-0.090788224,-0.090776075,-0.090760254,-0.090739821,-0.090713647,-0.090680386,-0.090638454,-0.090586002,-0.090520894,-0.090440686,-0.090342606,-0.090223543,-0.090080029,-0.089908242,-0.089703999,-0.089462763,-0.089179655,-0.088849467,-0.088466692,-0.08802555,-0.087520029,-0.086943936,-0.086290958,-0.085554736,-0.084728954,-0.083807456,-0.082784375,-0.081654294,-0.08041243,-0.079054852,-0.07757872,-0.075982555,-0.074266525,-0.072432744,-0.070485569,-0.068431882,-0.06628134,-0.064046572,-0.061743297,-0.059390351,-0.05700959,-0.054625666,-0.052265643,-0.049958476,-0.047734323,-0.045623728,-0.04365669,-0.04186164,-0.04026439,-0.038887083,-0.037747217,-0.03685679,-0.03622163,-0.035840955,-0.035707209,-0.035806197,-0.036117536,-0.036615409,-0.037269605,-0.038046788,-0.038911952,-0.039829969,-0.040767176,-0.041692878,-0.042580724,-0.043409852,-0.044165752,-0.044840796,-0.045434407,-0.045952873,-0.046408792,-0.046820218,-0.047209535,-0.047602134,-0.048024979,-0.04850512,-0.049068254,-0.049737405,-0.05053178,-0.051465857,-0.052548752,-0.053783865,-0.055168833,-0.056695745,-0.058351624,-0.060119112,-0.061977314,-0.063902755,-0.065870389,-0.067854601,-0.069830164,-0.071773097,-0.073661403,-0.075475653,-0.077199412,-0.078819503,-0.080326106,-0.081712723,-0.082976006,-0.0841155,-0.085133294,-0.086033637,-0.086822518,-0.087507248,-0.08809606,-0.088597734,-0.089021268,-0.089375598,-0.089669369,-0.089910756,-0.090107338,-0.090266017,-0.090392974,-0.090493659,-0.090572812,-0.090634495,-0.090682146,-0.090718638,-0.090746342,-0.090767193,-0.090782751,-0.090794258,-0.090802697,-0.090808832],"zorder":11,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835],"zorder":12,"type":"scatter"},{"customdata":[[1.3438253e-120],[1.1898247e-119],[1.0442111e-118],[9.0836191e-118],[7.8323986e-117],[6.694158e-116],[5.671037e-115],[4.7620548e-114],[3.9636172e-113],[3.2700507e-112],[2.6741315e-111],[2.1675871e-110],[1.74155e-109],[1.3869504e-108],[1.0948424e-107],[8.5665893e-107],[6.6440065e-106],[5.1076125e-105],[3.8919897e-104],[2.9396207e-103],[2.2007811e-102],[1.6331587e-101],[1.2012848e-100],[8.7584978e-100],[6.3296461e-99],[4.5341452e-98],[3.2194203e-97],[2.2658243e-96],[1.5806698e-95],[1.0930059e-94],[7.4915268e-94],[5.0896126e-93],[3.4274074e-92],[2.2877755e-91],[1.5136582e-90],[9.9267951e-90],[6.4529333e-89],[4.1578829e-88],[2.6555492e-87],[1.6811387e-86],[1.054921e-85],[6.5615066e-85],[4.0453355e-84],[2.4721393e-83],[1.4974724e-82],[8.9910891e-82],[5.3509816e-81],[3.1566204e-80],[1.8457766e-79],[1.0698031e-78],[6.1460571e-78],[3.4999149e-77],[1.9755436e-76],[1.1053099e-75],[6.1298519e-75],[3.3696472e-74],[1.8360629e-73],[9.9165232e-73],[5.3088468e-72],[2.8171499e-71],[1.4817974e-70],[7.7256838e-70],[3.992587e-69],[2.0452262e-68],[1.0384794e-67],[5.2266594e-67],[2.6074764e-66],[1.2893968e-65],[6.3200851e-65],[3.0706448e-64],[1.4787905e-63],[7.0591815e-63],[3.3402023e-62],[1.5666144e-61],[7.2832042e-61],[3.3562483e-60],[1.5330527e-59],[6.9411531e-59],[3.1151423e-58],[1.3857857e-57],[6.1106346e-57],[2.6708459e-56],[1.1571344e-55],[4.9692564e-55],[2.1152994e-54],[8.9253515e-54],[3.7329489e-53],[1.5475768e-52],[6.3595445e-52],[2.5904409e-51],[1.0459127e-50],[4.1859258e-50],[1.6605889e-49],[6.5299149e-49],[2.5452352e-48],[9.8338493e-48],[3.7661245e-47],[1.4296889e-46],[5.3797788e-46],[2.0066127e-45],[7.4188947e-45],[2.7188901e-44],[9.8769119e-44],[3.5565429e-43],[1.2694411e-42],[4.4913302e-42],[1.5751272e-41],[5.475639e-41],[1.8868302e-40],[6.4448077e-40],[2.1820594e-39],[7.323235e-39],[2.4362367e-38],[8.0337152e-38],[2.6259967e-37],[8.5085012e-37],[2.7327093e-36],[8.6999281e-36],[2.7454915e-35],[8.5882983e-35],[2.6630364e-34],[8.1852216e-34],[2.4938338e-33],[7.5316255e-33],[2.2547296e-32],[6.6909094e-32],[1.9681636e-31],[5.7388259e-31],[1.6587124e-30],[4.7523215e-30],[1.3496701e-29],[3.7995922e-29],[1.0603136e-28],[2.9330548e-28],[8.0425721e-28],[2.1860453e-27],[5.8899727e-27],[1.5731053e-26],[4.1647911e-26],[1.0929997e-25],[2.8434057e-25],[7.3324661e-25],[1.8743655e-24],[4.7495454e-24],[1.1930094e-23],[2.9705055e-23],[7.3318243e-23],[1.793864e-22],[4.3507423e-22],[1.046006e-21],[2.4928866e-21],[5.8893729e-21],[1.3792227e-20],[3.2018365e-20],[7.3682437e-20],[1.6808522e-19],[3.8009878e-19],[8.5205078e-19],[1.8933776e-18],[4.1707334e-18],[9.1073449e-18],[1.9714058e-17],[4.2302485e-17],[8.9983341e-17],[1.8974288e-16],[3.9662199e-16],[8.2185807e-16],[1.6882097e-15],[3.4376871e-15],[6.93933e-15],[1.3886118e-14],[2.7545912e-14],[5.4168576e-14],[1.0559724e-13],[2.0406736e-13],[3.9094116e-13],[7.424499e-13],[1.3977898e-12],[2.608775e-12],[4.8267256e-12],[8.8530102e-12],[1.6097296e-11],[2.9016149e-11],[5.1850484e-11],[9.1853022e-11],[1.6131067e-10],[2.808428e-10],[4.8472518e-10],[8.2939544e-10],[1.4068999e-09],[2.3659311e-09],[3.9443938e-09],[6.5192817e-09],[1.0682249e-08],[1.7352876e-08],[2.7946564e-08],[4.4620682e-08],[7.0631364e-08],[1.1084486e-07],[1.7246195e-07],[2.6603221e-07],[4.068572e-07],[6.1690832e-07],[9.2741556e-07],[1.3823178e-06],[2.0428017e-06],[2.9931933e-06],[4.3485007e-06],[6.2639316e-06],[8.9467279e-06],[1.2670652e-05],[1.7793429e-05],[2.4777394e-05],[3.4213466e-05],[4.6848449e-05],[6.3615423e-05],[8.5666751e-05],[0.00011440892],[0.00015153806],[0.00019907472],[0.00025939603],[0.00033526305],[0.00042984105],[0.00054671022],[0.00068986442],[0.00086369572],[0.0010729633],[0.0013227458],[0.0016183765],[0.0019653637],[0.0023692972],[0.0028357452],[0.0033701456],[0.0039776975],[0.0046632579],[0.0054312491],[0.006285582],[0.007229598],[0.0082660312],[0.0093969902],[0.010623955],[0.011947787],[0.01336873],[0.014886422],[0.016499865],[0.018207385],[0.020006546],[0.021894025],[0.023865446],[0.025915181],[0.028036125],[0.030219466],[0.03245447],[0.034728309],[0.037025955],[0.039330171],[0.041621615],[0.043879081],[0.046079869],[0.0482003],[0.050216344],[0.052104338],[0.053841765],[0.055408041],[0.056785263],[0.057958879],[0.058918209],[0.059656807],[0.060172621],[0.060467931],[0.060549086],[0.060426035],[0.060111699],[0.059621215],[0.058971112],[0.058178469],[0.057260115],[0.056231918],[0.055108202],[0.053901338],[0.052621504],[0.051276637],[0.049872554],[0.048413227],[0.04690117],[0.045337908],[0.043724486],[0.042061976],[0.040351931],[0.03859679],[0.036800168],[0.034967053],[0.033103881],[0.03121851],[0.029320087],[0.027418837],[0.025525788],[0.02365245],[0.021810479],[0.020011331],[0.018265945],[0.016584444],[0.014975888],[0.013448072],[0.012007384],[0.010658709],[0.0094053941],[0.0082492654],[0.007190683],[0.0062286402],[0.0053608925],[0.0045841104],[0.0038940486],[0.0032857243],[0.002753597],[0.002291745],[0.001894031],[0.0015542548],[0.0012662878],[0.0010241882],[0.00082229533],[0.00065530203],[0.00051830732],[0.00040684904],[0.00031691947],[0.00024496569],[0.00018787755],[0.0001429657],[0.00010793236],[8.0837207e-05],[6.0060506e-05],[4.4265396e-05],[3.2360726e-05],[2.346566e-05],[1.6876839e-05],[1.2038643e-05],[8.5168184e-06],[5.975537e-06],[4.157798e-06],[2.8689616e-06],[1.9631336e-06],[1.3320738e-06],[8.9629365e-07],[5.9800782e-07],[3.956302e-07],[2.5953153e-07],[1.688113e-07],[1.0887212e-07],[6.9619224e-08],[4.414006e-08],[2.7747397e-08],[1.7293855e-08],[1.0686529e-08],[6.5471474e-09],[3.9767999e-09],[2.394845e-09],[1.4298129e-09],[8.4632173e-10],[4.9664123e-10],[2.8893342e-10],[1.6664697e-10],[9.5288118e-11],[5.4015575e-11],[3.0355372e-11],[1.6911646e-11],[9.3404465e-12],[5.1142097e-12],[2.7759806e-12],[1.4937546e-12],[7.9682886e-13],[4.2137811e-13],[2.2090126e-13],[1.1480003e-13],[5.9142785e-14],[3.0204797e-14],[1.5291952e-14],[7.6746988e-15],[3.8182976e-15],[1.8831585e-15],[9.2068562e-16],[4.4621274e-16],[2.1437667e-16],[1.020979e-16],[4.8201305e-17],[2.2558091e-17],[1.0465173e-17],[4.8127136e-18],[2.1939775e-18],[9.9145252e-19],[4.4412822e-19],[1.9721531e-19],[8.6809617e-20],[3.7878186e-20],[1.6383392e-20],[7.0244289e-21],[2.9854513e-21],[1.2577665e-21],[5.2526731e-22],[2.1744547e-22],[8.9229683e-23]],"fill":"tonexty","fillcolor":"rgb(0, 191, 255)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"July","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898834,-0.10898834,-0.10898833,-0.10898831,-0.10898828,-0.10898824,-0.10898818,-0.10898809,-0.10898795,-0.10898774,-0.10898743,-0.10898697,-0.10898631,-0.10898536,-0.10898401,-0.10898209,-0.10897941,-0.10897568,-0.10897056,-0.10896358,-0.10895414,-0.10894151,-0.10892474,-0.10890269,-0.10887395,-0.10883682,-0.10878928,-0.10872896,-0.10865309,-0.10855851,-0.10844164,-0.10829849,-0.10812466,-0.10791539,-0.10766561,-0.10736998,-0.10702299,-0.10661906,-0.10615261,-0.10561821,-0.10501066,-0.1043251,-0.10355711,-0.10270277,-0.10175876,-0.10072232,-0.099591364,-0.098364399,-0.097040568,-0.095619624,-0.094101933,-0.09248849,-0.09078097,-0.088981809,-0.08709433,-0.085122909,-0.083073174,-0.08095223,-0.078768889,-0.076533884,-0.074260045,-0.071962399,-0.069658184,-0.067366739,-0.065109274,-0.062908486,-0.060788054,-0.05877201,-0.056884016,-0.055146589,-0.053580314,-0.052203091,-0.051029476,-0.050070146,-0.049331547,-0.048815734,-0.048520424,-0.048439269,-0.048562319,-0.048876655,-0.049367139,-0.050017243,-0.050809886,-0.051728239,-0.052756437,-0.053880152,-0.055087017,-0.056366851,-0.057711718,-0.0591158,-0.060575127,-0.062087185,-0.063650447,-0.065263868,-0.066926379,-0.068636423,-0.070391565,-0.072188186,-0.074021302,-0.075884473,-0.077769844,-0.079668267,-0.081569517,-0.083462567,-0.085335904,-0.087177876,-0.088977023,-0.09072241,-0.092403911,-0.094012467,-0.095540282,-0.09698097,-0.098329646,-0.099582961,-0.10073909,-0.10179767,-0.10275971,-0.10362746,-0.10440424,-0.10509431,-0.10570263,-0.10623476,-0.10669661,-0.10709432,-0.1074341,-0.10772207,-0.10796417,-0.10816606,-0.10833305,-0.10847005,-0.10858151,-0.10867144,-0.10874339,-0.10880048,-0.10884539,-0.10888042,-0.10890752,-0.10892829,-0.10894409,-0.10895599,-0.10896489,-0.10897148,-0.10897632,-0.10897984,-0.10898238,-0.1089842,-0.10898549,-0.10898639,-0.10898702,-0.10898746,-0.10898776,-0.10898796,-0.1089881,-0.10898819,-0.10898825,-0.10898829,-0.10898831,-0.10898833,-0.10898834,-0.10898834,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835],"zorder":12,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835],"zorder":13,"type":"scatter"},{"customdata":[[3.3519376e-147],[3.7533534e-146],[4.1658803e-145],[4.583085e-144],[4.9977307e-143],[5.4019627e-142],[5.7875415e-141],[6.1461118e-140],[6.4694982e-139],[6.7500118e-138],[6.9807531e-137],[7.1558927e-136],[7.2709167e-135],[7.3228192e-134],[7.3102337e-133],[7.2334921e-132],[7.0946106e-131],[6.8972016e-130],[6.6463174e-129],[6.3482355e-128],[6.0101982e-127],[5.6401201e-126],[5.246283e-125],[4.8370311e-124],[4.4204842e-123],[4.0042816e-122],[3.5953666e-121],[3.19982e-120],[2.8227455e-119],[2.4682076e-118],[2.1392201e-117],[1.837778e-116],[1.5649282e-115],[1.3208686e-114],[1.1050669e-113],[9.1639217e-113],[7.5324794e-112],[6.1370313e-111],[4.9561282e-110],[3.9672587e-109],[3.1477651e-108],[2.4755853e-107],[1.9298222e-106],[1.4911471e-105],[1.1420562e-104],[8.6699839e-104],[6.5239841e-103],[4.865991e-102],[3.5974395e-101],[2.636207e-100],[1.914826e-99],[1.3786148e-98],[9.8383062e-98],[6.9592358e-97],[4.8794016e-96],[3.3910593e-95],[2.335974e-94],[1.5950137e-93],[1.079505e-92],[7.2418356e-92],[4.8154457e-91],[3.1738625e-90],[2.0734976e-89],[1.3427117e-88],[8.6183832e-88],[5.4831816e-87],[3.457827e-86],[2.1614127e-85],[1.3391707e-84],[8.2242817e-84],[5.0063801e-83],[3.0207408e-82],[1.8066204e-81],[1.0709869e-80],[6.2931082e-80],[3.6653044e-79],[2.1160148e-78],[1.2108522e-77],[6.8679544e-77],[3.8612459e-76],[2.1517475e-75],[1.1885542e-74],[6.5074439e-74],[3.5315528e-73],[1.8996989e-72],[1.0129025e-71],[5.3532102e-71],[2.8043019e-70],[1.4561263e-69],[7.4944041e-69],[3.8233053e-68],[1.9333241e-67],[9.690231e-67],[4.8142364e-66],[2.3707431e-65],[1.1571919e-64],[5.5987368e-64],[2.6849644e-63],[1.2762943e-62],[6.0134944e-62],[2.8084507e-61],[1.3000813e-60],[5.9653783e-60],[2.7131218e-59],[1.2231068e-58],[5.4654167e-58],[2.4207279e-57],[1.0627533e-56],[4.6246917e-56],[1.9947886e-55],[8.528542e-55],[3.614236e-54],[1.5181756e-53],[6.3210805e-53],[2.6087018e-52],[1.0671399e-51],[4.3269519e-51],[1.739028e-50],[6.927793e-50],[2.7355649e-49],[1.070688e-48],[4.1537722e-48],[1.5972989e-47],[6.0882647e-47],[2.300195e-46],[8.6138953e-46],[3.19741e-45],[1.1764158e-44],[4.2902954e-44],[1.5508769e-43],[5.5568833e-43],[1.973554e-42],[6.947532e-42],[2.4242416e-41],[8.3846522e-41],[2.8744715e-40],[9.7677548e-40],[3.2899955e-39],[1.0983978e-38],[3.6348611e-38],[1.1922842e-37],[3.876462e-37],[1.2492665e-36],[3.9906024e-36],[1.2635302e-35],[3.9654876e-35],[1.2335915e-34],[3.8037323e-34],[1.1625518e-33],[3.521912e-33],[1.0575684e-32],[3.1477648e-32],[9.2866667e-32],[2.7156966e-31],[7.8716621e-31],[2.2615982e-30],[6.4406285e-30],[1.8180459e-29],[5.0868071e-29],[1.4107481e-28],[3.8780866e-28],[1.0566942e-27],[2.8539408e-27],[7.6401944e-27],[2.027345e-26],[5.3323017e-26],[1.3901625e-25],[3.5923633e-25],[9.2015024e-25],[2.3361517e-24],[5.8790501e-24],[1.4664832e-23],[3.6258583e-23],[8.8860427e-23],[2.1585881e-22],[5.1975059e-22],[1.2404636e-21],[2.9345188e-21],[6.8810322e-21],[1.5993154e-20],[3.6844995e-20],[8.4136941e-20],[1.9044027e-19],[4.2726244e-19],[9.5015512e-19],[2.094393e-18],[4.5759969e-18],[9.91008e-18],[2.1273184e-17],[4.5263877e-17],[9.5462968e-17],[1.9956393e-16],[4.1351679e-16],[8.4931387e-16],[1.729049e-15],[3.4890757e-15],[6.9787486e-15],[1.3835944e-14],[2.7189686e-14],[5.2961921e-14],[1.0225569e-13],[1.956931e-13],[3.7121699e-13],[6.9798257e-13],[1.3008456e-12],[2.403098e-12],[4.4002955e-12],[7.9865081e-12],[1.4368019e-11],[2.5621338e-11],[4.5286825e-11],[7.9342746e-11],[1.3778694e-10],[2.371781e-10],[4.0467562e-10],[6.8439321e-10],[1.1472837e-09],[1.9063506e-09],[3.1397997e-09],[5.1258834e-09],[8.2947558e-09],[1.3304762e-08],[2.1153385e-08],[3.3336695e-08],[5.2075791e-08],[8.063447e-08],[1.2375937e-07],[1.8828209e-07],[2.8393224e-07],[4.244207e-07],[6.2886307e-07],[9.236236e-07],[1.3446687e-06],[1.9405243e-06],[2.775932e-06],[3.9362916e-06],[5.5329595e-06],[7.7094424e-06],[1.0648479e-05],[1.4579938e-05],[1.9789378e-05],[2.6627017e-05],[3.5516725e-05],[4.6964559e-05],[6.1566188e-05],[8.0012462e-05],[0.00010309226],[0.00013169172],[0.00016678883],[0.00020944267],[0.00026077642],[0.00032195367],[0.00039414801],[0.00047850593],[0.00057610403],[0.00068790166],[0.00081469084],[0.0009570459],[0.0011152755],[0.0012893798],[0.0014790167],[0.0016834784],[0.0019016831],[0.0021321817],[0.0023731817],[0.0026225884],[0.002878062],[0.0031370892],[0.0033970661],[0.003655388],[0.0039095437],[0.0041572075],[0.0043963259],[0.0046251944],[0.0048425209],[0.0050474726],[0.0052397056],[0.0054193753],[0.0055871274],[0.0057440723],[0.0058917415],[0.0060320307],[0.0061671304],[0.0062994474],[0.0064315205],[0.0065659337],[0.0067052304],[0.0068518331],[0.0070079733],[0.0071756356],[0.0073565209],[0.0075520337],[0.0077632961],[0.0079911924],[0.0082364434],[0.0084997112],[0.0087817301],[0.0090834575],[0.0094062375],[0.009751965],[0.010123241],[0.010523505],[0.01095713],[0.011429474],[0.011946873],[0.012516571],[0.013146587],[0.013845512],[0.014622246],[0.015485687],[0.016444367],[0.017506066],[0.01867741],[0.019963469],[0.021367375],[0.022889969],[0.024529496],[0.02628137],[0.028137993],[0.030088676],[0.032119636],[0.034214094],[0.036352477],[0.038512709],[0.040670615],[0.042800402],[0.044875235],[0.046867873],[0.048751355],[0.050499714],[0.052088689],[0.053496409],[0.054704011],[0.05569617],[0.056461515],[0.056992897],[0.057287503],[0.057346809],[0.057176364],[0.056785424],[0.056186452],[0.055394522],[0.054426645],[0.053301072],[0.052036607],[0.05065197],[0.049165235],[0.047593388],[0.045952004],[0.044255054],[0.042514849],[0.040742096],[0.038946056],[0.037134767],[0.035315315],[0.03349412],[0.031677197],[0.029870396],[0.028079569],[0.026310694],[0.024569906],[0.02286349],[0.02119779],[0.0195791],[0.018013507],[0.016506735],[0.015063983],[0.013689785],[0.012387894],[0.011161195],[0.010011664],[0.0089403543],[0.0079474194],[0.007032165],[0.0061931236],[0.0054281447],[0.0047344947],[0.0041089605],[0.003547953],[0.0030476047],[0.0026038605],[0.0022125597],[0.0018695082],[0.0015705409],[0.0013115757],[0.0010886576],[0.00089799572],[0.00073599306],[0.00059926927],[0.00048467753],[0.00038931575],[0.00031053259],[0.00024592859],[0.00019335294],[0.00015089636],[0.00011688058],[8.9845038e-05],[6.8531394e-05],[5.1866564e-05],[3.8944804e-05]],"fill":"tonexty","fillcolor":"rgb(255, 69, 0)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"July","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898835,-0.10898834,-0.10898833,-0.10898832,-0.1089883,-0.10898827,-0.10898823,-0.10898817,-0.10898807,-0.10898793,-0.10898773,-0.10898743,-0.10898701,-0.10898641,-0.10898558,-0.10898442,-0.10898282,-0.10898065,-0.10897771,-0.10897377,-0.10896857,-0.10896173,-0.10895284,-0.10894139,-0.10892679,-0.10890834,-0.10888526,-0.10885666,-0.10882157,-0.10877891,-0.10872758,-0.1086664,-0.10859421,-0.10850985,-0.10841225,-0.10830045,-0.10817366,-0.10803131,-0.10787308,-0.10769897,-0.10750934,-0.10730488,-0.10708667,-0.10685617,-0.10661517,-0.10636577,-0.10611029,-0.10585127,-0.10559129,-0.10533297,-0.10507881,-0.10483115,-0.10459203,-0.10436316,-0.10414583,-0.10394088,-0.10374865,-0.10356898,-0.10340123,-0.10324428,-0.10309661,-0.10295632,-0.10282122,-0.10268891,-0.10255683,-0.10242242,-0.10228312,-0.10213652,-0.10198038,-0.10181272,-0.10163183,-0.10143632,-0.10122506,-0.10099716,-0.10075191,-0.10048864,-0.10020662,-0.099904897,-0.099582117,-0.09923639,-0.098865113,-0.098464849,-0.098031224,-0.09755888,-0.097041481,-0.096471783,-0.095841768,-0.095142843,-0.094366108,-0.093502668,-0.092543988,-0.091482289,-0.090310945,-0.089024885,-0.087620979,-0.086098386,-0.084458858,-0.082706985,-0.080850361,-0.078899678,-0.076868719,-0.07477426,-0.072635878,-0.070475646,-0.06831774,-0.066187953,-0.064113119,-0.062120481,-0.060237,-0.058488641,-0.056899665,-0.055491945,-0.054284344,-0.053292184,-0.05252684,-0.051995458,-0.051700852,-0.051641545,-0.05181199,-0.052202931,-0.052801903,-0.053593833,-0.05456171,-0.055687283,-0.056951747,-0.058336385,-0.05982312,-0.061394966,-0.06303635,-0.064733301,-0.066473506,-0.068246258,-0.070042299,-0.071853588,-0.073673039,-0.075494235,-0.077311157,-0.079117959,-0.080908785,-0.082677661,-0.084418448,-0.086124865,-0.087790565,-0.089409255,-0.090974848,-0.09248162,-0.093924372,-0.095298569,-0.096600461,-0.09782716,-0.098976691,-0.100048,-0.10104094,-0.10195619,-0.10279523,-0.10356021,-0.10425386,-0.10487939,-0.1054404,-0.10594075,-0.10638449,-0.10677579,-0.10711885,-0.10741781,-0.10767678,-0.1078997,-0.10809036,-0.10825236,-0.10838909,-0.10850368,-0.10859904,-0.10867782,-0.10874243,-0.108795,-0.10883746,-0.10887147,-0.10889851,-0.10891982,-0.10893649,-0.10894941],"zorder":13,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308],"zorder":14,"type":"scatter"},{"customdata":[[1.028086e-96],[7.1956035e-96],[4.9919336e-95],[3.4326868e-94],[2.3397171e-93],[1.5807251e-92],[1.0585543e-91],[7.0264135e-91],[4.6229383e-90],[3.014854e-89],[1.9488494e-88],[1.2486884e-87],[7.9303737e-87],[4.9922583e-86],[3.1150444e-85],[1.9266164e-84],[1.1811092e-83],[7.1770942e-83],[4.3228588e-82],[2.5808172e-81],[1.5272399e-80],[8.9582064e-80],[5.2083322e-79],[3.001512e-78],[1.7145308e-77],[9.7076545e-77],[5.4481258e-76],[3.0307056e-75],[1.6711066e-74],[9.1333139e-74],[4.9478487e-73],[2.6568573e-72],[1.4141122e-71],[7.4604201e-71],[3.9012745e-70],[2.0221508e-69],[1.0389254e-68],[5.2907715e-68],[2.6706529e-67],[1.3362253e-66],[6.6268283e-66],[3.2575835e-65],[1.5872641e-64],[7.6659617e-64],[3.6698464e-63],[1.7413775e-62],[8.1903373e-62],[3.8183386e-61],[1.7644562e-60],[8.0818567e-60],[3.6692322e-59],[1.6512128e-58],[7.3653725e-58],[3.2564932e-57],[1.4271494e-56],[6.1994405e-56],[2.6693122e-55],[1.1392264e-54],[4.819306e-54],[2.0207974e-53],[8.398947e-53],[3.4601164e-52],[1.4129292e-51],[5.7189179e-51],[2.2944106e-50],[9.1241459e-50],[3.5964755e-49],[1.40516e-48],[5.4417461e-48],[2.0888851e-47],[7.9479412e-47],[2.9974955e-46],[1.1205371e-45],[4.1520036e-45],[1.5249409e-44],[5.5515226e-44],[2.0032493e-43],[7.165091e-43],[2.5402251e-42],[8.926609e-42],[3.1093142e-41],[1.0735111e-40],[3.6737723e-40],[1.2461828e-39],[4.1900099e-39],[1.3964075e-38],[4.6128898e-38],[1.5104202e-37],[4.9021468e-37],[1.5770252e-36],[5.0286887e-36],[1.5894054e-35],[4.9794159e-35],[1.5462721e-34],[4.7594553e-34],[1.4520861e-33],[4.3912818e-33],[1.3162975e-32],[3.9109348e-32],[1.1517837e-31],[3.3622117e-31],[9.7284353e-31],[2.7901319e-30],[7.931773e-30],[2.2350108e-29],[6.2424169e-29],[1.728183e-28],[4.7423158e-28],[1.289897e-27],[3.47763e-27],[9.2934193e-27],[2.4616794e-26],[6.4632544e-26],[1.6820342e-25],[4.3389254e-25],[1.1094133e-24],[2.8116957e-24],[7.063291e-24],[1.7587725e-23],[4.3408627e-23],[1.0619553e-22],[2.5751363e-22],[6.1895349e-22],[1.4746183e-21],[3.4822906e-21],[8.1510624e-21],[1.8911554e-20],[4.3491466e-20],[9.9139031e-20],[2.2400056e-19],[5.0166909e-19],[1.1136517e-18],[2.4504467e-18],[5.3444736e-18],[1.1553895e-17],[2.475801e-17],[5.2585604e-17],[1.1070872e-16],[2.3102586e-16],[4.7786277e-16],[9.7973728e-16],[1.9910397e-15],[4.0106432e-15],[8.0077775e-15],[1.5847977e-14],[3.1088482e-14],[6.0448994e-14],[1.1650446e-13],[2.2256655e-13],[4.2144525e-13],[7.91018e-13],[1.4716195e-12],[2.7137426e-12],[4.9602755e-12],[8.9868394e-12],[1.6138837e-11],[2.872775e-11],[5.0686831e-11],[8.8644725e-11],[1.5366499e-10],[2.6403491e-10],[4.4968895e-10],[7.5915005e-10],[1.2703041e-09],[2.1069421e-09],[3.463877e-09],[5.6446558e-09],[9.1175431e-09],[1.4597678e-08],[2.3166244e-08],[3.6441286e-08],[5.6819623e-08],[8.7815269e-08],[1.3452694e-07],[2.0427566e-07],[3.0746296e-07],[4.587104e-07],[6.7835167e-07],[9.9435806e-07],[1.444786e-06],[2.0808391e-06],[2.9706358e-06],[4.2037623e-06],[5.8966718e-06],[8.1989536e-06],[1.1300446e-05],[1.5439095e-05],[2.0909388e-05],[2.8071051e-05],[3.7357633e-05],[4.9284421e-05],[6.4455047e-05],[8.3566009e-05],[0.00010740827],[0.00013686504],[0.00017290492],[0.00021656964],[0.00026895586],[0.00033119082],[0.00040440199],[0.00048968143],[0.00058804595],[0.00070039493],[0.00082746818],[0.00096980638],[0.0011277174],[0.0013012519],[0.00149019],[0.0016940441],[0.0019120771],[0.0021433379],[0.0023867151],[0.0026410049],[0.0029049921],[0.003177538],[0.0034576721],[0.0037446792],[0.0040381772],[0.0043381795],[0.0046451365],[0.0049599538],[0.0052839843],[0.005618996],[0.0059671184],[0.0063307707],[0.0067125813],[0.0071153039],[0.0075417396],[0.0079946728],[0.008476827],[0.0089908459],[0.0095393003],[0.010124722],[0.010749661],[0.011416751],[0.012128796],[0.012888836],[0.013700205],[0.014566568],[0.015491908],[0.016480483],[0.017536721],[0.018665073],[0.019869817],[0.021154811],[0.022523229],[0.023977258],[0.025517798],[0.027144171],[0.028853849],[0.030642224],[0.032502427],[0.03442522],[0.036398951],[0.038409595],[0.040440877],[0.042474469],[0.044490282],[0.04646681],[0.04838155],[0.05021147],[0.051933516],[0.053525136],[0.054964825],[0.056232647],[0.057310737],[0.058183766],[0.058839333],[0.059268295],[0.059465009],[0.059427468],[0.059157336],[0.058659879],[0.057943779],[0.057020846],[0.055905637],[0.054614996],[0.053167531],[0.051583051],[0.049881991],[0.048084848],[0.046211647],[0.044281479],[0.042312103],[0.040319656],[0.038318456],[0.036320915],[0.034337556],[0.032377116],[0.030446732],[0.028552174],[0.026698122],[0.024888445],[0.023126472],[0.021415233],[0.01975765],[0.018156673],[0.016615351],[0.015136845],[0.013724375],[0.012381135],[0.011110161],[0.009914181],[0.0087954717],[0.007755711],[0.0067958618],[0.005916084],[0.0051156848],[0.0043931094],[0.0037459713],[0.0031711187],[0.002664731],[0.0022224386],[0.0018394563],[0.0015107235],[0.0012310432],[0.00099521145],[0.0007981341],[0.00063492563],[0.00050098817],[0.00039206998],[0.00030430399],[0.00023422775],[0.0001787872],[0.000135327],[0.0001015703],[7.5590809e-05],[5.5779979e-05],[4.0811552e-05],[2.960552e-05],[2.129303e-05],[1.5183389e-05],[1.0733924e-05],[7.5231477e-06],[5.227396e-06],[3.6008906e-06],[2.459052e-06],[1.664768e-06],[1.1172835e-06],[7.4334855e-07],[4.9027216e-07],[3.2054871e-07],[2.0775892e-07],[1.3348459e-07],[8.5016986e-08],[5.3676083e-08],[3.3593413e-08],[2.0841236e-08],[1.2817014e-08],[7.8134422e-09],[4.7215914e-09],[2.8282856e-09],[1.6793664e-09],[9.8844763e-10],[5.7669548e-10],[3.335208e-10],[1.9119726e-10],[1.08648e-10],[6.1198691e-11],[3.4169763e-11],[1.8911256e-11],[1.0374724e-11],[5.6416965e-12],[3.0410195e-12],[1.6248165e-12],[8.6052695e-13],[4.5175092e-13],[2.3507556e-13],[1.212521e-13],[6.1993183e-14],[3.1417454e-14],[1.5782289e-14],[7.8585162e-15],[3.878665e-15],[1.8975567e-15],[9.2019042e-16],[4.4231407e-16],[2.1074322e-16],[9.9528154e-17],[4.6591588e-17],[2.1619121e-17],[9.943454e-18],[4.5332009e-18],[2.0485232e-18],[9.1758194e-19],[4.0739589e-19],[1.7928999e-19],[7.8210111e-20],[3.3817152e-20],[1.4493666e-20],[6.1572449e-21],[2.5927545e-21],[1.0821888e-21],[4.4772483e-22],[1.8360551e-22],[7.4632249e-23],[3.0070004e-23],[1.200899e-23],[4.7538496e-24],[1.8653065e-24]],"fill":"tonexty","fillcolor":"rgb(0, 191, 255)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"August","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715307,-0.12715307,-0.12715307,-0.12715306,-0.12715304,-0.12715302,-0.12715299,-0.12715295,-0.12715288,-0.12715277,-0.12715262,-0.1271524,-0.12715209,-0.12715164,-0.127151,-0.12715011,-0.12714888,-0.12714718,-0.12714488,-0.12714178,-0.12713764,-0.12713217,-0.12712501,-0.12711572,-0.1271038,-0.12708863,-0.12706951,-0.12704567,-0.12701622,-0.12698018,-0.12693651,-0.12688412,-0.12682189,-0.12674868,-0.1266634,-0.12656503,-0.12645269,-0.12632561,-0.12618327,-0.12602536,-0.12585183,-0.12566289,-0.12545904,-0.125241,-0.12500974,-0.12476637,-0.12451208,-0.12424809,-0.12397554,-0.12369541,-0.1234084,-0.1231149,-0.1228149,-0.12250794,-0.12219313,-0.1218691,-0.12153408,-0.12118596,-0.12082231,-0.1204405,-0.12003778,-0.11961134,-0.11915841,-0.11867625,-0.11816223,-0.11761378,-0.11702836,-0.11640342,-0.11573633,-0.11502428,-0.11426424,-0.11345288,-0.11258651,-0.11166117,-0.1106726,-0.10961636,-0.10848801,-0.10728326,-0.10599827,-0.10462985,-0.10317582,-0.10163528,-0.10000891,-0.098299231,-0.096510857,-0.094650654,-0.092727861,-0.090754129,-0.088743485,-0.086712204,-0.084678611,-0.082662798,-0.08068627,-0.07877153,-0.07694161,-0.075219565,-0.073627944,-0.072188255,-0.070920434,-0.069842343,-0.068969314,-0.068313748,-0.067884785,-0.067688071,-0.067725613,-0.067995745,-0.068493201,-0.069209301,-0.070132234,-0.071247444,-0.072538084,-0.07398555,-0.07557003,-0.077271089,-0.079068233,-0.080941433,-0.082871602,-0.084840977,-0.086833424,-0.088834624,-0.090832165,-0.092815525,-0.094775964,-0.096706349,-0.098600906,-0.10045496,-0.10226464,-0.10402661,-0.10573785,-0.10739543,-0.10899641,-0.11053773,-0.11201624,-0.11342871,-0.11477195,-0.11604292,-0.1172389,-0.11835761,-0.11939737,-0.12035722,-0.121237,-0.1220374,-0.12275997,-0.12340711,-0.12398196,-0.12448835,-0.12493064,-0.12531362,-0.12564236,-0.12592204,-0.12615787,-0.12635495,-0.12651815,-0.12665209,-0.12676101,-0.12684878,-0.12691885,-0.12697429,-0.12701775,-0.12705151,-0.12707749,-0.1270973,-0.12711227,-0.12712347,-0.12713179,-0.1271379,-0.12714235,-0.12714556,-0.12714785,-0.12714948,-0.12715062,-0.12715142,-0.12715196,-0.12715234,-0.12715259,-0.12715276,-0.12715287,-0.12715295,-0.127153,-0.12715303,-0.12715305,-0.12715306,-0.12715307,-0.12715307,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308],"zorder":14,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308],"zorder":15,"type":"scatter"},{"customdata":[[2.6988568e-179],[3.9134754e-178],[5.6248308e-177],[8.0134662e-176],[1.1316066e-174],[1.583925e-173],[2.1975456e-172],[3.0220754e-171],[4.1194271e-170],[5.5658628e-169],[7.4540502e-168],[9.8950111e-167],[1.3019803e-165],[1.6980745e-164],[2.1951956e-163],[2.8128975e-162],[3.5727185e-161],[4.4978803e-160],[5.6128211e-159],[6.9425456e-158],[8.5117826e-157],[1.0343953e-155],[1.2459966e-154],[1.4876864e-153],[1.7606387e-152],[2.0653487e-151],[2.4014902e-150],[2.7677865e-149],[3.1619039e-148],[3.5803798e-147],[4.0185917e-146],[4.4707773e-145],[4.9301095e-144],[5.3888302e-143],[5.8384402e-142],[6.269943e-141],[6.674132e-140],[7.0419096e-139],[7.3646238e-138],[7.6344046e-137],[7.8444821e-136],[7.9894687e-135],[8.0655884e-134],[8.0708405e-133],[8.0050867e-132],[7.8700575e-131],[7.6692762e-130],[7.4079062e-129],[7.0925305e-128],[6.7308764e-127],[6.3315014e-126],[5.9034583e-125],[5.4559581e-124],[4.9980466e-123],[4.5383119e-122],[4.0846343e-121],[3.6439872e-120],[3.2222953e-119],[2.8243512e-118],[2.4537875e-117],[2.1131004e-116],[1.8037164e-115],[1.5260942e-114],[1.2798511e-113],[1.0639043e-112],[8.7661867e-112],[7.1595211e-111],[5.7959195e-110],[4.6507807e-109],[3.6990871e-108],[2.916275e-107],[2.2789124e-106],[1.7651924e-105],[1.3552575e-104],[1.0313757e-103],[7.7799603e-103],[5.8170565e-102],[4.311165e-101],[3.1670251e-100],[2.3060776e-99],[1.6644161e-98],[1.1907361e-97],[8.4437387e-97],[5.934987e-96],[4.1349524e-95],[2.8555322e-94],[1.954652e-93],[1.3262266e-92],[8.9193244e-92],[5.9458259e-91],[3.9287868e-90],[2.573184e-89],[1.6705111e-88],[1.0749645e-87],[6.8565415e-87],[4.3349335e-86],[2.7166029e-85],[1.687471e-84],[1.0389938e-83],[6.3409773e-83],[3.8358893e-82],[2.3000784e-81],[1.3670549e-80],[8.0537128e-80],[4.7029809e-79],[2.7221828e-78],[1.5618107e-77],[8.8819158e-77],[5.0067063e-76],[2.7974663e-75],[1.5493338e-74],[8.5053573e-74],[4.6281527e-73],[2.4962635e-72],[1.3345685e-71],[7.0722752e-71],[3.7148845e-70],[1.9341916e-69],[9.982096e-69],[5.106369e-68],[2.5892319e-67],[1.3013619e-66],[6.4832646e-66],[3.2015333e-65],[1.5670795e-64],[7.6031378e-64],[3.6564839e-63],[1.7430247e-62],[8.2359296e-62],[3.8573677e-61],[1.7907662e-60],[8.2405527e-60],[3.7587505e-59],[1.6994192e-58],[7.6160104e-58],[3.3831767e-57],[1.489677e-56],[6.5017454e-56],[2.8127971e-55],[1.2061952e-54],[5.1270513e-54],[2.1601744e-53],[9.0215503e-53],[3.7346073e-52],[1.5324287e-51],[6.2328599e-51],[2.5128489e-50],[1.0041937e-49],[3.9777817e-49],[1.5618412e-48],[6.0786272e-48],[2.3450226e-47],[8.9672995e-47],[3.3989879e-46],[1.2770594e-45],[4.7560492e-45],[1.7557212e-44],[6.4244944e-44],[2.3302194e-43],[8.3777875e-43],[2.9856356e-42],[1.0546769e-41],[3.6929845e-41],[1.2817733e-40],[4.4098207e-40],[1.5038581e-39],[5.0835757e-39],[1.7033681e-38],[5.6575032e-38],[1.8625952e-37],[6.0784073e-37],[1.9662517e-36],[6.3047332e-36],[2.0038856e-35],[6.3133239e-35],[1.9716167e-34],[6.1033253e-34],[1.8727961e-33],[5.6963254e-33],[1.7174328e-32],[5.1326984e-32],[1.5205236e-31],[4.4650092e-31],[1.2996719e-30],[3.7499693e-30],[1.0725182e-29],[3.0406401e-29],[8.5449433e-29],[2.3803324e-28],[6.5728046e-28],[1.7990738e-27],[4.8812697e-27],[1.3128125e-26],[3.499928e-26],[9.249165e-26],[2.4228886e-25],[6.2914732e-25],[1.619421e-24],[4.1319609e-24],[1.0450623e-23],[2.6201024e-23],[6.5115588e-23],[1.6041422e-22],[3.9173513e-22],[9.4827549e-22],[2.2754613e-21],[5.4125e-21],[1.2762052e-20],[2.9828942e-20],[6.9111545e-20],[1.5873013e-19],[3.6138063e-19],[8.1558214e-19],[1.8246039e-18],[4.0463944e-18],[8.8954368e-18],[1.9385031e-17],[4.1876138e-17],[8.967438e-17],[1.9035862e-16],[4.0057133e-16],[8.35586e-16],[1.7278547e-15],[3.5418392e-15],[7.1970894e-15],[1.449747e-14],[2.8949141e-14],[5.7304425e-14],[1.124477e-13],[2.1873779e-13],[4.2180224e-13],[8.0631862e-13],[1.527982e-12],[2.8704139e-12],[5.3454786e-12],[9.8683715e-12],[1.8060189e-11],[3.2765599e-11],[5.8929681e-11],[1.0506822e-10],[1.8570824e-10],[3.2539787e-10],[5.6522745e-10],[9.7332549e-10],[1.6615775e-09],[2.8119794e-09],[4.7177416e-09],[7.8467191e-09],[1.293825e-08],[2.1149401e-08],[3.4273409e-08],[5.506238e-08],[8.7698645e-08],[1.3847548e-07],[2.1676885e-07],[3.3640849e-07],[5.175892e-07],[7.8950316e-07],[1.1939202e-06],[1.7899956e-06],[2.6606421e-06],[3.9208618e-06],[5.728489e-06],[8.297843e-06],[1.1916815e-05],[1.6967915e-05],[2.3953768e-05],[3.3527426e-05],[4.6527728e-05],[6.4019654e-05],[8.7339266e-05],[0.0001181424],[0.00015845566],[0.0002107277],[0.00027787797],[0.0003633394],[0.00047109089],[0.00060567464],[0.00077219331],[0.00097628147],[0.0012240463],[0.0015219733],[0.0018767936],[0.0022953117],[0.0027841946],[0.0033497256],[0.0039975298],[0.0047322821],[0.0055574081],[0.0064747976],[0.0074845451],[0.0085847374],[0.0097713076],[0.011037972],[0.012376261],[0.013775662],[0.015223865],[0.016707117],[0.018210678],[0.019719343],[0.021218032],[0.022692394],[0.024129407],[0.025517935],[0.026849206],[0.02811718],[0.029318793],[0.030454043],[0.031525921],[0.032540191],[0.03350502],[0.034430487],[0.035328001],[0.036209649],[0.037087525],[0.037973069],[0.038876446],[0.039806009],[0.040767849],[0.041765466],[0.042799557],[0.043867919],[0.044965472],[0.046084376],[0.047214228],[0.048342329],[0.049453997],[0.050532911],[0.051561479],[0.052521214],[0.053393125],[0.05415811],[0.05479736],[0.055292774],[0.055627376],[0.055785754],[0.055754481],[0.055522541],[0.055081726],[0.054426988],[0.053556734],[0.052473038],[0.051181745],[0.049692469],[0.048018459],[0.046176337],[0.044185719],[0.042068717],[0.039849363],[0.03755296],[0.035205403],[0.032832501],[0.030459323],[0.028109604],[0.025805229],[0.02356582],[0.021408427],[0.019347333],[0.017393972],[0.015556945],[0.013842127],[0.012252848],[0.010790125],[0.0094529373],[0.0082385183],[0.0071426558],[0.0061599848],[0.0052842647],[0.004508633],[0.0038258318],[0.0032284049],[0.0027088652],[0.0022598331],[0.0018741485],[0.0015449586],[0.0012657839],[0.0010305654],[0.00083369578],[0.0006700366],[0.00053492342],[0.0004241614],[0.00033401255],[0.00026117639],[0.00020276541],[0.0001562767],[0.0001195608],[9.0789142e-05],[6.8420815e-05],[5.1169715e-05],[3.7972727e-05],[2.7959578e-05],[2.0424798e-05],[1.4802115e-05],[1.064146e-05],[7.5886547e-06],[5.3677337e-06],[3.7658067e-06],[2.6202692e-06],[1.808157e-06],[1.2374043e-06]],"fill":"tonexty","fillcolor":"rgb(255, 69, 0)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"August","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715308,-0.12715307,-0.12715307,-0.12715306,-0.12715305,-0.12715303,-0.12715299,-0.12715294,-0.12715286,-0.12715274,-0.12715256,-0.12715229,-0.12715189,-0.12715129,-0.12715042,-0.12714916,-0.12714735,-0.12714478,-0.12714116,-0.12713611,-0.12712913,-0.12711955,-0.12710655,-0.12708906,-0.12706574,-0.12703494,-0.12699462,-0.12694235,-0.1268752,-0.12678974,-0.12668199,-0.12654741,-0.12638089,-0.1261768,-0.12592903,-0.12563111,-0.12527629,-0.12485777,-0.12436889,-0.12380335,-0.12315555,-0.1224208,-0.12159567,-0.12067828,-0.11966854,-0.11856834,-0.11738177,-0.11611511,-0.11477682,-0.11337742,-0.11192922,-0.11044596,-0.1089424,-0.10743374,-0.10593505,-0.10446069,-0.10302367,-0.10163515,-0.10030387,-0.0990359,-0.097834287,-0.096699037,-0.095627159,-0.094612889,-0.093648061,-0.092722593,-0.09182508,-0.090943432,-0.090065555,-0.089180012,-0.088276634,-0.087347072,-0.086385232,-0.085387614,-0.084353524,-0.083285162,-0.082187608,-0.081068704,-0.079938852,-0.078810751,-0.077699083,-0.076620169,-0.075591601,-0.074631866,-0.073759955,-0.07299497,-0.07235572,-0.071860307,-0.071525704,-0.071367326,-0.071398599,-0.071630539,-0.072071355,-0.072726093,-0.073596346,-0.074680043,-0.075971336,-0.077460612,-0.079134622,-0.080976743,-0.082967362,-0.085084363,-0.087303717,-0.089600121,-0.091947678,-0.094320579,-0.096693757,-0.099043477,-0.10134785,-0.10358726,-0.10574465,-0.10780575,-0.10975911,-0.11159614,-0.11331095,-0.11490023,-0.11636296,-0.11770014,-0.11891456,-0.12001042,-0.1209931,-0.12186882,-0.12264445,-0.12332725,-0.12392468,-0.12444422,-0.12489325,-0.12527893,-0.12560812,-0.1258873,-0.12612252,-0.12631938,-0.12648304,-0.12661816,-0.12672892,-0.12681907,-0.1268919,-0.12695032,-0.1269968,-0.12703352,-0.12706229,-0.12708466,-0.12710191,-0.12711511,-0.12712512,-0.12713266,-0.12713828,-0.12714244,-0.12714549,-0.12714771,-0.12714931,-0.12715046,-0.12715127,-0.12715184],"zorder":15,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781],"zorder":16,"type":"scatter"},{"customdata":[[1.6265279e-77],[9.2183506e-77],[5.1786101e-76],[2.8836437e-75],[1.5916167e-74],[8.7077104e-74],[4.7221326e-73],[2.5382898e-72],[1.352425e-71],[7.142565e-71],[3.7390769e-70],[1.9401884e-69],[9.9791333e-69],[5.0875805e-68],[2.5709844e-67],[1.2878266e-66],[6.3941867e-66],[3.1469027e-65],[1.5351525e-64],[7.4231822e-64],[3.557945e-63],[1.6903592e-62],[7.9603031e-62],[3.7157901e-61],[1.7192692e-60],[7.8851127e-60],[3.5846222e-59],[1.61529e-58],[7.2148854e-58],[3.1943342e-57],[1.4018561e-56],[6.0981609e-56],[2.6294618e-55],[1.123848e-54],[4.7612524e-54],[1.9994381e-53],[8.3227734e-53],[3.4340112e-52],[1.4044591e-51],[5.6936457e-51],[2.2879471e-50],[9.1133052e-50],[3.5981602e-49],[1.4081857e-48],[5.4627899e-48],[2.100605e-47],[8.0066325e-47],[3.0250408e-46],[1.1328925e-45],[4.205547e-45],[1.5475081e-44],[5.644432e-44],[2.0407262e-43],[7.313524e-43],[2.5980432e-42],[9.1483774e-42],[3.1931557e-41],[1.1047773e-40],[3.7888577e-40],[1.2880155e-39],[4.3402369e-39],[1.4497251e-38],[4.7999649e-38],[1.575328e-37],[5.1248929e-37],[1.6526458e-36],[5.2827049e-36],[1.6738434e-35],[5.2572127e-35],[1.636737e-34],[5.0510919e-34],[1.5451655e-33],[4.6854198e-33],[1.4083356e-32],[4.1961241e-32],[1.2392971e-31],[3.6281721e-31],[1.0528975e-30],[3.0287989e-30],[8.6365718e-30],[2.4411774e-29],[6.8398212e-29],[1.8996694e-28],[5.2299752e-28],[1.4272827e-27],[3.8610872e-27],[1.0353779e-26],[2.7521896e-26],[7.2518433e-26],[1.8941291e-25],[4.9041339e-25],[1.2586562e-24],[3.2021709e-24],[8.0756025e-24],[2.0188261e-23],[5.0028442e-23],[1.228937e-22],[2.9925219e-22],[7.2233837e-22],[1.7283838e-21],[4.0995515e-21],[9.6389501e-21],[2.2465748e-20],[5.1905134e-20],[1.1887721e-19],[2.6988971e-19],[6.073989e-19],[1.3550715e-18],[2.9967569e-18],[6.569654e-18],[1.427696e-17],[3.0756139e-17],[6.5679723e-17],[1.3903842e-16],[2.9177155e-16],[6.0695471e-16],[1.2516285e-15],[2.558592e-15],[5.18482e-15],[1.0415353e-14],[2.0740663e-14],[4.0943051e-14],[8.0121182e-14],[1.5542638e-13],[2.9889113e-13],[5.6978743e-13],[1.076775e-12],[2.0172047e-12],[3.7461799e-12],[6.8967046e-12],[1.2586636e-11],[2.2771601e-11],[4.0840779e-11],[7.2612573e-11],[1.2798167e-10],[2.2361592e-10],[3.8732673e-10],[6.6507853e-10],[1.1321136e-09],[1.9104234e-09],[3.1958972e-09],[5.3000571e-09],[8.7135262e-09],[1.4201497e-08],[2.2945751e-08],[3.675358e-08],[5.8361655e-08],[9.1872922e-08],[1.4337748e-07],[2.2182448e-07],[3.4023172e-07],[5.1734328e-07],[7.7987227e-07],[1.1654964e-06],[1.7268058e-06],[2.5364348e-06],[3.693637e-06],[5.3325876e-06],[7.6327014e-06],[1.0831248e-05],[1.5238512e-05],[2.1255658e-05],[2.9395379e-05],[4.0305199e-05],[5.4793123e-05],[7.3855018e-05],[9.8702812e-05],[0.0001307922],[0.00017184817],[0.00022388627],[0.00028922721],[0.00037050198],[0.00047064481],[0.000592871],[0.00074063706],[0.00091758117],[0.0011274426],[0.0013739601],[0.0016607494],[0.0019911645],[0.0023681438],[0.0027940502],[0.0032705096],[0.0037982579],[0.0043770045],[0.0050053221],[0.0056805712],[0.0063988661],[0.0071550901],[0.0079429599],[0.008755143],[0.0095834227],[0.010418906],[0.011252268],[0.012074017],[0.012874776],[0.013645558],[0.014378037],[0.01506479],[0.015699506],[0.016277163],[0.016794159],[0.017248405],[0.017639376],[0.017968131],[0.018237297],[0.018451038],[0.018614996],[0.018736223],[0.018823094],[0.018885205],[0.018933258],[0.01897892],[0.019034645],[0.019113474],[0.019228782],[0.019393982],[0.019622185],[0.01992581],[0.020316158],[0.020802958],[0.021393906],[0.022094201],[0.02290613],[0.023828689],[0.024857305],[0.025983649],[0.027195586],[0.028477261],[0.029809348],[0.031169453],[0.032532666],[0.03387226],[0.035160504],[0.036369563],[0.037472458],[0.038444028],[0.039261871],[0.039907209],[0.040365635],[0.040627717],[0.040689419],[0.040552321],[0.040223633],[0.039715984],[0.039047018],[0.038238801],[0.037317057],[0.03631029],[0.035248802],[0.034163666],[0.033085683],[0.032044365],[0.03106698],[0.030177688],[0.029396798],[0.028740158],[0.028218703],[0.027838169],[0.027598971],[0.02749625],[0.02752009],[0.027655885],[0.027884866],[0.02818474],[0.028530463],[0.028895086],[0.029250679],[0.029569284],[0.029823872],[0.029989267],[0.030043013],[0.029966129],[0.02974374],[0.029365553],[0.028826145],[0.028125072],[0.027266775],[0.026260303],[0.025118862],[0.023859217],[0.022500978],[0.021065804],[0.019576567],[0.01805652],[0.016528502],[0.01501421],[0.013533584],[0.012104301],[0.010741411],[0.0094571065],[0.0082606345],[0.0071583234],[0.0061537268],[0.0052478524],[0.0044394607],[0.0037254066],[0.0031010055],[0.0025604013],[0.002096921],[0.0017034016],[0.0013724794],[0.0010968361],[0.00086939752],[0.00068348614],[0.00053292963],[0.00041212909],[0.00031609272],[0.00024044088],[0.00018138844],[0.00013571048],[0.00010069661],[7.4098455e-05],[5.4074393e-05],[3.9134317e-05],[2.8086843e-05],[1.9990456e-05],[1.4109535e-05],[9.8757162e-06],[6.854663e-06],[4.7180335e-06],[3.2202469e-06],[2.1795482e-06],[1.4628132e-06],[9.7353679e-07],[6.424703e-07],[4.2042356e-07],[2.7280387e-07],[1.7552531e-07],[1.1198272e-07],[7.0840341e-08],[4.4434993e-08],[2.7636364e-08],[1.7042942e-08],[1.0421079e-08],[6.3180339e-09],[3.7979489e-09],[2.2636588e-09],[1.3377174e-09],[7.8380181e-10],[4.5533773e-10],[2.6226694e-10],[1.4977286e-10],[8.4800719e-11],[4.7603627e-11],[2.6494269e-11],[1.4619503e-11],[7.9979647e-12],[4.3380049e-12],[2.3327158e-12],[1.2436336e-12],[6.5732416e-13],[3.4444586e-13],[1.7894284e-13],[9.2163197e-14],[4.7059623e-14],[2.3822373e-14],[1.1955431e-14],[5.9482212e-15],[2.9339233e-15],[1.4346577e-15],[6.9547883e-16],[3.3423648e-16],[1.5924153e-16],[7.5212452e-17],[3.5217003e-17],[1.6347175e-17],[7.5224463e-18],[3.4316269e-18],[1.5519014e-18],[6.9574461e-19],[3.0921163e-19],[1.3623248e-19],[5.9500831e-20],[2.5762123e-20],[1.1057456e-20],[4.7048149e-21],[1.9844601e-21],[8.2976207e-22],[3.439339e-22],[1.413206e-22],[5.7563073e-23],[2.3242852e-23],[9.3033801e-24],[3.6914502e-24],[1.4519685e-24],[5.6613541e-25],[2.1881923e-25],[8.3840094e-26],[3.1843314e-26],[1.1989032e-26],[4.474541e-27],[1.655429e-27],[6.0711297e-28],[2.207113e-28],[7.9538055e-29],[2.8413188e-29],[1.0061409e-29],[3.5317571e-30],[1.2288965e-30]],"fill":"tonexty","fillcolor":"rgb(0, 191, 255)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"September","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.1453178,-0.1453178,-0.1453178,-0.1453178,-0.14531779,-0.14531778,-0.14531777,-0.14531775,-0.14531771,-0.14531766,-0.14531758,-0.14531747,-0.14531729,-0.14531703,-0.14531664,-0.14531608,-0.14531527,-0.14531411,-0.14531247,-0.14531017,-0.14530697,-0.14530257,-0.14529655,-0.14528841,-0.1452775,-0.14526301,-0.14524395,-0.1452191,-0.14518701,-0.14514596,-0.14509392,-0.14502858,-0.1449473,-0.14484716,-0.14472494,-0.14457717,-0.14440023,-0.14419036,-0.14394385,-0.14365706,-0.14332664,-0.14294966,-0.14252376,-0.1420473,-0.14151955,-0.1409408,-0.14031248,-0.13963724,-0.13891894,-0.13816272,-0.13737485,-0.13656266,-0.13573438,-0.1348989,-0.13406554,-0.13324379,-0.13244303,-0.13167225,-0.13093977,-0.13025302,-0.1296183,-0.12904064,-0.12852365,-0.1280694,-0.12767843,-0.12734968,-0.12708051,-0.12686677,-0.12670281,-0.12658158,-0.12649471,-0.1264326,-0.12638455,-0.12633889,-0.12628316,-0.12620433,-0.12608902,-0.12592382,-0.12569562,-0.125392,-0.12500165,-0.12451485,-0.1239239,-0.1232236,-0.12241168,-0.12148912,-0.1204605,-0.11933416,-0.11812222,-0.11684055,-0.11550846,-0.11414835,-0.11278514,-0.11144555,-0.1101573,-0.10894824,-0.10784535,-0.10687378,-0.10605593,-0.1054106,-0.10495217,-0.10469009,-0.10462839,-0.10476548,-0.10509417,-0.10560182,-0.10627079,-0.10707901,-0.10800075,-0.10900752,-0.110069,-0.11115414,-0.11223212,-0.11327344,-0.11425083,-0.11514012,-0.11592101,-0.11657765,-0.1170991,-0.11747964,-0.11771883,-0.11782156,-0.11779772,-0.11766192,-0.11743294,-0.11713307,-0.11678734,-0.11642272,-0.11606713,-0.11574852,-0.11549393,-0.11532854,-0.11527479,-0.11535168,-0.11557407,-0.11595225,-0.11649166,-0.11719273,-0.11805103,-0.1190575,-0.12019894,-0.12145859,-0.12281683,-0.124252,-0.12574124,-0.12726129,-0.1287893,-0.1303036,-0.13178422,-0.1332135,-0.1345764,-0.1358607,-0.13705717,-0.13815948,-0.13916408,-0.14006995,-0.14087835,-0.1415924,-0.1422168,-0.1427574,-0.14322089,-0.1436144,-0.14394533,-0.14422097,-0.14444841,-0.14463432,-0.14478488,-0.14490568,-0.14500171,-0.14507737,-0.14513642,-0.1451821,-0.14521711,-0.14524371,-0.14526373,-0.14527867,-0.14528972,-0.14529782,-0.1453037,-0.14530793,-0.14531095,-0.14531309,-0.14531459,-0.14531563,-0.14531634,-0.14531683,-0.14531716,-0.14531739,-0.14531753,-0.14531763,-0.14531769,-0.14531774,-0.14531776,-0.14531778,-0.14531779,-0.1453178,-0.1453178,-0.1453178,-0.1453178,-0.1453178,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781],"zorder":16,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781],"zorder":17,"type":"scatter"},{"customdata":[[6.3782958e-139],[6.6560318e-138],[6.8847777e-137],[7.0587576e-136],[7.1734887e-135],[7.2259736e-134],[7.2148305e-133],[7.1403532e-132],[7.0044989e-131],[6.8108019e-130],[6.5642216e-129],[6.270931e-128],[5.9380605e-127],[5.5734104e-126],[5.185149e-125],[4.7815121e-124],[4.3705197e-123],[3.9597222e-122],[3.555987e-121],[3.1653331e-120],[2.792817e-119],[2.4424707e-118],[2.1172885e-117],[1.819259e-116],[1.5494331e-115],[1.3080217e-114],[1.0945129e-113],[9.0780094e-113],[7.4631845e-112],[6.0816517e-111],[4.9122756e-110],[3.9328531e-109],[3.1210199e-108],[2.4549868e-107],[1.9141043e-106],[1.4792646e-105],[1.1331566e-104],[8.6039492e-104],[6.475444e-103],[4.8306446e-102],[3.5719424e-101],[2.6179879e-100],[1.9019305e-99],[1.3695739e-98],[9.7755255e-98],[6.9160575e-97],[4.8499907e-96],[3.3712196e-95],[2.3227208e-94],[1.586247e-93],[1.073763e-92],[7.2046005e-92],[4.791541e-91],[3.1586707e-90],[2.0639412e-89],[1.3367622e-88],[8.5817295e-88],[5.4608385e-87],[3.4443533e-86],[2.1533761e-85],[1.3344305e-84],[8.1966403e-84],[4.9904493e-83],[3.0116693e-82],[1.8015187e-81],[1.0681546e-80],[6.277596e-80],[3.6569285e-79],[2.1115601e-78],[1.2085213e-77],[6.8559719e-77],[3.8552066e-76],[2.1487712e-75],[1.1871253e-74],[6.5008011e-74],[3.5285891e-73],[1.8984502e-72],[1.0124212e-71],[5.3516438e-71],[2.803994e-70],[1.456233e-69],[7.4963288e-69],[3.8249901e-68],[1.9345322e-67],[9.6980753e-67],[4.8190243e-66],[2.3735405e-65],[1.1587725e-64],[5.6074275e-64],[2.6896339e-63],[1.2787531e-62],[6.0262093e-62],[2.8149182e-61],[1.3033209e-60],[5.9813749e-60],[2.7209135e-59],[1.226853e-58],[5.4832039e-58],[2.4290719e-57],[1.0666218e-56],[4.6424229e-56],[2.0028253e-55],[8.564571e-55],[3.6302149e-54],[1.5251876e-53],[6.3515307e-53],[2.6217893e-52],[1.0727078e-51],[4.3504016e-51],[1.7488058e-50],[6.9681605e-50],[2.7520674e-49],[1.0773687e-48],[4.1805563e-48],[1.607934e-47],[6.1300898e-47],[2.3164875e-46],[8.6767606e-46],[3.2214385e-45],[1.185514e-44],[4.3244229e-44],[1.5635592e-43],[5.6035754e-43],[1.9905858e-42],[7.009086e-42],[2.4462833e-41],[8.4628576e-41],[2.9019658e-40],[9.8635348e-40],[3.3230583e-39],[1.1097074e-38],[3.6731972e-38],[1.2051616e-37],[3.9193285e-37],[1.2634076e-36],[4.0368333e-36],[1.2785088e-35],[4.0135837e-35],[1.2488972e-34],[3.8520055e-34],[1.1776414e-33],[3.5686612e-33],[1.0719233e-32],[3.1914528e-32],[9.4184517e-32],[2.7550985e-31],[7.9884296e-31],[2.2958974e-30],[6.540493e-30],[1.8468668e-29],[5.1692545e-29],[1.4341272e-28],[3.9438009e-28],[1.075004e-27],[2.9045115e-27],[7.7786507e-27],[2.0649227e-26],[5.4334028e-26],[1.4171271e-25],[3.6636563e-25],[9.3883646e-25],[2.3847052e-24],[6.0041189e-24],[1.4984214e-23],[3.7067138e-23],[9.0889738e-23],[2.2090813e-22],[5.322062e-22],[1.2709249e-21],[3.0083752e-21],[7.0585681e-21],[1.6416257e-20],[3.7844698e-20],[8.6478818e-20],[1.9587938e-19],[4.3978709e-19],[9.787494e-19],[2.159118e-18],[4.7212569e-18],[1.0233304e-17],[2.1986277e-17],[4.6823704e-17],[9.8845923e-17],[2.068385e-16],[4.2902672e-16],[8.8210124e-16],[1.7977714e-15],[3.6318947e-15],[7.2730354e-15],[1.4437191e-14],[2.8407646e-14],[5.5408234e-14],[1.0712749e-13],[2.0531289e-13],[3.9005092e-13],[7.3454325e-13],[1.3712154e-12],[2.5373915e-12],[4.6544048e-12],[8.4632487e-12],[1.5254845e-11],[2.7256982e-11],[4.8277925e-11],[8.4766055e-11],[1.4753655e-10],[2.54556e-10],[4.3538657e-10],[7.3820445e-10],[1.2407671e-09],[2.0673689e-09],[3.4147747e-09],[5.5914544e-09],[9.076295e-09],[1.4605486e-08],[2.3299665e-08],[3.6847863e-08],[5.7770588e-08],[8.9791677e-08],[1.383577e-07],[2.1135464e-07],[3.2008465e-07],[4.8058043e-07],[7.1535106e-07],[1.05567e-06],[1.5445326e-06],[2.240424e-06],[3.222049e-06],[4.5941761e-06],[6.49474e-06],[9.1033217e-06],[1.2651082e-05],[1.743216e-05],[2.3816442e-05],[3.2263512e-05],[4.3337403e-05],[5.772163e-05],[7.6233767e-05],[9.9838633e-05],[0.00012965896],[0.00016698223],[0.00021326227],[0.00027011418],[0.00033930109],[0.00042271171],[0.00052232762],[0.00064018006],[0.00077829646],[0.00093863772],[0.0011230282],[0.0013330815],[0.0015701251],[0.0018351294],[0.002128646],[0.0024507592],[0.0028010595],[0.0031786395],[0.0035821202],[0.0040097072],[0.0044592787],[0.0049285031],[0.005414983],[0.0059164165],[0.0064307707],[0.0069564532],[0.0074924717],[0.0080385684],[0.0085953164],[0.0091641684],[0.0097474485],[0.010348281],[0.010970455],[0.011618228],[0.012296077],[0.013008403],[0.013759213],[0.014551791],[0.015388384],[0.016269919],[0.017195776],[0.018163636],[0.019169408],[0.020207264],[0.021269763],[0.022348079],[0.023432313],[0.024511884],[0.025575965],[0.026613952],[0.027615933],[0.028573131],[0.029478301],[0.030326041],[0.031113026],[0.03183813],[0.032502437],[0.033109146],[0.033663378],[0.034171881],[0.034642677],[0.035084649],[0.035507094],[0.03591927],[0.036329946],[0.036746989],[0.037176973],[0.037624858],[0.038093717],[0.038584531],[0.039096057],[0.039624763],[0.040164838],[0.040708281],[0.041245055],[0.04176333],[0.042249789],[0.042690007],[0.043068896],[0.043371201],[0.043582035],[0.043687442],[0.043674949],[0.043534102],[0.043256945],[0.042838423],[0.042276682],[0.041573244],[0.040733047],[0.039764333],[0.038678403],[0.037489221],[0.036212912],[0.034867168],[0.033470579],[0.032041958],[0.030599655],[0.029160932],[0.027741401],[0.026354573],[0.025011523],[0.023720693],[0.022487821],[0.02131601],[0.020205915],[0.019156017],[0.018162995],[0.017222134],[0.016327763],[0.015473699],[0.014653663],[0.013861657],[0.013092276],[0.012340966],[0.011604189],[0.010879525],[0.010165695],[0.0094625187],[0.0087708142],[0.0080922533],[0.0074291828],[0.0067844263],[0.0061610798],[0.0055623111],[0.0049911753],[0.0044504529],[0.0039425171],[0.003469234],[0.0030318974],[0.0026311968],[0.0022672173],[0.0019394667],[0.0016469257],[0.0013881149],[0.0011611748],[0.00096395065],[0.00079407993],[0.00064907614],[0.00052640646],[0.00042356019],[0.0003381065],[0.00026774056],[0.00021031799],[0.00016387814],[0.00012665724],[9.7092708e-05],[7.3820175e-05],[5.5664801e-05],[4.1628387e-05],[3.0873712e-05],[2.2707341e-05],[1.6561911e-05],[1.1978723e-05],[8.5912507e-06],[6.1099616e-06],[4.3087151e-06],[3.0128381e-06],[2.0888848e-06],[1.4360062e-06],[9.7880033e-07],[6.6148671e-07],[4.4323188e-07]],"fill":"tonexty","fillcolor":"rgb(255, 69, 0)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"September","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.14531781,-0.1453178,-0.1453178,-0.1453178,-0.1453178,-0.14531779,-0.14531778,-0.14531777,-0.14531775,-0.14531772,-0.14531767,-0.14531759,-0.14531749,-0.14531733,-0.14531709,-0.14531675,-0.14531626,-0.14531557,-0.14531458,-0.14531321,-0.14531131,-0.1453087,-0.14530516,-0.14530037,-0.14529399,-0.14528554,-0.14527447,-0.14526008,-0.14524157,-0.14521797,-0.14518815,-0.14515082,-0.14510454,-0.14504769,-0.14497851,-0.14489509,-0.14479548,-0.14467763,-0.14453951,-0.14437917,-0.14419478,-0.14398472,-0.14374768,-0.14348268,-0.14318916,-0.14286705,-0.14251675,-0.14213917,-0.14173569,-0.1413081,-0.14085853,-0.1403893,-0.13990282,-0.13940139,-0.13888704,-0.13836135,-0.13782533,-0.13727924,-0.13672249,-0.13615364,-0.13557036,-0.13496953,-0.13434735,-0.13369958,-0.13302173,-0.1323094,-0.13155859,-0.13076602,-0.12992942,-0.12904789,-0.12812203,-0.12715417,-0.1261484,-0.12511054,-0.12404804,-0.12296973,-0.12188549,-0.12080592,-0.11974184,-0.11870385,-0.11770187,-0.11674467,-0.11583951,-0.11499177,-0.11420478,-0.11347968,-0.11281537,-0.11220866,-0.11165443,-0.11114593,-0.11067513,-0.11023316,-0.10981071,-0.10939854,-0.10898786,-0.10857082,-0.10814083,-0.10769295,-0.10722409,-0.10673328,-0.10622175,-0.10569304,-0.10515297,-0.10460953,-0.10407275,-0.10355448,-0.10306802,-0.1026278,-0.10224891,-0.10194661,-0.10173577,-0.10163036,-0.10164286,-0.1017837,-0.10206086,-0.10247938,-0.10304112,-0.10374456,-0.10458476,-0.10555347,-0.1066394,-0.10782859,-0.10910489,-0.11045064,-0.11184723,-0.11327585,-0.11471815,-0.11615687,-0.11757641,-0.11896323,-0.12030628,-0.12159711,-0.12282999,-0.1240018,-0.12511189,-0.12616179,-0.12715481,-0.12809567,-0.12899004,-0.12984411,-0.13066414,-0.13145615,-0.13222553,-0.13297684,-0.13371362,-0.13443828,-0.13515211,-0.13585529,-0.13654699,-0.13722555,-0.13788862,-0.13853338,-0.13915673,-0.1397555,-0.14032663,-0.14086735,-0.14137529,-0.14184857,-0.14228591,-0.14268661,-0.14305059,-0.14337834,-0.14367088,-0.14392969,-0.14415663,-0.14435386,-0.14452373,-0.14466873,-0.1447914,-0.14489425,-0.1449797,-0.14505007,-0.14510749,-0.14515393,-0.14519115,-0.14522071,-0.14524399,-0.14526214,-0.14527618,-0.14528693,-0.1452951,-0.14530124,-0.14530583,-0.14530921,-0.1453117,-0.1453135,-0.14531479,-0.14531572,-0.14531637,-0.14531683,-0.14531714,-0.14531736],"zorder":17,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253],"zorder":18,"type":"scatter"},{"customdata":[[2.9630462e-60],[1.3588989e-59],[6.1773445e-59],[2.7834441e-58],[1.2431663e-57],[5.5035393e-57],[2.415022e-56],[1.0504281e-55],[4.5287449e-55],[1.9353332e-54],[8.1978514e-54],[3.4419997e-53],[1.4324786e-52],[5.9092465e-52],[2.4162549e-51],[9.7930991e-51],[3.9342721e-50],[1.5666629e-49],[6.1837754e-49],[2.4193513e-48],[9.3823433e-48],[3.6065417e-47],[1.374162e-46],[5.1898202e-46],[1.9428274e-45],[7.2091445e-45],[2.651557e-44],[9.6668727e-44],[3.4933247e-43],[1.2512956e-42],[4.4427209e-42],[1.5635306e-41],[5.4542129e-41],[1.885933e-40],[6.463817e-40],[2.1959405e-39],[7.3947063e-39],[2.4682565e-38],[8.1663645e-38],[2.6781599e-37],[8.7058998e-37],[2.8051777e-36],[8.9593563e-36],[2.8363715e-35],[8.9006034e-35],[2.7685093e-34],[8.5357739e-34],[2.6086173e-33],[7.90221e-33],[2.3727812e-32],[7.0621662e-32],[2.0834808e-31],[6.0927391e-31],[1.7660679e-30],[5.0742771e-30],[1.4451507e-29],[4.079665e-29],[1.1415857e-28],[3.1663977e-28],[8.7055367e-28],[2.3724609e-27],[6.4087933e-27],[1.7160401e-26],[4.5546277e-26],[1.1982651e-25],[3.1248399e-25],[8.0775165e-25],[2.0696812e-24],[5.2565999e-24],[1.323374e-23],[3.3024548e-23],[8.1689852e-23],[2.0029804e-22],[4.8681397e-22],[1.1728097e-21],[2.8007262e-21],[6.6296839e-21],[1.5555877e-20],[3.6180635e-20],[8.3413887e-20],[1.9062574e-19],[4.318235e-19],[9.6964574e-19],[2.1582542e-18],[4.7618461e-18],[1.0414346e-17],[2.2577362e-17],[4.851763e-17],[1.0335032e-16],[2.1822813e-16],[4.5676936e-16],[9.4770098e-16],[1.9491023e-15],[3.9736328e-15],[8.0302948e-15],[1.6086694e-14],[3.1944394e-14],[6.2880502e-14],[1.2269642e-13],[2.3732494e-13],[4.5504212e-13],[8.6488372e-13],[1.6295322e-12],[3.0434668e-12],[5.6347663e-12],[1.0341567e-11],[1.8814875e-11],[3.393301e-11],[6.0666802e-11],[1.0751997e-10],[1.8890272e-10],[3.2900323e-10],[5.6803734e-10],[9.7223306e-10],[1.6496156e-09],[2.774701e-09],[4.6267177e-09],[7.6481361e-09],[1.2533332e-08],[2.0361441e-08],[3.2793237e-08],[5.2359664e-08],[8.2879917e-08],[1.3006035e-07],[2.0234252e-07],[3.1208986e-07],[4.7722837e-07],[7.2348741e-07],[1.087422e-06],[1.6204371e-06],[2.3940759e-06],[3.5068758e-06],[5.0931319e-06],[7.3339367e-06],[1.0470877e-05],[1.4822758e-05],[2.0805669e-05],[2.8956644e-05],[3.9960987e-05],[5.4683168e-05],[7.4200903e-05],[9.9841677e-05],[0.00013322061],[0.00017627803],[0.00023131469],[0.00030102205],[0.00038850452],[0.00049729036],[0.00063132744],[0.00079496035],[0.0009928854],[0.0012300806],[0.0015117087],[0.0018429923],[0.0022290627],[0.0026747837],[0.0031845562],[0.0037621099],[0.0044102905],[0.0051308531],[0.0059242726],[0.0067895842],[0.0077242648],[0.0087241668],[0.0097835133],[0.01089496],[0.01204973],[0.013237813],[0.014448231],[0.015669365],[0.016889307],[0.018096256],[0.019278908],[0.020426837],[0.021530849],[0.022583282],[0.023578248],[0.024511795],[0.025381997],[0.026188956],[0.02693473],[0.027623182],[0.02825978],[0.028851336],[0.029405724],[0.029931567],[0.030437926],[0.030933992],[0.031428793],[0.031930917],[0.032448271],[0.03298785],[0.033555541],[0.034155952],[0.034792256],[0.035466063],[0.036177309],[0.036924182],[0.037703059],[0.038508496],[0.039333247],[0.040168335],[0.041003177],[0.04182576],[0.042622887],[0.043380466],[0.044083861],[0.044718275],[0.045269173],[0.045722712],[0.046066168],[0.046288347],[0.046379947],[0.046333871],[0.046145459],[0.045812647],[0.045336026],[0.044718802],[0.04396668],[0.04308764],[0.042091653],[0.040990331],[0.039796529],[0.038523935],[0.037186644],[0.035798756],[0.034374012],[0.032925467],[0.03146524],[0.030004315],[0.028552429],[0.027118009],[0.025708188],[0.024328854],[0.022984751],[0.0216796],[0.020416231],[0.019196717],[0.018022505],[0.016894516],[0.015813245],[0.014778821],[0.013791068],[0.012849534],[0.011953518],[0.011102096],[0.010294142],[0.0095283511],[0.0088032782],[0.0081173734],[0.00746903],[0.0068566326],[0.0062786064],[0.0057334612],[0.0052198286],[0.0047364867],[0.0042823734],[0.0038565846],[0.0034583591],[0.0030870525],[0.0027421016],[0.0024229835],[0.0021291738],[0.0018601056],[0.0016151346],[0.0013935119],[0.0011943662],[0.0010166961],[0.00085937274],[0.00072115133],[0.00060069058],[0.00049657752],[0.0004073559],[0.00033155592],[0.00026772331],[0.00021444615],[0.00017037811],[0.00013425731],[0.00010492035],[8.1311442e-05],[6.2486964e-05],[4.7615843e-05],[3.597649e-05],[2.6950979e-05],[2.0017227e-05],[1.4739875e-05],[1.0760506e-05],[7.7877205e-06],[5.5875046e-06],[3.9741786e-06],[2.8021533e-06],[1.9585978e-06],[1.3570697e-06],[9.3208992e-07],[6.3461165e-07],[4.283011e-07],[2.8653522e-07],[1.9001665e-07],[1.2490725e-07],[8.1388629e-08],[5.2567583e-08],[3.3654935e-08],[2.1357699e-08],[1.3434881e-08],[8.3769447e-09],[5.1773666e-09],[3.1717776e-09],[1.9260444e-09],[1.1593082e-09],[6.9167155e-10],[4.0904286e-10],[2.3977567e-10],[1.3931837e-10],[8.0237663e-11],[4.5805161e-11],[2.5918899e-11],[1.4537322e-11],[8.0819798e-12],[4.4536534e-12],[2.4326532e-12],[1.3170703e-12],[7.0680979e-13],[3.7597664e-13],[1.9823657e-13],[1.0360273e-13],[5.3668945e-14],[2.7557466e-14],[1.4025546e-14],[7.0756205e-15],[3.5381273e-15],[1.7536646e-15],[8.6155638e-16],[4.1955118e-16],[2.0251175e-16],[9.6890123e-17],[4.5948653e-17],[2.159882e-17],[1.006355e-17],[4.6476809e-18],[2.1275772e-18],[9.653799e-19],[4.3418525e-19],[1.9356007e-19],[8.5530365e-20],[3.746181e-20],[1.6263763e-20],[6.9986967e-21],[2.9852255e-21],[1.2621209e-21],[5.2891833e-22],[2.1970508e-22],[9.0459755e-23],[3.6917692e-23],[1.4934046e-23],[5.9880342e-24],[2.3798789e-24],[9.3753886e-25],[3.6608969e-25],[1.4169337e-25],[5.4359491e-26],[2.0671169e-26],[7.791454e-27],[2.910957e-27],[1.0779953e-27],[3.956961e-28],[1.4396949e-28],[5.192099e-29],[1.8560056e-29],[6.5762663e-30],[2.3096348e-30],[8.0402774e-31],[2.7743584e-31],[9.4889441e-32],[3.216896e-32],[1.0809857e-32],[3.6005322e-33],[1.1887136e-33],[3.8900178e-34],[1.2617977e-34],[4.0568756e-35],[1.2928777e-35],[4.0840119e-36],[1.2787344e-36],[3.9686018e-37],[1.2208393e-37],[3.7225732e-38],[1.1251018e-38],[3.3705765e-39],[1.0008762e-39],[2.9459158e-40],[8.5945691e-41],[2.4853736e-41],[7.1239861e-42],[2.024036e-42],[5.7000311e-43],[1.5911093e-43],[4.4023705e-44],[1.2073605e-44],[3.2820952e-45],[8.8436014e-46]],"fill":"tonexty","fillcolor":"rgb(0, 191, 255)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"October","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348252,-0.16348252,-0.16348251,-0.1634825,-0.16348248,-0.16348245,-0.1634824,-0.16348233,-0.16348222,-0.16348205,-0.16348181,-0.16348144,-0.16348091,-0.16348014,-0.16347903,-0.16347744,-0.1634752,-0.16347206,-0.16346771,-0.16346173,-0.16345358,-0.16344257,-0.16342785,-0.16340833,-0.16338269,-0.16334931,-0.16330625,-0.16325122,-0.16318151,-0.16309403,-0.16298524,-0.1628512,-0.16268757,-0.16248965,-0.16225245,-0.16197082,-0.16163954,-0.16125347,-0.16080775,-0.16029798,-0.15972042,-0.15907224,-0.15835168,-0.15755826,-0.15669295,-0.15575827,-0.15475837,-0.15369902,-0.15258757,-0.1514328,-0.15024472,-0.1490343,-0.14781317,-0.14659323,-0.14538628,-0.14420362,-0.1430557,-0.14195168,-0.14089925,-0.13990428,-0.13897074,-0.13810054,-0.13729358,-0.1365478,-0.13585935,-0.13522275,-0.1346312,-0.13407681,-0.13355096,-0.13304461,-0.13254854,-0.13205374,-0.13155161,-0.13103426,-0.13049468,-0.12992699,-0.12932658,-0.12869028,-0.12801647,-0.12730522,-0.12655835,-0.12577947,-0.12497404,-0.12414928,-0.1233142,-0.12247936,-0.12165677,-0.12085964,-0.12010207,-0.11939867,-0.11876426,-0.11821336,-0.11775982,-0.11741636,-0.11719418,-0.11710258,-0.11714866,-0.11733707,-0.11766988,-0.11814651,-0.11876373,-0.11951585,-0.12039489,-0.12139088,-0.1224922,-0.123686,-0.1249586,-0.12629589,-0.12768378,-0.12910852,-0.13055706,-0.13201729,-0.13347822,-0.1349301,-0.13636452,-0.13777434,-0.13915368,-0.14049778,-0.14180293,-0.1430663,-0.14428581,-0.14546003,-0.14658802,-0.14766929,-0.14870371,-0.14969146,-0.150633,-0.15152901,-0.15238044,-0.15318839,-0.15395418,-0.15467925,-0.15536516,-0.1560135,-0.1566259,-0.15720393,-0.15774907,-0.1582627,-0.15874605,-0.15920016,-0.15962595,-0.16002417,-0.16039548,-0.16074043,-0.16105955,-0.16135336,-0.16162243,-0.1618674,-0.16208902,-0.16228817,-0.16246584,-0.16262316,-0.16276138,-0.16288184,-0.16298595,-0.16307518,-0.16315098,-0.16321481,-0.16326809,-0.16331215,-0.16334827,-0.16337761,-0.16340122,-0.16342005,-0.16343492,-0.16344656,-0.16345558,-0.16346251,-0.16346779,-0.16347177,-0.16347474,-0.16347694,-0.16347856,-0.16347973,-0.16348057,-0.16348117,-0.1634816,-0.1634819,-0.1634821,-0.16348225,-0.16348234,-0.16348241,-0.16348245,-0.16348248,-0.1634825,-0.16348251,-0.16348252,-0.16348252,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253],"zorder":18,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253],"zorder":19,"type":"scatter"},{"customdata":[[1.0139871e-110],[8.1713898e-110],[6.5271446e-109],[5.1679028e-108],[4.055732e-107],[3.1549171e-106],[2.4325987e-105],[1.85916e-104],[1.4084028e-103],[1.0575498e-102],[7.8711561e-102],[5.8068425e-101],[4.2462481e-100],[3.0777581e-99],[2.2111969e-98],[1.5746504e-97],[1.1114877e-96],[7.7765864e-96],[5.3930834e-95],[3.7072261e-94],[2.5259503e-93],[1.7059423e-92],[1.1420042e-91],[7.577655e-91],[4.9838593e-90],[3.2490809e-89],[2.0995154e-88],[1.3447496e-87],[8.5374383e-87],[5.3725137e-86],[3.3511301e-85],[2.0719003e-84],[1.2697266e-83],[7.7128589e-83],[4.643916e-82],[2.7715143e-81],[1.6395086e-80],[9.613335e-80],[5.5872519e-79],[3.2187425e-78],[1.8379683e-77],[1.0402881e-76],[5.8362381e-76],[3.2454595e-75],[1.7888882e-74],[9.7735874e-74],[5.2928381e-73],[2.8411033e-72],[1.511643e-71],[7.9721462e-71],[4.167399e-70],[2.1593285e-69],[1.1090117e-68],[5.6456946e-68],[2.848803e-67],[1.424857e-66],[7.06389e-66],[3.471206e-65],[1.6907549e-64],[8.1629049e-64],[3.9063632e-63],[1.8529526e-62],[8.7120391e-62],[4.0601224e-61],[1.8755223e-60],[8.5875479e-60],[3.8974443e-59],[1.7532929e-58],[7.8179489e-58],[3.4553735e-57],[1.5137738e-56],[6.5734111e-56],[2.8293353e-55],[1.2070961e-54],[5.1046163e-54],[2.1396768e-53],[8.8899039e-53],[3.6610847e-52],[1.4944669e-51],[6.0468149e-51],[2.4251067e-50],[9.6404847e-50],[3.7986625e-49],[1.4836327e-48],[5.7436226e-48],[2.2039881e-47],[8.3829412e-47],[3.1604392e-46],[1.1810338e-45],[4.374627e-45],[1.6061407e-44],[5.8450739e-44],[2.1084353e-43],[7.5386647e-43],[2.6717292e-42],[9.3854329e-42],[3.267985e-41],[1.1278977e-40],[3.8585419e-40],[1.3084003e-39],[4.3976631e-39],[1.4650997e-38],[4.8381164e-38],[1.5836142e-37],[5.1379086e-37],[1.652294e-36],[5.2668653e-36],[1.6641063e-35],[5.2116338e-35],[1.6178219e-34],[4.9779615e-34],[1.5182258e-33],[4.58971e-33],[1.3753023e-32],[4.0848409e-32],[1.2025862e-31],[3.5093073e-31],[1.0150577e-30],[2.9102089e-30],[8.2703105e-30],[2.3296124e-29],[6.5044375e-29],[1.8001144e-28],[4.9380417e-28],[1.3426838e-27],[3.6187378e-27],[9.6672936e-27],[2.5598656e-26],[6.7188344e-26],[1.7479752e-25],[4.507557e-25],[1.1521575e-24],[2.9190884e-24],[7.3307337e-24],[1.8247885e-23],[4.5023845e-23],[1.1011277e-22],[2.6693033e-22],[6.4139181e-22],[1.5276162e-21],[3.6063721e-21],[8.4390277e-21],[1.9574018e-20],[4.5002166e-20],[1.0255406e-19],[2.3165327e-19],[5.1866907e-19],[1.1510887e-18],[2.5321762e-18],[5.5213589e-18],[1.1933427e-17],[2.5565353e-17],[5.4288278e-17],[1.1426896e-16],[2.3840684e-16],[4.9303495e-16],[1.0106613e-15],[2.0535383e-15],[4.1358965e-15],[8.2567025e-15],[1.6338575e-14],[3.2047396e-14],[6.2307872e-14],[1.2007849e-13],[2.293825e-13],[4.3433893e-13],[8.1521341e-13],[1.5166617e-12],[2.7969311e-12],[5.1127119e-12],[9.2639947e-12],[1.6638864e-11],[2.9622965e-11],[5.22774e-11],[9.144948e-11],[1.5857387e-10],[2.7256275e-10],[4.6439483e-10],[7.8432466e-10],[1.3130875e-09],[2.1791275e-09],[3.5847984e-09],[5.8457746e-09],[9.4496754e-09],[1.5142293e-08],[2.405298e-08],[3.7874896e-08],[5.9121068e-08],[9.1483875e-08],[1.4033361e-07],[2.1340147e-07],[3.2170332e-07],[4.8077332e-07],[7.1228916e-07],[1.0461846e-06],[1.5233561e-06],[2.1990814e-06],[3.1472688e-06],[4.4656577e-06],[6.2820725e-06],[8.7618082e-06],[1.211618e-05],[1.661221e-05],[2.2583329e-05],[3.0440881e-05],[4.0686076e-05],[5.3921898e-05],[7.0864332e-05],[9.2352095e-05],[0.00011935395],[0.00015297257],[0.00019444378],[0.00024513017],[0.00030650805],[0.00038014685],[0.00046768055],[0.000570771],[0.00069106352],[0.00083013577],[0.0009894415],[0.0011702515],[0.0013735943],[0.0016002005],[0.0018504536],[0.0021243517],[0.0024214827],[0.0027410171],[0.0030817194],[0.0034419802],[0.0038198683],[0.0042132014],[0.0046196326],[0.0050367477],[0.005462169],[0.0058936575],[0.0063292089],[0.0067671346],[0.0072061236],[0.0076452798],[0.0080841315],[0.0085226124],[0.0089610153],[0.0093999221],[0.0098401149],[0.010282476],[0.010727884],[0.011177117],[0.011630769],[0.012089182],[0.012552412],[0.013020218],[0.013492081],[0.01396725],[0.01444481],[0.014923763],[0.015403118],[0.015881974],[0.016359603],[0.016835501],[0.017309429],[0.017781418],[0.018251763],[0.018720976],[0.019189732],[0.019658803],[0.02012898],[0.020601004],[0.021075501],[0.021552934],[0.022033571],[0.022517472],[0.023004492],[0.023494302],[0.023986419],[0.024480247],[0.024975116],[0.025470323],[0.025965167],[0.026458983],[0.026951164],[0.027441184],[0.027928612],[0.028413126],[0.028894529],[0.029372759],[0.029847905],[0.03032021],[0.030790083],[0.031258087],[0.031724921],[0.032191383],[0.032658315],[0.033126521],[0.033596664],[0.03406915],[0.034543992],[0.035020671],[0.035497993],[0.035973971],[0.03644571],[0.03690934],[0.037359979],[0.037791742],[0.0381978],[0.038570487],[0.038901454],[0.039181863],[0.039402619],[0.039554624],[0.039629042],[0.039617575],[0.039512722],[0.039308022],[0.03899827],[0.038579688],[0.038050063],[0.03740883],[0.036657104],[0.035797673],[0.034834938],[0.033774811],[0.032624582],[0.031392754],[0.030088862],[0.02872327],[0.027306969],[0.025851371],[0.024368109],[0.022868844],[0.021365086],[0.019868027],[0.018388388],[0.016936281],[0.015521089],[0.014151358],[0.012834703],[0.011577735],[0.010386004],[0.0092639563],[0.0082149178],[0.0072410933],[0.0063435899],[0.005522461],[0.0047767719],[0.0041046843],[0.0035035577],[0.0029700643],[0.0025003134],[0.0020899812],[0.0017344403],[0.0014288859],[0.0011684542],[0.00094832903],[0.0007638347],[0.00061051302],[0.00048418384],[0.00038098897],[0.00029742017],[0.00023033271],[0.00017694622],[0.00013483501],[0.00010190999],[7.6394524e-05],[5.6796218e-05],[4.1876471e-05],[3.0619449e-05],[2.2201675e-05],[1.5963231e-05],[1.1381233e-05],[8.0459812e-06],[5.6399938e-06],[3.9199248e-06],[2.701262e-06],[1.8455962e-06],[1.2501999e-06],[8.3962915e-07],[5.5905407e-07],[3.6903873e-07],[2.4151046e-07],[1.5668964e-07],[1.0078129e-07],[6.4261381e-08],[4.0620605e-08],[2.5454518e-08],[1.5812544e-08],[9.7376365e-09],[5.9445237e-09],[3.5974045e-09],[2.1580794e-09],[1.2833612e-09],[7.5653904e-10],[4.4209182e-10],[2.5608859e-10],[1.470492e-10],[8.3700483e-11],[4.7226356e-11],[2.6413777e-11],[1.4644167e-11],[8.0479562e-12],[4.3842163e-12]],"fill":"tonexty","fillcolor":"rgb(255, 69, 0)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"October","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348252,-0.16348252,-0.16348251,-0.16348249,-0.16348247,-0.16348244,-0.16348239,-0.16348232,-0.16348221,-0.16348205,-0.16348182,-0.16348149,-0.16348101,-0.16348033,-0.16347938,-0.16347807,-0.16347625,-0.16347377,-0.16347042,-0.16346592,-0.16345995,-0.16345209,-0.16344185,-0.16342861,-0.16341167,-0.16339018,-0.16336318,-0.16332956,-0.16328809,-0.1632374,-0.16317602,-0.16310239,-0.16301485,-0.16291176,-0.16279147,-0.1626524,-0.16249309,-0.16231228,-0.16210894,-0.16188233,-0.16163208,-0.16135818,-0.16106105,-0.16074151,-0.16040081,-0.16004055,-0.15966266,-0.15926933,-0.1588629,-0.15844578,-0.15802036,-0.15758887,-0.15715332,-0.1567154,-0.15627641,-0.15583725,-0.1553984,-0.15495992,-0.15452152,-0.15408261,-0.15364242,-0.15320006,-0.15275465,-0.15230541,-0.15185176,-0.15139335,-0.15093012,-0.15046231,-0.14999045,-0.14951528,-0.14903772,-0.14855877,-0.14807941,-0.14760056,-0.14712293,-0.14664703,-0.1461731,-0.14570111,-0.14523077,-0.14476156,-0.1442928,-0.14382373,-0.14335355,-0.14288153,-0.14240703,-0.1419296,-0.14144896,-0.14096506,-0.14047804,-0.13998823,-0.13949611,-0.13900228,-0.13850742,-0.13801221,-0.13751736,-0.13702355,-0.13653137,-0.13604135,-0.13555392,-0.13506941,-0.134588,-0.13410977,-0.13363463,-0.13316232,-0.13269245,-0.13222445,-0.13175761,-0.13129115,-0.13082422,-0.13035601,-0.12988587,-0.12941338,-0.12893854,-0.12846186,-0.12798454,-0.12750856,-0.12703682,-0.12657319,-0.12612255,-0.12569079,-0.12528473,-0.12491204,-0.12458108,-0.12430067,-0.12407991,-0.12392791,-0.12385349,-0.12386496,-0.12396981,-0.12417451,-0.12448426,-0.12490284,-0.12543247,-0.1260737,-0.12682543,-0.12768486,-0.12864759,-0.12970772,-0.13085795,-0.13208978,-0.13339367,-0.13475926,-0.13617556,-0.13763116,-0.13911442,-0.14061369,-0.14211745,-0.14361451,-0.14509414,-0.14654625,-0.14796144,-0.14933117,-0.15064783,-0.1519048,-0.15309653,-0.15421858,-0.15526761,-0.15624144,-0.15713894,-0.15796007,-0.15870576,-0.15937785,-0.15997897,-0.16051247,-0.16098222,-0.16139255,-0.16174809,-0.16205365,-0.16231408,-0.1625342,-0.1627187,-0.16287202,-0.16299835,-0.16310154,-0.16318511,-0.1632522,-0.16330559,-0.1633477,-0.16338062,-0.16340614,-0.16342574,-0.16344066,-0.16345191,-0.16346033,-0.16346657,-0.16347115,-0.16347449,-0.16347689,-0.16347861,-0.16347983,-0.16348069,-0.16348128,-0.16348169,-0.16348197,-0.16348216,-0.16348229,-0.16348238,-0.16348243,-0.16348247,-0.16348249,-0.16348251,-0.16348252,-0.16348252,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253,-0.16348253],"zorder":19,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726],"zorder":20,"type":"scatter"},{"customdata":[[3.9126628e-37],[1.2611557e-36],[4.0292924e-36],[1.2760059e-35],[4.005349e-35],[1.2462118e-34],[3.8433253e-34],[1.1748603e-33],[3.5598289e-33],[1.0691431e-32],[3.1827778e-32],[9.3916224e-32],[2.7468739e-31],[7.9634384e-31],[2.2883704e-30],[6.5180222e-30],[1.8402174e-29],[5.1497512e-29],[1.428457e-28],[3.9274609e-28],[1.0703366e-27],[2.891297e-27],[7.741566e-27],[2.0546069e-26],[5.4049597e-26],[1.4093536e-25],[3.6425985e-25],[9.3318217e-25],[2.3696563e-24],[5.9644182e-24],[1.48804e-23],[3.6798062e-23],[9.0198452e-23],[2.1914775e-22],[5.2776278e-22],[1.2598078e-21],[2.9808055e-21],[6.9907984e-21],[1.6251136e-20],[3.7445916e-20],[8.5524198e-20],[1.9361427e-19],[4.3445971e-19],[9.6633e-19],[2.1304199e-18],[4.6555261e-18],[1.0084076e-17],[2.1650468e-17],[4.6074671e-17],[9.7189871e-17],[2.032093e-16],[4.2114334e-16],[8.6512747e-16],[1.7615463e-15],[3.5552639e-15],[7.1123548e-15],[1.4103237e-14],[2.7719664e-14],[5.400338e-14],[1.0428401e-13],[1.9960817e-13],[3.7870644e-13],[7.1218182e-13],[1.3275255e-12],[2.4527804e-12],[4.4919847e-12],[8.1542059e-12],[1.4671985e-11],[2.6167359e-11],[4.6258838e-11],[8.1057527e-11],[1.4078481e-10],[2.4237177e-10],[4.1359198e-10],[6.9956164e-10],[1.1728533e-09],[1.9490601e-09],[3.2104845e-09],[5.2417919e-09],[8.4830654e-09],[1.3607856e-08],[2.1636673e-08],[3.410006e-08],[5.3270123e-08],[8.248523e-08],[1.2659969e-07],[1.9259858e-07],[2.904274e-07],[4.3409641e-07],[6.431303e-07],[9.4444359e-07],[1.3747301e-06],[1.9834597e-06],[2.8365733e-06],[4.0209581e-06],[5.649763e-06],[7.8685807e-06],[1.0862467e-05],[1.4863699e-05],[2.0160085e-05],[2.7103512e-05],[3.6118319e-05],[4.7708897e-05],[6.2465843e-05],[8.1069784e-05],[0.00010429197],[0.0001329906],[0.00016810195],[0.00021062531],[0.00026160118],[0.00032208228],[0.00039309738],[0.00047560878],[0.00057046448],[0.00067834724],[0.00079972311],[0.00093479295],[0.0010834508],[0.0012452534],[0.0014194057],[0.0016047659],[0.0017998741],[0.0020030071],[0.0022122606],[0.0024256583],[0.0026412848],[0.0028574392],[0.0030728009],[0.0032866007],[0.0034987856],[0.003710167],[0.0039225404],[0.0041387658],[0.004362798],[0.00459966],[0.0048553539],[0.0051367084],[0.0054511648],[0.005806509],[0.0062105603],[0.0066708302],[0.0071941722],[0.0077864386],[0.0084521676],[0.0091943201],[0.010014085],[0.010910765],[0.011881762],[0.012922652],[0.014027366],[0.015188453],[0.016397422],[0.017645141],[0.018922264],[0.020219671],[0.021528882],[0.022842432],[0.024154165],[0.025459457],[0.026755324],[0.028040433],[0.029315003],[0.030580608],[0.03183989],[0.033096204],[0.03435321],[0.035614442],[0.036882858],[0.038160424],[0.039447712],[0.040743565],[0.042044824],[0.043346138],[0.044639856],[0.045916021],[0.047162463],[0.048364983],[0.049507647],[0.050573159],[0.051543319],[0.052399555],[0.053123495],[0.053697579],[0.054105672],[0.054333659],[0.054369998],[0.054206202],[0.053837223],[0.053261735],[0.052482275],[0.05150526],[0.050340865],[0.049002764],[0.047507755],[0.045875281],[0.044126863],[0.042285484],[0.040374931],[0.038419134],[0.03644153],[0.034464459],[0.032508629],[0.03059266],[0.028732713],[0.02694223],[0.025231768],[0.023608947],[0.022078497],[0.020642404],[0.019300134],[0.018048944],[0.016884238],[0.01579997],[0.014789069],[0.013843864],[0.012956494],[0.012119288],[0.011325092],[0.01056754],[0.0098412524],[0.0091419653],[0.0084665803],[0.0078131501],[0.0071807982],[0.0065695886],[0.0059803554],[0.0054145075],[0.0048738226],[0.0043602428],[0.0038756851],[0.0034218755],[0.0030002144],[0.002611677],[0.0022567504],[0.0019354069],[0.0016471092],[0.001390844],[0.001165177],[0.00096832328],[0.00079822775],[0.00065264776],[0.00052923453],[0.00042560824],[0.00033942416],[0.00026842773],[0.00021049767],[0.00016367709],[0.00012619332],[9.6467581e-05],[7.3116108e-05],[5.4944294e-05],[4.0935701e-05],[3.0237445e-05],[2.214344e-05],[1.6076695e-05],[1.157165e-05],[8.2572681e-06],[5.841389e-06],[4.0966707e-06],[2.8482495e-06],[1.9631534e-06],[1.3413963e-06],[9.0862423e-07],[6.1014593e-07],[4.0616584e-07],[2.6803503e-07],[1.7534628e-07],[1.1371477e-07],[7.3105675e-08],[4.6590558e-08],[2.9434463e-08],[1.843421e-08],[1.1444639e-08],[7.0434875e-09],[4.2971504e-09],[2.5988403e-09],[1.5580592e-09],[9.2596129e-10],[5.4551337e-10],[3.1858174e-10],[1.8443295e-10],[1.0584189e-10],[6.021122e-11],[3.3954497e-11],[1.8980891e-11],[1.0518035e-11],[5.7776437e-12],[3.1460412e-12],[1.6981457e-12],[9.0861903e-13],[4.8193052e-13],[2.5338576e-13],[1.32061e-13],[6.822775e-14],[3.4941459e-14],[1.7738383e-14],[8.9264647e-15],[4.4528384e-15],[2.2018404e-15],[1.0792591e-15],[5.2439203e-16],[2.525669e-16],[1.2058307e-16],[5.706703e-17],[2.6771507e-17],[1.2449402e-17],[5.7386783e-18],[2.6221801e-18],[1.1876814e-18],[5.3324135e-19],[2.3731962e-19],[1.0469574e-19],[4.5783556e-20],[1.9846082e-20],[8.527552e-21],[3.632101e-21],[1.5334691e-21],[6.4176396e-22],[2.6623088e-22],[1.0947727e-22],[4.4624319e-23],[1.8030217e-23],[7.2212382e-24],[2.8668397e-24],[1.1281734e-24],[4.4007695e-25],[1.7016155e-25],[6.5218968e-26],[2.4777974e-26],[9.3311838e-27],[3.4832645e-27],[1.2888863e-27],[4.7273845e-28],[1.7187199e-28],[6.1939384e-29],[2.2126155e-29],[7.834694e-30],[2.7498872e-30],[9.5671855e-31],[3.2993602e-31],[1.1278497e-31],[3.8216283e-32],[1.2835746e-32],[4.2733554e-33],[1.4102363e-33],[4.6130641e-34],[1.495759e-34],[4.8073753e-35],[1.5315406e-35],[4.8364069e-36],[1.5138777e-36],[4.6971256e-37],[1.4445972e-37],[4.4038691e-38],[1.330745e-38],[3.9859139e-39],[1.1834051e-39],[3.4826609e-40],[1.0159235e-40],[2.937533e-41],[8.419304e-42],[2.3918899e-42],[6.7356194e-43],[1.880118e-43],[5.2019209e-44],[1.4266363e-44],[3.8782296e-45],[1.0450194e-45],[2.7911659e-46],[7.3895369e-47],[1.9391837e-47],[5.0441812e-48],[1.3005657e-48],[3.323867e-49],[8.4202423e-50],[2.114341e-50],[5.2625328e-51],[1.2983263e-51],[3.1749872e-52],[7.6960716e-53],[1.84912e-53],[4.4038232e-54],[1.0395929e-54],[2.4325696e-55],[5.6420338e-56],[1.2971029e-56],[2.9558434e-57],[6.6766181e-58],[1.4948572e-58],[3.317499e-59],[7.2977631e-60],[1.5912429e-60],[3.439148e-61],[7.3677155e-62],[1.5645243e-62],[3.2930567e-63],[6.8704224e-64],[1.4208064e-64],[2.9124171e-65],[5.9175146e-66]],"fill":"tonexty","fillcolor":"rgb(0, 191, 255)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"November","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164725,-0.18164725,-0.18164725,-0.18164724,-0.18164724,-0.18164722,-0.1816472,-0.18164718,-0.18164713,-0.18164707,-0.18164697,-0.18164682,-0.18164661,-0.18164631,-0.18164588,-0.18164527,-0.18164442,-0.18164324,-0.18164161,-0.18163939,-0.1816364,-0.18163239,-0.1816271,-0.18162015,-0.18161114,-0.18159955,-0.18158479,-0.18156619,-0.18154297,-0.18151427,-0.18147916,-0.18143663,-0.18138566,-0.18132518,-0.18125416,-0.18117165,-0.18107679,-0.18096891,-0.18084753,-0.18071246,-0.18056381,-0.180402,-0.18022785,-0.18004249,-0.17984738,-0.17964425,-0.179435,-0.1792216,-0.17900597,-0.17878982,-0.17857446,-0.17836066,-0.17814847,-0.17793709,-0.17772472,-0.17750849,-0.17728446,-0.1770476,-0.1767919,-0.17651055,-0.17619609,-0.17584075,-0.1754367,-0.17497643,-0.17445309,-0.17386082,-0.17319509,-0.17245294,-0.17163317,-0.17073649,-0.1697655,-0.16872461,-0.16761989,-0.1664588,-0.16524984,-0.16400212,-0.16272499,-0.16142759,-0.16011838,-0.15880483,-0.15749309,-0.1561878,-0.15489193,-0.15360683,-0.15233225,-0.15106665,-0.14980737,-0.14855105,-0.14729405,-0.14603282,-0.1447644,-0.14348683,-0.14219955,-0.14090369,-0.13960243,-0.13830112,-0.1370074,-0.13573124,-0.1344848,-0.13328227,-0.13213961,-0.1310741,-0.13010394,-0.1292477,-0.12852376,-0.12794968,-0.12754159,-0.1273136,-0.12727726,-0.12744106,-0.12781003,-0.12838552,-0.12916498,-0.130142,-0.13130639,-0.13264449,-0.1341395,-0.13577198,-0.13752039,-0.13936177,-0.14127233,-0.14322812,-0.14520573,-0.1471828,-0.14913863,-0.1510546,-0.15291454,-0.15470503,-0.15641549,-0.15803831,-0.15956876,-0.16100485,-0.16234712,-0.16359831,-0.16476302,-0.16584729,-0.16685819,-0.16780339,-0.16869076,-0.16952797,-0.17032217,-0.17107972,-0.17180601,-0.17250529,-0.17318068,-0.17383411,-0.17446646,-0.17507767,-0.1756669,-0.17623275,-0.17677344,-0.17728701,-0.17777157,-0.17822538,-0.17864704,-0.17903558,-0.17939051,-0.17971185,-0.18000015,-0.18025641,-0.18048208,-0.18067893,-0.18084903,-0.18099461,-0.18111802,-0.18122165,-0.18130783,-0.18137883,-0.18143676,-0.18148358,-0.18152106,-0.18155079,-0.18157414,-0.18159231,-0.18160632,-0.18161702,-0.18162511,-0.18163118,-0.18163569,-0.181639,-0.18164142,-0.18164316,-0.18164441,-0.18164529,-0.18164592,-0.18164635,-0.18164665,-0.18164685,-0.18164699,-0.18164708,-0.18164714,-0.18164718,-0.18164721,-0.18164723,-0.18164724,-0.18164725,-0.18164725,-0.18164725,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726],"zorder":20,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726],"zorder":21,"type":"scatter"},{"customdata":[[1.4814053e-73],[8.0089297e-73],[4.2918195e-72],[2.2796852e-71],[1.2002585e-70],[6.2638493e-70],[3.2402196e-69],[1.6614003e-68],[8.4438573e-68],[4.2537732e-67],[2.1240987e-66],[1.0513372e-65],[5.1579414e-65],[2.508291e-64],[1.2090566e-63],[5.7767377e-63],[2.7358105e-62],[1.2842715e-61],[5.975788e-61],[2.7561392e-60],[1.2600124e-59],[5.7097391e-59],[2.5646353e-58],[1.1418339e-57],[5.0390461e-57],[2.2042553e-56],[9.5574874e-56],[4.1076549e-55],[1.7498976e-54],[7.3892425e-54],[3.0928289e-53],[1.2831596e-52],[5.2768454e-52],[2.1509836e-51],[8.6909848e-51],[3.4807285e-50],[1.3817858e-49],[5.4372688e-49],[2.1207552e-48],[8.1991736e-48],[3.1420966e-47],[1.1935457e-46],[4.4939554e-46],[1.6772153e-45],[6.2046797e-45],[2.2752051e-44],[8.2697531e-44],[2.9794457e-43],[1.0640193e-42],[3.7664728e-42],[1.3215743e-41],[4.5964224e-41],[1.5846015e-40],[5.4149215e-40],[1.8341565e-39],[6.1581879e-39],[2.049472e-38],[6.7608879e-38],[2.2107436e-37],[7.1654935e-37],[2.3021156e-36],[7.3313113e-36],[2.314248e-35],[7.2412252e-35],[2.2458894e-34],[6.9046082e-34],[2.10409e-33],[6.3557149e-33],[1.9030034e-32],[5.6479394e-32],[1.6615601e-31],[4.8452687e-31],[1.4005407e-30],[4.0128222e-30],[1.1396741e-29],[3.2083984e-29],[8.9530914e-29],[2.4764819e-28],[6.7900811e-28],[1.8454095e-27],[4.9715155e-27],[1.3275883e-26],[3.5141226e-26],[9.220396e-26],[2.3980693e-25],[6.1823517e-25],[1.5798863e-24],[4.0020122e-24],[1.0048744e-23],[2.5010729e-23],[6.1705289e-23],[1.5090384e-22],[3.6581405e-22],[8.7902873e-22],[2.0937687e-21],[4.9435354e-21],[1.1569919e-20],[2.6841517e-20],[6.1726022e-20],[1.4070658e-19],[3.1794049e-19],[7.1213606e-19],[1.5811251e-18],[3.4798142e-18],[7.5915919e-18],[1.6417124e-17],[3.5192424e-17],[7.4780712e-17],[1.5751387e-16],[3.2887983e-16],[6.8068377e-16],[1.3965091e-15],[2.8400946e-15],[5.725495e-15],[1.1441552e-14],[2.2664653e-14],[4.4504704e-14],[8.6627545e-14],[1.671475e-13],[3.1969667e-13],[6.0613763e-13],[1.1391997e-12],[2.1223868e-12],[3.9196371e-12],[7.1757033e-12],[1.3022099e-11],[2.3425888e-11],[4.1774413e-11],[7.3845589e-11],[1.2940152e-10],[2.247789e-10],[3.87056e-10],[6.6068583e-10],[1.1179436e-09],[1.8752079e-09],[3.1180598e-09],[5.1395599e-09],[8.3979813e-09],[1.3602929e-08],[2.1842364e-08],[3.4767846e-08],[5.4861558e-08],[8.5816761e-08],[1.330734e-07],[2.0456303e-07],[3.1173217e-07],[4.7093028e-07],[7.0526811e-07],[1.0470727e-06],[1.5410865e-06],[2.2485758e-06],[3.2525318e-06],[4.6641506e-06],[6.6307768e-06],[9.3454752e-06],[1.305835e-05],[1.8089663e-05],[2.484471e-05],[3.3830263e-05],[4.5672242e-05],[6.1134061e-05],[8.1134886e-05],[0.00010676679],[0.00013930955],[0.00018024172],[0.00023124625],[0.00029420916],[0.0003712095],[0.00046449935],[0.00057647266],[0.00070962244],[0.00086648649],[0.0010495826],[0.0012613351],[0.0015039956],[0.0017795613],[0.0020896959],[0.0024356574],[0.0028182378],[0.0032377191],[0.00369385],[0.0041858455],[0.0047124101],[0.005271784],[0.0058618085],[0.0064800071],[0.0071236732],[0.0077899579],[0.0084759487],[0.0091787307],[0.0098954229],[0.010623184],[0.011359186],[0.012100555],[0.012844287],[0.013587138],[0.014325512],[0.015055347],[0.015772024],[0.016470302],[0.017144304],[0.017787551],[0.018393058],[0.018953492],[0.019461384],[0.019909388],[0.020290572],[0.02059873],[0.020828685],[0.020976569],[0.021040059],[0.02101856],[0.020913303],[0.020727376],[0.020465662],[0.020134701],[0.01974249],[0.019298213],[0.018811944],[0.018294328],[0.017756257],[0.017208571],[0.016661795],[0.016125917],[0.015610229],[0.01512322],[0.014672528],[0.014264935],[0.013906406],[0.013602146],[0.013356668],[0.013173854],[0.013056999],[0.013008825],[0.013031463],[0.013126399],[0.013294378],[0.0135353],[0.013848078],[0.014230516],[0.014679179],[0.015189306],[0.015754754],[0.016367995],[0.017020173],[0.017701219],[0.018400033],[0.019104715],[0.019802852],[0.020481837],[0.021129209],[0.021733008],[0.02228212],[0.0227666],[0.023177966],[0.02350945],[0.023756192],[0.023915386],[0.023986359],[0.023970586],[0.02387166],[0.023695188],[0.023448653],[0.023141216],[0.022783492],[0.022387293],[0.021965346],[0.021530997],[0.021097914],[0.020679779],[0.020289991],[0.019941381],[0.019645927],[0.019414499],[0.019256609],[0.01918019],[0.019191386],[0.019294376],[0.019491217],[0.019781725],[0.020163395],[0.020631358],[0.021178403],[0.021795046],[0.022469667],[0.023188718],[0.023936991],[0.024697956],[0.025454145],[0.026187596],[0.026880307],[0.02751472],[0.028074183],[0.028543393],[0.028908792],[0.029158902],[0.029284584],[0.029279219],[0.029138807],[0.028861974],[0.028449917],[0.027906266],[0.027236897],[0.026449704],[0.025554333],[0.0245619],[0.023484699],[0.02233591],[0.02112931],[0.019878995],[0.018599115],[0.017303623],[0.016006039],[0.014719232],[0.013455225],[0.012225015],[0.011038426],[0.0099039837],[0.008828827],[0.0078186491],[0.0068776786],[0.006008695],[0.0052130815],[0.0044909108],[0.0038410608],[0.0032613547],[0.0027487191],[0.0022993538],[0.0019089045],[0.0015726344],[0.0012855856],[0.0010427268],[0.00083908381],[0.0006698482],[0.000530465],[0.00041669793],[0.00032467363],[0.00025090672],[0.00019230798],[0.00014617858],[0.00011019317],[8.2374825e-05],[6.1064511e-05],[4.4887411e-05],[3.2718195e-05],[2.364678e-05],[1.6945806e-05],[1.2040665e-05],[8.4825805e-06],[5.9249775e-06],[4.1031669e-06],[2.8172058e-06],[1.9176907e-06],[1.2941759e-06],[8.6587945e-07],[5.7433592e-07],[3.7767161e-07],[2.462058e-07],[1.59116e-07],[1.01943e-07],[6.4747891e-08],[4.0767616e-08],[2.5446238e-08],[1.5745184e-08],[9.6579562e-09],[5.8726449e-09],[3.5399007e-09],[2.1152184e-09],[1.2529225e-09],[7.3569248e-10],[4.2822285e-10],[2.4708321e-10],[1.413237e-10],[8.0127906e-11],[4.5034806e-11],[2.5090382e-11],[1.3856693e-11],[7.5858489e-12],[4.1166125e-12],[2.2144508e-12],[1.1808138e-12],[6.2414466e-13],[3.2702182e-13],[1.6984589e-13],[8.7441872e-14],[4.4624076e-14],[2.2573752e-14],[1.1319371e-14],[5.6263183e-15],[2.7721016e-15],[1.3538679e-15],[6.5542825e-16],[3.1452507e-16],[1.4961188e-16],[7.0543528e-17],[3.2970691e-17],[1.5274897e-17],[7.0146731e-18],[3.193119e-18],[1.4407907e-18]],"fill":"tonexty","fillcolor":"rgb(255, 69, 0)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"November","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164725,-0.18164725,-0.18164725,-0.18164724,-0.18164724,-0.18164722,-0.1816472,-0.18164717,-0.18164712,-0.18164705,-0.18164695,-0.18164679,-0.18164655,-0.18164621,-0.18164572,-0.18164501,-0.18164401,-0.18164259,-0.18164063,-0.18163791,-0.1816342,-0.18162917,-0.18162241,-0.18161343,-0.18160159,-0.18158612,-0.18156612,-0.18154049,-0.18150795,-0.18146702,-0.18141601,-0.18135305,-0.18127605,-0.18118276,-0.18107079,-0.18093764,-0.18078077,-0.18059768,-0.18038592,-0.18014326,-0.1798677,-0.17955756,-0.1792116,-0.17882902,-0.17840954,-0.17795341,-0.17746141,-0.17693485,-0.17637547,-0.17578545,-0.17516725,-0.17452358,-0.1738573,-0.17317131,-0.17246853,-0.17175183,-0.17102407,-0.17028807,-0.1695467,-0.16880297,-0.16806012,-0.16732175,-0.16659191,-0.16587523,-0.16517696,-0.16450295,-0.16385971,-0.1632542,-0.16269377,-0.16218587,-0.16173787,-0.16135669,-0.16104853,-0.16081857,-0.16067069,-0.1606072,-0.1606287,-0.16073395,-0.16091988,-0.1611816,-0.16151256,-0.16190477,-0.16234905,-0.16283531,-0.16335293,-0.163891,-0.16443869,-0.16498546,-0.16552134,-0.16603703,-0.16652404,-0.16697473,-0.16738232,-0.16774085,-0.16804511,-0.16829059,-0.1684734,-0.16859026,-0.16863843,-0.16861579,-0.16852086,-0.16835288,-0.16811196,-0.16779918,-0.16741674,-0.16696808,-0.16645795,-0.1658925,-0.16527926,-0.16462708,-0.16394604,-0.16324723,-0.16254254,-0.16184441,-0.16116542,-0.16051805,-0.15991425,-0.15936514,-0.15888066,-0.15846929,-0.15813781,-0.15789107,-0.15773187,-0.1576609,-0.15767667,-0.1577756,-0.15795207,-0.1581986,-0.15850604,-0.15886377,-0.15925996,-0.15968191,-0.16011626,-0.16054934,-0.16096748,-0.16135727,-0.16170588,-0.16200133,-0.16223276,-0.16239065,-0.16246707,-0.16245587,-0.16235288,-0.16215604,-0.16186553,-0.16148386,-0.1610159,-0.16046885,-0.15985221,-0.15917759,-0.15845854,-0.15771027,-0.1569493,-0.15619311,-0.15545966,-0.15476695,-0.15413254,-0.15357307,-0.15310386,-0.15273847,-0.15248836,-0.15236267,-0.15236804,-0.15250845,-0.15278528,-0.15319734,-0.15374099,-0.15441036,-0.15519755,-0.15609292,-0.15708536,-0.15816256,-0.15931135,-0.16051795,-0.16176826,-0.16304814,-0.16434363,-0.16564122,-0.16692803,-0.16819203,-0.16942224,-0.17060883,-0.17174327,-0.17281843,-0.17382861,-0.17476958,-0.17563856,-0.17643418,-0.17715635,-0.1778062,-0.1783859,-0.17889854,-0.1793479,-0.17973835,-0.18007462,-0.18036167,-0.18060453,-0.18080817,-0.18097741,-0.18111679,-0.18123056,-0.18132258,-0.18139635,-0.18145495,-0.18150108,-0.18153706,-0.18156488,-0.18158619,-0.18160237,-0.18161454,-0.18162361,-0.18163031,-0.18163522,-0.18163878,-0.18164133,-0.18164315,-0.18164444,-0.18164534,-0.18164596,-0.18164639,-0.18164668,-0.18164688,-0.18164701,-0.1816471,-0.18164716,-0.18164719,-0.18164722,-0.18164723,-0.18164724,-0.18164725,-0.18164725,-0.18164725,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726,-0.18164726],"zorder":21,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198],"zorder":22,"type":"scatter"},{"customdata":[[7.0497533e-06],[9.7550087e-06],[1.3380184e-05],[1.8191971e-05],[2.4517919e-05],[3.2754953e-05],[4.3377424e-05],[5.6944053e-05],[7.4103029e-05],[9.5594379e-05],[0.00012224872],[0.00015498139],[0.00019478115],[0.00024269264],[0.00029979212],[0.00036715636],[0.00044582496],[0.00053675679],[0.00064078217],[0.0007585524],[0.00089048943],[0.0010367383],[0.0011971259],[0.0013711286],[0.0015578527],[0.0017560296],[0.0019640273],[0.0021798804],[0.0024013359],[0.0026259156],[0.0028509906],[0.0030738641],[0.0032918579],[0.0035023972],[0.0037030878],[0.0038917802],[0.0040666181],[0.0042260664],[0.0043689187],[0.0044942843],[0.004601558],[0.0046903757],[0.0047605618],[0.0048120739],[0.0048449525],[0.0048592797],[0.0048551533],[0.0048326787],[0.0047919809],[0.0047332355],[0.0046567162],[0.0045628552],[0.0044523099],[0.0043260306],[0.004185322],[0.0040318925],[0.003867886],[0.0036958921],[0.0035189337],[0.0033404299],[0.0031641366],[0.0029940675],[0.0028344001],[0.0026893704],[0.0025631637],[0.0024598048],[0.0023830548],[0.0023363183],[0.0023225635],[0.0023442607],[0.0024033385],[0.00250116],[0.0026385179],[0.0028156493],[0.0030322663],[0.0032876026],[0.0035804716],[0.0039093344],[0.0042723735],[0.0046675691],[0.0050927752],[0.0055457908],[0.006024425],[0.00652655],[0.0070501441],[0.0075933174],[0.0081543239],[0.0087315556],[0.0093235211],[0.0099288077],[0.010546031],[0.011173772],[0.011810508],[0.012454539],[0.01310392],[0.013756394],[0.014409343],[0.015059767],[0.015704276],[0.016339121],[0.016960267],[0.017563489],[0.018144523],[0.018699232],[0.019223817],[0.019715028],[0.020170394],[0.020588427],[0.020968808],[0.021312528],[0.02162196],[0.021900871],[0.022154346],[0.022388629],[0.02261089],[0.02282891],[0.023050728],[0.023284235],[0.023536774],[0.023814748],[0.024123273],[0.024465899],[0.024844419],[0.025258777],[0.025707086],[0.026185757],[0.026689715],[0.027212719],[0.027747724],[0.028287293],[0.028824021],[0.02935093],[0.029861836],[0.030351637],[0.030816536],[0.031254154],[0.031663559],[0.032045187],[0.032400686],[0.032732668],[0.033044411],[0.033339508],[0.033621506],[0.033893526],[0.034157924],[0.034415973],[0.034667613],[0.034911269],[0.035143747],[0.03536023],[0.035554349],[0.035718359],[0.035843384],[0.035919738],[0.035937299],[0.035885921],[0.03575586],[0.03553819],[0.035225199],[0.034810735],[0.034290485],[0.033662184],[0.032925733],[0.032083239],[0.031138957],[0.030099165],[0.028971966],[0.027767031],[0.026495311],[0.025168713],[0.023799782],[0.022401373],[0.020986351],[0.01956731],[0.018156329],[0.016764764],[0.015403074],[0.014080694],[0.012805933],[0.011585913],[0.010426538],[0.0093324897],[0.008307242],[0.0073531046],[0.0064712796],[0.0056619349],[0.0049242917],[0.0042567215],[0.0036568534],[0.003121686],[0.0026477029],[0.0022309895],[0.0018673469],[0.0015524009],[0.0012817046],[0.00105083],[0.0008554497],[0.00069140544],[0.00055476371],[0.00044185798],[0.00034931808],[0.00027408751],[0.00021342985],[0.00016492572],[0.00012646206],[9.6215186e-05],[7.2629484e-05],[5.4393143e-05],[4.0412389e-05],[2.9785348e-05],[2.1776521e-05],[1.5792579e-05],[1.1360006e-05],[8.1049099e-06],[5.7351689e-06],[4.0249247e-06],[2.8013597e-06],[1.933599e-06],[1.3235427e-06],[8.9840445e-07],[6.0472403e-07],[4.0363016e-07],[2.6714147e-07],[1.7531584e-07],[1.140813e-07],[7.360598e-08],[4.7087904e-08],[2.9867302e-08],[1.8783051e-08],[1.1711522e-08],[7.2398828e-09],[4.4372605e-09],[2.6962372e-09],[1.6242614e-09],[9.7007102e-10],[5.7437611e-10],[3.3715539e-10],[1.9620074e-10],[1.1318898e-10],[6.4734668e-11],[3.6702493e-11],[2.0628934e-11],[1.1494167e-11],[6.3488461e-12],[3.4763694e-12],[1.8869841e-12],[1.0153583e-12],[5.4159767e-13],[2.8637721e-13],[1.5010744e-13],[7.7994881e-14],[4.0172441e-14],[2.0510999e-14],[1.0381024e-14],[5.2081897e-15],[2.5901509e-15],[1.2768903e-15],[6.2398054e-16],[3.0225683e-16],[1.4513348e-16],[6.9078737e-17],[3.2591574e-17],[1.5242262e-17],[7.0660332e-18],[3.2470066e-18],[1.4790097e-18],[6.677877e-19],[2.9887153e-19],[1.3258935e-19],[5.830557e-20],[2.5414879e-20],[1.0981003e-20],[4.7029603e-21],[1.996528e-21],[8.4014403e-22],[3.5043364e-22],[1.4488755e-22],[5.9378485e-23],[2.4121231e-23],[9.7127391e-24],[3.87664e-24],[1.5336997e-24],[6.0144507e-25],[2.3378789e-25],[9.007788e-26],[3.4402031e-26],[1.3023254e-26],[4.8867951e-27],[1.8175975e-27],[6.7010057e-28],[2.4487854e-28],[8.8701243e-29],[3.1847599e-29],[1.1334217e-29],[3.9982868e-30],[1.3980535e-30],[4.845526e-31],[1.6646585e-31],[5.6686064e-32],[1.9133492e-32],[6.4014567e-33],[2.1229017e-33],[6.978263e-34],[2.2736889e-34],[7.3431241e-35],[2.3506974e-35],[7.4589636e-36],[2.3459895e-36],[7.3137375e-37],[2.2600513e-37],[6.9224966e-38],[2.1017094e-38],[6.324817e-39],[1.8866379e-39],[5.578204e-40],[1.6348028e-40],[4.7489924e-41],[1.3674221e-41],[3.9027318e-42],[1.1040779e-42],[3.095962e-43],[8.6051083e-44],[2.3707285e-44],[6.4739902e-45],[1.7523745e-45],[4.7016085e-46],[1.2503471e-46],[3.2959399e-47],[8.6117718e-48],[2.2303357e-48],[5.7254866e-49],[1.456864e-49],[3.6744302e-50],[9.1859776e-51],[2.276277e-51],[5.5909955e-52],[1.361186e-52],[3.2848087e-53],[7.8571842e-54],[1.8628935e-54],[4.3779754e-55],[1.0198183e-55],[2.3547047e-56],[5.3890754e-57],[1.2225207e-57],[2.7489211e-58],[6.1267824e-59],[1.3535264e-59],[2.9639104e-60],[6.4332064e-61],[1.3840569e-61],[2.9515114e-62],[6.2387705e-63],[1.3071264e-63],[2.7145644e-64],[5.5878755e-65],[1.1401376e-65],[2.3058541e-66],[4.6224301e-67],[9.1848663e-68],[1.809003e-68],[3.5315851e-69],[6.8338276e-70],[1.3107573e-70],[2.4919797e-71],[4.6960276e-72],[8.7716379e-73],[1.6240323e-73],[2.9803862e-74],[5.4214358e-75],[9.7750728e-76],[1.7469866e-76],[3.0947319e-77],[5.4340094e-78],[9.4576148e-79],[1.6315738e-79],[2.7899455e-80],[4.7287742e-81],[7.9444768e-82],[1.3229575e-82],[2.1836868e-83],[3.5727173e-84],[5.7938977e-85],[9.3133698e-86],[1.4839071e-86],[2.3435296e-87],[3.6685802e-88],[5.6923217e-89],[8.7547691e-90],[1.334639e-90],[2.0167253e-91],[3.0206021e-92],[4.4843978e-93],[6.5990069e-94],[9.6253574e-95],[1.3916146e-95],[1.9942744e-96],[2.8327921e-97],[3.9884881e-98],[5.5662886e-99]],"fill":"tonexty","fillcolor":"rgb(0, 191, 255)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"December","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.19980493,-0.19980223,-0.1997986,-0.19979379,-0.19978747,-0.19977923,-0.19976861,-0.19975504,-0.19973788,-0.19971639,-0.19968973,-0.199657,-0.1996172,-0.19956929,-0.19951219,-0.19944483,-0.19936616,-0.19927523,-0.1991712,-0.19905343,-0.19892149,-0.19877525,-0.19861486,-0.19844085,-0.19825413,-0.19805595,-0.19784796,-0.1976321,-0.19741065,-0.19718607,-0.19696099,-0.19673812,-0.19652013,-0.19630959,-0.1961089,-0.1959202,-0.19574537,-0.19558592,-0.19544306,-0.1953177,-0.19521043,-0.19512161,-0.19505142,-0.19499991,-0.19496703,-0.1949527,-0.19495683,-0.1949793,-0.19502,-0.19507875,-0.19515527,-0.19524913,-0.19535967,-0.19548595,-0.19562666,-0.19578009,-0.1959441,-0.19611609,-0.19629305,-0.19647155,-0.19664785,-0.19681792,-0.19697758,-0.19712261,-0.19724882,-0.19735218,-0.19742893,-0.19747567,-0.19748942,-0.19746772,-0.19740865,-0.19731082,-0.19717347,-0.19699633,-0.19677972,-0.19652438,-0.19623151,-0.19590265,-0.19553961,-0.19514441,-0.19471921,-0.19426619,-0.19378756,-0.19328543,-0.19276184,-0.19221867,-0.19165766,-0.19108043,-0.19048846,-0.18988318,-0.18926595,-0.18863821,-0.18800148,-0.18735744,-0.18670806,-0.18605559,-0.18540264,-0.18475222,-0.18410771,-0.18347286,-0.18285172,-0.18224849,-0.18166746,-0.18111275,-0.18058817,-0.18009696,-0.17964159,-0.17922356,-0.17884318,-0.17849946,-0.17819002,-0.17791111,-0.17765764,-0.17742335,-0.17720109,-0.17698307,-0.17676126,-0.17652775,-0.17627521,-0.17599724,-0.17568871,-0.17534608,-0.17496756,-0.17455321,-0.1741049,-0.17362623,-0.17312227,-0.17259926,-0.17206426,-0.17152469,-0.17098796,-0.17046105,-0.16995015,-0.16946035,-0.16899545,-0.16855783,-0.16814843,-0.1677668,-0.1674113,-0.16707932,-0.16676757,-0.16647248,-0.16619048,-0.16591846,-0.16565406,-0.16539601,-0.16514437,-0.16490072,-0.16466824,-0.16445175,-0.16425763,-0.16409362,-0.1639686,-0.16389225,-0.16387468,-0.16392606,-0.16405612,-0.16427379,-0.16458678,-0.16500125,-0.1655215,-0.1661498,-0.16688625,-0.16772874,-0.16867303,-0.16971282,-0.17084002,-0.17204495,-0.17331667,-0.17464327,-0.1760122,-0.17741061,-0.17882563,-0.18024467,-0.18165565,-0.18304722,-0.18440891,-0.18573129,-0.18700605,-0.18822607,-0.18938545,-0.19047949,-0.19150474,-0.19245888,-0.1933407,-0.19415005,-0.19488769,-0.19555526,-0.19615513,-0.1966903,-0.19716428,-0.19758099,-0.19794464,-0.19825958,-0.19853028,-0.19876115,-0.19895653,-0.19912058,-0.19925722,-0.19937013,-0.19946267,-0.1995379,-0.19959855,-0.19964706,-0.19968552,-0.19971577,-0.19973935,-0.19975759,-0.19977157,-0.1997822,-0.19979021,-0.19979619,-0.19980062,-0.19980388,-0.19980625,-0.19980796,-0.19980918,-0.19981005,-0.19981066,-0.19981109,-0.19981138,-0.19981158,-0.19981172,-0.19981181,-0.19981187,-0.19981191,-0.19981194,-0.19981195,-0.19981196,-0.19981197,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198],"zorder":22,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198],"zorder":23,"type":"scatter"},{"customdata":[[1.7309546e-34],[5.3232074e-34],[1.6226502e-33],[4.9027552e-33],[1.4683153e-32],[4.3587528e-32],[1.2825342e-31],[3.7405845e-31],[1.0813687e-30],[3.0986456e-30],[8.8010367e-30],[2.4777618e-29],[6.9143137e-29],[1.9125042e-28],[5.2434791e-28],[1.4249528e-27],[3.8383555e-27],[1.0248345e-26],[2.7122272e-26],[7.114792e-26],[1.8499592e-25],[4.7678862e-25],[1.2180172e-24],[3.0842159e-24],[7.7410508e-24],[1.9258341e-23],[4.7489939e-23],[1.1607753e-22],[2.8122797e-22],[6.7535585e-22],[1.6075727e-21],[3.7929086e-21],[8.8702924e-21],[2.0562092e-20],[4.7245501e-20],[1.0760128e-19],[2.4290597e-19],[5.4352904e-19],[1.2055108e-18],[2.6502283e-18],[5.7750967e-18],[1.2473807e-17],[2.6705617e-17],[5.6672189e-17],[1.1920684e-16],[2.4853991e-16],[5.1363537e-16],[1.0521496e-15],[2.1363081e-15],[4.2994616e-15],[8.576855e-15],[1.6959219e-14],[3.3238962e-14],[6.4573279e-14],[1.243432e-13],[2.3733131e-13],[4.4900567e-13],[8.4200065e-13],[1.565081e-12],[2.8835337e-12],[5.2659537e-12],[9.5321933e-12],[1.7103006e-11],[3.0416964e-11],[5.3619538e-11],[9.3690181e-11],[1.6226651e-10],[2.7856562e-10],[4.7401264e-10],[7.9949573e-10],[1.3366145e-09],[2.2149299e-09],[3.638125e-09],[5.923236e-09],[9.5588196e-09],[1.5290205e-08],[2.4242987e-08],[3.8099805e-08],[5.9350337e-08],[9.1640495e-08],[1.4025407e-07],[2.1276849e-07],[3.1993588e-07],[4.7685066e-07],[7.0447507e-07],[1.0316032e-06],[1.4973507e-06],[2.1542603e-06],[3.0721091e-06],[4.3424906e-06],[6.0842206e-06],[8.449574e-06],[1.1631306e-05],[1.587033e-05],[2.1463831e-05],[2.8773477e-05],[3.8233253e-05],[5.035632e-05],[6.5740127e-05],[8.5068922e-05],[0.00010911266],[0.00013872134],[0.00017481361],[0.00021835902],[0.00027035288],[0.00033178357],[0.00040359228],[0.00048662569],[0.00058158283],[0.00068895791],[0.00080898163],[0.00094156408],[0.0010862428],[0.0012421398],[0.0014079319],[0.0015818373],[0.0017616231],[0.0019446341],[0.0021278465],[0.0023079448],[0.002481421],[0.0026446939],[0.0027942427],[0.0029267508],[0.0030392527],[0.0031292777],[0.0031949828],[0.0032352704],[0.0032498826],[0.0032394719],[0.0032056422],[0.0031509624],[0.0030789515],[0.0029940391],[0.0029015037],[0.0028073928],[0.0027184304],[0.0026419134],[0.002585602],[0.0025576046],[0.0025662572],[0.002619998],[0.002727233],[0.0028961906],[0.0031347618],[0.0034503228],[0.0038495379],[0.0043381436],[0.0049207142],[0.005600416],[0.0063787569],[0.0072553419],[0.0082276496],[0.0092908442],[0.010437639],[0.011658228],[0.012940305],[0.014269166],[0.015627932],[0.016997862],[0.018358775],[0.01968956],[0.02096877],[0.022175254],[0.023288828],[0.024290929],[0.025165247],[0.025898268],[0.026479732],[0.026902971],[0.027165092],[0.027267029],[0.02721343],[0.027012408],[0.026675169],[0.026215525],[0.025649347],[0.024993961],[0.024267549],[0.02348856],[0.022675179],[0.021844867],[0.021013991],[0.020197551],[0.019409008],[0.018660205],[0.017961366],[0.017321163],[0.016746818],[0.016244244],[0.015818174],[0.015472287],[0.015209306],[0.01503107],[0.014938559],[0.014931904],[0.01501036],[0.015172278],[0.015415076],[0.015735218],[0.016128229],[0.01658875],[0.01711063],[0.017687068],[0.018310808],[0.018974357],[0.019670239],[0.020391259],[0.021130754],[0.021882824],[0.022642518],[0.023405962],[0.024170417],[0.024934246],[0.025696813],[0.026458286],[0.027219371],[0.027980983],[0.028743871],[0.029508224],[0.030273272],[0.031036921],[0.031795434],[0.032543192],[0.033272554],[0.033973826],[0.034635354],[0.035243748],[0.03578423],[0.036241083],[0.036598212],[0.036839759],[0.036950765],[0.036917838],[0.036729794],[0.036378229],[0.035858008],[0.035167627],[0.034309435],[0.033289703],[0.032118532],[0.030809616],[0.02937985],[0.027848826],[0.026238223],[0.024571139],[0.022871382],[0.021162753],[0.019468367],[0.017810017],[0.016207619],[0.014678755],[0.013238317],[0.011898259],[0.010667474],[0.0095517622],[0.0085539097],[0.0076738493],[0.0069088966],[0.0062540446],[0.005702303],[0.0052450674],[0.0048725035],[0.0045739344],[0.0043382199],[0.0041541163],[0.0040106084],[0.003897207],[0.003804204],[0.0037228822],[0.0036456748],[0.0035662747],[0.003479691],[0.0033822567],[0.0032715893],[0.0031465094],[0.0030069231],[0.0028536769],[0.0026883914],[0.0025132834],[0.0023309855],[0.0021443702],[0.0019563859],[0.0017699117],[0.0015876347],[0.0014119531],[0.0012449057],[0.0010881294],[0.00094284015],[0.00080983751],[0.00068952714],[0.00058195824],[0.00048687119],[0.00040375147],[0.00033188592],[0.00027041813],[0.00021840027],[0.00017483946],[0.0001387374],[0.00010912256],[8.507497e-05],[6.574379e-05],[5.035852e-05],[3.8234563e-05],[2.877425e-05],[2.1464284e-05],[1.5870593e-05],[1.1631457e-05],[8.4496602e-06],[6.0842693e-06],[4.3425179e-06],[3.0721243e-06],[2.1542687e-06],[1.4973553e-06],[1.0316057e-06],[7.044764e-07],[4.7685137e-07],[3.1993625e-07],[2.1276868e-07],[1.4025417e-07],[9.1640547e-08],[5.9350364e-08],[3.8099819e-08],[2.4242994e-08],[1.5290208e-08],[9.5588212e-09],[5.9232368e-09],[3.6381254e-09],[2.2149301e-09],[1.3366146e-09],[7.9949577e-10],[4.7401266e-10],[2.7856563e-10],[1.6226651e-10],[9.3690183e-11],[5.3619539e-11],[3.0416964e-11],[1.7103006e-11],[9.5321934e-12],[5.2659537e-12],[2.8835337e-12],[1.565081e-12],[8.4200065e-13],[4.4900567e-13],[2.3733131e-13],[1.243432e-13],[6.4573279e-14],[3.3238962e-14],[1.6959219e-14],[8.576855e-15],[4.2994616e-15],[2.1363081e-15],[1.0521496e-15],[5.1363537e-16],[2.4853991e-16],[1.1920684e-16],[5.6672189e-17],[2.6705617e-17],[1.2473807e-17],[5.7750967e-18],[2.6502283e-18],[1.2055108e-18],[5.4352904e-19],[2.4290597e-19],[1.0760128e-19],[4.7245501e-20],[2.0562092e-20],[8.8702924e-21],[3.7929086e-21],[1.6075727e-21],[6.7535585e-22],[2.8122797e-22],[1.1607753e-22],[4.7489939e-23],[1.9258341e-23],[7.7410508e-24],[3.0842159e-24],[1.2180172e-24],[4.7678862e-25],[1.8499592e-25],[7.114792e-26],[2.7122272e-26],[1.0248345e-26],[3.8383555e-27],[1.4249528e-27],[5.2434791e-28],[1.9125042e-28],[6.9143137e-29],[2.4777618e-29],[8.8010367e-30],[3.0986456e-30],[1.0813687e-30],[3.7405845e-31],[1.2825342e-31],[4.3587528e-32],[1.4683153e-32],[4.9027552e-33],[1.6226502e-33],[5.3232074e-34],[1.7309546e-34]],"fill":"tonexty","fillcolor":"rgb(255, 69, 0)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"December","x":[-40.0,-39.62406,-39.24812,-38.87218,-38.496241,-38.120301,-37.744361,-37.368421,-36.992481,-36.616541,-36.240602,-35.864662,-35.488722,-35.112782,-34.736842,-34.360902,-33.984962,-33.609023,-33.233083,-32.857143,-32.481203,-32.105263,-31.729323,-31.353383,-30.977444,-30.601504,-30.225564,-29.849624,-29.473684,-29.097744,-28.721805,-28.345865,-27.969925,-27.593985,-27.218045,-26.842105,-26.466165,-26.090226,-25.714286,-25.338346,-24.962406,-24.586466,-24.210526,-23.834586,-23.458647,-23.082707,-22.706767,-22.330827,-21.954887,-21.578947,-21.203008,-20.827068,-20.451128,-20.075188,-19.699248,-19.323308,-18.947368,-18.571429,-18.195489,-17.819549,-17.443609,-17.067669,-16.691729,-16.315789,-15.93985,-15.56391,-15.18797,-14.81203,-14.43609,-14.06015,-13.684211,-13.308271,-12.932331,-12.556391,-12.180451,-11.804511,-11.428571,-11.052632,-10.676692,-10.300752,-9.924812,-9.5488722,-9.1729323,-8.7969925,-8.4210526,-8.0451128,-7.6691729,-7.2932331,-6.9172932,-6.5413534,-6.1654135,-5.7894737,-5.4135338,-5.037594,-4.6616541,-4.2857143,-3.9097744,-3.5338346,-3.1578947,-2.7819549,-2.406015,-2.0300752,-1.6541353,-1.2781955,-0.90225564,-0.52631579,-0.15037594,0.22556391,0.60150376,0.97744361,1.3533835,1.7293233,2.1052632,2.481203,2.8571429,3.2330827,3.6090226,3.9849624,4.3609023,4.7368421,5.112782,5.4887218,5.8646617,6.2406015,6.6165414,6.9924812,7.3684211,7.7443609,8.1203008,8.4962406,8.8721805,9.2481203,9.6240602,10.0,10.37594,10.75188,11.12782,11.503759,11.879699,12.255639,12.631579,13.007519,13.383459,13.759398,14.135338,14.511278,14.887218,15.263158,15.639098,16.015038,16.390977,16.766917,17.142857,17.518797,17.894737,18.270677,18.646617,19.022556,19.398496,19.774436,20.150376,20.526316,20.902256,21.278195,21.654135,22.030075,22.406015,22.781955,23.157895,23.533835,23.909774,24.285714,24.661654,25.037594,25.413534,25.789474,26.165414,26.541353,26.917293,27.293233,27.669173,28.045113,28.421053,28.796992,29.172932,29.548872,29.924812,30.300752,30.676692,31.052632,31.428571,31.804511,32.180451,32.556391,32.932331,33.308271,33.684211,34.06015,34.43609,34.81203,35.18797,35.56391,35.93985,36.315789,36.691729,37.067669,37.443609,37.819549,38.195489,38.571429,38.947368,39.323308,39.699248,40.075188,40.451128,40.827068,41.203008,41.578947,41.954887,42.330827,42.706767,43.082707,43.458647,43.834586,44.210526,44.586466,44.962406,45.338346,45.714286,46.090226,46.466165,46.842105,47.218045,47.593985,47.969925,48.345865,48.721805,49.097744,49.473684,49.849624,50.225564,50.601504,50.977444,51.353383,51.729323,52.105263,52.481203,52.857143,53.233083,53.609023,53.984962,54.360902,54.736842,55.112782,55.488722,55.864662,56.240602,56.616541,56.992481,57.368421,57.744361,58.120301,58.496241,58.87218,59.24812,59.62406,60.0,60.37594,60.75188,61.12782,61.503759,61.879699,62.255639,62.631579,63.007519,63.383459,63.759398,64.135338,64.511278,64.887218,65.263158,65.639098,66.015038,66.390977,66.766917,67.142857,67.518797,67.894737,68.270677,68.646617,69.022556,69.398496,69.774436,70.150376,70.526316,70.902256,71.278195,71.654135,72.030075,72.406015,72.781955,73.157895,73.533835,73.909774,74.285714,74.661654,75.037594,75.413534,75.789474,76.165414,76.541353,76.917293,77.293233,77.669173,78.045113,78.421053,78.796992,79.172932,79.548872,79.924812,80.300752,80.676692,81.052632,81.428571,81.804511,82.180451,82.556391,82.932331,83.308271,83.684211,84.06015,84.43609,84.81203,85.18797,85.56391,85.93985,86.315789,86.691729,87.067669,87.443609,87.819549,88.195489,88.571429,88.947368,89.323308,89.699248,90.075188,90.451128,90.827068,91.203008,91.578947,91.954887,92.330827,92.706767,93.082707,93.458647,93.834586,94.210526,94.586466,94.962406,95.338346,95.714286,96.090226,96.466165,96.842105,97.218045,97.593985,97.969925,98.345865,98.721805,99.097744,99.473684,99.849624,100.22556,100.6015,100.97744,101.35338,101.72932,102.10526,102.4812,102.85714,103.23308,103.60902,103.98496,104.3609,104.73684,105.11278,105.48872,105.86466,106.2406,106.61654,106.99248,107.36842,107.74436,108.1203,108.49624,108.87218,109.24812,109.62406,110.0],"y":[-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981197,-0.19981197,-0.19981196,-0.19981195,-0.19981192,-0.19981189,-0.19981184,-0.19981177,-0.19981166,-0.19981151,-0.19981128,-0.19981095,-0.19981049,-0.19980983,-0.19980891,-0.19980764,-0.1998059,-0.19980353,-0.19980035,-0.19979611,-0.19979052,-0.19978321,-0.19977375,-0.19976163,-0.19974624,-0.19972691,-0.19970287,-0.19967326,-0.19963717,-0.19959362,-0.19954163,-0.1994802,-0.19940839,-0.19932536,-0.1992304,-0.19912303,-0.199003,-0.19887042,-0.19872574,-0.19856984,-0.19840405,-0.19823015,-0.19805036,-0.19786735,-0.19768414,-0.19750404,-0.19733056,-0.19716729,-0.19701774,-0.19688523,-0.19677273,-0.19668271,-0.196617,-0.19657671,-0.1965621,-0.19657251,-0.19660634,-0.19666102,-0.19673303,-0.19681794,-0.19691048,-0.19700459,-0.19709355,-0.19717007,-0.19722638,-0.19725438,-0.19724573,-0.19719199,-0.19708475,-0.19691579,-0.19667722,-0.19636166,-0.19596245,-0.19547384,-0.19489127,-0.19421157,-0.19343323,-0.19255664,-0.19158433,-0.19052114,-0.18937434,-0.18815376,-0.18687168,-0.18554282,-0.18418405,-0.18281412,-0.18145321,-0.18012242,-0.17884321,-0.17763673,-0.17652316,-0.17552105,-0.17464674,-0.17391372,-0.17333225,-0.17290901,-0.17264689,-0.17254495,-0.17259855,-0.17279958,-0.17313681,-0.17359646,-0.17416264,-0.17481802,-0.17554443,-0.17632342,-0.1771368,-0.17796712,-0.17879799,-0.17961443,-0.18040298,-0.18115178,-0.18185062,-0.18249082,-0.18306517,-0.18356774,-0.18399381,-0.1843397,-0.18460268,-0.18478091,-0.18487342,-0.18488008,-0.18480162,-0.18463971,-0.18439691,-0.18407677,-0.18368375,-0.18322323,-0.18270135,-0.18212492,-0.18150118,-0.18083763,-0.18014174,-0.17942072,-0.17868123,-0.17792916,-0.17716947,-0.17640602,-0.17564157,-0.17487774,-0.17411517,-0.1733537,-0.17259261,-0.171831,-0.17106811,-0.17030376,-0.16953871,-0.16877506,-0.16801655,-0.16726879,-0.16653943,-0.16583816,-0.16517663,-0.16456824,-0.16402775,-0.1635709,-0.16321377,-0.16297222,-0.16286122,-0.16289415,-0.16308219,-0.16343376,-0.16395398,-0.16464436,-0.16550255,-0.16652228,-0.16769345,-0.16900237,-0.17043213,-0.17196316,-0.17357376,-0.17524084,-0.1769406,-0.17864923,-0.18034362,-0.18200197,-0.18360436,-0.18513323,-0.18657367,-0.18791372,-0.18914451,-0.19026022,-0.19125807,-0.19213813,-0.19290309,-0.19355794,-0.19410968,-0.19456692,-0.19493948,-0.19523805,-0.19547376,-0.19565787,-0.19580138,-0.19591478,-0.19600778,-0.1960891,-0.19616631,-0.19624571,-0.19633229,-0.19642973,-0.19654039,-0.19666547,-0.19680506,-0.19695831,-0.19712359,-0.1972987,-0.197481,-0.19766761,-0.1978556,-0.19804207,-0.19822435,-0.19840003,-0.19856708,-0.19872385,-0.19886914,-0.19900215,-0.19912246,-0.19923003,-0.19932511,-0.19940823,-0.1994801,-0.19954157,-0.19959358,-0.19963714,-0.19967325,-0.19970286,-0.19972691,-0.19974624,-0.19976163,-0.19977375,-0.19978321,-0.19979052,-0.19979611,-0.19980035,-0.19980353,-0.1998059,-0.19980764,-0.19980891,-0.19980983,-0.19981049,-0.19981095,-0.19981128,-0.19981151,-0.19981166,-0.19981177,-0.19981184,-0.19981189,-0.19981192,-0.19981195,-0.19981196,-0.19981197,-0.19981197,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198,-0.19981198],"zorder":23,"type":"scatter"}],"layout":{"template":{"data":{"histogram2dcontour":[{"type":"histogram2dcontour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"choropleth":[{"type":"choropleth","colorbar":{"outlinewidth":0,"ticks":""}}],"histogram2d":[{"type":"histogram2d","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmap":[{"type":"heatmap","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"contourcarpet":[{"type":"contourcarpet","colorbar":{"outlinewidth":0,"ticks":""}}],"contour":[{"type":"contour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"surface":[{"type":"surface","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"mesh3d":[{"type":"mesh3d","colorbar":{"outlinewidth":0,"ticks":""}}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"parcoords":[{"type":"parcoords","line":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolargl":[{"type":"scatterpolargl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"scattergeo":[{"type":"scattergeo","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolar":[{"type":"scatterpolar","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"scattergl":[{"type":"scattergl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatter3d":[{"type":"scatter3d","line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattermap":[{"type":"scattermap","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattermapbox":[{"type":"scattermapbox","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterternary":[{"type":"scatterternary","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattercarpet":[{"type":"scattercarpet","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"type":"carpet"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}],"barpolar":[{"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"pie":[{"automargin":true,"type":"pie"}]},"layout":{"autotypenumbers":"strict","colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"hovermode":"closest","hoverlabel":{"align":"left"},"paper_bgcolor":"white","plot_bgcolor":"#E5ECF6","polar":{"bgcolor":"#E5ECF6","angularaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"radialaxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"ternary":{"bgcolor":"#E5ECF6","aaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"baxis":{"gridcolor":"white","linecolor":"white","ticks":""},"caxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]]},"xaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"yaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"scene":{"xaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"yaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"zaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"geo":{"bgcolor":"white","landcolor":"#E5ECF6","subunitcolor":"white","showland":true,"showlakes":true,"lakecolor":"white"},"title":{"x":0.05},"mapbox":{"style":"light"}}},"legend":{"traceorder":"normal"},"yaxis":{"showticklabels":true,"tickvals":[0.0,-0.018164725780515447,-0.036329451561030894,-0.05449417734154635,-0.07265890312206179,-0.09082362890257724,-0.1089883546830927,-0.12715308046360815,-0.14531780624412358,-0.16348253202463903,-0.18164725780515448,-0.19981198358566993],"ticktext":[["January"],["February"],["March"],["April"],["May"],["June"],["July"],["August"],["September"],["October"],["November"],["December"]],"zeroline":false,"showgrid":true,"gridcolor":"white","title":{"text":"Month"}},"xaxis":{"range":[-47.5,117.5],"showticklabels":true,"zeroline":false,"showgrid":true,"gridcolor":"white","gridwidth":2,"title":{"text":"Temperature [F]"}},"barmode":"stack","bargap":0,"bargroupgap":0,"font":{"size":14},"title":{"text":"Minimum and maximum daily temperatures in Lincoln, NE (2016)"},"height":600,"width":800,"plot_bgcolor":"rgb(245, 245, 245)","showlegend":false}} diff --git a/tests/e2e/artifacts/probly.json b/tests/e2e/artifacts/probly.json index d8ddcc6..6b0f7b5 100644 --- a/tests/e2e/artifacts/probly.json +++ b/tests/e2e/artifacts/probly.json @@ -1 +1 @@ -{"data":[{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-12.5,-12.249499,-11.998998,-11.748497,-11.497996,-11.247495,-10.996994,-10.746493,-10.495992,-10.245491,-9.99499,-9.744489,-9.493988,-9.243487,-8.992986,-8.742485,-8.491984,-8.241483,-7.990982,-7.740481,-7.48998,-7.239479,-6.988978,-6.738477,-6.487976,-6.2374749,-5.9869739,-5.7364729,-5.4859719,-5.2354709,-4.9849699,-4.7344689,-4.4839679,-4.2334669,-3.9829659,-3.7324649,-3.4819639,-3.2314629,-2.9809619,-2.7304609,-2.4799599,-2.2294589,-1.9789579,-1.7284569,-1.4779559,-1.2274549,-0.97695391,-0.72645291,-0.4759519,-0.2254509,0.0250501,0.2755511,0.5260521,0.77655311,1.0270541,1.2775551,1.5280561,1.7785571,2.0290581,2.2795591,2.5300601,2.7805611,3.0310621,3.2815631,3.5320641,3.7825651,4.0330661,4.2835671,4.5340681,4.7845691,5.0350701,5.2855711,5.5360721,5.7865731,6.0370741,6.2875752,6.5380762,6.7885772,7.0390782,7.2895792,7.5400802,7.7905812,8.0410822,8.2915832,8.5420842,8.7925852,9.0430862,9.2935872,9.5440882,9.7945892,10.04509,10.295591,10.546092,10.796593,11.047094,11.297595,11.548096,11.798597,12.049098,12.299599,12.5501,12.800601,13.051102,13.301603,13.552104,13.802605,14.053106,14.303607,14.554108,14.804609,15.05511,15.305611,15.556112,15.806613,16.057114,16.307615,16.558116,16.808617,17.059118,17.309619,17.56012,17.810621,18.061122,18.311623,18.562124,18.812625,19.063126,19.313627,19.564128,19.814629,20.06513,20.315631,20.566132,20.816633,21.067134,21.317635,21.568136,21.818637,22.069138,22.319639,22.57014,22.820641,23.071142,23.321643,23.572144,23.822645,24.073146,24.323647,24.574148,24.824649,25.07515,25.325651,25.576152,25.826653,26.077154,26.327655,26.578156,26.828657,27.079158,27.329659,27.58016,27.830661,28.081162,28.331663,28.582164,28.832665,29.083166,29.333667,29.584168,29.834669,30.08517,30.335671,30.586172,30.836673,31.087174,31.337675,31.588176,31.838677,32.089178,32.339679,32.59018,32.840681,33.091182,33.341683,33.592184,33.842685,34.093186,34.343687,34.594188,34.844689,35.09519,35.345691,35.596192,35.846693,36.097194,36.347695,36.598196,36.848697,37.099198,37.349699,37.6002,37.850701,38.101202,38.351703,38.602204,38.852705,39.103206,39.353707,39.604208,39.854709,40.10521,40.355711,40.606212,40.856713,41.107214,41.357715,41.608216,41.858717,42.109218,42.359719,42.61022,42.860721,43.111222,43.361723,43.612224,43.862725,44.113226,44.363727,44.614228,44.864729,45.11523,45.365731,45.616232,45.866733,46.117234,46.367735,46.618236,46.868737,47.119238,47.369739,47.62024,47.870741,48.121242,48.371743,48.622244,48.872745,49.123246,49.373747,49.624248,49.874749,50.125251,50.375752,50.626253,50.876754,51.127255,51.377756,51.628257,51.878758,52.129259,52.37976,52.630261,52.880762,53.131263,53.381764,53.632265,53.882766,54.133267,54.383768,54.634269,54.88477,55.135271,55.385772,55.636273,55.886774,56.137275,56.387776,56.638277,56.888778,57.139279,57.38978,57.640281,57.890782,58.141283,58.391784,58.642285,58.892786,59.143287,59.393788,59.644289,59.89479,60.145291,60.395792,60.646293,60.896794,61.147295,61.397796,61.648297,61.898798,62.149299,62.3998,62.650301,62.900802,63.151303,63.401804,63.652305,63.902806,64.153307,64.403808,64.654309,64.90481,65.155311,65.405812,65.656313,65.906814,66.157315,66.407816,66.658317,66.908818,67.159319,67.40982,67.660321,67.910822,68.161323,68.411824,68.662325,68.912826,69.163327,69.413828,69.664329,69.91483,70.165331,70.415832,70.666333,70.916834,71.167335,71.417836,71.668337,71.918838,72.169339,72.41984,72.670341,72.920842,73.171343,73.421844,73.672345,73.922846,74.173347,74.423848,74.674349,74.92485,75.175351,75.425852,75.676353,75.926854,76.177355,76.427856,76.678357,76.928858,77.179359,77.42986,77.680361,77.930862,78.181363,78.431864,78.682365,78.932866,79.183367,79.433868,79.684369,79.93487,80.185371,80.435872,80.686373,80.936874,81.187375,81.437876,81.688377,81.938878,82.189379,82.43988,82.690381,82.940882,83.191383,83.441884,83.692385,83.942886,84.193387,84.443888,84.694389,84.94489,85.195391,85.445892,85.696393,85.946894,86.197395,86.447896,86.698397,86.948898,87.199399,87.4499,87.700401,87.950902,88.201403,88.451904,88.702405,88.952906,89.203407,89.453908,89.704409,89.95491,90.205411,90.455912,90.706413,90.956914,91.207415,91.457916,91.708417,91.958918,92.209419,92.45992,92.710421,92.960922,93.211423,93.461924,93.712425,93.962926,94.213427,94.463928,94.714429,94.96493,95.215431,95.465932,95.716433,95.966934,96.217435,96.467936,96.718437,96.968938,97.219439,97.46994,97.720441,97.970942,98.221443,98.471944,98.722445,98.972946,99.223447,99.473948,99.724449,99.97495,100.22545,100.47595,100.72645,100.97695,101.22745,101.47796,101.72846,101.97896,102.22946,102.47996,102.73046,102.98096,103.23146,103.48196,103.73246,103.98297,104.23347,104.48397,104.73447,104.98497,105.23547,105.48597,105.73647,105.98697,106.23747,106.48798,106.73848,106.98898,107.23948,107.48998,107.74048,107.99098,108.24148,108.49198,108.74248,108.99299,109.24349,109.49399,109.74449,109.99499,110.24549,110.49599,110.74649,110.99699,111.24749,111.498,111.7485,111.999,112.2495,112.5],"y":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"zorder":0,"type":"scatter"},{"customdata":[[9.9961017e-75],[3.1041248e-74],[9.6016175e-74],[2.9583283e-73],[9.0791473e-73],[2.7754953e-72],[8.4514777e-72],[2.5634304e-71],[7.7447456e-71],[2.3307168e-70],[6.9866436e-70],[2.0861446e-69],[6.2046451e-69],[1.8381723e-68],[5.4244065e-68],[1.5944649e-67],[4.6684685e-67],[1.3615407e-66],[3.9553376e-66],[1.1445459e-65],[3.2989794e-65],[9.4715865e-65],[2.7087105e-64],[7.7161235e-64],[2.1894371e-63],[6.1881742e-63],[1.7421651e-62],[4.8855427e-62],[1.364687e-61],[3.7970824e-61],[1.0523585e-60],[2.9051874e-60],[7.9887956e-60],[2.1881909e-59],[5.970158e-59],[1.6224943e-58],[4.3921511e-58],[1.1843173e-57],[3.1809411e-57],[8.5102028e-57],[2.2678844e-56],[6.0200301e-56],[1.5917437e-55],[4.1922226e-55],[1.0997963e-54],[2.8739349e-54],[7.4806326e-54],[1.9395298e-53],[5.0090032e-53],[1.2885548e-52],[3.3018034e-52],[8.4274515e-52],[2.1425849e-51],[5.4259596e-51],[1.3687111e-50],[3.4390918e-50],[8.6074097e-50],[2.1458428e-49],[5.3286853e-49],[1.3180715e-48],[3.2475407e-48],[7.9701585e-48],[1.9483907e-47],[4.7444062e-47],[1.1507591e-46],[2.780249e-46],[6.6908256e-46],[1.6038822e-45],[3.8296751e-45],[9.1085267e-45],[2.1578988e-44],[5.092262e-44],[1.1969807e-43],[2.8025945e-43],[6.5362722e-43],[1.5184368e-42],[3.5136625e-42],[8.0987893e-42],[1.8594174e-41],[4.2523636e-41],[9.6868069e-41],[2.1979997e-40],[4.9678826e-40],[1.1184376e-39],[2.5081236e-39],[5.6025125e-39],[1.2465608e-38],[2.7627452e-38],[6.0990883e-38],[1.3411759e-37],[2.937672e-37],[6.4094031e-37],[1.3929278e-36],[3.0153404e-36],[6.5019082e-36],[1.3965035e-35],[2.9877206e-35],[6.3669971e-35],[1.3515311e-34],[2.8576839e-34],[6.0186495e-34],[1.2626432e-33],[2.6385114e-33],[5.4920443e-33],[1.1386908e-32],[2.351659e-32],[4.8377073e-32],[9.9129193e-32],[2.0233e-31],[4.11354e-31],[8.3304392e-31],[1.680416e-30],[3.3764664e-30],[6.7577917e-30],[1.3472367e-29],[2.6753446e-29],[5.291908e-29],[1.0426573e-28],[2.046292e-28],[4.0002796e-28],[7.7895045e-28],[1.5108663e-27],[2.9190329e-27],[5.6175722e-27],[1.0768497e-26],[2.0561662e-26],[3.9107322e-26],[7.4089161e-26],[1.3981315e-25],[2.6280769e-25],[4.920677e-25],[9.1771617e-25],[1.7048597e-24],[3.1547549e-24],[5.814861e-24],[1.067603e-23],[1.9524367e-23],[3.5566479e-23],[6.453592e-23],[1.1664305e-22],[2.0999695e-22],[3.7658569e-22],[6.7268442e-22],[1.1968939e-21],[2.1212736e-21],[3.7448502e-21],[6.5851994e-21],[1.1534537e-20],[2.0124639e-20],[3.4974602e-20],[6.0544429e-20],[1.0439804e-19],[1.7931111e-19],[3.0677418e-19],[5.2278984e-19],[8.8742611e-19],[1.5004931e-18],[2.5271587e-18],[4.2396283e-18],[7.0846723e-18],[1.1792571e-17],[1.9552124e-17],[3.22906e-17],[5.3119629e-17],[8.7042364e-17],[1.4207022e-16],[2.3097882e-16],[3.7405717e-16],[6.033934e-16],[9.6952688e-16],[1.551729e-15],[2.4738231e-15],[3.928422e-15],[6.2139013e-15],[9.7905549e-15],[1.536551e-14],[2.4020575e-14],[3.7403871e-14],[5.8015818e-14],[8.9634052e-14],[1.3794195e-13],[2.1145426e-13],[3.2287412e-13],[4.910738e-13],[7.4397275e-13],[1.1227008e-12],[1.6875931e-12],[2.5267845e-12],[3.7684728e-12],[5.5983403e-12],[8.284188e-12],[1.2210609e-11],[1.792757e-11],[2.6218164e-11],[3.8192654e-11],[5.541842e-11],[8.0098646e-11],[1.1531689e-10],[1.6537027e-10],[2.3622108e-10],[3.3610627e-10],[4.7635563e-10],[6.7248518e-10],[9.4565096e-10],[1.3245725e-09],[1.8480655e-09],[2.5683588e-09],[3.5554188e-09],[4.9025561e-09],[6.7336588e-09],[9.2124761e-09],[1.255447e-08],[1.7041864e-08],[2.3042657e-08],[3.1034499e-08],[4.163453e-08],[5.5636437e-08],[7.4056246e-08],[9.8188541e-08],[1.2967512e-07],[1.7058829e-07],[2.235314e-07],[2.917592e-07],[3.7932139e-07],[4.912322e-07],[6.3366987e-07],[8.1420923e-07],[1.0420912e-06],[1.3285323e-06],[1.6870785e-06],[2.1340037e-06],[2.6887584e-06],[3.3744665e-06],[4.2184723e-06],[5.2529348e-06],[6.515467e-06],[8.0498135e-06],[9.9065587e-06],[1.2143854e-05],[1.4828151e-05],[1.8034919e-05],[2.184933e-05],[2.6366882e-05],[3.1693935e-05],[3.7948121e-05],[4.5258601e-05],[5.3766121e-05],[6.3622835e-05],[7.4991848e-05],[8.8046445e-05],[0.00010296896],[0.00011994926],[0.00013918279],[0.00016086821],[0.00018520455],[0.00021238792],[0.00024260776],[0.00027604273],[0.00031285612],[0.00035319109],[0.00039716553],[0.0004448669],[0.00049634696],[0.00055161665],[0.0006106412],[0.00067333559],[0.0007395606],[0.00080911955],[0.00088175586],[0.00095715163],[0.0010349274],[0.0011146428],[0.0011957993],[0.0012778434],[0.0013601715],[0.0014421368],[0.0015230564],[0.0016022203],[0.0016789015],[0.0017523665],[0.001821887],[0.0018867513],[0.0019462769],[0.0019998221],[0.0020467975],[0.0020866768],[0.0021190065],[0.0021434149],[0.0021596187],[0.0021674289],[0.0021667542],[0.002157603],[0.0021400834],[0.0021144008],[0.0020808541],[0.0020398303],[0.0019917968],[0.0019372928],[0.0018769197],[0.00181133],[0.0017412161],[0.0016672985],[0.001590314],[0.0015110043],[0.0014301051],[0.0013483355],[0.0012663891],[0.0011849259],[0.0011045654],[0.001025881],[0.00094939683],[0.00087558456],[0.0008048629],[0.00073759798],[0.00067410519],[0.00061465218],[0.00055946304],[0.00050872334],[0.00046258591],[0.00042117733],[0.00038460467],[0.00035296256],[0.00032634032],[0.00030482891],[0.00028852764],[0.00027755051],[0.00027203194],[0.00027213181],[0.00027803983],[0.00028997894],[0.00030820786],[0.00033302262],[0.0003647571],[0.00040378255],[0.00045050609],[0.00050536823],[0.00056883941],[0.00064141577],[0.000723614],[0.00081596565],[0.00091901078],[0.0010332913],[0.0011593439],[0.0012976932],[0.0014488444],[0.0016132769],[0.0017914378],[0.0019837359],[0.002190537],[0.002412159],[0.002648869],[0.0029008807],[0.0031683526],[0.0034513877],[0.0037500339],[0.004064285],[0.004394083],[0.0047393207],[0.0050998446],[0.0054754586],[0.005865928],[0.0062709828],[0.0066903222],[0.0071236175],[0.0075705164],[0.0080306459],[0.0085036156],[0.0089890209],[0.0094864457],[0.0099954659],[0.010515653],[0.011046577],[0.011587812],[0.012138942],[0.012699566],[0.013269304],[0.013847811],[0.014434779],[0.015029956],[0.015633151],[0.016244252],[0.016863236],[0.017490187],[0.018125306],[0.018768926],[0.019421524],[0.020083735],[0.020756356],[0.021440356],[0.022136879],[0.022847245],[0.023572943],[0.024315622],[0.025077082],[0.02585925],[0.026664156],[0.027493905],[0.028350641],[0.0292365],[0.030153569],[0.031103829],[0.032089098],[0.033110971],[0.034170755],[0.035269397],[0.03640742],[0.037584854],[0.038801165],[0.040055192],[0.04134509],[0.042668273],[0.044021371],[0.045400197],[0.046799721],[0.048214062],[0.049636495],[0.051059471],[0.052474655],[0.053872985],[0.055244743],[0.056579649],[0.057866967],[0.059095628],[0.060254365],[0.061331868],[0.062316932],[0.063198627],[0.063966464],[0.064610556],[0.065121785],[0.065491957],[0.065713943],[0.065781811],[0.065690939],[0.065438112],[0.065021588],[0.064441153],[0.06369814],[0.062795433],[0.061737434],[0.06053002],[0.059180458],[0.057697318],[0.056090345],[0.054370335],[0.052548975],[0.050638687],[0.048652458],[0.046603661],[0.044505884],[0.042372749],[0.040217748],[0.038054074],[0.035894477],[0.033751119],[0.031635455],[0.029558125],[0.027528864],[0.025556432],[0.023648566],[0.021811941],[0.020052159],[0.018373752],[0.016780202],[0.01527397],[0.01385655],[0.012528521],[0.011289618],[0.010138804],[0.0090743546],[0.0080939386],[0.0071947035],[0.0063733618],[0.0056262741],[0.0049495297],[0.0043390227],[0.0037905236],[0.003299744],[0.0028623957],[0.0024742421],[0.0021311435],[0.0018290946],[0.0015642557],[0.0013329771],[0.0011318175],[0.00095755646],[0.0008072022],[0.00067799425],[0.00056740262],[0.0004731233],[0.00039307117],[0.0003253705],[0.00026834388],[0.00022049984],[0.00018051969],[0.00014724391],[0.00011965846],[9.6881268e-05],[7.814903e-05],[6.2804671e-05]],"fill":"tonexty","fillcolor":"rgba(253, 231, 37, 0.65)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Almost Certainly","x":[-12.5,-12.249499,-11.998998,-11.748497,-11.497996,-11.247495,-10.996994,-10.746493,-10.495992,-10.245491,-9.99499,-9.744489,-9.493988,-9.243487,-8.992986,-8.742485,-8.491984,-8.241483,-7.990982,-7.740481,-7.48998,-7.239479,-6.988978,-6.738477,-6.487976,-6.2374749,-5.9869739,-5.7364729,-5.4859719,-5.2354709,-4.9849699,-4.7344689,-4.4839679,-4.2334669,-3.9829659,-3.7324649,-3.4819639,-3.2314629,-2.9809619,-2.7304609,-2.4799599,-2.2294589,-1.9789579,-1.7284569,-1.4779559,-1.2274549,-0.97695391,-0.72645291,-0.4759519,-0.2254509,0.0250501,0.2755511,0.5260521,0.77655311,1.0270541,1.2775551,1.5280561,1.7785571,2.0290581,2.2795591,2.5300601,2.7805611,3.0310621,3.2815631,3.5320641,3.7825651,4.0330661,4.2835671,4.5340681,4.7845691,5.0350701,5.2855711,5.5360721,5.7865731,6.0370741,6.2875752,6.5380762,6.7885772,7.0390782,7.2895792,7.5400802,7.7905812,8.0410822,8.2915832,8.5420842,8.7925852,9.0430862,9.2935872,9.5440882,9.7945892,10.04509,10.295591,10.546092,10.796593,11.047094,11.297595,11.548096,11.798597,12.049098,12.299599,12.5501,12.800601,13.051102,13.301603,13.552104,13.802605,14.053106,14.303607,14.554108,14.804609,15.05511,15.305611,15.556112,15.806613,16.057114,16.307615,16.558116,16.808617,17.059118,17.309619,17.56012,17.810621,18.061122,18.311623,18.562124,18.812625,19.063126,19.313627,19.564128,19.814629,20.06513,20.315631,20.566132,20.816633,21.067134,21.317635,21.568136,21.818637,22.069138,22.319639,22.57014,22.820641,23.071142,23.321643,23.572144,23.822645,24.073146,24.323647,24.574148,24.824649,25.07515,25.325651,25.576152,25.826653,26.077154,26.327655,26.578156,26.828657,27.079158,27.329659,27.58016,27.830661,28.081162,28.331663,28.582164,28.832665,29.083166,29.333667,29.584168,29.834669,30.08517,30.335671,30.586172,30.836673,31.087174,31.337675,31.588176,31.838677,32.089178,32.339679,32.59018,32.840681,33.091182,33.341683,33.592184,33.842685,34.093186,34.343687,34.594188,34.844689,35.09519,35.345691,35.596192,35.846693,36.097194,36.347695,36.598196,36.848697,37.099198,37.349699,37.6002,37.850701,38.101202,38.351703,38.602204,38.852705,39.103206,39.353707,39.604208,39.854709,40.10521,40.355711,40.606212,40.856713,41.107214,41.357715,41.608216,41.858717,42.109218,42.359719,42.61022,42.860721,43.111222,43.361723,43.612224,43.862725,44.113226,44.363727,44.614228,44.864729,45.11523,45.365731,45.616232,45.866733,46.117234,46.367735,46.618236,46.868737,47.119238,47.369739,47.62024,47.870741,48.121242,48.371743,48.622244,48.872745,49.123246,49.373747,49.624248,49.874749,50.125251,50.375752,50.626253,50.876754,51.127255,51.377756,51.628257,51.878758,52.129259,52.37976,52.630261,52.880762,53.131263,53.381764,53.632265,53.882766,54.133267,54.383768,54.634269,54.88477,55.135271,55.385772,55.636273,55.886774,56.137275,56.387776,56.638277,56.888778,57.139279,57.38978,57.640281,57.890782,58.141283,58.391784,58.642285,58.892786,59.143287,59.393788,59.644289,59.89479,60.145291,60.395792,60.646293,60.896794,61.147295,61.397796,61.648297,61.898798,62.149299,62.3998,62.650301,62.900802,63.151303,63.401804,63.652305,63.902806,64.153307,64.403808,64.654309,64.90481,65.155311,65.405812,65.656313,65.906814,66.157315,66.407816,66.658317,66.908818,67.159319,67.40982,67.660321,67.910822,68.161323,68.411824,68.662325,68.912826,69.163327,69.413828,69.664329,69.91483,70.165331,70.415832,70.666333,70.916834,71.167335,71.417836,71.668337,71.918838,72.169339,72.41984,72.670341,72.920842,73.171343,73.421844,73.672345,73.922846,74.173347,74.423848,74.674349,74.92485,75.175351,75.425852,75.676353,75.926854,76.177355,76.427856,76.678357,76.928858,77.179359,77.42986,77.680361,77.930862,78.181363,78.431864,78.682365,78.932866,79.183367,79.433868,79.684369,79.93487,80.185371,80.435872,80.686373,80.936874,81.187375,81.437876,81.688377,81.938878,82.189379,82.43988,82.690381,82.940882,83.191383,83.441884,83.692385,83.942886,84.193387,84.443888,84.694389,84.94489,85.195391,85.445892,85.696393,85.946894,86.197395,86.447896,86.698397,86.948898,87.199399,87.4499,87.700401,87.950902,88.201403,88.451904,88.702405,88.952906,89.203407,89.453908,89.704409,89.95491,90.205411,90.455912,90.706413,90.956914,91.207415,91.457916,91.708417,91.958918,92.209419,92.45992,92.710421,92.960922,93.211423,93.461924,93.712425,93.962926,94.213427,94.463928,94.714429,94.96493,95.215431,95.465932,95.716433,95.966934,96.217435,96.467936,96.718437,96.968938,97.219439,97.46994,97.720441,97.970942,98.221443,98.471944,98.722445,98.972946,99.223447,99.473948,99.724449,99.97495,100.22545,100.47595,100.72645,100.97695,101.22745,101.47796,101.72846,101.97896,102.22946,102.47996,102.73046,102.98096,103.23146,103.48196,103.73246,103.98297,104.23347,104.48397,104.73447,104.98497,105.23547,105.48597,105.73647,105.98697,106.23747,106.48798,106.73848,106.98898,107.23948,107.48998,107.74048,107.99098,108.24148,108.49198,108.74248,108.99299,109.24349,109.49399,109.74449,109.99499,110.24549,110.49599,110.74649,110.99699,111.24749,111.498,111.7485,111.999,112.2495,112.5],"y":[9.9961017e-75,3.1041248e-74,9.6016175e-74,2.9583283e-73,9.0791473e-73,2.7754953e-72,8.4514777e-72,2.5634304e-71,7.7447456e-71,2.3307168e-70,6.9866436e-70,2.0861446e-69,6.2046451e-69,1.8381723e-68,5.4244065e-68,1.5944649e-67,4.6684685e-67,1.3615407e-66,3.9553376e-66,1.1445459e-65,3.2989794e-65,9.4715865e-65,2.7087105e-64,7.7161235e-64,2.1894371e-63,6.1881742e-63,1.7421651e-62,4.8855427e-62,1.364687e-61,3.7970824e-61,1.0523585e-60,2.9051874e-60,7.9887956e-60,2.1881909e-59,5.970158e-59,1.6224943e-58,4.3921511e-58,1.1843173e-57,3.1809411e-57,8.5102028e-57,2.2678844e-56,6.0200301e-56,1.5917437e-55,4.1922226e-55,1.0997963e-54,2.8739349e-54,7.4806326e-54,1.9395298e-53,5.0090032e-53,1.2885548e-52,3.3018034e-52,8.4274515e-52,2.1425849e-51,5.4259596e-51,1.3687111e-50,3.4390918e-50,8.6074097e-50,2.1458428e-49,5.3286853e-49,1.3180715e-48,3.2475407e-48,7.9701585e-48,1.9483907e-47,4.7444062e-47,1.1507591e-46,2.780249e-46,6.6908256e-46,1.6038822e-45,3.8296751e-45,9.1085267e-45,2.1578988e-44,5.092262e-44,1.1969807e-43,2.8025945e-43,6.5362722e-43,1.5184368e-42,3.5136625e-42,8.0987893e-42,1.8594174e-41,4.2523636e-41,9.6868069e-41,2.1979997e-40,4.9678826e-40,1.1184376e-39,2.5081236e-39,5.6025125e-39,1.2465608e-38,2.7627452e-38,6.0990883e-38,1.3411759e-37,2.937672e-37,6.4094031e-37,1.3929278e-36,3.0153404e-36,6.5019082e-36,1.3965035e-35,2.9877206e-35,6.3669971e-35,1.3515311e-34,2.8576839e-34,6.0186495e-34,1.2626432e-33,2.6385114e-33,5.4920443e-33,1.1386908e-32,2.351659e-32,4.8377073e-32,9.9129193e-32,2.0233e-31,4.11354e-31,8.3304392e-31,1.680416e-30,3.3764664e-30,6.7577917e-30,1.3472367e-29,2.6753446e-29,5.291908e-29,1.0426573e-28,2.046292e-28,4.0002796e-28,7.7895045e-28,1.5108663e-27,2.9190329e-27,5.6175722e-27,1.0768497e-26,2.0561662e-26,3.9107322e-26,7.4089161e-26,1.3981315e-25,2.6280769e-25,4.920677e-25,9.1771617e-25,1.7048597e-24,3.1547549e-24,5.814861e-24,1.067603e-23,1.9524367e-23,3.5566479e-23,6.453592e-23,1.1664305e-22,2.0999695e-22,3.7658569e-22,6.7268442e-22,1.1968939e-21,2.1212736e-21,3.7448502e-21,6.5851994e-21,1.1534537e-20,2.0124639e-20,3.4974602e-20,6.0544429e-20,1.0439804e-19,1.7931111e-19,3.0677418e-19,5.2278984e-19,8.8742611e-19,1.5004931e-18,2.5271587e-18,4.2396283e-18,7.0846723e-18,1.1792571e-17,1.9552124e-17,3.22906e-17,5.3119629e-17,8.7042364e-17,1.4207022e-16,2.3097882e-16,3.7405717e-16,6.033934e-16,9.6952688e-16,1.551729e-15,2.4738231e-15,3.928422e-15,6.2139013e-15,9.7905549e-15,1.536551e-14,2.4020575e-14,3.7403871e-14,5.8015818e-14,8.9634052e-14,1.3794195e-13,2.1145426e-13,3.2287412e-13,4.910738e-13,7.4397275e-13,1.1227008e-12,1.6875931e-12,2.5267845e-12,3.7684728e-12,5.5983403e-12,8.284188e-12,1.2210609e-11,1.792757e-11,2.6218164e-11,3.8192654e-11,5.541842e-11,8.0098646e-11,1.1531689e-10,1.6537027e-10,2.3622108e-10,3.3610627e-10,4.7635563e-10,6.7248518e-10,9.4565096e-10,1.3245725e-09,1.8480655e-09,2.5683588e-09,3.5554188e-09,4.9025561e-09,6.7336588e-09,9.2124761e-09,1.255447e-08,1.7041864e-08,2.3042657e-08,3.1034499e-08,4.163453e-08,5.5636437e-08,7.4056246e-08,9.8188541e-08,1.2967512e-07,1.7058829e-07,2.235314e-07,2.917592e-07,3.7932139e-07,4.912322e-07,6.3366987e-07,8.1420923e-07,1.0420912e-06,1.3285323e-06,1.6870785e-06,2.1340037e-06,2.6887584e-06,3.3744665e-06,4.2184723e-06,5.2529348e-06,6.515467e-06,8.0498135e-06,9.9065587e-06,1.2143854e-05,1.4828151e-05,1.8034919e-05,2.184933e-05,2.6366882e-05,3.1693935e-05,3.7948121e-05,4.5258601e-05,5.3766121e-05,6.3622835e-05,7.4991848e-05,8.8046445e-05,0.00010296896,0.00011994926,0.00013918279,0.00016086821,0.00018520455,0.00021238792,0.00024260776,0.00027604273,0.00031285612,0.00035319109,0.00039716553,0.0004448669,0.00049634696,0.00055161665,0.0006106412,0.00067333559,0.0007395606,0.00080911955,0.00088175586,0.00095715163,0.0010349274,0.0011146428,0.0011957993,0.0012778434,0.0013601715,0.0014421368,0.0015230564,0.0016022203,0.0016789015,0.0017523665,0.001821887,0.0018867513,0.0019462769,0.0019998221,0.0020467975,0.0020866768,0.0021190065,0.0021434149,0.0021596187,0.0021674289,0.0021667542,0.002157603,0.0021400834,0.0021144008,0.0020808541,0.0020398303,0.0019917968,0.0019372928,0.0018769197,0.00181133,0.0017412161,0.0016672985,0.001590314,0.0015110043,0.0014301051,0.0013483355,0.0012663891,0.0011849259,0.0011045654,0.001025881,0.00094939683,0.00087558456,0.0008048629,0.00073759798,0.00067410519,0.00061465218,0.00055946304,0.00050872334,0.00046258591,0.00042117733,0.00038460467,0.00035296256,0.00032634032,0.00030482891,0.00028852764,0.00027755051,0.00027203194,0.00027213181,0.00027803983,0.00028997894,0.00030820786,0.00033302262,0.0003647571,0.00040378255,0.00045050609,0.00050536823,0.00056883941,0.00064141577,0.000723614,0.00081596565,0.00091901078,0.0010332913,0.0011593439,0.0012976932,0.0014488444,0.0016132769,0.0017914378,0.0019837359,0.002190537,0.002412159,0.002648869,0.0029008807,0.0031683526,0.0034513877,0.0037500339,0.004064285,0.004394083,0.0047393207,0.0050998446,0.0054754586,0.005865928,0.0062709828,0.0066903222,0.0071236175,0.0075705164,0.0080306459,0.0085036156,0.0089890209,0.0094864457,0.0099954659,0.010515653,0.011046577,0.011587812,0.012138942,0.012699566,0.013269304,0.013847811,0.014434779,0.015029956,0.015633151,0.016244252,0.016863236,0.017490187,0.018125306,0.018768926,0.019421524,0.020083735,0.020756356,0.021440356,0.022136879,0.022847245,0.023572943,0.024315622,0.025077082,0.02585925,0.026664156,0.027493905,0.028350641,0.0292365,0.030153569,0.031103829,0.032089098,0.033110971,0.034170755,0.035269397,0.03640742,0.037584854,0.038801165,0.040055192,0.04134509,0.042668273,0.044021371,0.045400197,0.046799721,0.048214062,0.049636495,0.051059471,0.052474655,0.053872985,0.055244743,0.056579649,0.057866967,0.059095628,0.060254365,0.061331868,0.062316932,0.063198627,0.063966464,0.064610556,0.065121785,0.065491957,0.065713943,0.065781811,0.065690939,0.065438112,0.065021588,0.064441153,0.06369814,0.062795433,0.061737434,0.06053002,0.059180458,0.057697318,0.056090345,0.054370335,0.052548975,0.050638687,0.048652458,0.046603661,0.044505884,0.042372749,0.040217748,0.038054074,0.035894477,0.033751119,0.031635455,0.029558125,0.027528864,0.025556432,0.023648566,0.021811941,0.020052159,0.018373752,0.016780202,0.01527397,0.01385655,0.012528521,0.011289618,0.010138804,0.0090743546,0.0080939386,0.0071947035,0.0063733618,0.0056262741,0.0049495297,0.0043390227,0.0037905236,0.003299744,0.0028623957,0.0024742421,0.0021311435,0.0018290946,0.0015642557,0.0013329771,0.0011318175,0.00095755646,0.0008072022,0.00067799425,0.00056740262,0.0004731233,0.00039307117,0.0003253705,0.00026834388,0.00022049984,0.00018051969,0.00014724391,0.00011965846,9.6881268e-05,7.814903e-05,6.2804671e-05],"zorder":0,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-12.5,-12.249499,-11.998998,-11.748497,-11.497996,-11.247495,-10.996994,-10.746493,-10.495992,-10.245491,-9.99499,-9.744489,-9.493988,-9.243487,-8.992986,-8.742485,-8.491984,-8.241483,-7.990982,-7.740481,-7.48998,-7.239479,-6.988978,-6.738477,-6.487976,-6.2374749,-5.9869739,-5.7364729,-5.4859719,-5.2354709,-4.9849699,-4.7344689,-4.4839679,-4.2334669,-3.9829659,-3.7324649,-3.4819639,-3.2314629,-2.9809619,-2.7304609,-2.4799599,-2.2294589,-1.9789579,-1.7284569,-1.4779559,-1.2274549,-0.97695391,-0.72645291,-0.4759519,-0.2254509,0.0250501,0.2755511,0.5260521,0.77655311,1.0270541,1.2775551,1.5280561,1.7785571,2.0290581,2.2795591,2.5300601,2.7805611,3.0310621,3.2815631,3.5320641,3.7825651,4.0330661,4.2835671,4.5340681,4.7845691,5.0350701,5.2855711,5.5360721,5.7865731,6.0370741,6.2875752,6.5380762,6.7885772,7.0390782,7.2895792,7.5400802,7.7905812,8.0410822,8.2915832,8.5420842,8.7925852,9.0430862,9.2935872,9.5440882,9.7945892,10.04509,10.295591,10.546092,10.796593,11.047094,11.297595,11.548096,11.798597,12.049098,12.299599,12.5501,12.800601,13.051102,13.301603,13.552104,13.802605,14.053106,14.303607,14.554108,14.804609,15.05511,15.305611,15.556112,15.806613,16.057114,16.307615,16.558116,16.808617,17.059118,17.309619,17.56012,17.810621,18.061122,18.311623,18.562124,18.812625,19.063126,19.313627,19.564128,19.814629,20.06513,20.315631,20.566132,20.816633,21.067134,21.317635,21.568136,21.818637,22.069138,22.319639,22.57014,22.820641,23.071142,23.321643,23.572144,23.822645,24.073146,24.323647,24.574148,24.824649,25.07515,25.325651,25.576152,25.826653,26.077154,26.327655,26.578156,26.828657,27.079158,27.329659,27.58016,27.830661,28.081162,28.331663,28.582164,28.832665,29.083166,29.333667,29.584168,29.834669,30.08517,30.335671,30.586172,30.836673,31.087174,31.337675,31.588176,31.838677,32.089178,32.339679,32.59018,32.840681,33.091182,33.341683,33.592184,33.842685,34.093186,34.343687,34.594188,34.844689,35.09519,35.345691,35.596192,35.846693,36.097194,36.347695,36.598196,36.848697,37.099198,37.349699,37.6002,37.850701,38.101202,38.351703,38.602204,38.852705,39.103206,39.353707,39.604208,39.854709,40.10521,40.355711,40.606212,40.856713,41.107214,41.357715,41.608216,41.858717,42.109218,42.359719,42.61022,42.860721,43.111222,43.361723,43.612224,43.862725,44.113226,44.363727,44.614228,44.864729,45.11523,45.365731,45.616232,45.866733,46.117234,46.367735,46.618236,46.868737,47.119238,47.369739,47.62024,47.870741,48.121242,48.371743,48.622244,48.872745,49.123246,49.373747,49.624248,49.874749,50.125251,50.375752,50.626253,50.876754,51.127255,51.377756,51.628257,51.878758,52.129259,52.37976,52.630261,52.880762,53.131263,53.381764,53.632265,53.882766,54.133267,54.383768,54.634269,54.88477,55.135271,55.385772,55.636273,55.886774,56.137275,56.387776,56.638277,56.888778,57.139279,57.38978,57.640281,57.890782,58.141283,58.391784,58.642285,58.892786,59.143287,59.393788,59.644289,59.89479,60.145291,60.395792,60.646293,60.896794,61.147295,61.397796,61.648297,61.898798,62.149299,62.3998,62.650301,62.900802,63.151303,63.401804,63.652305,63.902806,64.153307,64.403808,64.654309,64.90481,65.155311,65.405812,65.656313,65.906814,66.157315,66.407816,66.658317,66.908818,67.159319,67.40982,67.660321,67.910822,68.161323,68.411824,68.662325,68.912826,69.163327,69.413828,69.664329,69.91483,70.165331,70.415832,70.666333,70.916834,71.167335,71.417836,71.668337,71.918838,72.169339,72.41984,72.670341,72.920842,73.171343,73.421844,73.672345,73.922846,74.173347,74.423848,74.674349,74.92485,75.175351,75.425852,75.676353,75.926854,76.177355,76.427856,76.678357,76.928858,77.179359,77.42986,77.680361,77.930862,78.181363,78.431864,78.682365,78.932866,79.183367,79.433868,79.684369,79.93487,80.185371,80.435872,80.686373,80.936874,81.187375,81.437876,81.688377,81.938878,82.189379,82.43988,82.690381,82.940882,83.191383,83.441884,83.692385,83.942886,84.193387,84.443888,84.694389,84.94489,85.195391,85.445892,85.696393,85.946894,86.197395,86.447896,86.698397,86.948898,87.199399,87.4499,87.700401,87.950902,88.201403,88.451904,88.702405,88.952906,89.203407,89.453908,89.704409,89.95491,90.205411,90.455912,90.706413,90.956914,91.207415,91.457916,91.708417,91.958918,92.209419,92.45992,92.710421,92.960922,93.211423,93.461924,93.712425,93.962926,94.213427,94.463928,94.714429,94.96493,95.215431,95.465932,95.716433,95.966934,96.217435,96.467936,96.718437,96.968938,97.219439,97.46994,97.720441,97.970942,98.221443,98.471944,98.722445,98.972946,99.223447,99.473948,99.724449,99.97495,100.22545,100.47595,100.72645,100.97695,101.22745,101.47796,101.72846,101.97896,102.22946,102.47996,102.73046,102.98096,103.23146,103.48196,103.73246,103.98297,104.23347,104.48397,104.73447,104.98497,105.23547,105.48597,105.73647,105.98697,106.23747,106.48798,106.73848,106.98898,107.23948,107.48998,107.74048,107.99098,108.24148,108.49198,108.74248,108.99299,109.24349,109.49399,109.74449,109.99499,110.24549,110.49599,110.74649,110.99699,111.24749,111.498,111.7485,111.999,112.2495,112.5],"y":[-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891],"zorder":1,"type":"scatter"},{"customdata":[[6.6229846e-85],[2.2241266e-84],[7.4398124e-84],[2.4789125e-83],[8.2272965e-83],[2.7198805e-82],[8.9565187e-82],[2.9378213e-81],[9.5986078e-81],[3.1238333e-80],[1.0126612e-79],[3.2699209e-79],[1.0517367e-78],[3.3695629e-78],[1.0753178e-77],[3.4181948e-77],[1.0823146e-76],[3.4135556e-76],[1.0724009e-75],[3.3558618e-75],[1.0460386e-74],[3.247791e-74],[1.0044427e-73],[3.0942758e-73],[9.4948823e-73],[2.9021301e-72],[8.8356989e-72],[2.6795488e-71],[8.0942974e-71],[2.4355294e-70],[7.2996885e-70],[2.1792749e-69],[6.480618e-69],[1.9196302e-68],[5.6638982e-68],[1.6646006e-67],[4.8730558e-67],[1.4209849e-66],[4.127378e-66],[1.1941415e-65],[3.4413911e-65],[9.87891e-65],[2.8247548e-64],[8.0454289e-64],[2.2825189e-63],[6.4502464e-63],[1.8156618e-62],[5.0908503e-62],[1.4218128e-61],[3.9554078e-61],[1.0960663e-60],[3.0253745e-60],[8.3179857e-60],[2.2780011e-59],[6.2142172e-59],[1.6885567e-58],[4.5702674e-58],[1.232152e-57],[3.3089005e-57],[8.8511532e-57],[2.3583743e-56],[6.2592507e-56],[1.6547359e-55],[4.3574434e-55],[1.1429614e-54],[2.9862633e-54],[7.7717954e-54],[2.0147045e-53],[5.2023322e-53],[1.3380783e-52],[3.4281651e-52],[8.7486017e-52],[2.2238848e-51],[5.630963e-51],[1.4202009e-50],[3.5679078e-50],[8.9284116e-50],[2.22552e-49],[5.5256776e-49],[1.3665839e-48],[3.3665402e-48],[8.2609128e-48],[2.0191519e-47],[4.9159413e-47],[1.192178e-46],[2.8798659e-46],[6.929472e-46],[1.6608284e-45],[3.9650266e-45],[9.4289685e-45],[2.2334642e-44],[5.2697563e-44],[1.238508e-43],[2.8993711e-43],[6.7609159e-43],[1.5703773e-42],[3.6332827e-42],[8.3731934e-42],[1.9221168e-41],[4.3950636e-41],[1.0010304e-40],[2.2710471e-40],[5.1321781e-40],[1.1552448e-39],[2.5902583e-39],[5.7850731e-39],[1.2869787e-38],[2.8518758e-38],[6.2948672e-38],[1.3840102e-37],[3.0310194e-37],[6.6120309e-37],[1.4367386e-36],[3.1096922e-36],[6.704305e-36],[1.4397492e-35],[3.0797587e-35],[6.562106e-35],[1.3927287e-34],[2.9443305e-34],[6.2001659e-34],[1.3005193e-33],[2.7172339e-33],[5.6550178e-33],[1.172297e-32],[2.4206839e-32],[4.978921e-32],[1.020068e-31],[2.0817077e-31],[4.2316243e-31],[8.5682315e-31],[1.7281125e-30],[3.471759e-30],[6.9474251e-30],[1.384825e-29],[2.7495566e-29],[5.4378494e-29],[1.071244e-28],[2.1020662e-28],[4.1086686e-28],[7.9993108e-28],[1.5513178e-27],[2.9967168e-27],[5.7661692e-27],[1.1051616e-26],[2.1098956e-26],[4.0122951e-26],[7.6001386e-26],[1.4339926e-25],[2.6950638e-25],[5.0453109e-25],[9.4081358e-25],[1.7474951e-24],[3.2331445e-24],[5.9584185e-24],[1.0937893e-23],[2.0000142e-23],[3.642749e-23],[6.6087935e-23],[1.1942957e-22],[2.1498014e-22],[3.8546202e-22],[6.8843289e-22],[1.2247245e-21],[2.1702611e-21],[3.8307371e-21],[6.7351846e-21],[1.1795421e-20],[2.0576628e-20],[3.5754587e-20],[6.1885106e-20],[1.0669334e-19],[1.8322526e-19],[3.1342252e-19],[5.3403768e-19],[9.0638029e-19],[1.5323073e-18],[2.5803473e-18],[4.3282001e-18],[7.2315834e-18],[1.2035285e-17],[1.9951534e-17],[3.2945275e-17],[5.4188476e-17],[8.8780527e-17],[1.4488569e-16],[2.3552136e-16],[3.8135737e-16],[6.1507922e-16],[9.8815952e-16],[1.5813215e-15],[2.520638e-15],[4.0021923e-15],[6.3296932e-15],[9.9715952e-15],[1.5647463e-14],[2.445798e-14],[3.8079799e-14],[5.9056293e-14],[9.1229489e-14],[1.4037892e-13],[2.1516231e-13],[3.2849462e-13],[4.9956055e-13],[7.5673866e-13],[1.1418307e-12],[1.7161514e-12],[2.569258e-12],[3.8314061e-12],[5.6912429e-12],[8.4208255e-12],[1.2410835e-11],[1.8219911e-11],[2.6643459e-11],[3.8809163e-11],[5.6308955e-11],[8.1380509e-11],[1.1715567e-10],[1.6799892e-10],[2.3996628e-10],[3.4142457e-10],[4.8388318e-10],[6.8310555e-10],[9.6058776e-10],[1.3455153e-09],[1.8773405e-09],[2.6091603e-09],[3.6121213e-09],[4.981135e-09],[6.8422564e-09],[9.3621608e-09],[1.2760253e-08],[1.7324062e-08],[2.3428704e-08],[3.1561367e-08],[4.2351944e-08],[5.661115e-08],[7.5377691e-08],[9.9976327e-08],[1.3208891e-07],[1.7384086e-07],[2.2790573e-07],[2.9763104e-07],[3.8718865e-07],[5.0175353e-07],[6.4771479e-07],[8.3292341e-07],[1.066981e-06],[1.3615744e-06],[1.7308605e-06],[2.1919055e-06],[2.7651844e-06],[3.4751414e-06],[4.3508179e-06],[5.4265475e-06],[6.7427201e-06],[8.346615e-06],[1.02933e-05],[1.2646592e-05],[1.5480079e-05],[1.8878181e-05],[2.2937256e-05],[2.7766725e-05],[3.3490209e-05],[4.0246651e-05],[4.8191409e-05],[5.74973e-05],[6.835557e-05],[8.0976755e-05],[9.5591441e-05],[0.00011245087],[0.00013182737],[0.00015401466],[0.00017932792],[0.00020810366],[0.00024069945],[0.00027749342],[0.00031888362],[0.00036528718],[0.0004171394],[0.00047489278],[0.00053901591],[0.00060999249],[0.00068832032],[0.00077451046],[0.0008690865],[0.00097258411],[0.0010855508],[0.0012085458],[0.0013421409],[0.0014869207],[0.0016434835],[0.0018124433],[0.0019944307],[0.002190095],[0.0024001062],[0.0026251567],[0.0028659639],[0.0031232712],[0.0033978505],[0.0036905028],[0.0040020591],[0.0043333809],[0.004685359],[0.0050589126],[0.0054549865],[0.0058745476],[0.0063185805],[0.0067880811],[0.0072840497],[0.0078074819],[0.0083593588],[0.0089406347],[0.0095522245],[0.010194989],[0.010869717],[0.011577111],[0.012317765],[0.013092148],[0.013900578],[0.014743209],[0.01562],[0.0165307],[0.017474827],[0.018451646],[0.019460152],[0.020499058],[0.021566779],[0.022661424],[0.023780796],[0.024922385],[0.026083382],[0.027260681],[0.028450904],[0.029650417],[0.030855359],[0.032061677],[0.033265157],[0.034461472],[0.035646217],[0.036814962],[0.03796329],[0.039086849],[0.040181392],[0.04124282],[0.042267216],[0.043250881],[0.044190363],[0.045082475],[0.045924315],[0.046713276],[0.04744705],[0.04812363],[0.048741308],[0.049298664],[0.04979456],[0.05022813],[0.050598766],[0.05090611],[0.051150047],[0.051330694],[0.051448398],[0.051503735],[0.051497509],[0.051430756],[0.051304747],[0.051120994],[0.050881257],[0.050587546],[0.050242121],[0.049847497],[0.049406433],[0.048921926],[0.048397191],[0.047835644],[0.047240871],[0.046616595],[0.045966638],[0.045294874],[0.044605182],[0.043901395],[0.043187244],[0.042466305],[0.041741947],[0.041017277],[0.040295098],[0.039577863],[0.038867639],[0.03816608],[0.037474407],[0.036793391],[0.036123357],[0.035464187],[0.034815335],[0.034175858],[0.033544441],[0.032919448],[0.032298964],[0.031680854],[0.031062818],[0.03044246],[0.029817348],[0.029185085],[0.028543367],[0.027890053],[0.027223218],[0.02654121],[0.025842699],[0.025126712],[0.024392671],[0.023640409],[0.02287019],[0.022082709],[0.021279085],[0.020460848],[0.019629911],[0.01878854],[0.017939312],[0.017085066],[0.016228853],[0.015373882],[0.01452346],[0.013680931],[0.012849622],[0.012032785],[0.011233544],[0.010454844],[0.0096994146],[0.0089697247],[0.0082679578],[0.0075959867],[0.0069553579],[0.0063472824],[0.0057726345],[0.0052319562],[0.0047254677],[0.0042530839],[0.003814435],[0.0034088905],[0.0030355867],[0.0026934561],[0.0023812575],[0.0020976073],[0.0018410098],[0.0016098867],[0.0014026056],[0.0012175059],[0.0010529224],[0.00090720722],[0.00077874775],[0.00066598275],[0.00056741529],[0.00048162306],[0.00040726611],[0.0003430922],[0.00028794004],[0.00024074052],[0.00020051631],[0.00016638006],[0.00013753137],[0.00011325284],[9.2905521e-05],[7.5923681e-05],[6.180943e-05],[5.0127091e-05],[4.0497592e-05],[3.2592943e-05],[2.6130907e-05],[2.0869923e-05],[1.6604343e-05],[1.3160007e-05],[1.0390185e-05],[8.1718876e-06],[6.4025468e-06],[4.9970505e-06],[3.8851226e-06],[3.0090206e-06],[2.3215313e-06],[1.7842364e-06],[1.366024e-06],[1.0418181e-06],[7.9150337e-07],[5.9901903e-07],[4.5160126e-07],[3.3915332e-07],[2.5372494e-07],[1.8908461e-07],[1.4037019e-07],[1.0380521e-07],[7.6469596e-08],[5.6115603e-08],[4.1020745e-08],[2.9870906e-08],[2.1667963e-08],[1.5657142e-08],[1.1270198e-08],[8.0811873e-09],[5.7722253e-09],[4.1071049e-09],[2.9110702e-09]],"fill":"tonexty","fillcolor":"rgba(160.71429, 217.42857, 55.85714, 0.65)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Very Good Chance","x":[-12.5,-12.249499,-11.998998,-11.748497,-11.497996,-11.247495,-10.996994,-10.746493,-10.495992,-10.245491,-9.99499,-9.744489,-9.493988,-9.243487,-8.992986,-8.742485,-8.491984,-8.241483,-7.990982,-7.740481,-7.48998,-7.239479,-6.988978,-6.738477,-6.487976,-6.2374749,-5.9869739,-5.7364729,-5.4859719,-5.2354709,-4.9849699,-4.7344689,-4.4839679,-4.2334669,-3.9829659,-3.7324649,-3.4819639,-3.2314629,-2.9809619,-2.7304609,-2.4799599,-2.2294589,-1.9789579,-1.7284569,-1.4779559,-1.2274549,-0.97695391,-0.72645291,-0.4759519,-0.2254509,0.0250501,0.2755511,0.5260521,0.77655311,1.0270541,1.2775551,1.5280561,1.7785571,2.0290581,2.2795591,2.5300601,2.7805611,3.0310621,3.2815631,3.5320641,3.7825651,4.0330661,4.2835671,4.5340681,4.7845691,5.0350701,5.2855711,5.5360721,5.7865731,6.0370741,6.2875752,6.5380762,6.7885772,7.0390782,7.2895792,7.5400802,7.7905812,8.0410822,8.2915832,8.5420842,8.7925852,9.0430862,9.2935872,9.5440882,9.7945892,10.04509,10.295591,10.546092,10.796593,11.047094,11.297595,11.548096,11.798597,12.049098,12.299599,12.5501,12.800601,13.051102,13.301603,13.552104,13.802605,14.053106,14.303607,14.554108,14.804609,15.05511,15.305611,15.556112,15.806613,16.057114,16.307615,16.558116,16.808617,17.059118,17.309619,17.56012,17.810621,18.061122,18.311623,18.562124,18.812625,19.063126,19.313627,19.564128,19.814629,20.06513,20.315631,20.566132,20.816633,21.067134,21.317635,21.568136,21.818637,22.069138,22.319639,22.57014,22.820641,23.071142,23.321643,23.572144,23.822645,24.073146,24.323647,24.574148,24.824649,25.07515,25.325651,25.576152,25.826653,26.077154,26.327655,26.578156,26.828657,27.079158,27.329659,27.58016,27.830661,28.081162,28.331663,28.582164,28.832665,29.083166,29.333667,29.584168,29.834669,30.08517,30.335671,30.586172,30.836673,31.087174,31.337675,31.588176,31.838677,32.089178,32.339679,32.59018,32.840681,33.091182,33.341683,33.592184,33.842685,34.093186,34.343687,34.594188,34.844689,35.09519,35.345691,35.596192,35.846693,36.097194,36.347695,36.598196,36.848697,37.099198,37.349699,37.6002,37.850701,38.101202,38.351703,38.602204,38.852705,39.103206,39.353707,39.604208,39.854709,40.10521,40.355711,40.606212,40.856713,41.107214,41.357715,41.608216,41.858717,42.109218,42.359719,42.61022,42.860721,43.111222,43.361723,43.612224,43.862725,44.113226,44.363727,44.614228,44.864729,45.11523,45.365731,45.616232,45.866733,46.117234,46.367735,46.618236,46.868737,47.119238,47.369739,47.62024,47.870741,48.121242,48.371743,48.622244,48.872745,49.123246,49.373747,49.624248,49.874749,50.125251,50.375752,50.626253,50.876754,51.127255,51.377756,51.628257,51.878758,52.129259,52.37976,52.630261,52.880762,53.131263,53.381764,53.632265,53.882766,54.133267,54.383768,54.634269,54.88477,55.135271,55.385772,55.636273,55.886774,56.137275,56.387776,56.638277,56.888778,57.139279,57.38978,57.640281,57.890782,58.141283,58.391784,58.642285,58.892786,59.143287,59.393788,59.644289,59.89479,60.145291,60.395792,60.646293,60.896794,61.147295,61.397796,61.648297,61.898798,62.149299,62.3998,62.650301,62.900802,63.151303,63.401804,63.652305,63.902806,64.153307,64.403808,64.654309,64.90481,65.155311,65.405812,65.656313,65.906814,66.157315,66.407816,66.658317,66.908818,67.159319,67.40982,67.660321,67.910822,68.161323,68.411824,68.662325,68.912826,69.163327,69.413828,69.664329,69.91483,70.165331,70.415832,70.666333,70.916834,71.167335,71.417836,71.668337,71.918838,72.169339,72.41984,72.670341,72.920842,73.171343,73.421844,73.672345,73.922846,74.173347,74.423848,74.674349,74.92485,75.175351,75.425852,75.676353,75.926854,76.177355,76.427856,76.678357,76.928858,77.179359,77.42986,77.680361,77.930862,78.181363,78.431864,78.682365,78.932866,79.183367,79.433868,79.684369,79.93487,80.185371,80.435872,80.686373,80.936874,81.187375,81.437876,81.688377,81.938878,82.189379,82.43988,82.690381,82.940882,83.191383,83.441884,83.692385,83.942886,84.193387,84.443888,84.694389,84.94489,85.195391,85.445892,85.696393,85.946894,86.197395,86.447896,86.698397,86.948898,87.199399,87.4499,87.700401,87.950902,88.201403,88.451904,88.702405,88.952906,89.203407,89.453908,89.704409,89.95491,90.205411,90.455912,90.706413,90.956914,91.207415,91.457916,91.708417,91.958918,92.209419,92.45992,92.710421,92.960922,93.211423,93.461924,93.712425,93.962926,94.213427,94.463928,94.714429,94.96493,95.215431,95.465932,95.716433,95.966934,96.217435,96.467936,96.718437,96.968938,97.219439,97.46994,97.720441,97.970942,98.221443,98.471944,98.722445,98.972946,99.223447,99.473948,99.724449,99.97495,100.22545,100.47595,100.72645,100.97695,101.22745,101.47796,101.72846,101.97896,102.22946,102.47996,102.73046,102.98096,103.23146,103.48196,103.73246,103.98297,104.23347,104.48397,104.73447,104.98497,105.23547,105.48597,105.73647,105.98697,106.23747,106.48798,106.73848,106.98898,107.23948,107.48998,107.74048,107.99098,108.24148,108.49198,108.74248,108.99299,109.24349,109.49399,109.74449,109.99499,110.24549,110.49599,110.74649,110.99699,111.24749,111.498,111.7485,111.999,112.2495,112.5],"y":[-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.05247689,-0.05247689,-0.05247689,-0.05247689,-0.052476889,-0.052476888,-0.052476887,-0.052476886,-0.052476884,-0.052476882,-0.052476878,-0.052476874,-0.052476868,-0.052476859,-0.052476849,-0.052476834,-0.052476816,-0.052476791,-0.052476759,-0.052476717,-0.052476663,-0.052476593,-0.052476504,-0.052476389,-0.052476243,-0.052476058,-0.052475824,-0.052475529,-0.05247516,-0.052474699,-0.052474126,-0.052473416,-0.05247254,-0.052471464,-0.052470148,-0.052468544,-0.052466598,-0.052464244,-0.052461411,-0.052458013,-0.052453954,-0.052449124,-0.052443401,-0.052436644,-0.0524287,-0.052419394,-0.052408535,-0.052395914,-0.0523813,-0.05236444,-0.052345064,-0.052322876,-0.052297563,-0.052268787,-0.052236191,-0.052199398,-0.052158007,-0.052111604,-0.052059752,-0.052001998,-0.051937875,-0.051866898,-0.051788571,-0.05170238,-0.051607804,-0.051504307,-0.05139134,-0.051268345,-0.05113475,-0.05098997,-0.050833407,-0.050664448,-0.05048246,-0.050286796,-0.050076785,-0.049851734,-0.049610927,-0.04935362,-0.04907904,-0.048786388,-0.048474832,-0.04814351,-0.047791532,-0.047417978,-0.047021904,-0.046602343,-0.04615831,-0.04568881,-0.045192841,-0.044669409,-0.044117532,-0.043536256,-0.042924666,-0.042281902,-0.041607174,-0.04089978,-0.040159126,-0.039384743,-0.038576313,-0.037733682,-0.036856891,-0.035946191,-0.035002064,-0.034025245,-0.033016739,-0.031977833,-0.030910112,-0.029815467,-0.028696095,-0.027554506,-0.026393509,-0.02521621,-0.024025987,-0.022826474,-0.021621532,-0.020415214,-0.019211733,-0.018015419,-0.016830674,-0.015661929,-0.014513601,-0.013390042,-0.012295498,-0.011234071,-0.010209675,-0.0092260099,-0.0082865281,-0.0073944161,-0.006552576,-0.0057636153,-0.0050298414,-0.0043532609,-0.0037355831,-0.0031782271,-0.0026823308,-0.0022487611,-0.0018781253,-0.0015707808,-0.001326844,-0.0011461972,-0.001028493,-0.00097315581,-0.00097938162,-0.0010461349,-0.0011721441,-0.0013558966,-0.0015956336,-0.0018893454,-0.00223477,-0.0026293939,-0.0030704574,-0.0035549647,-0.0040796995,-0.0046412466,-0.0052360198,-0.0058602958,-0.0065102531,-0.0071820172,-0.0078717089,-0.0085754959,-0.009289647,-0.010010586,-0.010734944,-0.011459614,-0.012181793,-0.012899028,-0.013609252,-0.014310811,-0.015002484,-0.0156835,-0.016353534,-0.017012704,-0.017661556,-0.018301033,-0.01893245,-0.019557443,-0.020177927,-0.020796037,-0.021414073,-0.022034431,-0.022659543,-0.023291806,-0.023933524,-0.024586838,-0.025253673,-0.025935681,-0.026634192,-0.027350179,-0.02808422,-0.028836482,-0.029606701,-0.030394182,-0.031197806,-0.032016043,-0.03284698,-0.03368835,-0.034537579,-0.035391825,-0.036248038,-0.037103008,-0.037953431,-0.03879596,-0.039627269,-0.040444106,-0.041243347,-0.042022047,-0.042777476,-0.043507166,-0.044208933,-0.044880904,-0.045521533,-0.046129609,-0.046704256,-0.047244935,-0.047751423,-0.048223807,-0.048662456,-0.049068,-0.049441304,-0.049783435,-0.050095633,-0.050379284,-0.050635881,-0.050867004,-0.051074285,-0.051259385,-0.051423969,-0.051569684,-0.051698143,-0.051810908,-0.051909476,-0.051995268,-0.052069625,-0.052133799,-0.052188951,-0.05223615,-0.052276375,-0.052310511,-0.05233936,-0.052363638,-0.052383985,-0.052400967,-0.052415082,-0.052426764,-0.052436393,-0.052444298,-0.05245076,-0.052456021,-0.052460287,-0.052463731,-0.052466501,-0.052468719,-0.052470488,-0.052471894,-0.052473006,-0.052473882,-0.052474569,-0.052475107,-0.052475525,-0.052475849,-0.052476099,-0.052476292,-0.052476439,-0.052476552,-0.052476637,-0.052476702,-0.052476751,-0.052476787,-0.052476814,-0.052476835,-0.05247685,-0.052476861,-0.052476869,-0.052476875,-0.05247688,-0.052476883,-0.052476885,-0.052476887,-0.052476888],"zorder":1,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-12.5,-12.249499,-11.998998,-11.748497,-11.497996,-11.247495,-10.996994,-10.746493,-10.495992,-10.245491,-9.99499,-9.744489,-9.493988,-9.243487,-8.992986,-8.742485,-8.491984,-8.241483,-7.990982,-7.740481,-7.48998,-7.239479,-6.988978,-6.738477,-6.487976,-6.2374749,-5.9869739,-5.7364729,-5.4859719,-5.2354709,-4.9849699,-4.7344689,-4.4839679,-4.2334669,-3.9829659,-3.7324649,-3.4819639,-3.2314629,-2.9809619,-2.7304609,-2.4799599,-2.2294589,-1.9789579,-1.7284569,-1.4779559,-1.2274549,-0.97695391,-0.72645291,-0.4759519,-0.2254509,0.0250501,0.2755511,0.5260521,0.77655311,1.0270541,1.2775551,1.5280561,1.7785571,2.0290581,2.2795591,2.5300601,2.7805611,3.0310621,3.2815631,3.5320641,3.7825651,4.0330661,4.2835671,4.5340681,4.7845691,5.0350701,5.2855711,5.5360721,5.7865731,6.0370741,6.2875752,6.5380762,6.7885772,7.0390782,7.2895792,7.5400802,7.7905812,8.0410822,8.2915832,8.5420842,8.7925852,9.0430862,9.2935872,9.5440882,9.7945892,10.04509,10.295591,10.546092,10.796593,11.047094,11.297595,11.548096,11.798597,12.049098,12.299599,12.5501,12.800601,13.051102,13.301603,13.552104,13.802605,14.053106,14.303607,14.554108,14.804609,15.05511,15.305611,15.556112,15.806613,16.057114,16.307615,16.558116,16.808617,17.059118,17.309619,17.56012,17.810621,18.061122,18.311623,18.562124,18.812625,19.063126,19.313627,19.564128,19.814629,20.06513,20.315631,20.566132,20.816633,21.067134,21.317635,21.568136,21.818637,22.069138,22.319639,22.57014,22.820641,23.071142,23.321643,23.572144,23.822645,24.073146,24.323647,24.574148,24.824649,25.07515,25.325651,25.576152,25.826653,26.077154,26.327655,26.578156,26.828657,27.079158,27.329659,27.58016,27.830661,28.081162,28.331663,28.582164,28.832665,29.083166,29.333667,29.584168,29.834669,30.08517,30.335671,30.586172,30.836673,31.087174,31.337675,31.588176,31.838677,32.089178,32.339679,32.59018,32.840681,33.091182,33.341683,33.592184,33.842685,34.093186,34.343687,34.594188,34.844689,35.09519,35.345691,35.596192,35.846693,36.097194,36.347695,36.598196,36.848697,37.099198,37.349699,37.6002,37.850701,38.101202,38.351703,38.602204,38.852705,39.103206,39.353707,39.604208,39.854709,40.10521,40.355711,40.606212,40.856713,41.107214,41.357715,41.608216,41.858717,42.109218,42.359719,42.61022,42.860721,43.111222,43.361723,43.612224,43.862725,44.113226,44.363727,44.614228,44.864729,45.11523,45.365731,45.616232,45.866733,46.117234,46.367735,46.618236,46.868737,47.119238,47.369739,47.62024,47.870741,48.121242,48.371743,48.622244,48.872745,49.123246,49.373747,49.624248,49.874749,50.125251,50.375752,50.626253,50.876754,51.127255,51.377756,51.628257,51.878758,52.129259,52.37976,52.630261,52.880762,53.131263,53.381764,53.632265,53.882766,54.133267,54.383768,54.634269,54.88477,55.135271,55.385772,55.636273,55.886774,56.137275,56.387776,56.638277,56.888778,57.139279,57.38978,57.640281,57.890782,58.141283,58.391784,58.642285,58.892786,59.143287,59.393788,59.644289,59.89479,60.145291,60.395792,60.646293,60.896794,61.147295,61.397796,61.648297,61.898798,62.149299,62.3998,62.650301,62.900802,63.151303,63.401804,63.652305,63.902806,64.153307,64.403808,64.654309,64.90481,65.155311,65.405812,65.656313,65.906814,66.157315,66.407816,66.658317,66.908818,67.159319,67.40982,67.660321,67.910822,68.161323,68.411824,68.662325,68.912826,69.163327,69.413828,69.664329,69.91483,70.165331,70.415832,70.666333,70.916834,71.167335,71.417836,71.668337,71.918838,72.169339,72.41984,72.670341,72.920842,73.171343,73.421844,73.672345,73.922846,74.173347,74.423848,74.674349,74.92485,75.175351,75.425852,75.676353,75.926854,76.177355,76.427856,76.678357,76.928858,77.179359,77.42986,77.680361,77.930862,78.181363,78.431864,78.682365,78.932866,79.183367,79.433868,79.684369,79.93487,80.185371,80.435872,80.686373,80.936874,81.187375,81.437876,81.688377,81.938878,82.189379,82.43988,82.690381,82.940882,83.191383,83.441884,83.692385,83.942886,84.193387,84.443888,84.694389,84.94489,85.195391,85.445892,85.696393,85.946894,86.197395,86.447896,86.698397,86.948898,87.199399,87.4499,87.700401,87.950902,88.201403,88.451904,88.702405,88.952906,89.203407,89.453908,89.704409,89.95491,90.205411,90.455912,90.706413,90.956914,91.207415,91.457916,91.708417,91.958918,92.209419,92.45992,92.710421,92.960922,93.211423,93.461924,93.712425,93.962926,94.213427,94.463928,94.714429,94.96493,95.215431,95.465932,95.716433,95.966934,96.217435,96.467936,96.718437,96.968938,97.219439,97.46994,97.720441,97.970942,98.221443,98.471944,98.722445,98.972946,99.223447,99.473948,99.724449,99.97495,100.22545,100.47595,100.72645,100.97695,101.22745,101.47796,101.72846,101.97896,102.22946,102.47996,102.73046,102.98096,103.23146,103.48196,103.73246,103.98297,104.23347,104.48397,104.73447,104.98497,105.23547,105.48597,105.73647,105.98697,106.23747,106.48798,106.73848,106.98898,107.23948,107.48998,107.74048,107.99098,108.24148,108.49198,108.74248,108.99299,109.24349,109.49399,109.74449,109.99499,110.24549,110.49599,110.74649,110.99699,111.24749,111.498,111.7485,111.999,112.2495,112.5],"y":[-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378],"zorder":2,"type":"scatter"},{"customdata":[[1.5127193e-07],[1.9856243e-07],[2.5961666e-07],[3.3811525e-07],[4.3862532e-07],[5.6678632e-07],[7.2952765e-07],[9.3532144e-07],[1.1944741e-06],[1.5194602e-06],[1.9253011e-06],[2.4299913e-06],[3.0549739e-06],[3.8256657e-06],[4.772031e-06],[5.9292018e-06],[7.3381391e-06],[9.046329e-06],[1.1108503e-05],[1.3587371e-05],[1.6554348e-05],[2.0090255e-05],[2.4285975e-05],[2.9243029e-05],[3.507405e-05],[4.1903104e-05],[4.9865849e-05],[5.9109456e-05],[6.9792289e-05],[8.208327e-05],[9.6160916e-05],[0.00011221199],[0.00013042975],[0.00015101177],[0.00017415729],[0.00020006414],[0.00022892519],[0.00026092437],[0.00029623231],[0.00033500165],[0.00037736202],[0.00042341494],[0.00047322849],[0.00052683222],[0.00058421204],[0.00064530556],[0.00070999786],[0.0007781179],[0.00084943568],[0.00092366041],[0.0010004396],[0.0010793596],[0.0011599471],[0.0012416722],[0.0013239526],[0.0014061597],[0.0014876254],[0.0015676506],[0.0016455143],[0.0017204847],[0.0017918295],[0.0018588283],[0.0019207843],[0.0019770364],[0.0020269706],[0.0020700316],[0.0021057326],[0.0021336649],[0.0021535052],[0.0021650223],[0.0021680812],[0.0021626461],[0.0021487807],[0.0021266473],[0.0020965034],[0.0020586968],[0.0020136592],[0.0019618972],[0.0019039839],[0.0018405475],[0.0017722603],[0.0016998271],[0.0016239726],[0.0015454301],[0.0014649297],[0.001383187],[0.0013008936],[0.0012187072],[0.0011372442],[0.0010570725],[0.00097870674],[0.00090260369],[0.00082916004],[0.00075871095],[0.00069153007],[0.00062783066],[0.00056776772],[0.00051144109],[0.00045889915],[0.00041014331],[0.0003651327],[0.00032378936],[0.00028600336],[0.00025163812],[0.00022053548],[0.00019252061],[0.00016740665],[0.00014499897],[0.00012509901],[0.0001075077],[9.2028422e-05],[7.8469543e-05],[6.6646446e-05],[5.6383185e-05],[4.751371e-05],[3.9882742e-05],[3.3346312e-05],[2.7772012e-05],[2.3038999e-05],[1.9037793e-05],[1.5669903e-05],[1.2847327e-05],[1.0491944e-05],[8.53485e-06],[6.9156429e-06],[5.5816934e-06],[4.4874142e-06],[3.5935453e-06],[2.866467e-06],[2.277549e-06],[1.8025431e-06],[1.4210229e-06],[1.1158727e-06],[8.7282606e-07],[6.8005264e-07],[5.2779292e-07],[4.0803651e-07],[3.1424209e-07],[2.4109509e-07],[1.8429983e-07],[1.4040246e-07],[1.0664127e-07],[8.0821213e-08],[6.1209533e-08],[4.6449796e-08],[3.5491836e-08],[2.753552e-08],[2.1986455e-08],[1.8422166e-08],[1.6567487e-08],[1.6278302e-08],[1.7532985e-08],[2.0431255e-08],[2.5200398e-08],[3.2209135e-08],[4.1989717e-08],[5.5269109e-08],[7.3010488e-08],[9.6466589e-08],[1.2724678e-07],[1.6740018e-07],[2.1951736e-07],[2.8685384e-07],[3.7347864e-07],[4.8445192e-07],[6.2603573e-07],[8.0594273e-07],[1.0336276e-06],[1.3206263e-06],[1.6809489e-06],[2.1315315e-06],[2.6927511e-06],[3.3890123e-06],[4.2494062e-06],[5.3084499e-06],[6.6069079e-06],[8.192699e-06],[1.0121891e-05],[1.2459781e-05],[1.5282065e-05],[1.8676087e-05],[2.2742171e-05],[2.7595019e-05],[3.336518e-05],[4.0200563e-05],[4.8268001e-05],[5.7754832e-05],[6.8870496e-05],[8.1848127e-05],[9.6946124e-05],[0.00011444968],[0.00013467223],[0.00015795691],[0.00018467776],[0.00021524098],[0.00025008596],[0.00028968617],[0.00033454988],[0.00038522073],[0.00044227794],[0.00050633645],[0.00057804659],[0.00065809348],[0.00074719604],[0.00084610549],[0.00095560327],[0.0010764983],[0.0012096238],[0.0013558322],[0.0015159908],[0.0016909744],[0.0018816579],[0.002088907],[0.0023135674],[0.0025564526],[0.0028183299],[0.0030999044],[0.0034018018],[0.0037245496],[0.0040685566],[0.0044340912],[0.0048212599],[0.0052299841],[0.0056599778],[0.0061107264],[0.0065814661],[0.007071166],[0.0075785136],[0.0081019033],[0.0086394298],[0.0091888873],[0.0097477741],[0.010313304],[0.010882425],[0.011451846],[0.012018068],[0.012577426],[0.01312614],[0.013660363],[0.014176244],[0.014669991],[0.015137941],[0.015576625],[0.015982839],[0.016353711],[0.016686766],[0.016979984],[0.017231853],[0.017441412],[0.017608284],[0.0177327],[0.017815511],[0.017858182],[0.01786278],[0.017831945],[0.01776885],[0.017677148],[0.017560909],[0.017424547],[0.017272737],[0.017110333],[0.016942276],[0.016773499],[0.016608836],[0.016452934],[0.016310166],[0.016184554],[0.016079697],[0.015998711],[0.015944182],[0.015918125],[0.015921961],[0.01595651],[0.016021985],[0.016118014],[0.01624366],[0.016397466],[0.016577496],[0.016781395],[0.01700645],[0.017249659],[0.017507803],[0.017777517],[0.01805536],[0.018337891],[0.01862173],[0.018903619],[0.019180481],[0.019449462],[0.019707974],[0.01995372],[0.020184724],[0.020399337],[0.020596244],[0.020774463],[0.020933334],[0.021072502],[0.021191897],[0.021291711],[0.021372368],[0.021434494],[0.021478892],[0.021506506],[0.021518398],[0.021515716],[0.021499675],[0.021471531],[0.021432567],[0.021384073],[0.021327337],[0.021263634],[0.021194221],[0.021120331],[0.021043171],[0.020963924],[0.020883745],[0.020803764],[0.020725091],[0.02064881],[0.020575989],[0.020507672],[0.020444887],[0.020388638],[0.020339909],[0.020299656],[0.02026881],[0.020248264],[0.020238875],[0.020241453],[0.020256759],[0.02028549],[0.020328281],[0.020385689],[0.02045819],[0.020546169],[0.020649911],[0.020769594],[0.02090528],[0.021056911],[0.021224295],[0.021407105],[0.02160487],[0.021816969],[0.022042624],[0.022280901],[0.0225307],[0.022790759],[0.023059649],[0.023335777],[0.023617392],[0.023902584],[0.0241893],[0.02447535],[0.024758423],[0.025036102],[0.025305887],[0.025565218],[0.025811497],[0.026042123],[0.026254519],[0.026446163],[0.026614627],[0.026757608],[0.026872962],[0.026958734],[0.027013197],[0.027034869],[0.027022544],[0.026975312],[0.026892568],[0.026774028],[0.026619731],[0.026430033],[0.026205607],[0.025947423],[0.02565673],[0.025335039],[0.024984088],[0.024605818],[0.024202335],[0.02377588],[0.023328793],[0.022863476],[0.022382362],[0.021887882],[0.021382434],[0.020868361],[0.020347922],[0.019823273],[0.019296454],[0.018769373],[0.018243796],[0.017721344],[0.017203487],[0.016691548],[0.016186699],[0.015689972],[0.015202259],[0.014724325],[0.01425681],[0.013800246],[0.01335506],[0.012921584],[0.012500069],[0.012090693],[0.011693565],[0.01130874],[0.010936226],[0.010575986],[0.010227953],[0.0098920274],[0.0095680888],[0.009255996],[0.0089555921],[0.008666707],[0.0083891585],[0.0081227541],[0.0078672909],[0.0076225551],[0.0073883214],[0.0071643517],[0.0069503931],[0.006746176],[0.0065514123],[0.0063657928],[0.0061889858],[0.0060206349],[0.0058603578],[0.0057077456],[0.0055623623],[0.005423745],[0.0052914053],[0.0051648306],[0.0050434871],[0.0049268229],[0.0048142721],[0.0047052596],[0.0045992069],[0.0044955375],[0.0043936837],[0.0042930936],[0.0041932377],[0.0040936159],[0.0039937648],[0.0038932638],[0.0037917413],[0.0036888802],[0.0035844226],[0.0034781734],[0.0033700031],[0.0032598492],[0.0031477165],[0.0030336765],[0.0029178648],[0.0028004779],[0.0026817688],[0.0025620412],[0.0024416433],[0.0023209601],[0.0022004059],[0.0020804158],[0.0019614373],[0.001843922],[0.0017283168],[0.0016150564],[0.0015045556],[0.001397203],[0.0012933547],[0.0011933296],[0.0010974052],[0.0010058152],[0.00091874705],[0.00083634128],[0.00075869176],[0.00068584661],[0.00061781007],[0.00055454506],[0.00049597638],[0.00044199432],[0.0003924587],[0.00034720306],[0.00030603907],[0.00026876085],[0.00023514924],[0.00020497587],[0.00017800705],[0.00015400722],[0.00013274218],[0.00011398188],[9.7502779e-05],[8.3089891e-05],[7.053837e-05],[5.9654745e-05],[5.0257802e-05],[4.2179143e-05],[3.5263454e-05],[2.9368522e-05],[2.436503e-05],[2.0136181e-05],[1.6577172e-05]],"fill":"tonexty","fillcolor":"rgba(77.42857, 192.85714, 106.85714, 0.65)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"We Believe","x":[-12.5,-12.249499,-11.998998,-11.748497,-11.497996,-11.247495,-10.996994,-10.746493,-10.495992,-10.245491,-9.99499,-9.744489,-9.493988,-9.243487,-8.992986,-8.742485,-8.491984,-8.241483,-7.990982,-7.740481,-7.48998,-7.239479,-6.988978,-6.738477,-6.487976,-6.2374749,-5.9869739,-5.7364729,-5.4859719,-5.2354709,-4.9849699,-4.7344689,-4.4839679,-4.2334669,-3.9829659,-3.7324649,-3.4819639,-3.2314629,-2.9809619,-2.7304609,-2.4799599,-2.2294589,-1.9789579,-1.7284569,-1.4779559,-1.2274549,-0.97695391,-0.72645291,-0.4759519,-0.2254509,0.0250501,0.2755511,0.5260521,0.77655311,1.0270541,1.2775551,1.5280561,1.7785571,2.0290581,2.2795591,2.5300601,2.7805611,3.0310621,3.2815631,3.5320641,3.7825651,4.0330661,4.2835671,4.5340681,4.7845691,5.0350701,5.2855711,5.5360721,5.7865731,6.0370741,6.2875752,6.5380762,6.7885772,7.0390782,7.2895792,7.5400802,7.7905812,8.0410822,8.2915832,8.5420842,8.7925852,9.0430862,9.2935872,9.5440882,9.7945892,10.04509,10.295591,10.546092,10.796593,11.047094,11.297595,11.548096,11.798597,12.049098,12.299599,12.5501,12.800601,13.051102,13.301603,13.552104,13.802605,14.053106,14.303607,14.554108,14.804609,15.05511,15.305611,15.556112,15.806613,16.057114,16.307615,16.558116,16.808617,17.059118,17.309619,17.56012,17.810621,18.061122,18.311623,18.562124,18.812625,19.063126,19.313627,19.564128,19.814629,20.06513,20.315631,20.566132,20.816633,21.067134,21.317635,21.568136,21.818637,22.069138,22.319639,22.57014,22.820641,23.071142,23.321643,23.572144,23.822645,24.073146,24.323647,24.574148,24.824649,25.07515,25.325651,25.576152,25.826653,26.077154,26.327655,26.578156,26.828657,27.079158,27.329659,27.58016,27.830661,28.081162,28.331663,28.582164,28.832665,29.083166,29.333667,29.584168,29.834669,30.08517,30.335671,30.586172,30.836673,31.087174,31.337675,31.588176,31.838677,32.089178,32.339679,32.59018,32.840681,33.091182,33.341683,33.592184,33.842685,34.093186,34.343687,34.594188,34.844689,35.09519,35.345691,35.596192,35.846693,36.097194,36.347695,36.598196,36.848697,37.099198,37.349699,37.6002,37.850701,38.101202,38.351703,38.602204,38.852705,39.103206,39.353707,39.604208,39.854709,40.10521,40.355711,40.606212,40.856713,41.107214,41.357715,41.608216,41.858717,42.109218,42.359719,42.61022,42.860721,43.111222,43.361723,43.612224,43.862725,44.113226,44.363727,44.614228,44.864729,45.11523,45.365731,45.616232,45.866733,46.117234,46.367735,46.618236,46.868737,47.119238,47.369739,47.62024,47.870741,48.121242,48.371743,48.622244,48.872745,49.123246,49.373747,49.624248,49.874749,50.125251,50.375752,50.626253,50.876754,51.127255,51.377756,51.628257,51.878758,52.129259,52.37976,52.630261,52.880762,53.131263,53.381764,53.632265,53.882766,54.133267,54.383768,54.634269,54.88477,55.135271,55.385772,55.636273,55.886774,56.137275,56.387776,56.638277,56.888778,57.139279,57.38978,57.640281,57.890782,58.141283,58.391784,58.642285,58.892786,59.143287,59.393788,59.644289,59.89479,60.145291,60.395792,60.646293,60.896794,61.147295,61.397796,61.648297,61.898798,62.149299,62.3998,62.650301,62.900802,63.151303,63.401804,63.652305,63.902806,64.153307,64.403808,64.654309,64.90481,65.155311,65.405812,65.656313,65.906814,66.157315,66.407816,66.658317,66.908818,67.159319,67.40982,67.660321,67.910822,68.161323,68.411824,68.662325,68.912826,69.163327,69.413828,69.664329,69.91483,70.165331,70.415832,70.666333,70.916834,71.167335,71.417836,71.668337,71.918838,72.169339,72.41984,72.670341,72.920842,73.171343,73.421844,73.672345,73.922846,74.173347,74.423848,74.674349,74.92485,75.175351,75.425852,75.676353,75.926854,76.177355,76.427856,76.678357,76.928858,77.179359,77.42986,77.680361,77.930862,78.181363,78.431864,78.682365,78.932866,79.183367,79.433868,79.684369,79.93487,80.185371,80.435872,80.686373,80.936874,81.187375,81.437876,81.688377,81.938878,82.189379,82.43988,82.690381,82.940882,83.191383,83.441884,83.692385,83.942886,84.193387,84.443888,84.694389,84.94489,85.195391,85.445892,85.696393,85.946894,86.197395,86.447896,86.698397,86.948898,87.199399,87.4499,87.700401,87.950902,88.201403,88.451904,88.702405,88.952906,89.203407,89.453908,89.704409,89.95491,90.205411,90.455912,90.706413,90.956914,91.207415,91.457916,91.708417,91.958918,92.209419,92.45992,92.710421,92.960922,93.211423,93.461924,93.712425,93.962926,94.213427,94.463928,94.714429,94.96493,95.215431,95.465932,95.716433,95.966934,96.217435,96.467936,96.718437,96.968938,97.219439,97.46994,97.720441,97.970942,98.221443,98.471944,98.722445,98.972946,99.223447,99.473948,99.724449,99.97495,100.22545,100.47595,100.72645,100.97695,101.22745,101.47796,101.72846,101.97896,102.22946,102.47996,102.73046,102.98096,103.23146,103.48196,103.73246,103.98297,104.23347,104.48397,104.73447,104.98497,105.23547,105.48597,105.73647,105.98697,106.23747,106.48798,106.73848,106.98898,107.23948,107.48998,107.74048,107.99098,108.24148,108.49198,108.74248,108.99299,109.24349,109.49399,109.74449,109.99499,110.24549,110.49599,110.74649,110.99699,111.24749,111.498,111.7485,111.999,112.2495,112.5],"y":[-0.10495363,-0.10495358,-0.10495352,-0.10495344,-0.10495334,-0.10495322,-0.10495305,-0.10495285,-0.10495259,-0.10495226,-0.10495186,-0.10495135,-0.10495073,-0.10494996,-0.10494901,-0.10494785,-0.10494644,-0.10494474,-0.10494267,-0.10494019,-0.10493723,-0.10493369,-0.1049295,-0.10492454,-0.10491871,-0.10491188,-0.10490392,-0.10489467,-0.10488399,-0.1048717,-0.10485762,-0.10484157,-0.10482335,-0.10480277,-0.10477962,-0.10475372,-0.10472486,-0.10469286,-0.10465755,-0.10461878,-0.10457642,-0.10453037,-0.10448055,-0.10442695,-0.10436957,-0.10430848,-0.10424378,-0.10417566,-0.10410435,-0.10403012,-0.10395334,-0.10387442,-0.10379383,-0.10371211,-0.10362983,-0.10354762,-0.10346616,-0.10338613,-0.10330827,-0.1032333,-0.10316195,-0.10309495,-0.103033,-0.10297675,-0.10292681,-0.10288375,-0.10284805,-0.10282012,-0.10280028,-0.10278876,-0.1027857,-0.10279114,-0.102805,-0.10282713,-0.10285728,-0.10289509,-0.10294012,-0.10299188,-0.1030498,-0.10311323,-0.10318152,-0.10325395,-0.10332981,-0.10340835,-0.10348885,-0.10357059,-0.10365289,-0.10373507,-0.10381654,-0.10389671,-0.10397508,-0.10405118,-0.10412462,-0.10419507,-0.10426225,-0.10432595,-0.10438601,-0.10444234,-0.10449488,-0.10454364,-0.10458865,-0.10462999,-0.10466778,-0.10470214,-0.10473325,-0.10476126,-0.10478638,-0.10480878,-0.10482868,-0.10484627,-0.10486175,-0.10487531,-0.10488714,-0.1048974,-0.10490627,-0.1049139,-0.10492044,-0.10492601,-0.10493074,-0.10493474,-0.10493811,-0.10494093,-0.10494329,-0.10494525,-0.10494687,-0.1049482,-0.10494929,-0.10495019,-0.10495092,-0.1049515,-0.10495198,-0.10495236,-0.10495267,-0.10495291,-0.1049531,-0.10495325,-0.10495337,-0.10495347,-0.10495354,-0.1049536,-0.10495364,-0.10495368,-0.1049537,-0.10495372,-0.10495374,-0.10495375,-0.10495375,-0.10495376,-0.10495376,-0.10495377,-0.10495377,-0.10495376,-0.10495376,-0.10495376,-0.10495375,-0.10495374,-0.10495373,-0.10495371,-0.10495369,-0.10495365,-0.10495361,-0.10495356,-0.1049535,-0.10495341,-0.1049533,-0.10495316,-0.10495298,-0.10495275,-0.10495246,-0.1049521,-0.10495165,-0.10495109,-0.10495039,-0.10494953,-0.10494847,-0.10494717,-0.10494559,-0.10494366,-0.10494132,-0.1049385,-0.10493511,-0.10493104,-0.10492619,-0.10492042,-0.10491358,-0.10490551,-0.10489603,-0.10488491,-0.10487193,-0.10485684,-0.10483933,-0.10481911,-0.10479582,-0.1047691,-0.10473854,-0.1047037,-0.1046641,-0.10461923,-0.10456856,-0.1045115,-0.10444745,-0.10437574,-0.10429569,-0.10420659,-0.10410768,-0.10399818,-0.10387728,-0.10374416,-0.10359795,-0.10343779,-0.10326281,-0.10307212,-0.10286487,-0.10264021,-0.10239733,-0.10213545,-0.10185388,-0.10155198,-0.10122923,-0.10088523,-0.10051969,-0.10013252,-0.099723798,-0.099293804,-0.098843055,-0.098372316,-0.097882616,-0.097375268,-0.096851879,-0.096314352,-0.095764895,-0.095206008,-0.094640478,-0.094071357,-0.093501936,-0.092935714,-0.092376355,-0.091827642,-0.091293419,-0.090777538,-0.090283791,-0.089815841,-0.089377157,-0.088970943,-0.088600071,-0.088267016,-0.087973798,-0.087721929,-0.08751237,-0.087345498,-0.087221081,-0.087138271,-0.0870956,-0.087091002,-0.087121837,-0.087184932,-0.087276633,-0.087392872,-0.087529235,-0.087681045,-0.087843449,-0.088011506,-0.088180283,-0.088344946,-0.088500848,-0.088643616,-0.088769228,-0.088874085,-0.088955071,-0.0890096,-0.089035657,-0.089031821,-0.088997272,-0.088931797,-0.088835768,-0.088710122,-0.088556316,-0.088376286,-0.088172387,-0.087947332,-0.087704123,-0.087445979,-0.087176265,-0.086898422,-0.086615891,-0.086332052,-0.086050163,-0.085773301,-0.085504319,-0.085245808,-0.085000062,-0.084769058,-0.084554445,-0.084357538,-0.084179319,-0.084020448,-0.08388128,-0.083761884,-0.08366207,-0.083581414,-0.083519288,-0.08347489,-0.083447276,-0.083435384,-0.083438066,-0.083454107,-0.08348225,-0.083521214,-0.083569708,-0.083626445,-0.083690147,-0.083759561,-0.083833451,-0.08391061,-0.083989858,-0.084070037,-0.084150018,-0.084228691,-0.084304972,-0.084377793,-0.08444611,-0.084508895,-0.084565144,-0.084613873,-0.084654126,-0.084684972,-0.084705518,-0.084714907,-0.084712328,-0.084697023,-0.084668292,-0.084625501,-0.084568093,-0.084495591,-0.084407612,-0.084303871,-0.084184188,-0.084048501,-0.083896871,-0.083729487,-0.083546676,-0.083348911,-0.083136813,-0.082911158,-0.082672881,-0.082423082,-0.082163023,-0.081894133,-0.081618005,-0.08133639,-0.081051198,-0.080764482,-0.080478432,-0.080195359,-0.07991768,-0.079647895,-0.079388564,-0.079142285,-0.078911658,-0.078699263,-0.078507619,-0.078339155,-0.078196174,-0.07808082,-0.077995047,-0.077940585,-0.077918913,-0.077931237,-0.07797847,-0.078061214,-0.078179754,-0.078334051,-0.078523749,-0.078748175,-0.079006359,-0.079297052,-0.079618743,-0.079969694,-0.080347964,-0.080751447,-0.081177902,-0.081624989,-0.082090306,-0.08257142,-0.0830659,-0.083571348,-0.08408542,-0.08460586,-0.085130509,-0.085657327,-0.086184409,-0.086709986,-0.087232438,-0.087750295,-0.088262234,-0.088767083,-0.08926381,-0.089751523,-0.090229457,-0.090696971,-0.091153535,-0.091598722,-0.092032198,-0.092453712,-0.092863089,-0.093260217,-0.093645042,-0.094017556,-0.094377796,-0.094725829,-0.095061754,-0.095385693,-0.095697786,-0.09599819,-0.096287075,-0.096564623,-0.096831028,-0.097086491,-0.097331227,-0.09756546,-0.09778943,-0.098003389,-0.098207606,-0.09840237,-0.098587989,-0.098764796,-0.098933147,-0.099093424,-0.099246036,-0.09939142,-0.099530037,-0.099662377,-0.099788951,-0.099910295,-0.10002696,-0.10013951,-0.10024852,-0.10035457,-0.10045824,-0.1005601,-0.10066069,-0.10076054,-0.10086017,-0.10096002,-0.10106052,-0.10116204,-0.1012649,-0.10136936,-0.10147561,-0.10158378,-0.10169393,-0.10180607,-0.10192011,-0.10203592,-0.1021533,-0.10227201,-0.10239174,-0.10251214,-0.10263282,-0.10275338,-0.10287337,-0.10299234,-0.10310986,-0.10322547,-0.10333873,-0.10344923,-0.10355658,-0.10366043,-0.10376045,-0.10385638,-0.10394797,-0.10403503,-0.10411744,-0.10419509,-0.10426794,-0.10433597,-0.10439924,-0.10445781,-0.10451179,-0.10456132,-0.10460658,-0.10464774,-0.10468502,-0.10471863,-0.10474881,-0.10477577,-0.10479977,-0.10482104,-0.1048398,-0.10485628,-0.10487069,-0.10488324,-0.10489413,-0.10490352,-0.1049116,-0.10491852,-0.10492441,-0.10492942,-0.10493365,-0.1049372],"zorder":2,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-12.5,-12.249499,-11.998998,-11.748497,-11.497996,-11.247495,-10.996994,-10.746493,-10.495992,-10.245491,-9.99499,-9.744489,-9.493988,-9.243487,-8.992986,-8.742485,-8.491984,-8.241483,-7.990982,-7.740481,-7.48998,-7.239479,-6.988978,-6.738477,-6.487976,-6.2374749,-5.9869739,-5.7364729,-5.4859719,-5.2354709,-4.9849699,-4.7344689,-4.4839679,-4.2334669,-3.9829659,-3.7324649,-3.4819639,-3.2314629,-2.9809619,-2.7304609,-2.4799599,-2.2294589,-1.9789579,-1.7284569,-1.4779559,-1.2274549,-0.97695391,-0.72645291,-0.4759519,-0.2254509,0.0250501,0.2755511,0.5260521,0.77655311,1.0270541,1.2775551,1.5280561,1.7785571,2.0290581,2.2795591,2.5300601,2.7805611,3.0310621,3.2815631,3.5320641,3.7825651,4.0330661,4.2835671,4.5340681,4.7845691,5.0350701,5.2855711,5.5360721,5.7865731,6.0370741,6.2875752,6.5380762,6.7885772,7.0390782,7.2895792,7.5400802,7.7905812,8.0410822,8.2915832,8.5420842,8.7925852,9.0430862,9.2935872,9.5440882,9.7945892,10.04509,10.295591,10.546092,10.796593,11.047094,11.297595,11.548096,11.798597,12.049098,12.299599,12.5501,12.800601,13.051102,13.301603,13.552104,13.802605,14.053106,14.303607,14.554108,14.804609,15.05511,15.305611,15.556112,15.806613,16.057114,16.307615,16.558116,16.808617,17.059118,17.309619,17.56012,17.810621,18.061122,18.311623,18.562124,18.812625,19.063126,19.313627,19.564128,19.814629,20.06513,20.315631,20.566132,20.816633,21.067134,21.317635,21.568136,21.818637,22.069138,22.319639,22.57014,22.820641,23.071142,23.321643,23.572144,23.822645,24.073146,24.323647,24.574148,24.824649,25.07515,25.325651,25.576152,25.826653,26.077154,26.327655,26.578156,26.828657,27.079158,27.329659,27.58016,27.830661,28.081162,28.331663,28.582164,28.832665,29.083166,29.333667,29.584168,29.834669,30.08517,30.335671,30.586172,30.836673,31.087174,31.337675,31.588176,31.838677,32.089178,32.339679,32.59018,32.840681,33.091182,33.341683,33.592184,33.842685,34.093186,34.343687,34.594188,34.844689,35.09519,35.345691,35.596192,35.846693,36.097194,36.347695,36.598196,36.848697,37.099198,37.349699,37.6002,37.850701,38.101202,38.351703,38.602204,38.852705,39.103206,39.353707,39.604208,39.854709,40.10521,40.355711,40.606212,40.856713,41.107214,41.357715,41.608216,41.858717,42.109218,42.359719,42.61022,42.860721,43.111222,43.361723,43.612224,43.862725,44.113226,44.363727,44.614228,44.864729,45.11523,45.365731,45.616232,45.866733,46.117234,46.367735,46.618236,46.868737,47.119238,47.369739,47.62024,47.870741,48.121242,48.371743,48.622244,48.872745,49.123246,49.373747,49.624248,49.874749,50.125251,50.375752,50.626253,50.876754,51.127255,51.377756,51.628257,51.878758,52.129259,52.37976,52.630261,52.880762,53.131263,53.381764,53.632265,53.882766,54.133267,54.383768,54.634269,54.88477,55.135271,55.385772,55.636273,55.886774,56.137275,56.387776,56.638277,56.888778,57.139279,57.38978,57.640281,57.890782,58.141283,58.391784,58.642285,58.892786,59.143287,59.393788,59.644289,59.89479,60.145291,60.395792,60.646293,60.896794,61.147295,61.397796,61.648297,61.898798,62.149299,62.3998,62.650301,62.900802,63.151303,63.401804,63.652305,63.902806,64.153307,64.403808,64.654309,64.90481,65.155311,65.405812,65.656313,65.906814,66.157315,66.407816,66.658317,66.908818,67.159319,67.40982,67.660321,67.910822,68.161323,68.411824,68.662325,68.912826,69.163327,69.413828,69.664329,69.91483,70.165331,70.415832,70.666333,70.916834,71.167335,71.417836,71.668337,71.918838,72.169339,72.41984,72.670341,72.920842,73.171343,73.421844,73.672345,73.922846,74.173347,74.423848,74.674349,74.92485,75.175351,75.425852,75.676353,75.926854,76.177355,76.427856,76.678357,76.928858,77.179359,77.42986,77.680361,77.930862,78.181363,78.431864,78.682365,78.932866,79.183367,79.433868,79.684369,79.93487,80.185371,80.435872,80.686373,80.936874,81.187375,81.437876,81.688377,81.938878,82.189379,82.43988,82.690381,82.940882,83.191383,83.441884,83.692385,83.942886,84.193387,84.443888,84.694389,84.94489,85.195391,85.445892,85.696393,85.946894,86.197395,86.447896,86.698397,86.948898,87.199399,87.4499,87.700401,87.950902,88.201403,88.451904,88.702405,88.952906,89.203407,89.453908,89.704409,89.95491,90.205411,90.455912,90.706413,90.956914,91.207415,91.457916,91.708417,91.958918,92.209419,92.45992,92.710421,92.960922,93.211423,93.461924,93.712425,93.962926,94.213427,94.463928,94.714429,94.96493,95.215431,95.465932,95.716433,95.966934,96.217435,96.467936,96.718437,96.968938,97.219439,97.46994,97.720441,97.970942,98.221443,98.471944,98.722445,98.972946,99.223447,99.473948,99.724449,99.97495,100.22545,100.47595,100.72645,100.97695,101.22745,101.47796,101.72846,101.97896,102.22946,102.47996,102.73046,102.98096,103.23146,103.48196,103.73246,103.98297,104.23347,104.48397,104.73447,104.98497,105.23547,105.48597,105.73647,105.98697,106.23747,106.48798,106.73848,106.98898,107.23948,107.48998,107.74048,107.99098,108.24148,108.49198,108.74248,108.99299,109.24349,109.49399,109.74449,109.99499,110.24549,110.49599,110.74649,110.99699,111.24749,111.498,111.7485,111.999,112.2495,112.5],"y":[-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067],"zorder":3,"type":"scatter"},{"customdata":[[8.4935073e-41],[1.9284419e-40],[4.3613686e-40],[9.8250723e-40],[2.2046794e-39],[4.9277864e-39],[1.0971223e-38],[2.4330717e-38],[5.3746666e-38],[1.1826191e-37],[2.5919997e-37],[5.6587664e-37],[1.2305671e-36],[2.6655423e-36],[5.7512544e-36],[1.2360508e-35],[2.6461032e-35],[5.6425312e-35],[1.1984996e-34],[2.535704e-34],[5.3438706e-34],[1.1217861e-33],[2.3456375e-33],[4.885494e-33],[1.0135678e-32],[2.094565e-32],[4.311532e-32],[8.8402819e-32],[1.8054994e-31],[3.6730371e-31],[7.4430341e-31],[1.5023511e-30],[3.0205748e-30],[6.0492911e-30],[1.2067467e-29],[2.3978635e-29],[4.7460197e-29],[9.3568863e-29],[1.8375108e-28],[3.5943898e-28],[7.0035329e-28],[1.3592706e-27],[2.6277944e-27],[5.0602687e-27],[9.7062731e-27],[1.8545057e-26],[3.5293974e-26],[6.6906711e-26],[1.2633845e-25],[2.3762828e-25],[4.4520233e-25],[8.308325e-25],[1.544423e-24],[2.859669e-24],[5.2742657e-24],[9.6895804e-24],[1.7731467e-23],[3.2320726e-23],[5.8683264e-23],[1.0613146e-22],[1.9119247e-22],[3.43079e-22],[6.1321705e-22],[1.0917697e-21],[1.9361749e-21],[3.4202265e-21],[6.0181343e-21],[1.0547891e-20],[1.8414761e-20],[3.2023094e-20],[5.5469879e-20],[9.5707922e-20],[1.644884e-19],[2.8159141e-19],[4.8017579e-19],[8.1560119e-19],[1.3799145e-18],[2.3255368e-18],[3.9038309e-18],[6.5276297e-18],[1.0872183e-17],[1.8037433e-17],[2.9807766e-17],[4.9066024e-17],[8.0450553e-17],[1.3139351e-16],[2.1375464e-16],[3.4638088e-16],[5.5909937e-16],[8.9891955e-16],[1.439625e-15],[2.2965434e-15],[3.6491917e-15],[5.7758435e-15],[9.1060681e-15],[1.4300233e-14],[2.2369282e-14],[3.4854407e-14],[5.4095371e-14],[8.3629448e-14],[1.2878198e-13],[1.9753665e-13],[3.0181235e-13],[4.5932815e-13],[6.9631515e-13],[1.0514421e-12],[1.5814724e-12],[2.3693793e-12],[3.5359351e-12],[5.2561861e-12],[7.7827647e-12],[1.1478729e-11],[1.6863605e-11],[2.467765e-11],[3.5971114e-11],[5.2227677e-11],[7.553431e-11],[1.0881394e-10],[1.5614266e-10],[2.2318002e-10],[3.1775018e-10],[4.5062264e-10],[6.3655649e-10],[8.9568979e-10],[1.2553795e-09],[1.7526256e-09],[2.4372497e-09],[3.3760403e-09],[4.6581336e-09],[6.4019607e-09],[8.7641699e-09],[1.1951029e-08],[1.6232917e-08],[2.196264e-08],[2.9598469e-08],[3.9732939e-08],[5.3128661e-08],[7.0762598e-08],[9.3880503e-08],[1.2406343e-07],[1.6330853e-07],[2.1412664e-07],[2.796593e-07],[3.6381831e-07],[4.7145101e-07],[6.0853466e-07],[7.8240354e-07],[1.0020122e-06],[1.2782387e-06],[1.6242304e-06],[2.0557961e-06],[2.5918459e-06],[3.2548805e-06],[4.0715301e-06],[5.0731416e-06],[6.2964106e-06],[7.7840539e-06],[9.5855129e-06],[1.1757679e-05],[1.4365627e-05],[1.7483336e-05],[2.1194382e-05],[2.5592572e-05],[3.0782497e-05],[3.6879964e-05],[4.4012279e-05],[5.231834e-05],[6.1948499e-05],[7.3064152e-05],[8.5837022e-05],[0.00010044809],[0.00011708612],[0.00013594584],[0.00015722555],[0.00018112445],[0.00020783934],[0.00023756101],[0.00027047013],[0.00030673277],[0.00034649565],[0.00038988104],[0.00043698163],[0.00048785525],[0.00054251969],[0.00060094782],[0.00066306294],[0.00072873474],[0.00079777593],[0.00086993962],[0.00094491779],[0.0010223408],[0.0011017779],[0.0011827397],[0.0012646811],[0.0013470062],[0.0014290747],[0.0015102087],[0.0015897022],[0.0016668301],[0.0017408591],[0.0018110594],[0.0018767159],[0.0019371406],[0.0019916846],[0.0020397494],[0.0020807981],[0.0021143652],[0.0021400653],[0.0021576011],[0.0021667685],[0.0021674608],[0.0021596713],[0.0021434928],[0.0021191165],[0.0020868284],[0.0020470033],[0.002000099],[0.0019466467],[0.0018872426],[0.0018225366],[0.0017532218],[0.0016800228],[0.0016036845],[0.0015249607],[0.0014446039],[0.0013633553],[0.0012819359],[0.0012010395],[0.0011213266],[0.0010434192],[0.00096789895],[0.00089530505],[0.00082613504],[0.00076084663],[0.00069986123],[0.00064356883],[0.00059233408],[0.00054650353],[0.0005064137],[0.00047239986],[0.0004448052],[0.00042399029],[0.00041034245],[0.00040428491],[0.00040628535],[0.0004168638],[0.00043659946],[0.0004661363],[0.00050618727],[0.00055753682],[0.00062104163],[0.00069762937],[0.00078829546],[0.00089409751],[0.0010161478],[0.0011556034],[0.0013136543],[0.0014915094],[0.0016903812],[0.0019114679],[0.0021559357],[0.0024248987],[0.0027193996],[0.0030403893],[0.0033887077],[0.0037650649],[0.0041700245],[0.0046039875],[0.0050671803],[0.0055596439],[0.0060812269],[0.0066315822],[0.007210166],[0.0078162414],[0.0084488855],[0.0091069987],[0.0097893186],[0.010494435],[0.011220809],[0.01196679],[0.01273064],[0.013510553],[0.014304675],[0.015111124],[0.015928013],[0.016753461],[0.017585614],[0.018422652],[0.019262804],[0.020104351],[0.020945635],[0.021785058],[0.022621086],[0.023452244],[0.024277116],[0.025094341],[0.02590261],[0.026700661],[0.027487275],[0.028261276],[0.029021528],[0.029766931],[0.030496428],[0.031208999],[0.03190367],[0.032579511],[0.033235642],[0.033871237],[0.034485526],[0.035077799],[0.03564741],[0.036193777],[0.036716383],[0.037214777],[0.037688568],[0.038137428],[0.038561082],[0.038959303],[0.03933191],[0.039678753],[0.039999712],[0.040294681],[0.040563564],[0.040806264],[0.041022672],[0.041212662],[0.041376077],[0.041512728],[0.041622383],[0.041704764],[0.041759544],[0.041786343],[0.04178473],[0.041754227],[0.041694312],[0.041604429],[0.041483995],[0.041332419],[0.041149113],[0.040933513],[0.040685104],[0.040403434],[0.040088146],[0.039739003],[0.039355909],[0.038938937],[0.038488353],[0.038004636],[0.037488496],[0.036940892],[0.036363038],[0.03575641],[0.035122749],[0.034464051],[0.033782561],[0.033080753],[0.03236131],[0.031627101],[0.030881146],[0.030126588],[0.029366653],[0.028604615],[0.027843758],[0.02708734],[0.026338551],[0.025600481],[0.024876091],[0.024168174],[0.023479336],[0.02281197],[0.022168236],[0.021550046],[0.020959053],[0.02039664],[0.019863913],[0.019361706],[0.018890573],[0.018450794],[0.018042379],[0.017665076],[0.017318376],[0.017001522],[0.016713521],[0.016453155],[0.016218991],[0.016009395],[0.015822548],[0.015656459],[0.01550898],[0.015377829],[0.015260603],[0.015154802],[0.015057849],[0.014967115],[0.014879942],[0.014793673],[0.014705673],[0.014613363],[0.014514247],[0.01440594],[0.0142862],[0.014152952],[0.014004319],[0.013838647],[0.013654528],[0.013450817],[0.013226654],[0.012981476],[0.012715022],[0.012427341],[0.01211879],[0.011790027],[0.011442004],[0.011075944],[0.010693328],[0.010295865],[0.0098854648],[0.0094642067],[0.009034304],[0.0085980678],[0.0081578699],[0.0077161046],[0.007275152],[0.0068373425],[0.0064049229],[0.0059800261],[0.0055646433],[0.0051606011],[0.0047695412],[0.0043929064],[0.0040319291],[0.0036876262],[0.0033607966],[0.003052024],[0.0027616827],[0.0024899473],[0.002236805],[0.0020020705],[0.0017854021],[0.0015863202],[0.001404226],[0.0012384206],[0.0010881239],[0.00095249362],[0.00083064248],[0.00072165517],[0.00062460338],[0.00053855958],[0.00046260901],[0.00039586003],[0.00033745282],[0.00028656631],[0.0002424236],[0.00020429586],[0.00017150492],[0.00014342457],[0.00011948082],[9.9151313e-05],[8.1963856e-05],[6.749446e-05],[5.5364835e-05],[4.5239569e-05],[3.6823069e-05],[2.9856385e-05],[2.411398e-05],[1.9400539e-05],[1.5547868e-05],[1.241192e-05],[9.8700011e-06],[7.8181619e-06],[6.1687973e-06],[4.8484612e-06],[3.7958953e-06],[2.9602657e-06],[2.2996022e-06],[1.7794251e-06],[1.3715482e-06],[1.0530436e-06],[8.0535069e-07],[6.135171e-07],[4.6555486e-07],[3.5189833e-07],[2.6495086e-07],[1.987078e-07],[1.4844503e-07],[1.104631e-07],[8.1878404e-08],[6.0453553e-08],[4.4460502e-08],[3.2570674e-08],[2.3767242e-08],[1.7275486e-08],[1.2507803e-08],[9.0205056e-09],[6.4800698e-09],[4.6368953e-09],[3.3050159e-09],[2.3464881e-09],[1.65944e-09],[1.1689692e-09]],"fill":"tonexty","fillcolor":"rgba(34.14286, 161.57143, 134.71429, 0.65)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Likely","x":[-12.5,-12.249499,-11.998998,-11.748497,-11.497996,-11.247495,-10.996994,-10.746493,-10.495992,-10.245491,-9.99499,-9.744489,-9.493988,-9.243487,-8.992986,-8.742485,-8.491984,-8.241483,-7.990982,-7.740481,-7.48998,-7.239479,-6.988978,-6.738477,-6.487976,-6.2374749,-5.9869739,-5.7364729,-5.4859719,-5.2354709,-4.9849699,-4.7344689,-4.4839679,-4.2334669,-3.9829659,-3.7324649,-3.4819639,-3.2314629,-2.9809619,-2.7304609,-2.4799599,-2.2294589,-1.9789579,-1.7284569,-1.4779559,-1.2274549,-0.97695391,-0.72645291,-0.4759519,-0.2254509,0.0250501,0.2755511,0.5260521,0.77655311,1.0270541,1.2775551,1.5280561,1.7785571,2.0290581,2.2795591,2.5300601,2.7805611,3.0310621,3.2815631,3.5320641,3.7825651,4.0330661,4.2835671,4.5340681,4.7845691,5.0350701,5.2855711,5.5360721,5.7865731,6.0370741,6.2875752,6.5380762,6.7885772,7.0390782,7.2895792,7.5400802,7.7905812,8.0410822,8.2915832,8.5420842,8.7925852,9.0430862,9.2935872,9.5440882,9.7945892,10.04509,10.295591,10.546092,10.796593,11.047094,11.297595,11.548096,11.798597,12.049098,12.299599,12.5501,12.800601,13.051102,13.301603,13.552104,13.802605,14.053106,14.303607,14.554108,14.804609,15.05511,15.305611,15.556112,15.806613,16.057114,16.307615,16.558116,16.808617,17.059118,17.309619,17.56012,17.810621,18.061122,18.311623,18.562124,18.812625,19.063126,19.313627,19.564128,19.814629,20.06513,20.315631,20.566132,20.816633,21.067134,21.317635,21.568136,21.818637,22.069138,22.319639,22.57014,22.820641,23.071142,23.321643,23.572144,23.822645,24.073146,24.323647,24.574148,24.824649,25.07515,25.325651,25.576152,25.826653,26.077154,26.327655,26.578156,26.828657,27.079158,27.329659,27.58016,27.830661,28.081162,28.331663,28.582164,28.832665,29.083166,29.333667,29.584168,29.834669,30.08517,30.335671,30.586172,30.836673,31.087174,31.337675,31.588176,31.838677,32.089178,32.339679,32.59018,32.840681,33.091182,33.341683,33.592184,33.842685,34.093186,34.343687,34.594188,34.844689,35.09519,35.345691,35.596192,35.846693,36.097194,36.347695,36.598196,36.848697,37.099198,37.349699,37.6002,37.850701,38.101202,38.351703,38.602204,38.852705,39.103206,39.353707,39.604208,39.854709,40.10521,40.355711,40.606212,40.856713,41.107214,41.357715,41.608216,41.858717,42.109218,42.359719,42.61022,42.860721,43.111222,43.361723,43.612224,43.862725,44.113226,44.363727,44.614228,44.864729,45.11523,45.365731,45.616232,45.866733,46.117234,46.367735,46.618236,46.868737,47.119238,47.369739,47.62024,47.870741,48.121242,48.371743,48.622244,48.872745,49.123246,49.373747,49.624248,49.874749,50.125251,50.375752,50.626253,50.876754,51.127255,51.377756,51.628257,51.878758,52.129259,52.37976,52.630261,52.880762,53.131263,53.381764,53.632265,53.882766,54.133267,54.383768,54.634269,54.88477,55.135271,55.385772,55.636273,55.886774,56.137275,56.387776,56.638277,56.888778,57.139279,57.38978,57.640281,57.890782,58.141283,58.391784,58.642285,58.892786,59.143287,59.393788,59.644289,59.89479,60.145291,60.395792,60.646293,60.896794,61.147295,61.397796,61.648297,61.898798,62.149299,62.3998,62.650301,62.900802,63.151303,63.401804,63.652305,63.902806,64.153307,64.403808,64.654309,64.90481,65.155311,65.405812,65.656313,65.906814,66.157315,66.407816,66.658317,66.908818,67.159319,67.40982,67.660321,67.910822,68.161323,68.411824,68.662325,68.912826,69.163327,69.413828,69.664329,69.91483,70.165331,70.415832,70.666333,70.916834,71.167335,71.417836,71.668337,71.918838,72.169339,72.41984,72.670341,72.920842,73.171343,73.421844,73.672345,73.922846,74.173347,74.423848,74.674349,74.92485,75.175351,75.425852,75.676353,75.926854,76.177355,76.427856,76.678357,76.928858,77.179359,77.42986,77.680361,77.930862,78.181363,78.431864,78.682365,78.932866,79.183367,79.433868,79.684369,79.93487,80.185371,80.435872,80.686373,80.936874,81.187375,81.437876,81.688377,81.938878,82.189379,82.43988,82.690381,82.940882,83.191383,83.441884,83.692385,83.942886,84.193387,84.443888,84.694389,84.94489,85.195391,85.445892,85.696393,85.946894,86.197395,86.447896,86.698397,86.948898,87.199399,87.4499,87.700401,87.950902,88.201403,88.451904,88.702405,88.952906,89.203407,89.453908,89.704409,89.95491,90.205411,90.455912,90.706413,90.956914,91.207415,91.457916,91.708417,91.958918,92.209419,92.45992,92.710421,92.960922,93.211423,93.461924,93.712425,93.962926,94.213427,94.463928,94.714429,94.96493,95.215431,95.465932,95.716433,95.966934,96.217435,96.467936,96.718437,96.968938,97.219439,97.46994,97.720441,97.970942,98.221443,98.471944,98.722445,98.972946,99.223447,99.473948,99.724449,99.97495,100.22545,100.47595,100.72645,100.97695,101.22745,101.47796,101.72846,101.97896,102.22946,102.47996,102.73046,102.98096,103.23146,103.48196,103.73246,103.98297,104.23347,104.48397,104.73447,104.98497,105.23547,105.48597,105.73647,105.98697,106.23747,106.48798,106.73848,106.98898,107.23948,107.48998,107.74048,107.99098,108.24148,108.49198,108.74248,108.99299,109.24349,109.49399,109.74449,109.99499,110.24549,110.49599,110.74649,110.99699,111.24749,111.498,111.7485,111.999,112.2495,112.5],"y":[-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743066,-0.15743066,-0.15743066,-0.15743065,-0.15743064,-0.15743063,-0.15743062,-0.1574306,-0.15743058,-0.15743055,-0.15743051,-0.15743046,-0.15743039,-0.15743031,-0.1574302,-0.15743006,-0.15742989,-0.15742967,-0.15742939,-0.15742905,-0.15742862,-0.15742808,-0.15742742,-0.1574266,-0.1574256,-0.15742438,-0.15742289,-0.15742109,-0.15741892,-0.15741631,-0.15741319,-0.15740948,-0.15740508,-0.15739989,-0.15739379,-0.15738666,-0.15737835,-0.15736872,-0.15735761,-0.15734484,-0.15733022,-0.15731359,-0.15729473,-0.15727345,-0.15724955,-0.15722283,-0.15719311,-0.1571602,-0.15712394,-0.15708418,-0.15704079,-0.15699369,-0.15694282,-0.15688815,-0.15682973,-0.15676761,-0.15670194,-0.1566329,-0.15656073,-0.15648576,-0.15640833,-0.15632889,-0.15624793,-0.15616599,-0.15608367,-0.1560016,-0.15592046,-0.15584097,-0.15576384,-0.15568981,-0.15561961,-0.15555396,-0.15549353,-0.15543899,-0.15539092,-0.15534987,-0.15531631,-0.15529061,-0.15527307,-0.1552639,-0.15526321,-0.155271,-0.15528718,-0.15531156,-0.15534384,-0.15538367,-0.15543057,-0.15548403,-0.15554343,-0.15560814,-0.15567745,-0.15575065,-0.15582699,-0.15590571,-0.15598607,-0.15606732,-0.15614874,-0.15622963,-0.15630935,-0.15638725,-0.15646277,-0.15653537,-0.15660454,-0.15666983,-0.15673081,-0.1567871,-0.15683834,-0.15688417,-0.15692426,-0.15695827,-0.15698587,-0.15700668,-0.15702033,-0.15702639,-0.15702439,-0.15701381,-0.15699407,-0.15696454,-0.15692449,-0.15687314,-0.15680963,-0.15673304,-0.15664238,-0.15653658,-0.15641453,-0.15627507,-0.15611702,-0.15593916,-0.15574029,-0.1555192,-0.15527474,-0.15500577,-0.15471127,-0.15439028,-0.15404197,-0.15366561,-0.15326065,-0.15282669,-0.15236349,-0.15187103,-0.15134945,-0.15079909,-0.15022051,-0.14961443,-0.14898179,-0.14832367,-0.14764135,-0.14693624,-0.14620986,-0.14546388,-0.14470003,-0.14392012,-0.143126,-0.14231955,-0.14150266,-0.14067721,-0.13984506,-0.13900802,-0.13816787,-0.13732632,-0.13648504,-0.13564561,-0.13480959,-0.13397843,-0.13315356,-0.13233633,-0.13152806,-0.13073001,-0.1299434,-0.1291694,-0.12840914,-0.12766374,-0.12693424,-0.12622167,-0.125527,-0.12485116,-0.12419503,-0.12355944,-0.12294515,-0.12235287,-0.12178326,-0.1212369,-0.12071429,-0.1202159,-0.1197421,-0.11929324,-0.11886959,-0.11847137,-0.11809876,-0.11775192,-0.11743096,-0.11713599,-0.11686711,-0.11662441,-0.116408,-0.11621801,-0.1160546,-0.11591795,-0.11580829,-0.11572591,-0.11567113,-0.11564433,-0.11564594,-0.11567645,-0.11573636,-0.11582624,-0.11594668,-0.11609825,-0.11628156,-0.11649716,-0.11674557,-0.11702724,-0.11734253,-0.11769167,-0.11807476,-0.11849174,-0.11894232,-0.11942604,-0.11994218,-0.12048978,-0.12106764,-0.12167426,-0.12230792,-0.12296662,-0.12364811,-0.12434992,-0.12506936,-0.12580357,-0.12654953,-0.12730408,-0.12806402,-0.12882606,-0.12958691,-0.13034333,-0.13109212,-0.13183019,-0.13255458,-0.1332625,-0.13395134,-0.1346187,-0.13526244,-0.13588063,-0.13647162,-0.13703403,-0.13756676,-0.13806897,-0.1385401,-0.13897988,-0.13938829,-0.1397656,-0.1401123,-0.14042915,-0.14071715,-0.14097752,-0.14121168,-0.14142128,-0.14160812,-0.14177421,-0.14192169,-0.14205284,-0.14217007,-0.14227587,-0.14237282,-0.14246356,-0.14255073,-0.142637,-0.142725,-0.14281731,-0.14291643,-0.14302473,-0.14314447,-0.14327772,-0.14342635,-0.14359203,-0.14377615,-0.14397986,-0.14420402,-0.1444492,-0.14471565,-0.14500333,-0.14531188,-0.14564065,-0.14598867,-0.14635473,-0.14673734,-0.14713481,-0.14754521,-0.14796647,-0.14839637,-0.14883261,-0.1492728,-0.14971457,-0.15015552,-0.15059333,-0.15102575,-0.15145065,-0.15186603,-0.15227007,-0.15266113,-0.15303777,-0.15339874,-0.15374305,-0.15406988,-0.15437865,-0.15466899,-0.15494073,-0.15519387,-0.1554286,-0.15564527,-0.15584435,-0.15602645,-0.15619225,-0.15634255,-0.15647818,-0.15660003,-0.15670902,-0.15680607,-0.15689211,-0.15696806,-0.15703481,-0.15709322,-0.15714411,-0.15718825,-0.15722638,-0.15725917,-0.15728725,-0.15731119,-0.15733152,-0.15734871,-0.15736318,-0.15737531,-0.15738543,-0.15739385,-0.15740082,-0.15740656,-0.15741127,-0.15741512,-0.15741826,-0.1574208,-0.15742285,-0.1574245,-0.15742582,-0.15742688,-0.15742771,-0.15742837,-0.15742889,-0.1574293,-0.15742962,-0.15742987,-0.15743006,-0.15743021,-0.15743032,-0.15743041,-0.15743047,-0.15743052,-0.15743056,-0.15743059,-0.15743061,-0.15743063,-0.15743064,-0.15743065,-0.15743066,-0.15743066,-0.15743066,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067],"zorder":3,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-12.5,-12.249499,-11.998998,-11.748497,-11.497996,-11.247495,-10.996994,-10.746493,-10.495992,-10.245491,-9.99499,-9.744489,-9.493988,-9.243487,-8.992986,-8.742485,-8.491984,-8.241483,-7.990982,-7.740481,-7.48998,-7.239479,-6.988978,-6.738477,-6.487976,-6.2374749,-5.9869739,-5.7364729,-5.4859719,-5.2354709,-4.9849699,-4.7344689,-4.4839679,-4.2334669,-3.9829659,-3.7324649,-3.4819639,-3.2314629,-2.9809619,-2.7304609,-2.4799599,-2.2294589,-1.9789579,-1.7284569,-1.4779559,-1.2274549,-0.97695391,-0.72645291,-0.4759519,-0.2254509,0.0250501,0.2755511,0.5260521,0.77655311,1.0270541,1.2775551,1.5280561,1.7785571,2.0290581,2.2795591,2.5300601,2.7805611,3.0310621,3.2815631,3.5320641,3.7825651,4.0330661,4.2835671,4.5340681,4.7845691,5.0350701,5.2855711,5.5360721,5.7865731,6.0370741,6.2875752,6.5380762,6.7885772,7.0390782,7.2895792,7.5400802,7.7905812,8.0410822,8.2915832,8.5420842,8.7925852,9.0430862,9.2935872,9.5440882,9.7945892,10.04509,10.295591,10.546092,10.796593,11.047094,11.297595,11.548096,11.798597,12.049098,12.299599,12.5501,12.800601,13.051102,13.301603,13.552104,13.802605,14.053106,14.303607,14.554108,14.804609,15.05511,15.305611,15.556112,15.806613,16.057114,16.307615,16.558116,16.808617,17.059118,17.309619,17.56012,17.810621,18.061122,18.311623,18.562124,18.812625,19.063126,19.313627,19.564128,19.814629,20.06513,20.315631,20.566132,20.816633,21.067134,21.317635,21.568136,21.818637,22.069138,22.319639,22.57014,22.820641,23.071142,23.321643,23.572144,23.822645,24.073146,24.323647,24.574148,24.824649,25.07515,25.325651,25.576152,25.826653,26.077154,26.327655,26.578156,26.828657,27.079158,27.329659,27.58016,27.830661,28.081162,28.331663,28.582164,28.832665,29.083166,29.333667,29.584168,29.834669,30.08517,30.335671,30.586172,30.836673,31.087174,31.337675,31.588176,31.838677,32.089178,32.339679,32.59018,32.840681,33.091182,33.341683,33.592184,33.842685,34.093186,34.343687,34.594188,34.844689,35.09519,35.345691,35.596192,35.846693,36.097194,36.347695,36.598196,36.848697,37.099198,37.349699,37.6002,37.850701,38.101202,38.351703,38.602204,38.852705,39.103206,39.353707,39.604208,39.854709,40.10521,40.355711,40.606212,40.856713,41.107214,41.357715,41.608216,41.858717,42.109218,42.359719,42.61022,42.860721,43.111222,43.361723,43.612224,43.862725,44.113226,44.363727,44.614228,44.864729,45.11523,45.365731,45.616232,45.866733,46.117234,46.367735,46.618236,46.868737,47.119238,47.369739,47.62024,47.870741,48.121242,48.371743,48.622244,48.872745,49.123246,49.373747,49.624248,49.874749,50.125251,50.375752,50.626253,50.876754,51.127255,51.377756,51.628257,51.878758,52.129259,52.37976,52.630261,52.880762,53.131263,53.381764,53.632265,53.882766,54.133267,54.383768,54.634269,54.88477,55.135271,55.385772,55.636273,55.886774,56.137275,56.387776,56.638277,56.888778,57.139279,57.38978,57.640281,57.890782,58.141283,58.391784,58.642285,58.892786,59.143287,59.393788,59.644289,59.89479,60.145291,60.395792,60.646293,60.896794,61.147295,61.397796,61.648297,61.898798,62.149299,62.3998,62.650301,62.900802,63.151303,63.401804,63.652305,63.902806,64.153307,64.403808,64.654309,64.90481,65.155311,65.405812,65.656313,65.906814,66.157315,66.407816,66.658317,66.908818,67.159319,67.40982,67.660321,67.910822,68.161323,68.411824,68.662325,68.912826,69.163327,69.413828,69.664329,69.91483,70.165331,70.415832,70.666333,70.916834,71.167335,71.417836,71.668337,71.918838,72.169339,72.41984,72.670341,72.920842,73.171343,73.421844,73.672345,73.922846,74.173347,74.423848,74.674349,74.92485,75.175351,75.425852,75.676353,75.926854,76.177355,76.427856,76.678357,76.928858,77.179359,77.42986,77.680361,77.930862,78.181363,78.431864,78.682365,78.932866,79.183367,79.433868,79.684369,79.93487,80.185371,80.435872,80.686373,80.936874,81.187375,81.437876,81.688377,81.938878,82.189379,82.43988,82.690381,82.940882,83.191383,83.441884,83.692385,83.942886,84.193387,84.443888,84.694389,84.94489,85.195391,85.445892,85.696393,85.946894,86.197395,86.447896,86.698397,86.948898,87.199399,87.4499,87.700401,87.950902,88.201403,88.451904,88.702405,88.952906,89.203407,89.453908,89.704409,89.95491,90.205411,90.455912,90.706413,90.956914,91.207415,91.457916,91.708417,91.958918,92.209419,92.45992,92.710421,92.960922,93.211423,93.461924,93.712425,93.962926,94.213427,94.463928,94.714429,94.96493,95.215431,95.465932,95.716433,95.966934,96.217435,96.467936,96.718437,96.968938,97.219439,97.46994,97.720441,97.970942,98.221443,98.471944,98.722445,98.972946,99.223447,99.473948,99.724449,99.97495,100.22545,100.47595,100.72645,100.97695,101.22745,101.47796,101.72846,101.97896,102.22946,102.47996,102.73046,102.98096,103.23146,103.48196,103.73246,103.98297,104.23347,104.48397,104.73447,104.98497,105.23547,105.48597,105.73647,105.98697,106.23747,106.48798,106.73848,106.98898,107.23948,107.48998,107.74048,107.99098,108.24148,108.49198,108.74248,108.99299,109.24349,109.49399,109.74449,109.99499,110.24549,110.49599,110.74649,110.99699,111.24749,111.498,111.7485,111.999,112.2495,112.5],"y":[-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756],"zorder":4,"type":"scatter"},{"customdata":[[8.4935079e-41],[1.9284421e-40],[4.361369e-40],[9.8250732e-40],[2.2046796e-39],[4.9277869e-39],[1.0971224e-38],[2.433072e-38],[5.3746673e-38],[1.1826192e-37],[2.5920001e-37],[5.6587673e-37],[1.2305673e-36],[2.6655428e-36],[5.7512555e-36],[1.236051e-35],[2.6461038e-35],[5.6425326e-35],[1.1984999e-34],[2.5357047e-34],[5.3438724e-34],[1.1217865e-33],[2.3456384e-33],[4.885496e-33],[1.0135682e-32],[2.094566e-32],[4.3115342e-32],[8.8402869e-32],[1.8055005e-31],[3.6730395e-31],[7.4430395e-31],[1.5023523e-30],[3.0205773e-30],[6.0492966e-30],[1.2067478e-29],[2.397866e-29],[4.7460252e-29],[9.3568979e-29],[1.8375132e-28],[3.594395e-28],[7.0035439e-28],[1.3592729e-27],[2.6277992e-27],[5.0602787e-27],[9.706294e-27],[1.85451e-26],[3.5294062e-26],[6.6906893e-26],[1.2633882e-25],[2.3762903e-25],[4.4520386e-25],[8.3083559e-25],[1.5444292e-24],[2.8596814e-24],[5.2742905e-24],[9.6896297e-24],[1.7731565e-23],[3.2320918e-23],[5.8683642e-23],[1.061322e-22],[1.9119391e-22],[3.4308179e-22],[6.1322245e-22],[1.0917801e-21],[1.9361948e-21],[3.4202645e-21],[6.0182067e-21],[1.0548028e-20],[1.841502e-20],[3.2023581e-20],[5.5470793e-20],[9.5709626e-20],[1.6449157e-19],[2.8159728e-19],[4.8018661e-19],[8.1562105e-19],[1.3799508e-18],[2.325603e-18],[3.9039512e-18],[6.5278472e-18],[1.0872575e-17],[1.8038136e-17],[2.9809022e-17],[4.9068259e-17],[8.0454517e-17],[1.3140052e-16],[2.1376696e-16],[3.4640247e-16],[5.5913706e-16],[8.9898507e-16],[1.4397385e-15],[2.2967392e-15],[3.6495281e-15],[5.7764194e-15],[9.10705e-15],[1.43019e-14],[2.2372103e-14],[3.4859162e-14],[5.4103351e-14],[8.3642791e-14],[1.288042e-13],[1.9757351e-13],[3.0187326e-13],[4.5942841e-13],[6.9647954e-13],[1.0517106e-12],[1.5819091e-12],[2.3700869e-12],[3.5370774e-12],[5.2580225e-12],[7.7857057e-12],[1.1483421e-11],[1.687106e-11],[2.4689449e-11],[3.5989717e-11],[5.2256893e-11],[7.5580013e-11],[1.0888516e-10],[1.562532e-10],[2.2335093e-10],[3.1801338e-10],[4.5102641e-10],[6.3717349e-10],[8.9662895e-10],[1.2568035e-09],[1.7547763e-09],[2.4404852e-09],[3.380889e-09],[4.6653717e-09],[6.4127235e-09],[8.7801118e-09],[1.1974551e-08],[1.6267487e-08],[2.2013251e-08],[2.9672279e-08],[3.9840164e-08],[5.3283826e-08],[7.098627e-08],[9.4201683e-08],[1.2452285e-07],[1.6396316e-07],[2.1505583e-07],[2.8097313e-07],[3.656689e-07],[4.7404765e-07],[6.1216418e-07],[7.874574e-07],[1.0090226e-06],[1.2879259e-06],[1.6375658e-06],[2.0740841e-06],[2.6168308e-06],[3.2888861e-06],[4.1176391e-06],[5.1354273e-06],[6.380234e-06],[7.896442e-06],[9.7356402e-06],[1.1957476e-05],[1.4630547e-05],[1.7833317e-05],[2.1655046e-05],[2.6196719e-05],[3.1571953e-05],[3.7907857e-05],[4.5345839e-05],[5.4042318e-05],[6.4169327e-05],[7.5914994e-05],[8.9483872e-05],[0.0001050971],[0.00012299241],[0.00014342395],[0.00016666197],[0.00019299234],[0.00022271602],[0.00025614847],[0.00029361906],[0.00033547068],[0.00038205954],[0.00043375533],[0.000490942],[0.00055401916],[0.00062340445],[0.00069953694],[0.00078288198],[0.00087393747],[0.000973242],[0.0010813849],[0.0011990183],[0.0013268721],[0.0014657702],[0.0016166506],[0.0017805868],[0.0019588122],[0.0021527463],[0.002364023],[0.0025945202],[0.0028463903],[0.003122091],[0.0034244152],[0.0037565194],[0.0041219498],[0.0045246634],[0.0049690449],[0.005459916],[0.0060025368],[0.006602597],[0.0072661956],[0.0079998083],[0.0088102393],[0.0097045585],[0.010690022],[0.011773975],[0.012963736],[0.014266468],[0.015689026],[0.017237795],[0.018918514],[0.020736082],[0.022694365],[0.024795993],[0.027042161],[0.029432429],[0.031964541],[0.03463425],[0.037435175],[0.04035868],[0.043393786],[0.046527127],[0.049742942],[0.053023125],[0.056347317],[0.059693057],[0.063035978],[0.066350068],[0.069607968],[0.072781325],[0.075841183],[0.078758403],[0.08150412],[0.084050201],[0.086369718],[0.08843742],[0.090230175],[0.091727396],[0.092911426],[0.093767874],[0.094285895],[0.094458404],[0.09428222],[0.093758142],[0.092890937],[0.091689265],[0.090165517],[0.088335593],[0.086218612],[0.083836561],[0.081213909],[0.078377164],[0.075354423],[0.072174895],[0.068868417],[0.065464989],[0.061994315],[0.058485373],[0.054966023],[0.051462653],[0.047999879],[0.044600284],[0.041284228],[0.038069695],[0.034972208],[0.032004789],[0.029177968],[0.026499844],[0.023976171],[0.021610496],[0.019404313],[0.017357242],[0.015467226],[0.013730735],[0.01214298],[0.010698118],[0.0093894619],[0.0082096721],[0.0071509439],[0.0062051757],[0.0053641223],[0.0046195313],[0.0039632606],[0.0033873778],[0.0028842429],[0.0024465726],[0.00206749],[0.0017405588],[0.0014598053],[0.0012197285],[0.0010153],[0.00084195655],[0.00069558483],[0.00057250165],[0.00046942985],[0.00038347151],[0.00031207938],[0.00025302752],[0.00020438184],[0.00016447121],[0.00013185956],[0.00010531949],[8.3807395e-05],[6.6440616e-05],[5.2476373e-05],[4.1292768e-05],[3.2371689e-05],[2.5283609e-05],[1.9674162e-05],[1.5252396e-05],[1.1780551e-05],[9.065255e-06],[6.9499612e-06],[5.3085237e-06],[4.0397568e-06],[3.0628647e-06],[2.3136226e-06],[1.7412068e-06],[1.3055763e-06],[9.7532463e-07],[7.2592547e-07],[5.3830903e-07],[3.9771221e-07],[2.9275519e-07],[2.1470367e-07],[1.5688241e-07],[1.1421145e-07],[8.2841185e-08],[5.9866628e-08],[4.3104808e-08],[3.0922141e-08],[2.2101247e-08],[1.5738663e-08],[1.1166655e-08],[7.8937403e-09],[5.5596491e-09],[3.9013682e-09],[2.7276691e-09],[1.9000794e-09],[1.3187339e-09],[9.1190165e-10],[6.2826692e-10],[4.3126644e-10],[2.9495263e-10],[2.0098509e-10],[1.3645207e-10],[9.2299812e-11],[6.2205042e-11],[4.1768996e-11],[2.7943817e-11],[1.8626025e-11],[1.2369634e-11],[8.1845561e-12],[5.3955337e-12],[3.5438393e-12],[2.3190666e-12],[1.5119982e-12],[9.8217159e-13],[6.3565382e-13],[4.0987391e-13],[2.6331481e-13],[1.685368e-13],[1.0747506e-13],[6.8283077e-14],[4.32225e-14],[2.725819e-14],[1.7126688e-14],[1.0721063e-14],[6.6863527e-15],[4.1545739e-15],[2.5718657e-15],[1.5861837e-15],[9.7463231e-16],[5.9663544e-16],[3.6387896e-16],[2.2109719e-16],[1.3384022e-16],[8.0717154e-17],[4.8497526e-17],[2.9029968e-17],[1.7311929e-17],[1.0285253e-17],[6.0877075e-18],[3.5897201e-18],[2.1087937e-18],[1.2341643e-18],[7.1957482e-19],[4.1796673e-19],[2.4186273e-19],[1.3943006e-19],[8.0076078e-20],[4.581491e-20],[2.6113632e-20],[1.482801e-20],[8.3878829e-21],[4.7268796e-21],[2.6536778e-21],[1.4841305e-21],[8.2688497e-22],[4.5895066e-22],[2.5376612e-22],[1.397806e-22],[7.6701635e-23],[4.1928151e-23],[2.2832269e-23],[1.2386072e-23],[6.6935771e-24],[3.6034792e-24],[1.9325192e-24],[1.0324348e-24],[5.4946184e-25],[2.913047e-25],[1.5384789e-25],[8.0941042e-26],[4.2420744e-26],[2.2147215e-26],[1.1518354e-26],[5.9674844e-27],[3.0797887e-27],[1.5833555e-27],[8.1089207e-28],[4.1368898e-28],[2.1023759e-28],[1.0643183e-28],[5.3673097e-29],[2.6962804e-29],[1.3492611e-29],[6.7258752e-30],[3.3398177e-30],[1.6520273e-30],[8.1401337e-31],[3.9954441e-31],[1.9535169e-31],[9.5145287e-32],[4.6160955e-32],[2.2308949e-32],[1.0739886e-32],[5.1503409e-33],[2.4602965e-33],[1.1707215e-33],[5.5492445e-34],[2.6201599e-34],[1.2323524e-34],[5.7737069e-35],[2.6945534e-35],[1.2526527e-35],[5.8007738e-36],[2.6757906e-36],[1.229501e-36],[5.6275033e-37],[2.5657385e-37],[1.1652481e-37],[5.2714907e-38],[2.3755114e-38],[1.0663238e-38],[4.7679209e-39],[2.1236191e-39],[9.4217489e-40],[4.1638342e-40],[1.8329982e-40],[8.0377974e-41],[3.5108979e-41],[1.5275843e-41],[6.6206062e-42],[2.8582199e-42],[1.2291322e-42],[5.2650965e-43],[2.2465633e-43],[9.548504e-44],[4.0425567e-44],[1.7048289e-44],[7.1615849e-45],[2.9966842e-45],[1.2490392e-45],[5.1857818e-46],[2.1446444e-46],[8.8348472e-47],[3.6253114e-47],[1.4818148e-47],[6.0331584e-48],[2.4467947e-48],[9.884443e-49],[3.9774851e-49],[1.5942869e-49],[6.3654014e-50],[2.5315492e-50],[1.0028779e-50],[3.9574076e-51],[1.5555155e-51],[6.0902995e-52],[2.3752185e-52],[9.2271799e-53]],"fill":"tonexty","fillcolor":"rgba(39.57143, 126.28571, 142.0, 0.65)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"About Even","x":[-12.5,-12.249499,-11.998998,-11.748497,-11.497996,-11.247495,-10.996994,-10.746493,-10.495992,-10.245491,-9.99499,-9.744489,-9.493988,-9.243487,-8.992986,-8.742485,-8.491984,-8.241483,-7.990982,-7.740481,-7.48998,-7.239479,-6.988978,-6.738477,-6.487976,-6.2374749,-5.9869739,-5.7364729,-5.4859719,-5.2354709,-4.9849699,-4.7344689,-4.4839679,-4.2334669,-3.9829659,-3.7324649,-3.4819639,-3.2314629,-2.9809619,-2.7304609,-2.4799599,-2.2294589,-1.9789579,-1.7284569,-1.4779559,-1.2274549,-0.97695391,-0.72645291,-0.4759519,-0.2254509,0.0250501,0.2755511,0.5260521,0.77655311,1.0270541,1.2775551,1.5280561,1.7785571,2.0290581,2.2795591,2.5300601,2.7805611,3.0310621,3.2815631,3.5320641,3.7825651,4.0330661,4.2835671,4.5340681,4.7845691,5.0350701,5.2855711,5.5360721,5.7865731,6.0370741,6.2875752,6.5380762,6.7885772,7.0390782,7.2895792,7.5400802,7.7905812,8.0410822,8.2915832,8.5420842,8.7925852,9.0430862,9.2935872,9.5440882,9.7945892,10.04509,10.295591,10.546092,10.796593,11.047094,11.297595,11.548096,11.798597,12.049098,12.299599,12.5501,12.800601,13.051102,13.301603,13.552104,13.802605,14.053106,14.303607,14.554108,14.804609,15.05511,15.305611,15.556112,15.806613,16.057114,16.307615,16.558116,16.808617,17.059118,17.309619,17.56012,17.810621,18.061122,18.311623,18.562124,18.812625,19.063126,19.313627,19.564128,19.814629,20.06513,20.315631,20.566132,20.816633,21.067134,21.317635,21.568136,21.818637,22.069138,22.319639,22.57014,22.820641,23.071142,23.321643,23.572144,23.822645,24.073146,24.323647,24.574148,24.824649,25.07515,25.325651,25.576152,25.826653,26.077154,26.327655,26.578156,26.828657,27.079158,27.329659,27.58016,27.830661,28.081162,28.331663,28.582164,28.832665,29.083166,29.333667,29.584168,29.834669,30.08517,30.335671,30.586172,30.836673,31.087174,31.337675,31.588176,31.838677,32.089178,32.339679,32.59018,32.840681,33.091182,33.341683,33.592184,33.842685,34.093186,34.343687,34.594188,34.844689,35.09519,35.345691,35.596192,35.846693,36.097194,36.347695,36.598196,36.848697,37.099198,37.349699,37.6002,37.850701,38.101202,38.351703,38.602204,38.852705,39.103206,39.353707,39.604208,39.854709,40.10521,40.355711,40.606212,40.856713,41.107214,41.357715,41.608216,41.858717,42.109218,42.359719,42.61022,42.860721,43.111222,43.361723,43.612224,43.862725,44.113226,44.363727,44.614228,44.864729,45.11523,45.365731,45.616232,45.866733,46.117234,46.367735,46.618236,46.868737,47.119238,47.369739,47.62024,47.870741,48.121242,48.371743,48.622244,48.872745,49.123246,49.373747,49.624248,49.874749,50.125251,50.375752,50.626253,50.876754,51.127255,51.377756,51.628257,51.878758,52.129259,52.37976,52.630261,52.880762,53.131263,53.381764,53.632265,53.882766,54.133267,54.383768,54.634269,54.88477,55.135271,55.385772,55.636273,55.886774,56.137275,56.387776,56.638277,56.888778,57.139279,57.38978,57.640281,57.890782,58.141283,58.391784,58.642285,58.892786,59.143287,59.393788,59.644289,59.89479,60.145291,60.395792,60.646293,60.896794,61.147295,61.397796,61.648297,61.898798,62.149299,62.3998,62.650301,62.900802,63.151303,63.401804,63.652305,63.902806,64.153307,64.403808,64.654309,64.90481,65.155311,65.405812,65.656313,65.906814,66.157315,66.407816,66.658317,66.908818,67.159319,67.40982,67.660321,67.910822,68.161323,68.411824,68.662325,68.912826,69.163327,69.413828,69.664329,69.91483,70.165331,70.415832,70.666333,70.916834,71.167335,71.417836,71.668337,71.918838,72.169339,72.41984,72.670341,72.920842,73.171343,73.421844,73.672345,73.922846,74.173347,74.423848,74.674349,74.92485,75.175351,75.425852,75.676353,75.926854,76.177355,76.427856,76.678357,76.928858,77.179359,77.42986,77.680361,77.930862,78.181363,78.431864,78.682365,78.932866,79.183367,79.433868,79.684369,79.93487,80.185371,80.435872,80.686373,80.936874,81.187375,81.437876,81.688377,81.938878,82.189379,82.43988,82.690381,82.940882,83.191383,83.441884,83.692385,83.942886,84.193387,84.443888,84.694389,84.94489,85.195391,85.445892,85.696393,85.946894,86.197395,86.447896,86.698397,86.948898,87.199399,87.4499,87.700401,87.950902,88.201403,88.451904,88.702405,88.952906,89.203407,89.453908,89.704409,89.95491,90.205411,90.455912,90.706413,90.956914,91.207415,91.457916,91.708417,91.958918,92.209419,92.45992,92.710421,92.960922,93.211423,93.461924,93.712425,93.962926,94.213427,94.463928,94.714429,94.96493,95.215431,95.465932,95.716433,95.966934,96.217435,96.467936,96.718437,96.968938,97.219439,97.46994,97.720441,97.970942,98.221443,98.471944,98.722445,98.972946,99.223447,99.473948,99.724449,99.97495,100.22545,100.47595,100.72645,100.97695,101.22745,101.47796,101.72846,101.97896,102.22946,102.47996,102.73046,102.98096,103.23146,103.48196,103.73246,103.98297,104.23347,104.48397,104.73447,104.98497,105.23547,105.48597,105.73647,105.98697,106.23747,106.48798,106.73848,106.98898,107.23948,107.48998,107.74048,107.99098,108.24148,108.49198,108.74248,108.99299,109.24349,109.49399,109.74449,109.99499,110.24549,110.49599,110.74649,110.99699,111.24749,111.498,111.7485,111.999,112.2495,112.5],"y":[-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990755,-0.20990755,-0.20990755,-0.20990754,-0.20990753,-0.20990752,-0.20990751,-0.20990749,-0.20990747,-0.20990744,-0.2099074,-0.20990735,-0.20990728,-0.2099072,-0.20990709,-0.20990695,-0.20990678,-0.20990655,-0.20990628,-0.20990593,-0.20990549,-0.20990495,-0.20990427,-0.20990345,-0.20990243,-0.20990118,-0.20989967,-0.20989783,-0.20989561,-0.20989293,-0.20988973,-0.20988591,-0.20988137,-0.20987599,-0.20986966,-0.20986222,-0.20985352,-0.20984339,-0.20983165,-0.20981808,-0.20980247,-0.20978457,-0.20976414,-0.2097409,-0.20971457,-0.20968485,-0.20965142,-0.20961394,-0.20957209,-0.2095255,-0.20947381,-0.20941662,-0.20935354,-0.20928416,-0.20920803,-0.20912468,-0.20903363,-0.20893432,-0.20882618,-0.20870855,-0.20858069,-0.20844179,-0.20829091,-0.20812698,-0.20794875,-0.20775482,-0.20754354,-0.20731304,-0.20706117,-0.20678547,-0.20648315,-0.20615104,-0.20578561,-0.2053829,-0.20493852,-0.20444765,-0.20390503,-0.20330497,-0.20264137,-0.20190776,-0.20109732,-0.20020301,-0.19921754,-0.19813359,-0.19694383,-0.1956411,-0.19421854,-0.19266977,-0.19098905,-0.18917148,-0.1872132,-0.18511157,-0.1828654,-0.18047513,-0.17794302,-0.17527331,-0.17247239,-0.16954888,-0.16651378,-0.16338044,-0.16016462,-0.15688444,-0.15356025,-0.15021451,-0.14687159,-0.1435575,-0.1402996,-0.13712624,-0.13406638,-0.13114916,-0.12840344,-0.12585736,-0.12353785,-0.12147014,-0.11967739,-0.11818017,-0.11699614,-0.11613969,-0.11562167,-0.11544916,-0.11562534,-0.11614942,-0.11701663,-0.1182183,-0.11974205,-0.12157197,-0.12368895,-0.126071,-0.12869366,-0.1315304,-0.13455314,-0.13773267,-0.14103915,-0.14444257,-0.14791325,-0.15142219,-0.15494154,-0.15844491,-0.16190769,-0.16530728,-0.16862334,-0.17183787,-0.17493536,-0.17790277,-0.1807296,-0.18340772,-0.18593139,-0.18829707,-0.19050325,-0.19255032,-0.19444034,-0.19617683,-0.19776458,-0.19920945,-0.2005181,-0.20169789,-0.20275662,-0.20370239,-0.20454344,-0.20528803,-0.2059443,-0.20652019,-0.20702332,-0.20746099,-0.20784007,-0.20816701,-0.20844776,-0.20868784,-0.20889226,-0.20906561,-0.20921198,-0.20933506,-0.20943813,-0.20952409,-0.20959548,-0.20965454,-0.20970318,-0.20974309,-0.2097757,-0.20980224,-0.20982376,-0.20984112,-0.20985509,-0.20986627,-0.20987519,-0.20988228,-0.20988789,-0.20989231,-0.20989578,-0.2098985,-0.20990061,-0.20990226,-0.20990352,-0.2099045,-0.20990525,-0.20990582,-0.20990626,-0.20990659,-0.20990684,-0.20990703,-0.20990717,-0.20990727,-0.20990735,-0.20990741,-0.20990745,-0.20990748,-0.2099075,-0.20990752,-0.20990753,-0.20990754,-0.20990755,-0.20990755,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756],"zorder":4,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-12.5,-12.249499,-11.998998,-11.748497,-11.497996,-11.247495,-10.996994,-10.746493,-10.495992,-10.245491,-9.99499,-9.744489,-9.493988,-9.243487,-8.992986,-8.742485,-8.491984,-8.241483,-7.990982,-7.740481,-7.48998,-7.239479,-6.988978,-6.738477,-6.487976,-6.2374749,-5.9869739,-5.7364729,-5.4859719,-5.2354709,-4.9849699,-4.7344689,-4.4839679,-4.2334669,-3.9829659,-3.7324649,-3.4819639,-3.2314629,-2.9809619,-2.7304609,-2.4799599,-2.2294589,-1.9789579,-1.7284569,-1.4779559,-1.2274549,-0.97695391,-0.72645291,-0.4759519,-0.2254509,0.0250501,0.2755511,0.5260521,0.77655311,1.0270541,1.2775551,1.5280561,1.7785571,2.0290581,2.2795591,2.5300601,2.7805611,3.0310621,3.2815631,3.5320641,3.7825651,4.0330661,4.2835671,4.5340681,4.7845691,5.0350701,5.2855711,5.5360721,5.7865731,6.0370741,6.2875752,6.5380762,6.7885772,7.0390782,7.2895792,7.5400802,7.7905812,8.0410822,8.2915832,8.5420842,8.7925852,9.0430862,9.2935872,9.5440882,9.7945892,10.04509,10.295591,10.546092,10.796593,11.047094,11.297595,11.548096,11.798597,12.049098,12.299599,12.5501,12.800601,13.051102,13.301603,13.552104,13.802605,14.053106,14.303607,14.554108,14.804609,15.05511,15.305611,15.556112,15.806613,16.057114,16.307615,16.558116,16.808617,17.059118,17.309619,17.56012,17.810621,18.061122,18.311623,18.562124,18.812625,19.063126,19.313627,19.564128,19.814629,20.06513,20.315631,20.566132,20.816633,21.067134,21.317635,21.568136,21.818637,22.069138,22.319639,22.57014,22.820641,23.071142,23.321643,23.572144,23.822645,24.073146,24.323647,24.574148,24.824649,25.07515,25.325651,25.576152,25.826653,26.077154,26.327655,26.578156,26.828657,27.079158,27.329659,27.58016,27.830661,28.081162,28.331663,28.582164,28.832665,29.083166,29.333667,29.584168,29.834669,30.08517,30.335671,30.586172,30.836673,31.087174,31.337675,31.588176,31.838677,32.089178,32.339679,32.59018,32.840681,33.091182,33.341683,33.592184,33.842685,34.093186,34.343687,34.594188,34.844689,35.09519,35.345691,35.596192,35.846693,36.097194,36.347695,36.598196,36.848697,37.099198,37.349699,37.6002,37.850701,38.101202,38.351703,38.602204,38.852705,39.103206,39.353707,39.604208,39.854709,40.10521,40.355711,40.606212,40.856713,41.107214,41.357715,41.608216,41.858717,42.109218,42.359719,42.61022,42.860721,43.111222,43.361723,43.612224,43.862725,44.113226,44.363727,44.614228,44.864729,45.11523,45.365731,45.616232,45.866733,46.117234,46.367735,46.618236,46.868737,47.119238,47.369739,47.62024,47.870741,48.121242,48.371743,48.622244,48.872745,49.123246,49.373747,49.624248,49.874749,50.125251,50.375752,50.626253,50.876754,51.127255,51.377756,51.628257,51.878758,52.129259,52.37976,52.630261,52.880762,53.131263,53.381764,53.632265,53.882766,54.133267,54.383768,54.634269,54.88477,55.135271,55.385772,55.636273,55.886774,56.137275,56.387776,56.638277,56.888778,57.139279,57.38978,57.640281,57.890782,58.141283,58.391784,58.642285,58.892786,59.143287,59.393788,59.644289,59.89479,60.145291,60.395792,60.646293,60.896794,61.147295,61.397796,61.648297,61.898798,62.149299,62.3998,62.650301,62.900802,63.151303,63.401804,63.652305,63.902806,64.153307,64.403808,64.654309,64.90481,65.155311,65.405812,65.656313,65.906814,66.157315,66.407816,66.658317,66.908818,67.159319,67.40982,67.660321,67.910822,68.161323,68.411824,68.662325,68.912826,69.163327,69.413828,69.664329,69.91483,70.165331,70.415832,70.666333,70.916834,71.167335,71.417836,71.668337,71.918838,72.169339,72.41984,72.670341,72.920842,73.171343,73.421844,73.672345,73.922846,74.173347,74.423848,74.674349,74.92485,75.175351,75.425852,75.676353,75.926854,76.177355,76.427856,76.678357,76.928858,77.179359,77.42986,77.680361,77.930862,78.181363,78.431864,78.682365,78.932866,79.183367,79.433868,79.684369,79.93487,80.185371,80.435872,80.686373,80.936874,81.187375,81.437876,81.688377,81.938878,82.189379,82.43988,82.690381,82.940882,83.191383,83.441884,83.692385,83.942886,84.193387,84.443888,84.694389,84.94489,85.195391,85.445892,85.696393,85.946894,86.197395,86.447896,86.698397,86.948898,87.199399,87.4499,87.700401,87.950902,88.201403,88.451904,88.702405,88.952906,89.203407,89.453908,89.704409,89.95491,90.205411,90.455912,90.706413,90.956914,91.207415,91.457916,91.708417,91.958918,92.209419,92.45992,92.710421,92.960922,93.211423,93.461924,93.712425,93.962926,94.213427,94.463928,94.714429,94.96493,95.215431,95.465932,95.716433,95.966934,96.217435,96.467936,96.718437,96.968938,97.219439,97.46994,97.720441,97.970942,98.221443,98.471944,98.722445,98.972946,99.223447,99.473948,99.724449,99.97495,100.22545,100.47595,100.72645,100.97695,101.22745,101.47796,101.72846,101.97896,102.22946,102.47996,102.73046,102.98096,103.23146,103.48196,103.73246,103.98297,104.23347,104.48397,104.73447,104.98497,105.23547,105.48597,105.73647,105.98697,106.23747,106.48798,106.73848,106.98898,107.23948,107.48998,107.74048,107.99098,108.24148,108.49198,108.74248,108.99299,109.24349,109.49399,109.74449,109.99499,110.24549,110.49599,110.74649,110.99699,111.24749,111.498,111.7485,111.999,112.2495,112.5],"y":[-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445],"zorder":5,"type":"scatter"},{"customdata":[[4.4096298e-06],[5.5976648e-06],[7.0810128e-06],[8.9263053e-06],[1.1213471e-05],[1.4037975e-05],[1.7513342e-05],[2.1773977e-05],[2.6978308e-05],[3.3312241e-05],[4.0992946e-05],[5.0272961e-05],[6.1444602e-05],[7.4844652e-05],[9.0859295e-05],[0.00010992925],[0.00013255503],[0.00015930224],[0.00019080684],[0.00022778022],[0.000271014],[0.0003213843],[0.00037985552],[0.00044748314],[0.00052541565],[0.00061489518],[0.00071725674],[0.00083392584],[0.00096641424],[0.0011163137],[0.0012852877],[0.0014750603],[0.0016874033],[0.0019241207],[0.0021870302],[0.002477943],[0.0027986408],[0.0031508512],[0.003536221],[0.003956288],[0.0044124521],[0.0049059456],[0.0054378036],[0.0060088352],[0.0066195955],[0.0072703604],[0.0079611028],[0.0086914731],[0.0094607829],[0.010267993],[0.011111708],[0.011990171],[0.012901273],[0.013842557],[0.014811236],[0.015804213],[0.01681811],[0.017849291],[0.018893908],[0.01994793],[0.021007195],[0.022067445],[0.02312438],[0.024173701],[0.025211157],[0.026232594],[0.027233997],[0.028211533],[0.02916159],[0.030080816],[0.030966151],[0.031814855],[0.032624535],[0.033393165],[0.034119106],[0.034801116],[0.035438358],[0.036030412],[0.036577269],[0.037079331],[0.037537404],[0.037952689],[0.038326766],[0.038661576],[0.038959398],[0.039222823],[0.039454721],[0.039658208],[0.039836606],[0.039993396],[0.040132175],[0.040256604],[0.040370349],[0.04047703],[0.040580161],[0.040683088],[0.040788932],[0.040900532],[0.041020385],[0.041150597],[0.041292833],[0.041448272],[0.041617578],[0.041800864],[0.041997677],[0.042206986],[0.042427181],[0.042656086],[0.042890975],[0.043128605],[0.043365256],[0.043596783],[0.043818673],[0.044026117],[0.044214081],[0.044377389],[0.04451081],[0.044609142],[0.044667305],[0.044680431],[0.044643948],[0.044553666],[0.044405853],[0.044197305],[0.043925407],[0.043588187],[0.043184351],[0.042713313],[0.042175211],[0.041570903],[0.04090196],[0.040170639],[0.039379843],[0.038533075],[0.037634377],[0.036688263],[0.035699641],[0.034673735],[0.033616],[0.032532034],[0.031427499],[0.03030803],[0.029179165],[0.028046268],[0.026914464],[0.025788584],[0.024673114],[0.023572162],[0.022489426],[0.021428178],[0.020391252],[0.01938105],[0.018399547],[0.017448308],[0.016528511],[0.015640974],[0.014786188],[0.013964349],[0.013175395],[0.012419044],[0.011694828],[0.011002129],[0.01034021],[0.0097082466],[0.0091053554],[0.0085306148],[0.0079830874],[0.0074618361],[0.0069659373],[0.006494492],[0.0060466316],[0.0056215236],[0.0052183725],[0.0048364209],[0.004474947],[0.0041332624],[0.0038107078],[0.003506649],[0.0032204722],[0.0029515791],[0.0026993826],[0.0024633024],[0.002242762],[0.0020371847],[0.0018459923],[0.0016686027],[0.0015044294],[0.0013528812],[0.0012133622],[0.0010852737],[0.00096801469],[0.00086098434],[0.00076358409],[0.00067522006],[0.00059530569],[0.00052326438],[0.00045853215],[0.00040056009],[0.00034881682],[0.00030279054],[0.000261991],[0.00022595104],[0.00019422789],[0.00016640415],[0.00014208842],[0.00012091565],[0.00010254711],[8.6670206e-05],[7.299796e-05],[6.1268264e-05],[5.1242978e-05],[4.2706851e-05],[3.5466315e-05],[2.9348187e-05],[2.4198308e-05],[1.988014e-05],[1.6273359e-05],[1.3272455e-05],[1.0785368e-05],[8.732167e-06],[7.0437905e-06],[5.6608612e-06],[4.5325738e-06],[3.6156676e-06],[2.8734822e-06],[2.2750995e-06],[1.7945676e-06],[1.4102065e-06],[1.1039903e-06],[8.6100126e-07],[6.6895188e-07],[5.177681e-07],[3.9922889e-07],[3.0665637e-07],[2.3465114e-07],[1.7886748e-07],[1.3582377e-07],[1.0274329e-07],[7.7421647e-08],[5.8116637e-08],[4.3457605e-08],[3.2371032e-08],[2.4019891e-08],[1.7754467e-08],[1.3072688e-08],[9.5882937e-09],[7.0054435e-09],[5.0985483e-09],[3.6963481e-09],[2.669399e-09],[1.9202924e-09],[1.3760477e-09],[9.8222496e-10],[6.9839141e-10],[4.9464821e-10],[3.4898187e-10],[2.4525474e-10],[1.7168778e-10],[1.1972041e-10],[8.3157835e-11],[5.7536546e-11],[3.9654227e-11],[2.7223238e-11],[1.8616334e-11],[1.2680963e-11],[8.6042606e-12],[5.815375e-12],[3.9151138e-12],[2.625507e-12],[1.753815e-12],[1.1669598e-12],[7.7344464e-13],[5.1062669e-13],[3.3579829e-13],[2.1996516e-13],[1.4352565e-13],[9.3283577e-14],[6.0392174e-14],[3.8945364e-14],[2.5016717e-14],[1.6006787e-14],[1.0201808e-14],[6.4766303e-15],[4.0956225e-15],[2.5798203e-15],[1.6186673e-15],[1.0116359e-15],[6.2978056e-16],[3.9052833e-16],[2.412204e-16],[1.4841357e-16],[9.0955972e-17],[5.552477e-17],[3.3762936e-17],[2.0449915e-17],[1.2337886e-17],[7.4146096e-18],[4.4384909e-18],[2.6465842e-18],[1.5719948e-18],[9.3018047e-19],[5.4845684e-19],[3.2248229e-19],[1.8951846e-19],[1.1208473e-19],[6.8034834e-20],[4.4603237e-20],[3.4925617e-20],[3.6146648e-20],[4.8627075e-20],[7.6044008e-20],[1.2641051e-19],[2.1427908e-19],[3.6469568e-19],[6.1990894e-19],[1.0505132e-18],[1.7737685e-18],[2.9835287e-18],[4.9988924e-18],[8.342929e-18],[1.3869522e-17],[2.2966862e-17],[3.7882508e-17],[6.2240427e-17],[1.0185988e-16],[1.6604679e-16],[2.6962151e-16],[4.360892e-16],[7.0257525e-16],[1.1274755e-15],[1.8022626e-15],[2.8696293e-15],[4.5512452e-15],[7.1900418e-15],[1.1314342e-14],[1.7734704e-14],[2.7689513e-14],[4.3062915e-14],[6.6709587e-14],[1.029366e-13],[1.5821516e-13],[2.4222732e-13],[3.6939829e-13],[5.6112984e-13],[8.4904084e-13],[1.279648e-12],[1.9210966e-12],[2.8727948e-12],[4.2791425e-12],[6.3490043e-12],[9.3832053e-12],[1.3813176e-11],[2.0255017e-11],[2.9584784e-11],[4.3042841e-11],[6.2377819e-11],[9.0044289e-11],[1.294729e-10],[1.8543783e-10],[2.6455411e-10],[3.759477e-10],[5.3215368e-10],[7.5031467e-10],[1.0537717e-09],[1.474166e-09],[2.054201e-09],[2.8512562e-09],[3.9420875e-09],[5.4289147e-09],[7.4472599e-09],[1.0175991e-08],[1.3850124e-08],[1.877705e-08],[2.5356994e-08],[3.410868e-08],[4.5701324e-08],[6.0994319e-08],[8.1086158e-08],[1.0737441e-07],[1.416288e-07],[1.8607975e-07],[2.435249e-07],[3.174566e-07],[4.1221338e-07],[5.3315875e-07],[6.8689084e-07],[8.8148644e-07],[1.126783e-06],[1.4347018e-06],[1.8196161e-06],[2.2987651e-06],[2.8927185e-06],[3.6258887e-06],[4.5270938e-06],[5.6301668e-06],[6.9746071e-06],[8.6062701e-06],[1.0578082e-05],[1.2950771e-05],[1.5793596e-05],[1.9185061e-05],[2.3213576e-05],[2.7978064e-05],[3.3588453e-05],[4.0166045e-05],[4.7843712e-05],[5.6765884e-05],[6.7088281e-05],[7.8977368e-05],[9.2609467e-05],[0.0001081695],[0.00012584936],[0.00014584581],[0.00016835794],[0.00019358423],[0.00022171909],[0.00025294897],[0.00028744813],[0.00032537396],[0.00036686209],[0.00041202123],[0.000460928],[0.00051362165],[0.000570099],[0.00063030966],[0.00069415169],[0.00076146779],[0.00083204232],[0.0009055992],[0.00098180078],[0.001060248],[0.0011404815],[0.0012219848],[0.0013041876],[0.0013864718],[0.0014681782],[0.0015486142],[0.0016270632],[0.0017027949],[0.0017750762],[0.0018431827],[0.0019064108],[0.0019640898],[0.0020155934],[0.0020603511],[0.0020978589],[0.0021276884],[0.0021494955],[0.0021630261],[0.0021681221],[0.0021647234],[0.0021528702],[0.0021327011],[0.0021044513],[0.0020684475],[0.0020251017],[0.0019749037],[0.0019184113],[0.0018562406],[0.0017890544],[0.0017175506],[0.0016424504],[0.0015644862],[0.0014843897],[0.0014028811],[0.0013206584],[0.0012383885],[0.0011566981],[0.0010761675],[0.00099732441],[0.00092063983],[0.00084652502],[0.00077532997],[0.00070734303],[0.00064279177],[0.00058184496],[0.00052461532],[0.00047116324],[0.00042150095],[0.00037559729],[0.00033338271],[0.00029475448],[0.00025958195],[0.00022771168],[0.00019897241],[0.00017317976],[0.0001501406],[0.00012965697],[0.00011152965],[9.5561187e-05],[8.1558544e-05],[6.9335256e-05],[5.8713168e-05],[4.9523763e-05],[4.1609116e-05],[3.482251e-05],[2.9028754e-05],[2.410424e-05],[1.9936789e-05],[1.6425315e-05]],"fill":"tonexty","fillcolor":"rgba(54.57143, 90.71429, 139.85714, 0.65)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Little Chance","x":[-12.5,-12.249499,-11.998998,-11.748497,-11.497996,-11.247495,-10.996994,-10.746493,-10.495992,-10.245491,-9.99499,-9.744489,-9.493988,-9.243487,-8.992986,-8.742485,-8.491984,-8.241483,-7.990982,-7.740481,-7.48998,-7.239479,-6.988978,-6.738477,-6.487976,-6.2374749,-5.9869739,-5.7364729,-5.4859719,-5.2354709,-4.9849699,-4.7344689,-4.4839679,-4.2334669,-3.9829659,-3.7324649,-3.4819639,-3.2314629,-2.9809619,-2.7304609,-2.4799599,-2.2294589,-1.9789579,-1.7284569,-1.4779559,-1.2274549,-0.97695391,-0.72645291,-0.4759519,-0.2254509,0.0250501,0.2755511,0.5260521,0.77655311,1.0270541,1.2775551,1.5280561,1.7785571,2.0290581,2.2795591,2.5300601,2.7805611,3.0310621,3.2815631,3.5320641,3.7825651,4.0330661,4.2835671,4.5340681,4.7845691,5.0350701,5.2855711,5.5360721,5.7865731,6.0370741,6.2875752,6.5380762,6.7885772,7.0390782,7.2895792,7.5400802,7.7905812,8.0410822,8.2915832,8.5420842,8.7925852,9.0430862,9.2935872,9.5440882,9.7945892,10.04509,10.295591,10.546092,10.796593,11.047094,11.297595,11.548096,11.798597,12.049098,12.299599,12.5501,12.800601,13.051102,13.301603,13.552104,13.802605,14.053106,14.303607,14.554108,14.804609,15.05511,15.305611,15.556112,15.806613,16.057114,16.307615,16.558116,16.808617,17.059118,17.309619,17.56012,17.810621,18.061122,18.311623,18.562124,18.812625,19.063126,19.313627,19.564128,19.814629,20.06513,20.315631,20.566132,20.816633,21.067134,21.317635,21.568136,21.818637,22.069138,22.319639,22.57014,22.820641,23.071142,23.321643,23.572144,23.822645,24.073146,24.323647,24.574148,24.824649,25.07515,25.325651,25.576152,25.826653,26.077154,26.327655,26.578156,26.828657,27.079158,27.329659,27.58016,27.830661,28.081162,28.331663,28.582164,28.832665,29.083166,29.333667,29.584168,29.834669,30.08517,30.335671,30.586172,30.836673,31.087174,31.337675,31.588176,31.838677,32.089178,32.339679,32.59018,32.840681,33.091182,33.341683,33.592184,33.842685,34.093186,34.343687,34.594188,34.844689,35.09519,35.345691,35.596192,35.846693,36.097194,36.347695,36.598196,36.848697,37.099198,37.349699,37.6002,37.850701,38.101202,38.351703,38.602204,38.852705,39.103206,39.353707,39.604208,39.854709,40.10521,40.355711,40.606212,40.856713,41.107214,41.357715,41.608216,41.858717,42.109218,42.359719,42.61022,42.860721,43.111222,43.361723,43.612224,43.862725,44.113226,44.363727,44.614228,44.864729,45.11523,45.365731,45.616232,45.866733,46.117234,46.367735,46.618236,46.868737,47.119238,47.369739,47.62024,47.870741,48.121242,48.371743,48.622244,48.872745,49.123246,49.373747,49.624248,49.874749,50.125251,50.375752,50.626253,50.876754,51.127255,51.377756,51.628257,51.878758,52.129259,52.37976,52.630261,52.880762,53.131263,53.381764,53.632265,53.882766,54.133267,54.383768,54.634269,54.88477,55.135271,55.385772,55.636273,55.886774,56.137275,56.387776,56.638277,56.888778,57.139279,57.38978,57.640281,57.890782,58.141283,58.391784,58.642285,58.892786,59.143287,59.393788,59.644289,59.89479,60.145291,60.395792,60.646293,60.896794,61.147295,61.397796,61.648297,61.898798,62.149299,62.3998,62.650301,62.900802,63.151303,63.401804,63.652305,63.902806,64.153307,64.403808,64.654309,64.90481,65.155311,65.405812,65.656313,65.906814,66.157315,66.407816,66.658317,66.908818,67.159319,67.40982,67.660321,67.910822,68.161323,68.411824,68.662325,68.912826,69.163327,69.413828,69.664329,69.91483,70.165331,70.415832,70.666333,70.916834,71.167335,71.417836,71.668337,71.918838,72.169339,72.41984,72.670341,72.920842,73.171343,73.421844,73.672345,73.922846,74.173347,74.423848,74.674349,74.92485,75.175351,75.425852,75.676353,75.926854,76.177355,76.427856,76.678357,76.928858,77.179359,77.42986,77.680361,77.930862,78.181363,78.431864,78.682365,78.932866,79.183367,79.433868,79.684369,79.93487,80.185371,80.435872,80.686373,80.936874,81.187375,81.437876,81.688377,81.938878,82.189379,82.43988,82.690381,82.940882,83.191383,83.441884,83.692385,83.942886,84.193387,84.443888,84.694389,84.94489,85.195391,85.445892,85.696393,85.946894,86.197395,86.447896,86.698397,86.948898,87.199399,87.4499,87.700401,87.950902,88.201403,88.451904,88.702405,88.952906,89.203407,89.453908,89.704409,89.95491,90.205411,90.455912,90.706413,90.956914,91.207415,91.457916,91.708417,91.958918,92.209419,92.45992,92.710421,92.960922,93.211423,93.461924,93.712425,93.962926,94.213427,94.463928,94.714429,94.96493,95.215431,95.465932,95.716433,95.966934,96.217435,96.467936,96.718437,96.968938,97.219439,97.46994,97.720441,97.970942,98.221443,98.471944,98.722445,98.972946,99.223447,99.473948,99.724449,99.97495,100.22545,100.47595,100.72645,100.97695,101.22745,101.47796,101.72846,101.97896,102.22946,102.47996,102.73046,102.98096,103.23146,103.48196,103.73246,103.98297,104.23347,104.48397,104.73447,104.98497,105.23547,105.48597,105.73647,105.98697,106.23747,106.48798,106.73848,106.98898,107.23948,107.48998,107.74048,107.99098,108.24148,108.49198,108.74248,108.99299,109.24349,109.49399,109.74449,109.99499,110.24549,110.49599,110.74649,110.99699,111.24749,111.498,111.7485,111.999,112.2495,112.5],"y":[-0.26238005,-0.26237886,-0.26237737,-0.26237553,-0.26237324,-0.26237042,-0.26236694,-0.26236268,-0.26235748,-0.26235114,-0.26234346,-0.26233418,-0.26232301,-0.26230961,-0.2622936,-0.26227453,-0.2622519,-0.26222515,-0.26219365,-0.26215667,-0.26211344,-0.26206307,-0.2620046,-0.26193697,-0.26185904,-0.26176956,-0.2616672,-0.26155053,-0.26141804,-0.26126814,-0.26109917,-0.26090939,-0.26069705,-0.26046033,-0.26019742,-0.25990651,-0.25958581,-0.2592336,-0.25884823,-0.25842817,-0.257972,-0.25747851,-0.25694665,-0.25637562,-0.25576486,-0.25511409,-0.25442335,-0.25369298,-0.25292367,-0.25211646,-0.25127275,-0.25039428,-0.24948318,-0.2485419,-0.24757322,-0.24658024,-0.24556635,-0.24453516,-0.24349055,-0.24243652,-0.24137726,-0.24031701,-0.23926007,-0.23821075,-0.2371733,-0.23615186,-0.23515046,-0.23417292,-0.23322286,-0.23230364,-0.2314183,-0.2305696,-0.22975992,-0.22899129,-0.22826535,-0.22758334,-0.2269461,-0.22635404,-0.22580719,-0.22530512,-0.22484705,-0.22443177,-0.22405769,-0.22372288,-0.22342506,-0.22316163,-0.22292973,-0.22272625,-0.22254785,-0.22239106,-0.22225228,-0.22212785,-0.22201411,-0.22190742,-0.22180429,-0.22170137,-0.22159552,-0.22148392,-0.22136407,-0.22123386,-0.22109162,-0.22093618,-0.22076688,-0.22058359,-0.22038678,-0.22017747,-0.21995727,-0.21972837,-0.21949348,-0.21925585,-0.2190192,-0.21878767,-0.21856578,-0.21835834,-0.21817037,-0.21800707,-0.21787364,-0.21777531,-0.21771715,-0.21770402,-0.21774051,-0.21783079,-0.2179786,-0.21818715,-0.21845905,-0.21879627,-0.2192001,-0.21967114,-0.22020924,-0.22081355,-0.22148249,-0.22221382,-0.22300461,-0.22385138,-0.22475008,-0.22569619,-0.22668481,-0.22771072,-0.22876846,-0.22985242,-0.23095696,-0.23207642,-0.23320529,-0.23433819,-0.23546999,-0.23659587,-0.23771134,-0.23881229,-0.23989503,-0.24095628,-0.2419932,-0.2430034,-0.24398491,-0.24493615,-0.24585594,-0.24674348,-0.24759827,-0.24842011,-0.24920906,-0.24996541,-0.25068963,-0.25138233,-0.25204425,-0.25267621,-0.2532791,-0.25385384,-0.25440137,-0.25492262,-0.25541852,-0.25588996,-0.25633782,-0.25676293,-0.25716608,-0.25754803,-0.25790951,-0.25825119,-0.25857375,-0.25887781,-0.25916398,-0.25943288,-0.25968507,-0.25992115,-0.26014169,-0.26034727,-0.26053846,-0.26071585,-0.26088003,-0.26103157,-0.26117109,-0.26129918,-0.26141644,-0.26152347,-0.26162087,-0.26170923,-0.26178915,-0.26186119,-0.26192592,-0.26198389,-0.26203564,-0.26208166,-0.26212246,-0.2621585,-0.26219023,-0.26221805,-0.26224237,-0.26226354,-0.26228191,-0.26229778,-0.26231146,-0.26232319,-0.26233321,-0.26234175,-0.26234899,-0.26235511,-0.26236026,-0.26236457,-0.26236818,-0.26237118,-0.26237367,-0.26237572,-0.26237741,-0.26237879,-0.26237992,-0.26238084,-0.26238158,-0.26238218,-0.26238266,-0.26238304,-0.26238335,-0.26238359,-0.26238379,-0.26238394,-0.26238406,-0.26238415,-0.26238422,-0.26238428,-0.26238432,-0.26238435,-0.26238438,-0.2623844,-0.26238441,-0.26238442,-0.26238443,-0.26238444,-0.26238444,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238444,-0.26238444,-0.26238444,-0.26238443,-0.26238442,-0.26238441,-0.26238439,-0.26238437,-0.26238435,-0.26238431,-0.26238427,-0.26238421,-0.26238414,-0.26238404,-0.26238392,-0.26238377,-0.26238357,-0.26238333,-0.26238302,-0.26238264,-0.26238216,-0.26238156,-0.26238083,-0.26237993,-0.26237882,-0.26237748,-0.26237585,-0.26237388,-0.2623715,-0.26236866,-0.26236527,-0.26236124,-0.26235648,-0.26235087,-0.26234429,-0.26233661,-0.26232769,-0.26231737,-0.26230548,-0.26229185,-0.26227629,-0.26225861,-0.26223861,-0.2622161,-0.26219087,-0.26216274,-0.26213151,-0.26209701,-0.26205908,-0.26201759,-0.26197243,-0.26192353,-0.26187083,-0.26181436,-0.26175415,-0.2616903,-0.26162299,-0.26155241,-0.26147886,-0.26140265,-0.26132421,-0.26124397,-0.26116247,-0.26108027,-0.26099798,-0.26091628,-0.26083584,-0.26075739,-0.26068166,-0.26060938,-0.26054127,-0.26047804,-0.26042036,-0.26036886,-0.2603241,-0.2602866,-0.26025677,-0.26023496,-0.26022143,-0.26021633,-0.26021973,-0.26023158,-0.26025175,-0.26028,-0.26031601,-0.26035935,-0.26040955,-0.26046604,-0.26052821,-0.2605954,-0.2606669,-0.260742,-0.26081997,-0.26090007,-0.26098157,-0.2610638,-0.26114607,-0.26122776,-0.26130829,-0.26138713,-0.26146381,-0.26153793,-0.26160912,-0.26167711,-0.26174166,-0.26180261,-0.26185984,-0.26191329,-0.26196295,-0.26200886,-0.26205107,-0.2620897,-0.26212487,-0.26215674,-0.26218548,-0.26221127,-0.26223431,-0.2622548,-0.26227293,-0.26228889,-0.2623029,-0.26231512,-0.26232574,-0.26233493,-0.26234285,-0.26234963,-0.26235543,-0.26236035,-0.26236452,-0.26236803],"zorder":5,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-12.5,-12.249499,-11.998998,-11.748497,-11.497996,-11.247495,-10.996994,-10.746493,-10.495992,-10.245491,-9.99499,-9.744489,-9.493988,-9.243487,-8.992986,-8.742485,-8.491984,-8.241483,-7.990982,-7.740481,-7.48998,-7.239479,-6.988978,-6.738477,-6.487976,-6.2374749,-5.9869739,-5.7364729,-5.4859719,-5.2354709,-4.9849699,-4.7344689,-4.4839679,-4.2334669,-3.9829659,-3.7324649,-3.4819639,-3.2314629,-2.9809619,-2.7304609,-2.4799599,-2.2294589,-1.9789579,-1.7284569,-1.4779559,-1.2274549,-0.97695391,-0.72645291,-0.4759519,-0.2254509,0.0250501,0.2755511,0.5260521,0.77655311,1.0270541,1.2775551,1.5280561,1.7785571,2.0290581,2.2795591,2.5300601,2.7805611,3.0310621,3.2815631,3.5320641,3.7825651,4.0330661,4.2835671,4.5340681,4.7845691,5.0350701,5.2855711,5.5360721,5.7865731,6.0370741,6.2875752,6.5380762,6.7885772,7.0390782,7.2895792,7.5400802,7.7905812,8.0410822,8.2915832,8.5420842,8.7925852,9.0430862,9.2935872,9.5440882,9.7945892,10.04509,10.295591,10.546092,10.796593,11.047094,11.297595,11.548096,11.798597,12.049098,12.299599,12.5501,12.800601,13.051102,13.301603,13.552104,13.802605,14.053106,14.303607,14.554108,14.804609,15.05511,15.305611,15.556112,15.806613,16.057114,16.307615,16.558116,16.808617,17.059118,17.309619,17.56012,17.810621,18.061122,18.311623,18.562124,18.812625,19.063126,19.313627,19.564128,19.814629,20.06513,20.315631,20.566132,20.816633,21.067134,21.317635,21.568136,21.818637,22.069138,22.319639,22.57014,22.820641,23.071142,23.321643,23.572144,23.822645,24.073146,24.323647,24.574148,24.824649,25.07515,25.325651,25.576152,25.826653,26.077154,26.327655,26.578156,26.828657,27.079158,27.329659,27.58016,27.830661,28.081162,28.331663,28.582164,28.832665,29.083166,29.333667,29.584168,29.834669,30.08517,30.335671,30.586172,30.836673,31.087174,31.337675,31.588176,31.838677,32.089178,32.339679,32.59018,32.840681,33.091182,33.341683,33.592184,33.842685,34.093186,34.343687,34.594188,34.844689,35.09519,35.345691,35.596192,35.846693,36.097194,36.347695,36.598196,36.848697,37.099198,37.349699,37.6002,37.850701,38.101202,38.351703,38.602204,38.852705,39.103206,39.353707,39.604208,39.854709,40.10521,40.355711,40.606212,40.856713,41.107214,41.357715,41.608216,41.858717,42.109218,42.359719,42.61022,42.860721,43.111222,43.361723,43.612224,43.862725,44.113226,44.363727,44.614228,44.864729,45.11523,45.365731,45.616232,45.866733,46.117234,46.367735,46.618236,46.868737,47.119238,47.369739,47.62024,47.870741,48.121242,48.371743,48.622244,48.872745,49.123246,49.373747,49.624248,49.874749,50.125251,50.375752,50.626253,50.876754,51.127255,51.377756,51.628257,51.878758,52.129259,52.37976,52.630261,52.880762,53.131263,53.381764,53.632265,53.882766,54.133267,54.383768,54.634269,54.88477,55.135271,55.385772,55.636273,55.886774,56.137275,56.387776,56.638277,56.888778,57.139279,57.38978,57.640281,57.890782,58.141283,58.391784,58.642285,58.892786,59.143287,59.393788,59.644289,59.89479,60.145291,60.395792,60.646293,60.896794,61.147295,61.397796,61.648297,61.898798,62.149299,62.3998,62.650301,62.900802,63.151303,63.401804,63.652305,63.902806,64.153307,64.403808,64.654309,64.90481,65.155311,65.405812,65.656313,65.906814,66.157315,66.407816,66.658317,66.908818,67.159319,67.40982,67.660321,67.910822,68.161323,68.411824,68.662325,68.912826,69.163327,69.413828,69.664329,69.91483,70.165331,70.415832,70.666333,70.916834,71.167335,71.417836,71.668337,71.918838,72.169339,72.41984,72.670341,72.920842,73.171343,73.421844,73.672345,73.922846,74.173347,74.423848,74.674349,74.92485,75.175351,75.425852,75.676353,75.926854,76.177355,76.427856,76.678357,76.928858,77.179359,77.42986,77.680361,77.930862,78.181363,78.431864,78.682365,78.932866,79.183367,79.433868,79.684369,79.93487,80.185371,80.435872,80.686373,80.936874,81.187375,81.437876,81.688377,81.938878,82.189379,82.43988,82.690381,82.940882,83.191383,83.441884,83.692385,83.942886,84.193387,84.443888,84.694389,84.94489,85.195391,85.445892,85.696393,85.946894,86.197395,86.447896,86.698397,86.948898,87.199399,87.4499,87.700401,87.950902,88.201403,88.451904,88.702405,88.952906,89.203407,89.453908,89.704409,89.95491,90.205411,90.455912,90.706413,90.956914,91.207415,91.457916,91.708417,91.958918,92.209419,92.45992,92.710421,92.960922,93.211423,93.461924,93.712425,93.962926,94.213427,94.463928,94.714429,94.96493,95.215431,95.465932,95.716433,95.966934,96.217435,96.467936,96.718437,96.968938,97.219439,97.46994,97.720441,97.970942,98.221443,98.471944,98.722445,98.972946,99.223447,99.473948,99.724449,99.97495,100.22545,100.47595,100.72645,100.97695,101.22745,101.47796,101.72846,101.97896,102.22946,102.47996,102.73046,102.98096,103.23146,103.48196,103.73246,103.98297,104.23347,104.48397,104.73447,104.98497,105.23547,105.48597,105.73647,105.98697,106.23747,106.48798,106.73848,106.98898,107.23948,107.48998,107.74048,107.99098,108.24148,108.49198,108.74248,108.99299,109.24349,109.49399,109.74449,109.99499,110.24549,110.49599,110.74649,110.99699,111.24749,111.498,111.7485,111.999,112.2495,112.5],"y":[-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135],"zorder":6,"type":"scatter"},{"customdata":[[1.6678104e-06],[2.1896094e-06],[2.8634524e-06],[3.7300718e-06],[4.8400394e-06],[6.2558413e-06],[8.0543101e-06],[1.0329458e-05],[1.3195748e-05],[1.6791857e-05],[2.1284948e-05],[2.6875503e-05],[3.3802736e-05],[4.2350596e-05],[5.2854372e-05],[6.570787e-05],[8.1371147e-05],[0.00010037873],[0.00012334821],[0.00015098919],[0.00018411225],[0.00022363799],[0.00027060568],[0.00032618142],[0.00039166547],[0.00046849837],[0.00055826559],[0.00066270016],[0.00078368312],[0.00092324114],[0.0010835412],[0.0012668815],[0.0014756791],[0.001712453],[0.0019798037],[0.0022803871],[0.0026168861],[0.0029919763],[0.003408289],[0.00386837],[0.0043746363],[0.0049293302],[0.0055344726],[0.0061918156],[0.0069027963],[0.0076684925],[0.0084895818],[0.0093663052],[0.010298436],[0.011285255],[0.012325535],[0.013417533],[0.014558988],[0.015747138],[0.016978731],[0.018250061],[0.019557001],[0.020895053],[0.022259396],[0.023644946],[0.025046415],[0.02645838],[0.027875343],[0.029291794],[0.030702278],[0.032101444],[0.033484096],[0.034845244],[0.036180128],[0.037484256],[0.038753415],[0.039983684],[0.041171436],[0.042313334],[0.043406317],[0.044447585],[0.045434577],[0.046364954],[0.047236567],[0.048047446],[0.048795768],[0.04947985],[0.050098128],[0.050649155],[0.051131593],[0.051544218],[0.051885925],[0.052155741],[0.05235284],[0.052476564],[0.05252644],[0.052502208],[0.052403841],[0.052231569],[0.051985897],[0.051667627],[0.051277871],[0.050818065],[0.050289973],[0.049695689],[0.04903764],[0.048318576],[0.047541557],[0.046709941],[0.045827362],[0.044897707],[0.04392509],[0.042913822],[0.041868377],[0.040793362],[0.039693479],[0.038573487],[0.037438172],[0.036292301],[0.035140595],[0.033987684],[0.032838084],[0.031696156],[0.03056608],[0.029451829],[0.028357142],[0.027285508],[0.026240143],[0.025223979],[0.024239658],[0.023289521],[0.022375607],[0.021499657],[0.020663115],[0.019867142],[0.019112616],[0.018400156],[0.017730126],[0.017102658],[0.016517661],[0.015974842],[0.015473716],[0.015013629],[0.01459376],[0.014213145],[0.013870678],[0.013565125],[0.013295132],[0.013059226],[0.012855826],[0.012683242],[0.012539679],[0.012423241],[0.012331933],[0.012263662],[0.012216247],[0.012187419],[0.012174834],[0.012176078],[0.01218868],[0.012210132],[0.012237897],[0.012269438],[0.01230223],[0.012333794],[0.012361713],[0.012383667],[0.012397452],[0.012401012],[0.012392464],[0.012370121],[0.012332515],[0.012278418],[0.012206857],[0.012117124],[0.012008786],[0.011881687],[0.011735949],[0.011571956],[0.011390353],[0.011192022],[0.010978064],[0.010749773],[0.010508607],[0.010256162],[0.0099941329],[0.0097242861],[0.0094484217],[0.0091683419],[0.008885819],[0.0086025648],[0.0083202037],[0.008040248],[0.0077640769],[0.0074929197],[0.0072278424],[0.0069697394],[0.0067193281],[0.0064771483],[0.0062435655],[0.0060187773],[0.0058028229],[0.005595596],[0.0053968595],[0.0052062621],[0.0050233563],[0.0048476177],[0.0046784637],[0.0045152735],[0.0043574062],[0.004204219],[0.0040550837],[0.0039094018],[0.003766618],[0.0036262311],[0.0034878032],[0.0033509671],[0.0032154306],[0.0030809791],[0.0029474758],[0.0028148605],[0.0026831458],[0.0025524121],[0.0024228009],[0.0022945074],[0.002167772],[0.0020428706],[0.0019201059],[0.001799797],[0.0016822706],[0.0015678518],[0.0014568556],[0.0013495796],[0.0012462967],[0.0011472504],[0.0010526492],[0.00096266399],[0.00087742513],[0.00079702163],[0.00072150078],[0.00065086897],[0.00058509332],[0.00052410401],[0.00046779727],[0.00041603883],[0.00036866772],[0.00032550029],[0.00028633433],[0.00025095319],[0.00021912981],[0.00019063052],[0.00016521863],[0.00014265766],[0.00012271426],[0.00010516074],[8.977722e-05],[7.6353364e-05],[6.4689777e-05],[5.4599018e-05],[4.5906299e-05],[3.8449863e-05],[3.2081116e-05],[2.6664508e-05],[2.2077232e-05],[1.8208758e-05],[1.4960239e-05],[1.224383e-05],[9.9819358e-06],[8.1064242e-06],[6.5578187e-06],[5.284496e-06],[4.2419009e-06],[3.3917905e-06],[2.7015186e-06],[2.1433658e-06],[1.6939207e-06],[1.3335135e-06],[1.0457033e-06],[8.1681838e-07],[6.3554721e-07],[4.9257772e-07],[3.8028198e-07],[2.9244231e-07],[2.2401528e-07],[1.7092972e-07],[1.2991508e-07],[9.835654e-08],[7.4173402e-08],[5.5717818e-08],[4.1690838e-08],[3.1073308e-08],[2.30693e-08],[1.7060084e-08],[1.256688e-08],[9.2208969e-09],[6.7393501e-09],[4.9063875e-09],[3.5579881e-09],[2.570075e-09],[1.8492073e-09],[1.3253293e-09],[9.4615052e-10],[6.7281367e-10],[4.7657079e-10],[3.3624665e-10],[2.3631231e-10],[1.6542932e-10],[1.1535497e-10],[8.0123104e-11],[5.5434068e-11],[3.8202626e-11],[2.6224493e-11],[1.7931572e-11],[1.221313e-11],[8.2857693e-12],[5.5993285e-12],[3.7690878e-12],[2.5271658e-12],[1.6878286e-12],[1.1228457e-12],[7.4406153e-13],[4.9112799e-13],[3.2290707e-13],[2.1147421e-13],[1.3795399e-13],[8.9641284e-14],[5.8020147e-14],[3.7406451e-14],[2.4022107e-14],[1.5366417e-14],[9.7910889e-15],[6.2142148e-15],[3.9286052e-15],[2.4739298e-15],[1.5517909e-15],[9.6956263e-16],[6.0341398e-16],[3.7406897e-16],[2.3098555e-16],[1.4207405e-16],[8.7044534e-17],[5.3120854e-17],[3.2291289e-17],[1.9552509e-17],[1.1792786e-17],[7.0847918e-18],[4.2396944e-18],[2.5271952e-18],[1.5005131e-18],[8.8743705e-19],[5.227958e-19],[3.0677741e-19],[1.7931286e-19],[1.0439898e-19],[6.0544933e-20],[3.4974871e-20],[2.0124782e-20],[1.1534613e-20],[6.5852396e-21],[3.7448713e-21],[2.1212847e-21],[1.1968997e-21],[6.7268742e-22],[3.7658724e-22],[2.0999775e-22],[1.1664346e-22],[6.453613e-23],[3.5566586e-23],[1.9524421e-23],[1.0676057e-23],[5.8148748e-24],[3.1547618e-24],[1.7048631e-24],[9.1771789e-25],[4.9206856e-25],[2.6280811e-25],[1.3981335e-25],[7.4089263e-26],[3.9107372e-26],[2.0561686e-26],[1.0768508e-26],[5.6175779e-27],[2.9190356e-27],[1.5108676e-27],[7.7895107e-28],[4.0002826e-28],[2.0462934e-28],[1.0426579e-28],[5.2919111e-29],[2.675346e-29],[1.3472374e-29],[6.7577948e-30],[3.3764679e-30],[1.6804166e-30],[8.3304422e-31],[4.1135414e-31],[2.0233006e-31],[9.9129221e-32],[4.8377086e-32],[2.3516595e-32],[1.1386911e-32],[5.4920455e-33],[2.6385119e-33],[1.2626434e-33],[6.0186505e-34],[2.8576844e-34],[1.3515313e-34],[6.366998e-35],[2.987721e-35],[1.3965037e-35],[6.5019089e-36],[3.0153407e-36],[1.3929279e-36],[6.4094037e-37],[2.9376722e-37],[1.341176e-37],[6.0990887e-38],[2.7627453e-38],[1.2465609e-38],[5.6025128e-39],[2.5081237e-39],[1.1184377e-39],[4.9678828e-40],[2.1979997e-40],[9.6868072e-41],[4.2523638e-41],[1.8594174e-41],[8.0987895e-42],[3.5136626e-42],[1.5184368e-42],[6.5362724e-43],[2.8025946e-43],[1.1969807e-43],[5.0922621e-44],[2.1578988e-44],[9.1085269e-45],[3.8296752e-45],[1.6038822e-45],[6.6908257e-46],[2.7802491e-46],[1.1507591e-46],[4.7444063e-47],[1.9483907e-47],[7.9701585e-48],[3.2475407e-48],[1.3180715e-48],[5.3286854e-49],[2.1458428e-49],[8.6074097e-50],[3.4390918e-50],[1.3687111e-50],[5.4259596e-51],[2.1425849e-51],[8.4274515e-52],[3.3018034e-52],[1.2885548e-52],[5.0090032e-53],[1.9395298e-53],[7.4806326e-54],[2.8739349e-54],[1.0997963e-54],[4.1922226e-55],[1.5917437e-55],[6.0200301e-56],[2.2678844e-56],[8.5102028e-57],[3.1809411e-57],[1.1843173e-57],[4.3921511e-58],[1.6224943e-58],[5.9701581e-59],[2.1881909e-59],[7.9887956e-60],[2.9051874e-60],[1.0523585e-60],[3.7970824e-61],[1.364687e-61],[4.8855427e-62],[1.7421651e-62],[6.1881742e-63],[2.1894371e-63],[7.7161235e-64],[2.7087105e-64],[9.4715865e-65],[3.2989794e-65],[1.1445459e-65],[3.9553376e-66],[1.3615407e-66],[4.6684685e-67],[1.5944649e-67],[5.4244065e-68],[1.8381723e-68],[6.2046451e-69],[2.0861446e-69],[6.9866436e-70],[2.3307168e-70],[7.7447456e-71],[2.5634304e-71],[8.4514777e-72],[2.7754953e-72],[9.0791473e-73],[2.9583283e-73],[9.6016175e-74],[3.1041248e-74],[9.9961017e-75]],"fill":"tonexty","fillcolor":"rgba(69.14286, 49.42857, 124.85714, 0.65)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Chances Are Slight","x":[-12.5,-12.249499,-11.998998,-11.748497,-11.497996,-11.247495,-10.996994,-10.746493,-10.495992,-10.245491,-9.99499,-9.744489,-9.493988,-9.243487,-8.992986,-8.742485,-8.491984,-8.241483,-7.990982,-7.740481,-7.48998,-7.239479,-6.988978,-6.738477,-6.487976,-6.2374749,-5.9869739,-5.7364729,-5.4859719,-5.2354709,-4.9849699,-4.7344689,-4.4839679,-4.2334669,-3.9829659,-3.7324649,-3.4819639,-3.2314629,-2.9809619,-2.7304609,-2.4799599,-2.2294589,-1.9789579,-1.7284569,-1.4779559,-1.2274549,-0.97695391,-0.72645291,-0.4759519,-0.2254509,0.0250501,0.2755511,0.5260521,0.77655311,1.0270541,1.2775551,1.5280561,1.7785571,2.0290581,2.2795591,2.5300601,2.7805611,3.0310621,3.2815631,3.5320641,3.7825651,4.0330661,4.2835671,4.5340681,4.7845691,5.0350701,5.2855711,5.5360721,5.7865731,6.0370741,6.2875752,6.5380762,6.7885772,7.0390782,7.2895792,7.5400802,7.7905812,8.0410822,8.2915832,8.5420842,8.7925852,9.0430862,9.2935872,9.5440882,9.7945892,10.04509,10.295591,10.546092,10.796593,11.047094,11.297595,11.548096,11.798597,12.049098,12.299599,12.5501,12.800601,13.051102,13.301603,13.552104,13.802605,14.053106,14.303607,14.554108,14.804609,15.05511,15.305611,15.556112,15.806613,16.057114,16.307615,16.558116,16.808617,17.059118,17.309619,17.56012,17.810621,18.061122,18.311623,18.562124,18.812625,19.063126,19.313627,19.564128,19.814629,20.06513,20.315631,20.566132,20.816633,21.067134,21.317635,21.568136,21.818637,22.069138,22.319639,22.57014,22.820641,23.071142,23.321643,23.572144,23.822645,24.073146,24.323647,24.574148,24.824649,25.07515,25.325651,25.576152,25.826653,26.077154,26.327655,26.578156,26.828657,27.079158,27.329659,27.58016,27.830661,28.081162,28.331663,28.582164,28.832665,29.083166,29.333667,29.584168,29.834669,30.08517,30.335671,30.586172,30.836673,31.087174,31.337675,31.588176,31.838677,32.089178,32.339679,32.59018,32.840681,33.091182,33.341683,33.592184,33.842685,34.093186,34.343687,34.594188,34.844689,35.09519,35.345691,35.596192,35.846693,36.097194,36.347695,36.598196,36.848697,37.099198,37.349699,37.6002,37.850701,38.101202,38.351703,38.602204,38.852705,39.103206,39.353707,39.604208,39.854709,40.10521,40.355711,40.606212,40.856713,41.107214,41.357715,41.608216,41.858717,42.109218,42.359719,42.61022,42.860721,43.111222,43.361723,43.612224,43.862725,44.113226,44.363727,44.614228,44.864729,45.11523,45.365731,45.616232,45.866733,46.117234,46.367735,46.618236,46.868737,47.119238,47.369739,47.62024,47.870741,48.121242,48.371743,48.622244,48.872745,49.123246,49.373747,49.624248,49.874749,50.125251,50.375752,50.626253,50.876754,51.127255,51.377756,51.628257,51.878758,52.129259,52.37976,52.630261,52.880762,53.131263,53.381764,53.632265,53.882766,54.133267,54.383768,54.634269,54.88477,55.135271,55.385772,55.636273,55.886774,56.137275,56.387776,56.638277,56.888778,57.139279,57.38978,57.640281,57.890782,58.141283,58.391784,58.642285,58.892786,59.143287,59.393788,59.644289,59.89479,60.145291,60.395792,60.646293,60.896794,61.147295,61.397796,61.648297,61.898798,62.149299,62.3998,62.650301,62.900802,63.151303,63.401804,63.652305,63.902806,64.153307,64.403808,64.654309,64.90481,65.155311,65.405812,65.656313,65.906814,66.157315,66.407816,66.658317,66.908818,67.159319,67.40982,67.660321,67.910822,68.161323,68.411824,68.662325,68.912826,69.163327,69.413828,69.664329,69.91483,70.165331,70.415832,70.666333,70.916834,71.167335,71.417836,71.668337,71.918838,72.169339,72.41984,72.670341,72.920842,73.171343,73.421844,73.672345,73.922846,74.173347,74.423848,74.674349,74.92485,75.175351,75.425852,75.676353,75.926854,76.177355,76.427856,76.678357,76.928858,77.179359,77.42986,77.680361,77.930862,78.181363,78.431864,78.682365,78.932866,79.183367,79.433868,79.684369,79.93487,80.185371,80.435872,80.686373,80.936874,81.187375,81.437876,81.688377,81.938878,82.189379,82.43988,82.690381,82.940882,83.191383,83.441884,83.692385,83.942886,84.193387,84.443888,84.694389,84.94489,85.195391,85.445892,85.696393,85.946894,86.197395,86.447896,86.698397,86.948898,87.199399,87.4499,87.700401,87.950902,88.201403,88.451904,88.702405,88.952906,89.203407,89.453908,89.704409,89.95491,90.205411,90.455912,90.706413,90.956914,91.207415,91.457916,91.708417,91.958918,92.209419,92.45992,92.710421,92.960922,93.211423,93.461924,93.712425,93.962926,94.213427,94.463928,94.714429,94.96493,95.215431,95.465932,95.716433,95.966934,96.217435,96.467936,96.718437,96.968938,97.219439,97.46994,97.720441,97.970942,98.221443,98.471944,98.722445,98.972946,99.223447,99.473948,99.724449,99.97495,100.22545,100.47595,100.72645,100.97695,101.22745,101.47796,101.72846,101.97896,102.22946,102.47996,102.73046,102.98096,103.23146,103.48196,103.73246,103.98297,104.23347,104.48397,104.73447,104.98497,105.23547,105.48597,105.73647,105.98697,106.23747,106.48798,106.73848,106.98898,107.23948,107.48998,107.74048,107.99098,108.24148,108.49198,108.74248,108.99299,109.24349,109.49399,109.74449,109.99499,110.24549,110.49599,110.74649,110.99699,111.24749,111.498,111.7485,111.999,112.2495,112.5],"y":[-0.31485968,-0.31485916,-0.31485848,-0.31485762,-0.31485651,-0.31485509,-0.31485329,-0.31485102,-0.31484815,-0.31484455,-0.31484006,-0.31483447,-0.31482754,-0.314819,-0.31480849,-0.31479564,-0.31477997,-0.31476097,-0.314738,-0.31471036,-0.31467723,-0.31463771,-0.31459074,-0.31453516,-0.31446968,-0.31439285,-0.31430308,-0.31419865,-0.31407766,-0.3139381,-0.3137778,-0.31359446,-0.31338567,-0.31314889,-0.31288154,-0.31258096,-0.31224446,-0.31186937,-0.31145306,-0.31099298,-0.31048671,-0.30993202,-0.30932687,-0.30866953,-0.30795855,-0.30719285,-0.30637176,-0.30549504,-0.30456291,-0.30357609,-0.30253581,-0.30144381,-0.30030236,-0.29911421,-0.29788261,-0.29661129,-0.29530434,-0.29396629,-0.29260195,-0.2912164,-0.28981493,-0.28840297,-0.286986,-0.28556955,-0.28415907,-0.2827599,-0.28137725,-0.2800161,-0.27868122,-0.27737709,-0.27610793,-0.27487766,-0.27368991,-0.27254801,-0.27145503,-0.27041376,-0.26942677,-0.26849639,-0.26762478,-0.2668139,-0.26606558,-0.2653815,-0.26476322,-0.26421219,-0.26372975,-0.26331713,-0.26297542,-0.2627056,-0.26250851,-0.26238478,-0.26233491,-0.26235914,-0.2624575,-0.26262978,-0.26287545,-0.26319372,-0.26358347,-0.26404328,-0.26457137,-0.26516566,-0.26582371,-0.26654277,-0.26731979,-0.2681514,-0.26903398,-0.26996364,-0.27093626,-0.27194752,-0.27299297,-0.27406798,-0.27516787,-0.27628786,-0.27742317,-0.27856904,-0.27972075,-0.28087366,-0.28202326,-0.28316519,-0.28429527,-0.28540952,-0.2865042,-0.28757584,-0.2886212,-0.28963737,-0.29062169,-0.29157182,-0.29248574,-0.29336169,-0.29419823,-0.2949942,-0.29574873,-0.29646119,-0.29713122,-0.29775869,-0.29834368,-0.2988865,-0.29938763,-0.29984772,-0.30026759,-0.3006482,-0.30099067,-0.30129622,-0.30156621,-0.30180212,-0.30200552,-0.3021781,-0.30232167,-0.3024381,-0.30252941,-0.30259768,-0.3026451,-0.30267393,-0.30268651,-0.30268527,-0.30267267,-0.30265121,-0.30262345,-0.30259191,-0.30255912,-0.30252755,-0.30249963,-0.30247768,-0.30246389,-0.30246033,-0.30246888,-0.30249122,-0.30252883,-0.30258293,-0.30265449,-0.30274422,-0.30285256,-0.30297966,-0.3031254,-0.30328939,-0.30347099,-0.30366932,-0.30388328,-0.30411157,-0.30435274,-0.30460518,-0.30486721,-0.30513706,-0.30541292,-0.305693,-0.30597553,-0.30625878,-0.30654114,-0.3068211,-0.30709727,-0.30736843,-0.3076335,-0.30789161,-0.30814202,-0.3083842,-0.30861778,-0.30884257,-0.30905852,-0.30926575,-0.30946449,-0.30965508,-0.30983799,-0.31001373,-0.31018288,-0.31034607,-0.31050394,-0.31065713,-0.31080626,-0.31095194,-0.31109473,-0.31123511,-0.31137354,-0.31151038,-0.31164592,-0.31178037,-0.31191387,-0.31204649,-0.3121782,-0.31230893,-0.31243854,-0.31256684,-0.31269357,-0.31281848,-0.31294124,-0.31306155,-0.31317908,-0.31329349,-0.31340449,-0.31351177,-0.31361505,-0.3137141,-0.3138087,-0.31389868,-0.31398392,-0.31406432,-0.31413984,-0.31421048,-0.31427625,-0.31433724,-0.31439355,-0.31444531,-0.31449268,-0.31453585,-0.31457501,-0.31461039,-0.31464222,-0.31467072,-0.31469613,-0.31471869,-0.31473863,-0.31475618,-0.31477157,-0.31478499,-0.31479666,-0.31480675,-0.31481544,-0.3148229,-0.31482926,-0.31483468,-0.31483927,-0.31484314,-0.31484639,-0.3148491,-0.31485136,-0.31485324,-0.31485479,-0.31485606,-0.3148571,-0.31485795,-0.31485864,-0.3148592,-0.31485965,-0.31486001,-0.3148603,-0.31486053,-0.31486071,-0.31486085,-0.31486097,-0.31486105,-0.31486112,-0.31486117,-0.31486122,-0.31486125,-0.31486127,-0.31486129,-0.3148613,-0.31486131,-0.31486132,-0.31486133,-0.31486133,-0.31486134,-0.31486134,-0.31486134,-0.31486134,-0.31486134,-0.31486134,-0.31486134,-0.31486134,-0.31486134,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135],"zorder":6,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-12.5,-12.249499,-11.998998,-11.748497,-11.497996,-11.247495,-10.996994,-10.746493,-10.495992,-10.245491,-9.99499,-9.744489,-9.493988,-9.243487,-8.992986,-8.742485,-8.491984,-8.241483,-7.990982,-7.740481,-7.48998,-7.239479,-6.988978,-6.738477,-6.487976,-6.2374749,-5.9869739,-5.7364729,-5.4859719,-5.2354709,-4.9849699,-4.7344689,-4.4839679,-4.2334669,-3.9829659,-3.7324649,-3.4819639,-3.2314629,-2.9809619,-2.7304609,-2.4799599,-2.2294589,-1.9789579,-1.7284569,-1.4779559,-1.2274549,-0.97695391,-0.72645291,-0.4759519,-0.2254509,0.0250501,0.2755511,0.5260521,0.77655311,1.0270541,1.2775551,1.5280561,1.7785571,2.0290581,2.2795591,2.5300601,2.7805611,3.0310621,3.2815631,3.5320641,3.7825651,4.0330661,4.2835671,4.5340681,4.7845691,5.0350701,5.2855711,5.5360721,5.7865731,6.0370741,6.2875752,6.5380762,6.7885772,7.0390782,7.2895792,7.5400802,7.7905812,8.0410822,8.2915832,8.5420842,8.7925852,9.0430862,9.2935872,9.5440882,9.7945892,10.04509,10.295591,10.546092,10.796593,11.047094,11.297595,11.548096,11.798597,12.049098,12.299599,12.5501,12.800601,13.051102,13.301603,13.552104,13.802605,14.053106,14.303607,14.554108,14.804609,15.05511,15.305611,15.556112,15.806613,16.057114,16.307615,16.558116,16.808617,17.059118,17.309619,17.56012,17.810621,18.061122,18.311623,18.562124,18.812625,19.063126,19.313627,19.564128,19.814629,20.06513,20.315631,20.566132,20.816633,21.067134,21.317635,21.568136,21.818637,22.069138,22.319639,22.57014,22.820641,23.071142,23.321643,23.572144,23.822645,24.073146,24.323647,24.574148,24.824649,25.07515,25.325651,25.576152,25.826653,26.077154,26.327655,26.578156,26.828657,27.079158,27.329659,27.58016,27.830661,28.081162,28.331663,28.582164,28.832665,29.083166,29.333667,29.584168,29.834669,30.08517,30.335671,30.586172,30.836673,31.087174,31.337675,31.588176,31.838677,32.089178,32.339679,32.59018,32.840681,33.091182,33.341683,33.592184,33.842685,34.093186,34.343687,34.594188,34.844689,35.09519,35.345691,35.596192,35.846693,36.097194,36.347695,36.598196,36.848697,37.099198,37.349699,37.6002,37.850701,38.101202,38.351703,38.602204,38.852705,39.103206,39.353707,39.604208,39.854709,40.10521,40.355711,40.606212,40.856713,41.107214,41.357715,41.608216,41.858717,42.109218,42.359719,42.61022,42.860721,43.111222,43.361723,43.612224,43.862725,44.113226,44.363727,44.614228,44.864729,45.11523,45.365731,45.616232,45.866733,46.117234,46.367735,46.618236,46.868737,47.119238,47.369739,47.62024,47.870741,48.121242,48.371743,48.622244,48.872745,49.123246,49.373747,49.624248,49.874749,50.125251,50.375752,50.626253,50.876754,51.127255,51.377756,51.628257,51.878758,52.129259,52.37976,52.630261,52.880762,53.131263,53.381764,53.632265,53.882766,54.133267,54.383768,54.634269,54.88477,55.135271,55.385772,55.636273,55.886774,56.137275,56.387776,56.638277,56.888778,57.139279,57.38978,57.640281,57.890782,58.141283,58.391784,58.642285,58.892786,59.143287,59.393788,59.644289,59.89479,60.145291,60.395792,60.646293,60.896794,61.147295,61.397796,61.648297,61.898798,62.149299,62.3998,62.650301,62.900802,63.151303,63.401804,63.652305,63.902806,64.153307,64.403808,64.654309,64.90481,65.155311,65.405812,65.656313,65.906814,66.157315,66.407816,66.658317,66.908818,67.159319,67.40982,67.660321,67.910822,68.161323,68.411824,68.662325,68.912826,69.163327,69.413828,69.664329,69.91483,70.165331,70.415832,70.666333,70.916834,71.167335,71.417836,71.668337,71.918838,72.169339,72.41984,72.670341,72.920842,73.171343,73.421844,73.672345,73.922846,74.173347,74.423848,74.674349,74.92485,75.175351,75.425852,75.676353,75.926854,76.177355,76.427856,76.678357,76.928858,77.179359,77.42986,77.680361,77.930862,78.181363,78.431864,78.682365,78.932866,79.183367,79.433868,79.684369,79.93487,80.185371,80.435872,80.686373,80.936874,81.187375,81.437876,81.688377,81.938878,82.189379,82.43988,82.690381,82.940882,83.191383,83.441884,83.692385,83.942886,84.193387,84.443888,84.694389,84.94489,85.195391,85.445892,85.696393,85.946894,86.197395,86.447896,86.698397,86.948898,87.199399,87.4499,87.700401,87.950902,88.201403,88.451904,88.702405,88.952906,89.203407,89.453908,89.704409,89.95491,90.205411,90.455912,90.706413,90.956914,91.207415,91.457916,91.708417,91.958918,92.209419,92.45992,92.710421,92.960922,93.211423,93.461924,93.712425,93.962926,94.213427,94.463928,94.714429,94.96493,95.215431,95.465932,95.716433,95.966934,96.217435,96.467936,96.718437,96.968938,97.219439,97.46994,97.720441,97.970942,98.221443,98.471944,98.722445,98.972946,99.223447,99.473948,99.724449,99.97495,100.22545,100.47595,100.72645,100.97695,101.22745,101.47796,101.72846,101.97896,102.22946,102.47996,102.73046,102.98096,103.23146,103.48196,103.73246,103.98297,104.23347,104.48397,104.73447,104.98497,105.23547,105.48597,105.73647,105.98697,106.23747,106.48798,106.73848,106.98898,107.23948,107.48998,107.74048,107.99098,108.24148,108.49198,108.74248,108.99299,109.24349,109.49399,109.74449,109.99499,110.24549,110.49599,110.74649,110.99699,111.24749,111.498,111.7485,111.999,112.2495,112.5],"y":[-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824],"zorder":7,"type":"scatter"},{"customdata":[[0.00014105833],[0.00017453261],[0.000215137],[0.00026418966],[0.00032320659],[0.00039392171],[0.00047830688],[0.00057859162],[0.00069728175],[0.0008371766],[0.0010013837],[0.0011933307],[0.0014167727],[0.0016757955],[0.0019748122],[0.0023185536],[0.0027120503],[0.0031606069],[0.0036697658],[0.0042452618],[0.0048929653],[0.0056188152],[0.0064287405],[0.0073285716],[0.0083239405],[0.0094201729],[0.010622172],[0.011934295],[0.013360226],[0.01490285],[0.016564119],[0.01834493],[0.020245009],[0.022262797],[0.024395358],[0.026638302],[0.028985719],[0.031430146],[0.033962553],[0.036572355],[0.039247456],[0.041974319],[0.044738063],[0.047522595],[0.050310763],[0.053084539],[0.055825221],[0.058513655],[0.061130476],[0.063656357],[0.066072263],[0.068359706],[0.070501004],[0.072479518],[0.07427989],[0.075888244],[0.077292386],[0.078481957],[0.079448574],[0.080185924],[0.080689834],[0.080958309],[0.080991521],[0.080791784],[0.080363481],[0.079712968],[0.07884845],[0.077779831],[0.076518545],[0.075077367],[0.073470215],[0.071711938],[0.069818107],[0.067804797],[0.065688378],[0.063485307],[0.061211939],[0.058884339],[0.056518117],[0.054128278],[0.05172909],[0.049333971],[0.046955395],[0.04460482],[0.042292637],[0.040028131],[0.037819471],[0.035673707],[0.033596788],[0.031593592],[0.029667967],[0.027822787],[0.02606001],[0.024380747],[0.022785334],[0.021273407],[0.019843982],[0.018495529],[0.017226052],[0.016033159],[0.014914138],[0.013866023],[0.012885653],[0.011969736],[0.0111149],[0.010317738],[0.0095748528],[0.0088828932],[0.0082385849],[0.0076387572],[0.0070803644],[0.0065605023],[0.0060764212],[0.0056255343],[0.0052054228],[0.0048138377],[0.0044486992],[0.0041080926],[0.0037902633],[0.0034936092],[0.0032166721],[0.002958128],[0.0027167763],[0.0024915293],[0.0022814004],[0.0020854934],[0.0019029914],[0.0017331466],[0.0015752704],[0.0014287245],[0.0012929126],[0.0011672732],[0.0010512735],[0.00094440398],[0.00084617412],[0.00075610894],[0.00067374647],[0.00059863603],[0.00053033709],[0.00046841888],[0.00041246038],[0.00036205077],[0.00031679015],[0.00027629053],[0.00024017684],[0.00020808805],[0.00017967824],[0.00015461758],[0.0001325932],[0.00011330984],[9.6490408e-05],[8.1876241e-05],[6.9227224e-05],[5.832169e-05],[4.8956138e-05],[4.094478e-05],[3.4118932e-05],[2.8326285e-05],[2.3430068e-05],[1.9308129e-05],[1.5851964e-05],[1.2965706e-05],[1.0565108e-05],[8.5765221e-06],[6.9359072e-06],[5.5878625e-06],[4.4847111e-06],[3.5856326e-06],[2.8558552e-06],[2.265909e-06],[1.7909426e-06],[1.4101036e-06],[1.1059819e-06],[8.6411251e-07],[6.7253625e-07],[5.2141345e-07],[4.0268739e-07],[3.0979286e-07],[2.3740549e-07],[1.8122773e-07],[1.3780714e-07],[1.0438323e-07],[7.8759056e-08],[5.9194316e-08],[4.4316784e-08],[3.3049455e-08],[2.4550896e-08],[1.8166723e-08],[1.3390332e-08],[9.8312993e-09],[7.1900963e-09],[5.2379596e-09],[3.8009549e-09],[2.7474255e-09],[1.9781596e-09],[1.418726e-09],[1.0135312e-09],[7.2123492e-10],[5.1123091e-10],[3.60959e-10],[2.5386264e-10],[1.7784416e-10],[1.2410236e-10],[8.6262079e-11],[5.9725393e-11],[4.1190507e-11],[2.8296592e-11],[1.9362874e-11],[1.3197876e-11],[8.9605921e-12],[6.0599305e-12],[4.0822232e-12],[2.7392011e-12],[1.8308343e-12],[1.2189111e-12],[8.0833766e-13],[5.3396315e-13],[3.5133984e-13],[2.3027196e-13],[1.5033228e-13],[9.775992e-14],[6.332378e-14],[4.0857347e-14],[2.6258553e-14],[1.6810037e-14],[1.0719234e-14],[6.8085716e-15],[4.3076996e-15],[2.714763e-15],[1.7041802e-15],[1.0656048e-15],[6.6370309e-16],[4.1176414e-16],[2.5446039e-16],[1.5663501e-16],[9.6040503e-17],[5.8656609e-17],[3.5684235e-17],[2.1623836e-17],[1.3052268e-17],[7.8475862e-18],[4.6998401e-18],[2.8036702e-18],[1.6659717e-18],[9.8606408e-19],[5.8135244e-19],[3.4140563e-19],[1.9970948e-19],[1.163653e-19],[6.753752e-20],[3.9044829e-20],[2.2484267e-20],[1.289706e-20],[7.3688464e-21],[4.1937744e-21],[2.3774282e-21],[1.342476e-21],[7.5509651e-22],[4.230535e-22],[2.3609421e-22],[1.3124227e-22],[7.2671549e-23],[4.0084018e-23],[2.2026356e-23],[1.2062796e-23],[6.5929245e-24],[3.6131011e-24],[2.0173231e-24],[1.2059694e-24],[8.7095583e-25],[8.8414765e-25],[1.2506028e-24],[2.1104221e-24],[3.7898502e-24],[6.9193506e-24],[1.2659282e-23],[2.3109941e-23],[4.2043602e-23],[7.6200722e-23],[1.3757278e-22],[2.4740456e-22],[4.4318091e-22],[7.9077245e-22],[1.4054612e-21],[2.4881867e-21],[4.3877694e-21],[7.707284e-21],[1.3485146e-20],[2.3502102e-20],[4.0799464e-20],[7.0550315e-20],[1.2151788e-19],[2.084866e-19],[3.5629754e-19],[6.0651877e-19],[1.0284245e-18],[1.7369898e-18],[2.9222602e-18],[4.8970803e-18],[8.1743325e-18],[1.3591397e-17],[2.2509852e-17],[3.7134528e-17],[6.1021082e-17],[9.9880022e-17],[1.6284487e-16],[2.6446383e-16],[4.278142e-16],[6.893517e-16],[1.1064282e-15],[1.7688962e-15],[2.8169438e-15],[4.4683868e-15],[7.0602498e-15],[1.1111843e-14],[1.7420029e-14],[2.7202472e-14],[4.2312102e-14],[6.5556772e-14],[1.0117361e-13],[1.5552982e-13],[2.3815342e-13],[3.6324255e-13],[5.5186561e-13],[8.3515421e-13],[1.258916e-12],[1.8902688e-12],[2.8271386e-12],[4.2117964e-12],[6.2500626e-12],[9.2384284e-12],[1.3602181e-11],[1.9948753e-11],[2.9142022e-11],[4.2405319e-11],[6.1463561e-11],[8.873845e-11],[1.2761528e-10],[1.8280592e-10],[2.6084023e-10],[3.7072819e-10],[5.2484781e-10],[7.401298e-10],[1.0396308e-09],[1.4546117e-09],[2.0272709e-09],[2.8143183e-09],[3.8916284e-09],[5.3602649e-09],[7.3542412e-09],[1.0050467e-08],[1.3681424e-08],[1.8551247e-08],[2.5055995e-08],[3.3709082e-08],[4.5173e-08],[6.0298661e-08],[8.0173923e-08],[1.0618308e-07],[1.400794e-07],[1.8407293e-07],[2.4093634e-07],[3.1413146e-07],[4.0795972e-07],[5.2773982e-07],[6.8001607e-07],[8.7280097e-07],[1.1158556e-06],[1.4210112e-06],[1.8025351e-06],[2.2775436e-06],[2.8664634e-06],[3.5935429e-06],[4.4874126e-06],[5.5816923e-06],[6.9156422e-06],[8.5348495e-06],[1.0491944e-05],[1.2847327e-05],[1.5669903e-05],[1.9037793e-05],[2.3038999e-05],[2.7772012e-05],[3.3346312e-05],[3.9882742e-05],[4.751371e-05],[5.6383185e-05],[6.6646446e-05],[7.8469543e-05],[9.2028422e-05],[0.0001075077],[0.00012509901],[0.00014499897],[0.00016740665],[0.00019252061],[0.00022053548],[0.00025163812],[0.00028600336],[0.00032378936],[0.0003651327],[0.00041014331],[0.00045889915],[0.00051144109],[0.00056776772],[0.00062783066],[0.00069153007],[0.00075871095],[0.00082916004],[0.00090260369],[0.00097870674],[0.0010570725],[0.0011372442],[0.0012187072],[0.0013008936],[0.001383187],[0.0014649297],[0.0015454301],[0.0016239726],[0.0016998271],[0.0017722603],[0.0018405475],[0.0019039839],[0.0019618972],[0.0020136592],[0.0020586968],[0.0020965034],[0.0021266473],[0.0021487807],[0.0021626461],[0.0021680812],[0.0021650223],[0.0021535052],[0.0021336649],[0.0021057326],[0.0020700316],[0.0020269706],[0.0019770364],[0.0019207843],[0.0018588283],[0.0017918295],[0.0017204847],[0.0016455143],[0.0015676506],[0.0014876254],[0.0014061597],[0.0013239526],[0.0012416722],[0.0011599471],[0.0010793596],[0.0010004396],[0.00092366041],[0.00084943568],[0.0007781179],[0.00070999786],[0.00064530556],[0.00058421204],[0.00052683222],[0.00047322849],[0.00042341494],[0.00037736202],[0.00033500165],[0.00029623231],[0.00026092437],[0.00022892519],[0.00020006414],[0.00017415729],[0.00015101177],[0.00013042975],[0.00011221199],[9.6160916e-05],[8.208327e-05],[6.9792289e-05],[5.9109456e-05],[4.9865849e-05],[4.1903104e-05],[3.507405e-05],[2.9243029e-05],[2.4285975e-05],[2.0090255e-05],[1.6554348e-05],[1.3587371e-05],[1.1108503e-05],[9.046329e-06],[7.3381391e-06],[5.9292018e-06],[4.772031e-06],[3.8256657e-06],[3.0549739e-06],[2.4299913e-06],[1.9253011e-06],[1.5194602e-06],[1.1944741e-06],[9.3532144e-07],[7.2952765e-07],[5.6678632e-07],[4.3862532e-07],[3.3811525e-07],[2.5961666e-07],[1.9856243e-07],[1.5127193e-07]],"fill":"tonexty","fillcolor":"rgba(68, 1, 84, 0.65)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Almost No Chance","x":[-12.5,-12.249499,-11.998998,-11.748497,-11.497996,-11.247495,-10.996994,-10.746493,-10.495992,-10.245491,-9.99499,-9.744489,-9.493988,-9.243487,-8.992986,-8.742485,-8.491984,-8.241483,-7.990982,-7.740481,-7.48998,-7.239479,-6.988978,-6.738477,-6.487976,-6.2374749,-5.9869739,-5.7364729,-5.4859719,-5.2354709,-4.9849699,-4.7344689,-4.4839679,-4.2334669,-3.9829659,-3.7324649,-3.4819639,-3.2314629,-2.9809619,-2.7304609,-2.4799599,-2.2294589,-1.9789579,-1.7284569,-1.4779559,-1.2274549,-0.97695391,-0.72645291,-0.4759519,-0.2254509,0.0250501,0.2755511,0.5260521,0.77655311,1.0270541,1.2775551,1.5280561,1.7785571,2.0290581,2.2795591,2.5300601,2.7805611,3.0310621,3.2815631,3.5320641,3.7825651,4.0330661,4.2835671,4.5340681,4.7845691,5.0350701,5.2855711,5.5360721,5.7865731,6.0370741,6.2875752,6.5380762,6.7885772,7.0390782,7.2895792,7.5400802,7.7905812,8.0410822,8.2915832,8.5420842,8.7925852,9.0430862,9.2935872,9.5440882,9.7945892,10.04509,10.295591,10.546092,10.796593,11.047094,11.297595,11.548096,11.798597,12.049098,12.299599,12.5501,12.800601,13.051102,13.301603,13.552104,13.802605,14.053106,14.303607,14.554108,14.804609,15.05511,15.305611,15.556112,15.806613,16.057114,16.307615,16.558116,16.808617,17.059118,17.309619,17.56012,17.810621,18.061122,18.311623,18.562124,18.812625,19.063126,19.313627,19.564128,19.814629,20.06513,20.315631,20.566132,20.816633,21.067134,21.317635,21.568136,21.818637,22.069138,22.319639,22.57014,22.820641,23.071142,23.321643,23.572144,23.822645,24.073146,24.323647,24.574148,24.824649,25.07515,25.325651,25.576152,25.826653,26.077154,26.327655,26.578156,26.828657,27.079158,27.329659,27.58016,27.830661,28.081162,28.331663,28.582164,28.832665,29.083166,29.333667,29.584168,29.834669,30.08517,30.335671,30.586172,30.836673,31.087174,31.337675,31.588176,31.838677,32.089178,32.339679,32.59018,32.840681,33.091182,33.341683,33.592184,33.842685,34.093186,34.343687,34.594188,34.844689,35.09519,35.345691,35.596192,35.846693,36.097194,36.347695,36.598196,36.848697,37.099198,37.349699,37.6002,37.850701,38.101202,38.351703,38.602204,38.852705,39.103206,39.353707,39.604208,39.854709,40.10521,40.355711,40.606212,40.856713,41.107214,41.357715,41.608216,41.858717,42.109218,42.359719,42.61022,42.860721,43.111222,43.361723,43.612224,43.862725,44.113226,44.363727,44.614228,44.864729,45.11523,45.365731,45.616232,45.866733,46.117234,46.367735,46.618236,46.868737,47.119238,47.369739,47.62024,47.870741,48.121242,48.371743,48.622244,48.872745,49.123246,49.373747,49.624248,49.874749,50.125251,50.375752,50.626253,50.876754,51.127255,51.377756,51.628257,51.878758,52.129259,52.37976,52.630261,52.880762,53.131263,53.381764,53.632265,53.882766,54.133267,54.383768,54.634269,54.88477,55.135271,55.385772,55.636273,55.886774,56.137275,56.387776,56.638277,56.888778,57.139279,57.38978,57.640281,57.890782,58.141283,58.391784,58.642285,58.892786,59.143287,59.393788,59.644289,59.89479,60.145291,60.395792,60.646293,60.896794,61.147295,61.397796,61.648297,61.898798,62.149299,62.3998,62.650301,62.900802,63.151303,63.401804,63.652305,63.902806,64.153307,64.403808,64.654309,64.90481,65.155311,65.405812,65.656313,65.906814,66.157315,66.407816,66.658317,66.908818,67.159319,67.40982,67.660321,67.910822,68.161323,68.411824,68.662325,68.912826,69.163327,69.413828,69.664329,69.91483,70.165331,70.415832,70.666333,70.916834,71.167335,71.417836,71.668337,71.918838,72.169339,72.41984,72.670341,72.920842,73.171343,73.421844,73.672345,73.922846,74.173347,74.423848,74.674349,74.92485,75.175351,75.425852,75.676353,75.926854,76.177355,76.427856,76.678357,76.928858,77.179359,77.42986,77.680361,77.930862,78.181363,78.431864,78.682365,78.932866,79.183367,79.433868,79.684369,79.93487,80.185371,80.435872,80.686373,80.936874,81.187375,81.437876,81.688377,81.938878,82.189379,82.43988,82.690381,82.940882,83.191383,83.441884,83.692385,83.942886,84.193387,84.443888,84.694389,84.94489,85.195391,85.445892,85.696393,85.946894,86.197395,86.447896,86.698397,86.948898,87.199399,87.4499,87.700401,87.950902,88.201403,88.451904,88.702405,88.952906,89.203407,89.453908,89.704409,89.95491,90.205411,90.455912,90.706413,90.956914,91.207415,91.457916,91.708417,91.958918,92.209419,92.45992,92.710421,92.960922,93.211423,93.461924,93.712425,93.962926,94.213427,94.463928,94.714429,94.96493,95.215431,95.465932,95.716433,95.966934,96.217435,96.467936,96.718437,96.968938,97.219439,97.46994,97.720441,97.970942,98.221443,98.471944,98.722445,98.972946,99.223447,99.473948,99.724449,99.97495,100.22545,100.47595,100.72645,100.97695,101.22745,101.47796,101.72846,101.97896,102.22946,102.47996,102.73046,102.98096,103.23146,103.48196,103.73246,103.98297,104.23347,104.48397,104.73447,104.98497,105.23547,105.48597,105.73647,105.98697,106.23747,106.48798,106.73848,106.98898,107.23948,107.48998,107.74048,107.99098,108.24148,108.49198,108.74248,108.99299,109.24349,109.49399,109.74449,109.99499,110.24549,110.49599,110.74649,110.99699,111.24749,111.498,111.7485,111.999,112.2495,112.5],"y":[-0.36719718,-0.3671637,-0.3671231,-0.36707405,-0.36701503,-0.36694431,-0.36685993,-0.36675964,-0.36664095,-0.36650106,-0.36633685,-0.36614491,-0.36592146,-0.36566244,-0.36536342,-0.36501968,-0.36462619,-0.36417763,-0.36366847,-0.36309297,-0.36244527,-0.36171942,-0.3609095,-0.36000967,-0.3590143,-0.35791806,-0.35671606,-0.35540394,-0.35397801,-0.35243539,-0.35077412,-0.34899331,-0.34709323,-0.34507544,-0.34294288,-0.34069993,-0.33835252,-0.33590809,-0.33337568,-0.33076588,-0.32809078,-0.32536392,-0.32260017,-0.31981564,-0.31702747,-0.3142537,-0.31151302,-0.30882458,-0.30620776,-0.30368188,-0.30126597,-0.29897853,-0.29683723,-0.29485872,-0.29305835,-0.29144999,-0.29004585,-0.28885628,-0.28788966,-0.28715231,-0.2866484,-0.28637993,-0.28634672,-0.28654645,-0.28697476,-0.28762527,-0.28848979,-0.28955841,-0.29081969,-0.29226087,-0.29386802,-0.2956263,-0.29752013,-0.29953344,-0.30164986,-0.30385293,-0.3061263,-0.3084539,-0.31082012,-0.31320996,-0.31560915,-0.31800427,-0.32038284,-0.32273342,-0.3250456,-0.32731011,-0.32951877,-0.33166453,-0.33374145,-0.33574464,-0.33767027,-0.33951545,-0.34127823,-0.34295749,-0.3445529,-0.34606483,-0.34749425,-0.34884271,-0.35011218,-0.35130508,-0.3524241,-0.35347221,-0.35445258,-0.3553685,-0.35622334,-0.3570205,-0.35776338,-0.35845534,-0.35909965,-0.35969948,-0.36025787,-0.36077773,-0.36126182,-0.3617127,-0.36213281,-0.3625244,-0.36288954,-0.36323014,-0.36354797,-0.36384463,-0.36412156,-0.36438011,-0.36462146,-0.36484671,-0.36505684,-0.36525274,-0.36543525,-0.36560509,-0.36576297,-0.36590951,-0.36604532,-0.36617096,-0.36628696,-0.36639383,-0.36649206,-0.36658213,-0.36666449,-0.3667396,-0.3668079,-0.36686982,-0.36692578,-0.36697619,-0.36702145,-0.36706195,-0.36709806,-0.36713015,-0.36715856,-0.36718362,-0.36720564,-0.36722493,-0.36724175,-0.36725636,-0.36726901,-0.36727991,-0.36728928,-0.36729729,-0.36730412,-0.36730991,-0.36731481,-0.36731893,-0.36732238,-0.36732527,-0.36732767,-0.36732966,-0.3673313,-0.36733265,-0.36733375,-0.36733465,-0.36733538,-0.36733597,-0.36733645,-0.36733683,-0.36733713,-0.36733737,-0.36733756,-0.36733772,-0.36733783,-0.36733793,-0.367338,-0.36733806,-0.3673381,-0.36733813,-0.36733816,-0.36733818,-0.36733819,-0.3673382,-0.36733821,-0.36733822,-0.36733822,-0.36733823,-0.36733823,-0.36733823,-0.36733823,-0.36733823,-0.36733823,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733823,-0.36733823,-0.36733823,-0.36733823,-0.36733823,-0.36733823,-0.36733822,-0.36733822,-0.36733821,-0.3673382,-0.36733819,-0.36733818,-0.36733816,-0.36733813,-0.3673381,-0.36733805,-0.367338,-0.36733792,-0.36733783,-0.36733771,-0.36733756,-0.36733736,-0.36733712,-0.36733682,-0.36733643,-0.36733596,-0.36733537,-0.36733464,-0.36733375,-0.36733265,-0.36733132,-0.3673297,-0.36732774,-0.36732539,-0.36732257,-0.3673192,-0.3673152,-0.36731046,-0.36730489,-0.36729835,-0.36729072,-0.36728185,-0.36727159,-0.36725977,-0.36724621,-0.36723073,-0.36721314,-0.36719324,-0.36717083,-0.36714572,-0.3671177,-0.3670866,-0.36705223,-0.36701445,-0.3669731,-0.36692809,-0.36687934,-0.3668268,-0.36677047,-0.36671041,-0.36664671,-0.36657953,-0.36650908,-0.36643563,-0.36635953,-0.36628116,-0.36620099,-0.36611953,-0.36603734,-0.36595505,-0.36587331,-0.36579281,-0.36571426,-0.36563841,-0.36556598,-0.36549769,-0.36543425,-0.36537634,-0.36532458,-0.36527954,-0.36524173,-0.36521159,-0.36518946,-0.36517559,-0.36517016,-0.36517321,-0.36518473,-0.36520457,-0.3652325,-0.3652682,-0.36531127,-0.3653612,-0.36541745,-0.36547941,-0.36554641,-0.36561775,-0.36569272,-0.36577059,-0.36585061,-0.36593208,-0.36601428,-0.36609656,-0.36617829,-0.36625888,-0.3663378,-0.36641458,-0.3664888,-0.36656012,-0.36662824,-0.36669293,-0.36675402,-0.3668114,-0.36686501,-0.36691482,-0.36696087,-0.36700323,-0.367042,-0.36707731,-0.36710931,-0.36713817,-0.36716408,-0.36718722,-0.36720781,-0.36722602,-0.36724208,-0.36725615,-0.36726844,-0.36727913,-0.36728837,-0.36729633,-0.36730316,-0.36730899,-0.36731395,-0.36731815,-0.36732168,-0.36732465,-0.36732713,-0.36732919,-0.3673309,-0.36733231,-0.36733346,-0.36733441,-0.36733518,-0.36733581,-0.36733631,-0.36733672,-0.36733704,-0.3673373,-0.36733751,-0.36733767,-0.3673378,-0.3673379,-0.36733798,-0.36733804,-0.36733809],"zorder":7,"type":"scatter"}],"layout":{"template":{"data":{"histogram2dcontour":[{"type":"histogram2dcontour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"choropleth":[{"type":"choropleth","colorbar":{"outlinewidth":0,"ticks":""}}],"histogram2d":[{"type":"histogram2d","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmap":[{"type":"heatmap","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmapgl":[{"type":"heatmapgl","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"contourcarpet":[{"type":"contourcarpet","colorbar":{"outlinewidth":0,"ticks":""}}],"contour":[{"type":"contour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"surface":[{"type":"surface","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"mesh3d":[{"type":"mesh3d","colorbar":{"outlinewidth":0,"ticks":""}}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"parcoords":[{"type":"parcoords","line":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolargl":[{"type":"scatterpolargl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"scattergeo":[{"type":"scattergeo","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolar":[{"type":"scatterpolar","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"scattergl":[{"type":"scattergl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatter3d":[{"type":"scatter3d","line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattermapbox":[{"type":"scattermapbox","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterternary":[{"type":"scatterternary","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattercarpet":[{"type":"scattercarpet","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"type":"carpet"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}],"barpolar":[{"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"pie":[{"automargin":true,"type":"pie"}]},"layout":{"autotypenumbers":"strict","colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"hovermode":"closest","hoverlabel":{"align":"left"},"paper_bgcolor":"white","plot_bgcolor":"#E5ECF6","polar":{"bgcolor":"#E5ECF6","angularaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"radialaxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"ternary":{"bgcolor":"#E5ECF6","aaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"baxis":{"gridcolor":"white","linecolor":"white","ticks":""},"caxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]]},"xaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"yaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"scene":{"xaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"yaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"zaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"geo":{"bgcolor":"white","landcolor":"#E5ECF6","subunitcolor":"white","showland":true,"showlakes":true,"lakecolor":"white"},"title":{"x":0.05},"mapbox":{"style":"light"}}},"legend":{"traceorder":"normal"},"yaxis":{"showticklabels":true,"tickvals":[0.0,-0.052476890942663564,-0.10495378188532713,-0.15743067282799067,-0.20990756377065425,-0.26238445471331784,-0.31486134565598134,-0.36733823659864495],"ticktext":[["Almost Certainly"],["Very Good Chance"],["We Believe"],["Likely"],["About Even"],["Little Chance"],["Chances Are Slight"],["Almost No Chance"]],"zeroline":false,"showgrid":true,"title":{"font":{"size":13},"text":"Assigned Probability (%)"},"gridcolor":"rgba(0, 0, 0, 0.1)"},"xaxis":{"range":[-18.75,118.75],"showticklabels":true,"zeroline":false,"showgrid":true,"tickvals":[-12.5,0,12.5,25,37.5,50,62.5,75,87.5,100,112.5],"ticktext":["","0","","25","","50","","75","","100",""],"gridcolor":"rgba(0, 0, 0, 0.1)"},"barmode":"stack","bargap":0,"bargroupgap":0,"font":{"size":16},"height":560,"width":800,"plot_bgcolor":"white","showlegend":false}} +{"data":[{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-12.5,-12.249499,-11.998998,-11.748497,-11.497996,-11.247495,-10.996994,-10.746493,-10.495992,-10.245491,-9.99499,-9.744489,-9.493988,-9.243487,-8.992986,-8.742485,-8.491984,-8.241483,-7.990982,-7.740481,-7.48998,-7.239479,-6.988978,-6.738477,-6.487976,-6.2374749,-5.9869739,-5.7364729,-5.4859719,-5.2354709,-4.9849699,-4.7344689,-4.4839679,-4.2334669,-3.9829659,-3.7324649,-3.4819639,-3.2314629,-2.9809619,-2.7304609,-2.4799599,-2.2294589,-1.9789579,-1.7284569,-1.4779559,-1.2274549,-0.97695391,-0.72645291,-0.4759519,-0.2254509,0.0250501,0.2755511,0.5260521,0.77655311,1.0270541,1.2775551,1.5280561,1.7785571,2.0290581,2.2795591,2.5300601,2.7805611,3.0310621,3.2815631,3.5320641,3.7825651,4.0330661,4.2835671,4.5340681,4.7845691,5.0350701,5.2855711,5.5360721,5.7865731,6.0370741,6.2875752,6.5380762,6.7885772,7.0390782,7.2895792,7.5400802,7.7905812,8.0410822,8.2915832,8.5420842,8.7925852,9.0430862,9.2935872,9.5440882,9.7945892,10.04509,10.295591,10.546092,10.796593,11.047094,11.297595,11.548096,11.798597,12.049098,12.299599,12.5501,12.800601,13.051102,13.301603,13.552104,13.802605,14.053106,14.303607,14.554108,14.804609,15.05511,15.305611,15.556112,15.806613,16.057114,16.307615,16.558116,16.808617,17.059118,17.309619,17.56012,17.810621,18.061122,18.311623,18.562124,18.812625,19.063126,19.313627,19.564128,19.814629,20.06513,20.315631,20.566132,20.816633,21.067134,21.317635,21.568136,21.818637,22.069138,22.319639,22.57014,22.820641,23.071142,23.321643,23.572144,23.822645,24.073146,24.323647,24.574148,24.824649,25.07515,25.325651,25.576152,25.826653,26.077154,26.327655,26.578156,26.828657,27.079158,27.329659,27.58016,27.830661,28.081162,28.331663,28.582164,28.832665,29.083166,29.333667,29.584168,29.834669,30.08517,30.335671,30.586172,30.836673,31.087174,31.337675,31.588176,31.838677,32.089178,32.339679,32.59018,32.840681,33.091182,33.341683,33.592184,33.842685,34.093186,34.343687,34.594188,34.844689,35.09519,35.345691,35.596192,35.846693,36.097194,36.347695,36.598196,36.848697,37.099198,37.349699,37.6002,37.850701,38.101202,38.351703,38.602204,38.852705,39.103206,39.353707,39.604208,39.854709,40.10521,40.355711,40.606212,40.856713,41.107214,41.357715,41.608216,41.858717,42.109218,42.359719,42.61022,42.860721,43.111222,43.361723,43.612224,43.862725,44.113226,44.363727,44.614228,44.864729,45.11523,45.365731,45.616232,45.866733,46.117234,46.367735,46.618236,46.868737,47.119238,47.369739,47.62024,47.870741,48.121242,48.371743,48.622244,48.872745,49.123246,49.373747,49.624248,49.874749,50.125251,50.375752,50.626253,50.876754,51.127255,51.377756,51.628257,51.878758,52.129259,52.37976,52.630261,52.880762,53.131263,53.381764,53.632265,53.882766,54.133267,54.383768,54.634269,54.88477,55.135271,55.385772,55.636273,55.886774,56.137275,56.387776,56.638277,56.888778,57.139279,57.38978,57.640281,57.890782,58.141283,58.391784,58.642285,58.892786,59.143287,59.393788,59.644289,59.89479,60.145291,60.395792,60.646293,60.896794,61.147295,61.397796,61.648297,61.898798,62.149299,62.3998,62.650301,62.900802,63.151303,63.401804,63.652305,63.902806,64.153307,64.403808,64.654309,64.90481,65.155311,65.405812,65.656313,65.906814,66.157315,66.407816,66.658317,66.908818,67.159319,67.40982,67.660321,67.910822,68.161323,68.411824,68.662325,68.912826,69.163327,69.413828,69.664329,69.91483,70.165331,70.415832,70.666333,70.916834,71.167335,71.417836,71.668337,71.918838,72.169339,72.41984,72.670341,72.920842,73.171343,73.421844,73.672345,73.922846,74.173347,74.423848,74.674349,74.92485,75.175351,75.425852,75.676353,75.926854,76.177355,76.427856,76.678357,76.928858,77.179359,77.42986,77.680361,77.930862,78.181363,78.431864,78.682365,78.932866,79.183367,79.433868,79.684369,79.93487,80.185371,80.435872,80.686373,80.936874,81.187375,81.437876,81.688377,81.938878,82.189379,82.43988,82.690381,82.940882,83.191383,83.441884,83.692385,83.942886,84.193387,84.443888,84.694389,84.94489,85.195391,85.445892,85.696393,85.946894,86.197395,86.447896,86.698397,86.948898,87.199399,87.4499,87.700401,87.950902,88.201403,88.451904,88.702405,88.952906,89.203407,89.453908,89.704409,89.95491,90.205411,90.455912,90.706413,90.956914,91.207415,91.457916,91.708417,91.958918,92.209419,92.45992,92.710421,92.960922,93.211423,93.461924,93.712425,93.962926,94.213427,94.463928,94.714429,94.96493,95.215431,95.465932,95.716433,95.966934,96.217435,96.467936,96.718437,96.968938,97.219439,97.46994,97.720441,97.970942,98.221443,98.471944,98.722445,98.972946,99.223447,99.473948,99.724449,99.97495,100.22545,100.47595,100.72645,100.97695,101.22745,101.47796,101.72846,101.97896,102.22946,102.47996,102.73046,102.98096,103.23146,103.48196,103.73246,103.98297,104.23347,104.48397,104.73447,104.98497,105.23547,105.48597,105.73647,105.98697,106.23747,106.48798,106.73848,106.98898,107.23948,107.48998,107.74048,107.99098,108.24148,108.49198,108.74248,108.99299,109.24349,109.49399,109.74449,109.99499,110.24549,110.49599,110.74649,110.99699,111.24749,111.498,111.7485,111.999,112.2495,112.5],"y":[0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"zorder":0,"type":"scatter"},{"customdata":[[9.9961017e-75],[3.1041248e-74],[9.6016175e-74],[2.9583283e-73],[9.0791473e-73],[2.7754953e-72],[8.4514777e-72],[2.5634304e-71],[7.7447456e-71],[2.3307168e-70],[6.9866436e-70],[2.0861446e-69],[6.2046451e-69],[1.8381723e-68],[5.4244065e-68],[1.5944649e-67],[4.6684685e-67],[1.3615407e-66],[3.9553376e-66],[1.1445459e-65],[3.2989794e-65],[9.4715865e-65],[2.7087105e-64],[7.7161235e-64],[2.1894371e-63],[6.1881742e-63],[1.7421651e-62],[4.8855427e-62],[1.364687e-61],[3.7970824e-61],[1.0523585e-60],[2.9051874e-60],[7.9887956e-60],[2.1881909e-59],[5.970158e-59],[1.6224943e-58],[4.3921511e-58],[1.1843173e-57],[3.1809411e-57],[8.5102028e-57],[2.2678844e-56],[6.0200301e-56],[1.5917437e-55],[4.1922226e-55],[1.0997963e-54],[2.8739349e-54],[7.4806326e-54],[1.9395298e-53],[5.0090032e-53],[1.2885548e-52],[3.3018034e-52],[8.4274515e-52],[2.1425849e-51],[5.4259596e-51],[1.3687111e-50],[3.4390918e-50],[8.6074097e-50],[2.1458428e-49],[5.3286853e-49],[1.3180715e-48],[3.2475407e-48],[7.9701585e-48],[1.9483907e-47],[4.7444062e-47],[1.1507591e-46],[2.780249e-46],[6.6908256e-46],[1.6038822e-45],[3.8296751e-45],[9.1085267e-45],[2.1578988e-44],[5.092262e-44],[1.1969807e-43],[2.8025945e-43],[6.5362722e-43],[1.5184368e-42],[3.5136625e-42],[8.0987893e-42],[1.8594174e-41],[4.2523636e-41],[9.6868069e-41],[2.1979997e-40],[4.9678826e-40],[1.1184376e-39],[2.5081236e-39],[5.6025125e-39],[1.2465608e-38],[2.7627452e-38],[6.0990883e-38],[1.3411759e-37],[2.937672e-37],[6.4094031e-37],[1.3929278e-36],[3.0153404e-36],[6.5019082e-36],[1.3965035e-35],[2.9877206e-35],[6.3669971e-35],[1.3515311e-34],[2.8576839e-34],[6.0186495e-34],[1.2626432e-33],[2.6385114e-33],[5.4920443e-33],[1.1386908e-32],[2.351659e-32],[4.8377073e-32],[9.9129193e-32],[2.0233e-31],[4.11354e-31],[8.3304392e-31],[1.680416e-30],[3.3764664e-30],[6.7577917e-30],[1.3472367e-29],[2.6753446e-29],[5.291908e-29],[1.0426573e-28],[2.046292e-28],[4.0002796e-28],[7.7895045e-28],[1.5108663e-27],[2.9190329e-27],[5.6175722e-27],[1.0768497e-26],[2.0561662e-26],[3.9107322e-26],[7.4089161e-26],[1.3981315e-25],[2.6280769e-25],[4.920677e-25],[9.1771617e-25],[1.7048597e-24],[3.1547549e-24],[5.814861e-24],[1.067603e-23],[1.9524367e-23],[3.5566479e-23],[6.453592e-23],[1.1664305e-22],[2.0999695e-22],[3.7658569e-22],[6.7268442e-22],[1.1968939e-21],[2.1212736e-21],[3.7448502e-21],[6.5851994e-21],[1.1534537e-20],[2.0124639e-20],[3.4974602e-20],[6.0544429e-20],[1.0439804e-19],[1.7931111e-19],[3.0677418e-19],[5.2278984e-19],[8.8742611e-19],[1.5004931e-18],[2.5271587e-18],[4.2396283e-18],[7.0846723e-18],[1.1792571e-17],[1.9552124e-17],[3.22906e-17],[5.3119629e-17],[8.7042364e-17],[1.4207022e-16],[2.3097882e-16],[3.7405717e-16],[6.033934e-16],[9.6952688e-16],[1.551729e-15],[2.4738231e-15],[3.928422e-15],[6.2139013e-15],[9.7905549e-15],[1.536551e-14],[2.4020575e-14],[3.7403871e-14],[5.8015818e-14],[8.9634052e-14],[1.3794195e-13],[2.1145426e-13],[3.2287412e-13],[4.910738e-13],[7.4397275e-13],[1.1227008e-12],[1.6875931e-12],[2.5267845e-12],[3.7684728e-12],[5.5983403e-12],[8.284188e-12],[1.2210609e-11],[1.792757e-11],[2.6218164e-11],[3.8192654e-11],[5.541842e-11],[8.0098646e-11],[1.1531689e-10],[1.6537027e-10],[2.3622108e-10],[3.3610627e-10],[4.7635563e-10],[6.7248518e-10],[9.4565096e-10],[1.3245725e-09],[1.8480655e-09],[2.5683588e-09],[3.5554188e-09],[4.9025561e-09],[6.7336588e-09],[9.2124761e-09],[1.255447e-08],[1.7041864e-08],[2.3042657e-08],[3.1034499e-08],[4.163453e-08],[5.5636437e-08],[7.4056246e-08],[9.8188541e-08],[1.2967512e-07],[1.7058829e-07],[2.235314e-07],[2.917592e-07],[3.7932139e-07],[4.912322e-07],[6.3366987e-07],[8.1420923e-07],[1.0420912e-06],[1.3285323e-06],[1.6870785e-06],[2.1340037e-06],[2.6887584e-06],[3.3744665e-06],[4.2184723e-06],[5.2529348e-06],[6.515467e-06],[8.0498135e-06],[9.9065587e-06],[1.2143854e-05],[1.4828151e-05],[1.8034919e-05],[2.184933e-05],[2.6366882e-05],[3.1693935e-05],[3.7948121e-05],[4.5258601e-05],[5.3766121e-05],[6.3622835e-05],[7.4991848e-05],[8.8046445e-05],[0.00010296896],[0.00011994926],[0.00013918279],[0.00016086821],[0.00018520455],[0.00021238792],[0.00024260776],[0.00027604273],[0.00031285612],[0.00035319109],[0.00039716553],[0.0004448669],[0.00049634696],[0.00055161665],[0.0006106412],[0.00067333559],[0.0007395606],[0.00080911955],[0.00088175586],[0.00095715163],[0.0010349274],[0.0011146428],[0.0011957993],[0.0012778434],[0.0013601715],[0.0014421368],[0.0015230564],[0.0016022203],[0.0016789015],[0.0017523665],[0.001821887],[0.0018867513],[0.0019462769],[0.0019998221],[0.0020467975],[0.0020866768],[0.0021190065],[0.0021434149],[0.0021596187],[0.0021674289],[0.0021667542],[0.002157603],[0.0021400834],[0.0021144008],[0.0020808541],[0.0020398303],[0.0019917968],[0.0019372928],[0.0018769197],[0.00181133],[0.0017412161],[0.0016672985],[0.001590314],[0.0015110043],[0.0014301051],[0.0013483355],[0.0012663891],[0.0011849259],[0.0011045654],[0.001025881],[0.00094939683],[0.00087558456],[0.0008048629],[0.00073759798],[0.00067410519],[0.00061465218],[0.00055946304],[0.00050872334],[0.00046258591],[0.00042117733],[0.00038460467],[0.00035296256],[0.00032634032],[0.00030482891],[0.00028852764],[0.00027755051],[0.00027203194],[0.00027213181],[0.00027803983],[0.00028997894],[0.00030820786],[0.00033302262],[0.0003647571],[0.00040378255],[0.00045050609],[0.00050536823],[0.00056883941],[0.00064141577],[0.000723614],[0.00081596565],[0.00091901078],[0.0010332913],[0.0011593439],[0.0012976932],[0.0014488444],[0.0016132769],[0.0017914378],[0.0019837359],[0.002190537],[0.002412159],[0.002648869],[0.0029008807],[0.0031683526],[0.0034513877],[0.0037500339],[0.004064285],[0.004394083],[0.0047393207],[0.0050998446],[0.0054754586],[0.005865928],[0.0062709828],[0.0066903222],[0.0071236175],[0.0075705164],[0.0080306459],[0.0085036156],[0.0089890209],[0.0094864457],[0.0099954659],[0.010515653],[0.011046577],[0.011587812],[0.012138942],[0.012699566],[0.013269304],[0.013847811],[0.014434779],[0.015029956],[0.015633151],[0.016244252],[0.016863236],[0.017490187],[0.018125306],[0.018768926],[0.019421524],[0.020083735],[0.020756356],[0.021440356],[0.022136879],[0.022847245],[0.023572943],[0.024315622],[0.025077082],[0.02585925],[0.026664156],[0.027493905],[0.028350641],[0.0292365],[0.030153569],[0.031103829],[0.032089098],[0.033110971],[0.034170755],[0.035269397],[0.03640742],[0.037584854],[0.038801165],[0.040055192],[0.04134509],[0.042668273],[0.044021371],[0.045400197],[0.046799721],[0.048214062],[0.049636495],[0.051059471],[0.052474655],[0.053872985],[0.055244743],[0.056579649],[0.057866967],[0.059095628],[0.060254365],[0.061331868],[0.062316932],[0.063198627],[0.063966464],[0.064610556],[0.065121785],[0.065491957],[0.065713943],[0.065781811],[0.065690939],[0.065438112],[0.065021588],[0.064441153],[0.06369814],[0.062795433],[0.061737434],[0.06053002],[0.059180458],[0.057697318],[0.056090345],[0.054370335],[0.052548975],[0.050638687],[0.048652458],[0.046603661],[0.044505884],[0.042372749],[0.040217748],[0.038054074],[0.035894477],[0.033751119],[0.031635455],[0.029558125],[0.027528864],[0.025556432],[0.023648566],[0.021811941],[0.020052159],[0.018373752],[0.016780202],[0.01527397],[0.01385655],[0.012528521],[0.011289618],[0.010138804],[0.0090743546],[0.0080939386],[0.0071947035],[0.0063733618],[0.0056262741],[0.0049495297],[0.0043390227],[0.0037905236],[0.003299744],[0.0028623957],[0.0024742421],[0.0021311435],[0.0018290946],[0.0015642557],[0.0013329771],[0.0011318175],[0.00095755646],[0.0008072022],[0.00067799425],[0.00056740262],[0.0004731233],[0.00039307117],[0.0003253705],[0.00026834388],[0.00022049984],[0.00018051969],[0.00014724391],[0.00011965846],[9.6881268e-05],[7.814903e-05],[6.2804671e-05]],"fill":"tonexty","fillcolor":"rgba(253, 231, 37, 0.65)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Almost Certainly","x":[-12.5,-12.249499,-11.998998,-11.748497,-11.497996,-11.247495,-10.996994,-10.746493,-10.495992,-10.245491,-9.99499,-9.744489,-9.493988,-9.243487,-8.992986,-8.742485,-8.491984,-8.241483,-7.990982,-7.740481,-7.48998,-7.239479,-6.988978,-6.738477,-6.487976,-6.2374749,-5.9869739,-5.7364729,-5.4859719,-5.2354709,-4.9849699,-4.7344689,-4.4839679,-4.2334669,-3.9829659,-3.7324649,-3.4819639,-3.2314629,-2.9809619,-2.7304609,-2.4799599,-2.2294589,-1.9789579,-1.7284569,-1.4779559,-1.2274549,-0.97695391,-0.72645291,-0.4759519,-0.2254509,0.0250501,0.2755511,0.5260521,0.77655311,1.0270541,1.2775551,1.5280561,1.7785571,2.0290581,2.2795591,2.5300601,2.7805611,3.0310621,3.2815631,3.5320641,3.7825651,4.0330661,4.2835671,4.5340681,4.7845691,5.0350701,5.2855711,5.5360721,5.7865731,6.0370741,6.2875752,6.5380762,6.7885772,7.0390782,7.2895792,7.5400802,7.7905812,8.0410822,8.2915832,8.5420842,8.7925852,9.0430862,9.2935872,9.5440882,9.7945892,10.04509,10.295591,10.546092,10.796593,11.047094,11.297595,11.548096,11.798597,12.049098,12.299599,12.5501,12.800601,13.051102,13.301603,13.552104,13.802605,14.053106,14.303607,14.554108,14.804609,15.05511,15.305611,15.556112,15.806613,16.057114,16.307615,16.558116,16.808617,17.059118,17.309619,17.56012,17.810621,18.061122,18.311623,18.562124,18.812625,19.063126,19.313627,19.564128,19.814629,20.06513,20.315631,20.566132,20.816633,21.067134,21.317635,21.568136,21.818637,22.069138,22.319639,22.57014,22.820641,23.071142,23.321643,23.572144,23.822645,24.073146,24.323647,24.574148,24.824649,25.07515,25.325651,25.576152,25.826653,26.077154,26.327655,26.578156,26.828657,27.079158,27.329659,27.58016,27.830661,28.081162,28.331663,28.582164,28.832665,29.083166,29.333667,29.584168,29.834669,30.08517,30.335671,30.586172,30.836673,31.087174,31.337675,31.588176,31.838677,32.089178,32.339679,32.59018,32.840681,33.091182,33.341683,33.592184,33.842685,34.093186,34.343687,34.594188,34.844689,35.09519,35.345691,35.596192,35.846693,36.097194,36.347695,36.598196,36.848697,37.099198,37.349699,37.6002,37.850701,38.101202,38.351703,38.602204,38.852705,39.103206,39.353707,39.604208,39.854709,40.10521,40.355711,40.606212,40.856713,41.107214,41.357715,41.608216,41.858717,42.109218,42.359719,42.61022,42.860721,43.111222,43.361723,43.612224,43.862725,44.113226,44.363727,44.614228,44.864729,45.11523,45.365731,45.616232,45.866733,46.117234,46.367735,46.618236,46.868737,47.119238,47.369739,47.62024,47.870741,48.121242,48.371743,48.622244,48.872745,49.123246,49.373747,49.624248,49.874749,50.125251,50.375752,50.626253,50.876754,51.127255,51.377756,51.628257,51.878758,52.129259,52.37976,52.630261,52.880762,53.131263,53.381764,53.632265,53.882766,54.133267,54.383768,54.634269,54.88477,55.135271,55.385772,55.636273,55.886774,56.137275,56.387776,56.638277,56.888778,57.139279,57.38978,57.640281,57.890782,58.141283,58.391784,58.642285,58.892786,59.143287,59.393788,59.644289,59.89479,60.145291,60.395792,60.646293,60.896794,61.147295,61.397796,61.648297,61.898798,62.149299,62.3998,62.650301,62.900802,63.151303,63.401804,63.652305,63.902806,64.153307,64.403808,64.654309,64.90481,65.155311,65.405812,65.656313,65.906814,66.157315,66.407816,66.658317,66.908818,67.159319,67.40982,67.660321,67.910822,68.161323,68.411824,68.662325,68.912826,69.163327,69.413828,69.664329,69.91483,70.165331,70.415832,70.666333,70.916834,71.167335,71.417836,71.668337,71.918838,72.169339,72.41984,72.670341,72.920842,73.171343,73.421844,73.672345,73.922846,74.173347,74.423848,74.674349,74.92485,75.175351,75.425852,75.676353,75.926854,76.177355,76.427856,76.678357,76.928858,77.179359,77.42986,77.680361,77.930862,78.181363,78.431864,78.682365,78.932866,79.183367,79.433868,79.684369,79.93487,80.185371,80.435872,80.686373,80.936874,81.187375,81.437876,81.688377,81.938878,82.189379,82.43988,82.690381,82.940882,83.191383,83.441884,83.692385,83.942886,84.193387,84.443888,84.694389,84.94489,85.195391,85.445892,85.696393,85.946894,86.197395,86.447896,86.698397,86.948898,87.199399,87.4499,87.700401,87.950902,88.201403,88.451904,88.702405,88.952906,89.203407,89.453908,89.704409,89.95491,90.205411,90.455912,90.706413,90.956914,91.207415,91.457916,91.708417,91.958918,92.209419,92.45992,92.710421,92.960922,93.211423,93.461924,93.712425,93.962926,94.213427,94.463928,94.714429,94.96493,95.215431,95.465932,95.716433,95.966934,96.217435,96.467936,96.718437,96.968938,97.219439,97.46994,97.720441,97.970942,98.221443,98.471944,98.722445,98.972946,99.223447,99.473948,99.724449,99.97495,100.22545,100.47595,100.72645,100.97695,101.22745,101.47796,101.72846,101.97896,102.22946,102.47996,102.73046,102.98096,103.23146,103.48196,103.73246,103.98297,104.23347,104.48397,104.73447,104.98497,105.23547,105.48597,105.73647,105.98697,106.23747,106.48798,106.73848,106.98898,107.23948,107.48998,107.74048,107.99098,108.24148,108.49198,108.74248,108.99299,109.24349,109.49399,109.74449,109.99499,110.24549,110.49599,110.74649,110.99699,111.24749,111.498,111.7485,111.999,112.2495,112.5],"y":[9.9961017e-75,3.1041248e-74,9.6016175e-74,2.9583283e-73,9.0791473e-73,2.7754953e-72,8.4514777e-72,2.5634304e-71,7.7447456e-71,2.3307168e-70,6.9866436e-70,2.0861446e-69,6.2046451e-69,1.8381723e-68,5.4244065e-68,1.5944649e-67,4.6684685e-67,1.3615407e-66,3.9553376e-66,1.1445459e-65,3.2989794e-65,9.4715865e-65,2.7087105e-64,7.7161235e-64,2.1894371e-63,6.1881742e-63,1.7421651e-62,4.8855427e-62,1.364687e-61,3.7970824e-61,1.0523585e-60,2.9051874e-60,7.9887956e-60,2.1881909e-59,5.970158e-59,1.6224943e-58,4.3921511e-58,1.1843173e-57,3.1809411e-57,8.5102028e-57,2.2678844e-56,6.0200301e-56,1.5917437e-55,4.1922226e-55,1.0997963e-54,2.8739349e-54,7.4806326e-54,1.9395298e-53,5.0090032e-53,1.2885548e-52,3.3018034e-52,8.4274515e-52,2.1425849e-51,5.4259596e-51,1.3687111e-50,3.4390918e-50,8.6074097e-50,2.1458428e-49,5.3286853e-49,1.3180715e-48,3.2475407e-48,7.9701585e-48,1.9483907e-47,4.7444062e-47,1.1507591e-46,2.780249e-46,6.6908256e-46,1.6038822e-45,3.8296751e-45,9.1085267e-45,2.1578988e-44,5.092262e-44,1.1969807e-43,2.8025945e-43,6.5362722e-43,1.5184368e-42,3.5136625e-42,8.0987893e-42,1.8594174e-41,4.2523636e-41,9.6868069e-41,2.1979997e-40,4.9678826e-40,1.1184376e-39,2.5081236e-39,5.6025125e-39,1.2465608e-38,2.7627452e-38,6.0990883e-38,1.3411759e-37,2.937672e-37,6.4094031e-37,1.3929278e-36,3.0153404e-36,6.5019082e-36,1.3965035e-35,2.9877206e-35,6.3669971e-35,1.3515311e-34,2.8576839e-34,6.0186495e-34,1.2626432e-33,2.6385114e-33,5.4920443e-33,1.1386908e-32,2.351659e-32,4.8377073e-32,9.9129193e-32,2.0233e-31,4.11354e-31,8.3304392e-31,1.680416e-30,3.3764664e-30,6.7577917e-30,1.3472367e-29,2.6753446e-29,5.291908e-29,1.0426573e-28,2.046292e-28,4.0002796e-28,7.7895045e-28,1.5108663e-27,2.9190329e-27,5.6175722e-27,1.0768497e-26,2.0561662e-26,3.9107322e-26,7.4089161e-26,1.3981315e-25,2.6280769e-25,4.920677e-25,9.1771617e-25,1.7048597e-24,3.1547549e-24,5.814861e-24,1.067603e-23,1.9524367e-23,3.5566479e-23,6.453592e-23,1.1664305e-22,2.0999695e-22,3.7658569e-22,6.7268442e-22,1.1968939e-21,2.1212736e-21,3.7448502e-21,6.5851994e-21,1.1534537e-20,2.0124639e-20,3.4974602e-20,6.0544429e-20,1.0439804e-19,1.7931111e-19,3.0677418e-19,5.2278984e-19,8.8742611e-19,1.5004931e-18,2.5271587e-18,4.2396283e-18,7.0846723e-18,1.1792571e-17,1.9552124e-17,3.22906e-17,5.3119629e-17,8.7042364e-17,1.4207022e-16,2.3097882e-16,3.7405717e-16,6.033934e-16,9.6952688e-16,1.551729e-15,2.4738231e-15,3.928422e-15,6.2139013e-15,9.7905549e-15,1.536551e-14,2.4020575e-14,3.7403871e-14,5.8015818e-14,8.9634052e-14,1.3794195e-13,2.1145426e-13,3.2287412e-13,4.910738e-13,7.4397275e-13,1.1227008e-12,1.6875931e-12,2.5267845e-12,3.7684728e-12,5.5983403e-12,8.284188e-12,1.2210609e-11,1.792757e-11,2.6218164e-11,3.8192654e-11,5.541842e-11,8.0098646e-11,1.1531689e-10,1.6537027e-10,2.3622108e-10,3.3610627e-10,4.7635563e-10,6.7248518e-10,9.4565096e-10,1.3245725e-09,1.8480655e-09,2.5683588e-09,3.5554188e-09,4.9025561e-09,6.7336588e-09,9.2124761e-09,1.255447e-08,1.7041864e-08,2.3042657e-08,3.1034499e-08,4.163453e-08,5.5636437e-08,7.4056246e-08,9.8188541e-08,1.2967512e-07,1.7058829e-07,2.235314e-07,2.917592e-07,3.7932139e-07,4.912322e-07,6.3366987e-07,8.1420923e-07,1.0420912e-06,1.3285323e-06,1.6870785e-06,2.1340037e-06,2.6887584e-06,3.3744665e-06,4.2184723e-06,5.2529348e-06,6.515467e-06,8.0498135e-06,9.9065587e-06,1.2143854e-05,1.4828151e-05,1.8034919e-05,2.184933e-05,2.6366882e-05,3.1693935e-05,3.7948121e-05,4.5258601e-05,5.3766121e-05,6.3622835e-05,7.4991848e-05,8.8046445e-05,0.00010296896,0.00011994926,0.00013918279,0.00016086821,0.00018520455,0.00021238792,0.00024260776,0.00027604273,0.00031285612,0.00035319109,0.00039716553,0.0004448669,0.00049634696,0.00055161665,0.0006106412,0.00067333559,0.0007395606,0.00080911955,0.00088175586,0.00095715163,0.0010349274,0.0011146428,0.0011957993,0.0012778434,0.0013601715,0.0014421368,0.0015230564,0.0016022203,0.0016789015,0.0017523665,0.001821887,0.0018867513,0.0019462769,0.0019998221,0.0020467975,0.0020866768,0.0021190065,0.0021434149,0.0021596187,0.0021674289,0.0021667542,0.002157603,0.0021400834,0.0021144008,0.0020808541,0.0020398303,0.0019917968,0.0019372928,0.0018769197,0.00181133,0.0017412161,0.0016672985,0.001590314,0.0015110043,0.0014301051,0.0013483355,0.0012663891,0.0011849259,0.0011045654,0.001025881,0.00094939683,0.00087558456,0.0008048629,0.00073759798,0.00067410519,0.00061465218,0.00055946304,0.00050872334,0.00046258591,0.00042117733,0.00038460467,0.00035296256,0.00032634032,0.00030482891,0.00028852764,0.00027755051,0.00027203194,0.00027213181,0.00027803983,0.00028997894,0.00030820786,0.00033302262,0.0003647571,0.00040378255,0.00045050609,0.00050536823,0.00056883941,0.00064141577,0.000723614,0.00081596565,0.00091901078,0.0010332913,0.0011593439,0.0012976932,0.0014488444,0.0016132769,0.0017914378,0.0019837359,0.002190537,0.002412159,0.002648869,0.0029008807,0.0031683526,0.0034513877,0.0037500339,0.004064285,0.004394083,0.0047393207,0.0050998446,0.0054754586,0.005865928,0.0062709828,0.0066903222,0.0071236175,0.0075705164,0.0080306459,0.0085036156,0.0089890209,0.0094864457,0.0099954659,0.010515653,0.011046577,0.011587812,0.012138942,0.012699566,0.013269304,0.013847811,0.014434779,0.015029956,0.015633151,0.016244252,0.016863236,0.017490187,0.018125306,0.018768926,0.019421524,0.020083735,0.020756356,0.021440356,0.022136879,0.022847245,0.023572943,0.024315622,0.025077082,0.02585925,0.026664156,0.027493905,0.028350641,0.0292365,0.030153569,0.031103829,0.032089098,0.033110971,0.034170755,0.035269397,0.03640742,0.037584854,0.038801165,0.040055192,0.04134509,0.042668273,0.044021371,0.045400197,0.046799721,0.048214062,0.049636495,0.051059471,0.052474655,0.053872985,0.055244743,0.056579649,0.057866967,0.059095628,0.060254365,0.061331868,0.062316932,0.063198627,0.063966464,0.064610556,0.065121785,0.065491957,0.065713943,0.065781811,0.065690939,0.065438112,0.065021588,0.064441153,0.06369814,0.062795433,0.061737434,0.06053002,0.059180458,0.057697318,0.056090345,0.054370335,0.052548975,0.050638687,0.048652458,0.046603661,0.044505884,0.042372749,0.040217748,0.038054074,0.035894477,0.033751119,0.031635455,0.029558125,0.027528864,0.025556432,0.023648566,0.021811941,0.020052159,0.018373752,0.016780202,0.01527397,0.01385655,0.012528521,0.011289618,0.010138804,0.0090743546,0.0080939386,0.0071947035,0.0063733618,0.0056262741,0.0049495297,0.0043390227,0.0037905236,0.003299744,0.0028623957,0.0024742421,0.0021311435,0.0018290946,0.0015642557,0.0013329771,0.0011318175,0.00095755646,0.0008072022,0.00067799425,0.00056740262,0.0004731233,0.00039307117,0.0003253705,0.00026834388,0.00022049984,0.00018051969,0.00014724391,0.00011965846,9.6881268e-05,7.814903e-05,6.2804671e-05],"zorder":0,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-12.5,-12.249499,-11.998998,-11.748497,-11.497996,-11.247495,-10.996994,-10.746493,-10.495992,-10.245491,-9.99499,-9.744489,-9.493988,-9.243487,-8.992986,-8.742485,-8.491984,-8.241483,-7.990982,-7.740481,-7.48998,-7.239479,-6.988978,-6.738477,-6.487976,-6.2374749,-5.9869739,-5.7364729,-5.4859719,-5.2354709,-4.9849699,-4.7344689,-4.4839679,-4.2334669,-3.9829659,-3.7324649,-3.4819639,-3.2314629,-2.9809619,-2.7304609,-2.4799599,-2.2294589,-1.9789579,-1.7284569,-1.4779559,-1.2274549,-0.97695391,-0.72645291,-0.4759519,-0.2254509,0.0250501,0.2755511,0.5260521,0.77655311,1.0270541,1.2775551,1.5280561,1.7785571,2.0290581,2.2795591,2.5300601,2.7805611,3.0310621,3.2815631,3.5320641,3.7825651,4.0330661,4.2835671,4.5340681,4.7845691,5.0350701,5.2855711,5.5360721,5.7865731,6.0370741,6.2875752,6.5380762,6.7885772,7.0390782,7.2895792,7.5400802,7.7905812,8.0410822,8.2915832,8.5420842,8.7925852,9.0430862,9.2935872,9.5440882,9.7945892,10.04509,10.295591,10.546092,10.796593,11.047094,11.297595,11.548096,11.798597,12.049098,12.299599,12.5501,12.800601,13.051102,13.301603,13.552104,13.802605,14.053106,14.303607,14.554108,14.804609,15.05511,15.305611,15.556112,15.806613,16.057114,16.307615,16.558116,16.808617,17.059118,17.309619,17.56012,17.810621,18.061122,18.311623,18.562124,18.812625,19.063126,19.313627,19.564128,19.814629,20.06513,20.315631,20.566132,20.816633,21.067134,21.317635,21.568136,21.818637,22.069138,22.319639,22.57014,22.820641,23.071142,23.321643,23.572144,23.822645,24.073146,24.323647,24.574148,24.824649,25.07515,25.325651,25.576152,25.826653,26.077154,26.327655,26.578156,26.828657,27.079158,27.329659,27.58016,27.830661,28.081162,28.331663,28.582164,28.832665,29.083166,29.333667,29.584168,29.834669,30.08517,30.335671,30.586172,30.836673,31.087174,31.337675,31.588176,31.838677,32.089178,32.339679,32.59018,32.840681,33.091182,33.341683,33.592184,33.842685,34.093186,34.343687,34.594188,34.844689,35.09519,35.345691,35.596192,35.846693,36.097194,36.347695,36.598196,36.848697,37.099198,37.349699,37.6002,37.850701,38.101202,38.351703,38.602204,38.852705,39.103206,39.353707,39.604208,39.854709,40.10521,40.355711,40.606212,40.856713,41.107214,41.357715,41.608216,41.858717,42.109218,42.359719,42.61022,42.860721,43.111222,43.361723,43.612224,43.862725,44.113226,44.363727,44.614228,44.864729,45.11523,45.365731,45.616232,45.866733,46.117234,46.367735,46.618236,46.868737,47.119238,47.369739,47.62024,47.870741,48.121242,48.371743,48.622244,48.872745,49.123246,49.373747,49.624248,49.874749,50.125251,50.375752,50.626253,50.876754,51.127255,51.377756,51.628257,51.878758,52.129259,52.37976,52.630261,52.880762,53.131263,53.381764,53.632265,53.882766,54.133267,54.383768,54.634269,54.88477,55.135271,55.385772,55.636273,55.886774,56.137275,56.387776,56.638277,56.888778,57.139279,57.38978,57.640281,57.890782,58.141283,58.391784,58.642285,58.892786,59.143287,59.393788,59.644289,59.89479,60.145291,60.395792,60.646293,60.896794,61.147295,61.397796,61.648297,61.898798,62.149299,62.3998,62.650301,62.900802,63.151303,63.401804,63.652305,63.902806,64.153307,64.403808,64.654309,64.90481,65.155311,65.405812,65.656313,65.906814,66.157315,66.407816,66.658317,66.908818,67.159319,67.40982,67.660321,67.910822,68.161323,68.411824,68.662325,68.912826,69.163327,69.413828,69.664329,69.91483,70.165331,70.415832,70.666333,70.916834,71.167335,71.417836,71.668337,71.918838,72.169339,72.41984,72.670341,72.920842,73.171343,73.421844,73.672345,73.922846,74.173347,74.423848,74.674349,74.92485,75.175351,75.425852,75.676353,75.926854,76.177355,76.427856,76.678357,76.928858,77.179359,77.42986,77.680361,77.930862,78.181363,78.431864,78.682365,78.932866,79.183367,79.433868,79.684369,79.93487,80.185371,80.435872,80.686373,80.936874,81.187375,81.437876,81.688377,81.938878,82.189379,82.43988,82.690381,82.940882,83.191383,83.441884,83.692385,83.942886,84.193387,84.443888,84.694389,84.94489,85.195391,85.445892,85.696393,85.946894,86.197395,86.447896,86.698397,86.948898,87.199399,87.4499,87.700401,87.950902,88.201403,88.451904,88.702405,88.952906,89.203407,89.453908,89.704409,89.95491,90.205411,90.455912,90.706413,90.956914,91.207415,91.457916,91.708417,91.958918,92.209419,92.45992,92.710421,92.960922,93.211423,93.461924,93.712425,93.962926,94.213427,94.463928,94.714429,94.96493,95.215431,95.465932,95.716433,95.966934,96.217435,96.467936,96.718437,96.968938,97.219439,97.46994,97.720441,97.970942,98.221443,98.471944,98.722445,98.972946,99.223447,99.473948,99.724449,99.97495,100.22545,100.47595,100.72645,100.97695,101.22745,101.47796,101.72846,101.97896,102.22946,102.47996,102.73046,102.98096,103.23146,103.48196,103.73246,103.98297,104.23347,104.48397,104.73447,104.98497,105.23547,105.48597,105.73647,105.98697,106.23747,106.48798,106.73848,106.98898,107.23948,107.48998,107.74048,107.99098,108.24148,108.49198,108.74248,108.99299,109.24349,109.49399,109.74449,109.99499,110.24549,110.49599,110.74649,110.99699,111.24749,111.498,111.7485,111.999,112.2495,112.5],"y":[-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891],"zorder":1,"type":"scatter"},{"customdata":[[6.6229846e-85],[2.2241266e-84],[7.4398124e-84],[2.4789125e-83],[8.2272965e-83],[2.7198805e-82],[8.9565187e-82],[2.9378213e-81],[9.5986078e-81],[3.1238333e-80],[1.0126612e-79],[3.2699209e-79],[1.0517367e-78],[3.3695629e-78],[1.0753178e-77],[3.4181948e-77],[1.0823146e-76],[3.4135556e-76],[1.0724009e-75],[3.3558618e-75],[1.0460386e-74],[3.247791e-74],[1.0044427e-73],[3.0942758e-73],[9.4948823e-73],[2.9021301e-72],[8.8356989e-72],[2.6795488e-71],[8.0942974e-71],[2.4355294e-70],[7.2996885e-70],[2.1792749e-69],[6.480618e-69],[1.9196302e-68],[5.6638982e-68],[1.6646006e-67],[4.8730558e-67],[1.4209849e-66],[4.127378e-66],[1.1941415e-65],[3.4413911e-65],[9.87891e-65],[2.8247548e-64],[8.0454289e-64],[2.2825189e-63],[6.4502464e-63],[1.8156618e-62],[5.0908503e-62],[1.4218128e-61],[3.9554078e-61],[1.0960663e-60],[3.0253745e-60],[8.3179857e-60],[2.2780011e-59],[6.2142172e-59],[1.6885567e-58],[4.5702674e-58],[1.232152e-57],[3.3089005e-57],[8.8511532e-57],[2.3583743e-56],[6.2592507e-56],[1.6547359e-55],[4.3574434e-55],[1.1429614e-54],[2.9862633e-54],[7.7717954e-54],[2.0147045e-53],[5.2023322e-53],[1.3380783e-52],[3.4281651e-52],[8.7486017e-52],[2.2238848e-51],[5.630963e-51],[1.4202009e-50],[3.5679078e-50],[8.9284116e-50],[2.22552e-49],[5.5256776e-49],[1.3665839e-48],[3.3665402e-48],[8.2609128e-48],[2.0191519e-47],[4.9159413e-47],[1.192178e-46],[2.8798659e-46],[6.929472e-46],[1.6608284e-45],[3.9650266e-45],[9.4289685e-45],[2.2334642e-44],[5.2697563e-44],[1.238508e-43],[2.8993711e-43],[6.7609159e-43],[1.5703773e-42],[3.6332827e-42],[8.3731934e-42],[1.9221168e-41],[4.3950636e-41],[1.0010304e-40],[2.2710471e-40],[5.1321781e-40],[1.1552448e-39],[2.5902583e-39],[5.7850731e-39],[1.2869787e-38],[2.8518758e-38],[6.2948672e-38],[1.3840102e-37],[3.0310194e-37],[6.6120309e-37],[1.4367386e-36],[3.1096922e-36],[6.704305e-36],[1.4397492e-35],[3.0797587e-35],[6.562106e-35],[1.3927287e-34],[2.9443305e-34],[6.2001659e-34],[1.3005193e-33],[2.7172339e-33],[5.6550178e-33],[1.172297e-32],[2.4206839e-32],[4.978921e-32],[1.020068e-31],[2.0817077e-31],[4.2316243e-31],[8.5682315e-31],[1.7281125e-30],[3.471759e-30],[6.9474251e-30],[1.384825e-29],[2.7495566e-29],[5.4378494e-29],[1.071244e-28],[2.1020662e-28],[4.1086686e-28],[7.9993108e-28],[1.5513178e-27],[2.9967168e-27],[5.7661692e-27],[1.1051616e-26],[2.1098956e-26],[4.0122951e-26],[7.6001386e-26],[1.4339926e-25],[2.6950638e-25],[5.0453109e-25],[9.4081358e-25],[1.7474951e-24],[3.2331445e-24],[5.9584185e-24],[1.0937893e-23],[2.0000142e-23],[3.642749e-23],[6.6087935e-23],[1.1942957e-22],[2.1498014e-22],[3.8546202e-22],[6.8843289e-22],[1.2247245e-21],[2.1702611e-21],[3.8307371e-21],[6.7351846e-21],[1.1795421e-20],[2.0576628e-20],[3.5754587e-20],[6.1885106e-20],[1.0669334e-19],[1.8322526e-19],[3.1342252e-19],[5.3403768e-19],[9.0638029e-19],[1.5323073e-18],[2.5803473e-18],[4.3282001e-18],[7.2315834e-18],[1.2035285e-17],[1.9951534e-17],[3.2945275e-17],[5.4188476e-17],[8.8780527e-17],[1.4488569e-16],[2.3552136e-16],[3.8135737e-16],[6.1507922e-16],[9.8815952e-16],[1.5813215e-15],[2.520638e-15],[4.0021923e-15],[6.3296932e-15],[9.9715952e-15],[1.5647463e-14],[2.445798e-14],[3.8079799e-14],[5.9056293e-14],[9.1229489e-14],[1.4037892e-13],[2.1516231e-13],[3.2849462e-13],[4.9956055e-13],[7.5673866e-13],[1.1418307e-12],[1.7161514e-12],[2.569258e-12],[3.8314061e-12],[5.6912429e-12],[8.4208255e-12],[1.2410835e-11],[1.8219911e-11],[2.6643459e-11],[3.8809163e-11],[5.6308955e-11],[8.1380509e-11],[1.1715567e-10],[1.6799892e-10],[2.3996628e-10],[3.4142457e-10],[4.8388318e-10],[6.8310555e-10],[9.6058776e-10],[1.3455153e-09],[1.8773405e-09],[2.6091603e-09],[3.6121213e-09],[4.981135e-09],[6.8422564e-09],[9.3621608e-09],[1.2760253e-08],[1.7324062e-08],[2.3428704e-08],[3.1561367e-08],[4.2351944e-08],[5.661115e-08],[7.5377691e-08],[9.9976327e-08],[1.3208891e-07],[1.7384086e-07],[2.2790573e-07],[2.9763104e-07],[3.8718865e-07],[5.0175353e-07],[6.4771479e-07],[8.3292341e-07],[1.066981e-06],[1.3615744e-06],[1.7308605e-06],[2.1919055e-06],[2.7651844e-06],[3.4751414e-06],[4.3508179e-06],[5.4265475e-06],[6.7427201e-06],[8.346615e-06],[1.02933e-05],[1.2646592e-05],[1.5480079e-05],[1.8878181e-05],[2.2937256e-05],[2.7766725e-05],[3.3490209e-05],[4.0246651e-05],[4.8191409e-05],[5.74973e-05],[6.835557e-05],[8.0976755e-05],[9.5591441e-05],[0.00011245087],[0.00013182737],[0.00015401466],[0.00017932792],[0.00020810366],[0.00024069945],[0.00027749342],[0.00031888362],[0.00036528718],[0.0004171394],[0.00047489278],[0.00053901591],[0.00060999249],[0.00068832032],[0.00077451046],[0.0008690865],[0.00097258411],[0.0010855508],[0.0012085458],[0.0013421409],[0.0014869207],[0.0016434835],[0.0018124433],[0.0019944307],[0.002190095],[0.0024001062],[0.0026251567],[0.0028659639],[0.0031232712],[0.0033978505],[0.0036905028],[0.0040020591],[0.0043333809],[0.004685359],[0.0050589126],[0.0054549865],[0.0058745476],[0.0063185805],[0.0067880811],[0.0072840497],[0.0078074819],[0.0083593588],[0.0089406347],[0.0095522245],[0.010194989],[0.010869717],[0.011577111],[0.012317765],[0.013092148],[0.013900578],[0.014743209],[0.01562],[0.0165307],[0.017474827],[0.018451646],[0.019460152],[0.020499058],[0.021566779],[0.022661424],[0.023780796],[0.024922385],[0.026083382],[0.027260681],[0.028450904],[0.029650417],[0.030855359],[0.032061677],[0.033265157],[0.034461472],[0.035646217],[0.036814962],[0.03796329],[0.039086849],[0.040181392],[0.04124282],[0.042267216],[0.043250881],[0.044190363],[0.045082475],[0.045924315],[0.046713276],[0.04744705],[0.04812363],[0.048741308],[0.049298664],[0.04979456],[0.05022813],[0.050598766],[0.05090611],[0.051150047],[0.051330694],[0.051448398],[0.051503735],[0.051497509],[0.051430756],[0.051304747],[0.051120994],[0.050881257],[0.050587546],[0.050242121],[0.049847497],[0.049406433],[0.048921926],[0.048397191],[0.047835644],[0.047240871],[0.046616595],[0.045966638],[0.045294874],[0.044605182],[0.043901395],[0.043187244],[0.042466305],[0.041741947],[0.041017277],[0.040295098],[0.039577863],[0.038867639],[0.03816608],[0.037474407],[0.036793391],[0.036123357],[0.035464187],[0.034815335],[0.034175858],[0.033544441],[0.032919448],[0.032298964],[0.031680854],[0.031062818],[0.03044246],[0.029817348],[0.029185085],[0.028543367],[0.027890053],[0.027223218],[0.02654121],[0.025842699],[0.025126712],[0.024392671],[0.023640409],[0.02287019],[0.022082709],[0.021279085],[0.020460848],[0.019629911],[0.01878854],[0.017939312],[0.017085066],[0.016228853],[0.015373882],[0.01452346],[0.013680931],[0.012849622],[0.012032785],[0.011233544],[0.010454844],[0.0096994146],[0.0089697247],[0.0082679578],[0.0075959867],[0.0069553579],[0.0063472824],[0.0057726345],[0.0052319562],[0.0047254677],[0.0042530839],[0.003814435],[0.0034088905],[0.0030355867],[0.0026934561],[0.0023812575],[0.0020976073],[0.0018410098],[0.0016098867],[0.0014026056],[0.0012175059],[0.0010529224],[0.00090720722],[0.00077874775],[0.00066598275],[0.00056741529],[0.00048162306],[0.00040726611],[0.0003430922],[0.00028794004],[0.00024074052],[0.00020051631],[0.00016638006],[0.00013753137],[0.00011325284],[9.2905521e-05],[7.5923681e-05],[6.180943e-05],[5.0127091e-05],[4.0497592e-05],[3.2592943e-05],[2.6130907e-05],[2.0869923e-05],[1.6604343e-05],[1.3160007e-05],[1.0390185e-05],[8.1718876e-06],[6.4025468e-06],[4.9970505e-06],[3.8851226e-06],[3.0090206e-06],[2.3215313e-06],[1.7842364e-06],[1.366024e-06],[1.0418181e-06],[7.9150337e-07],[5.9901903e-07],[4.5160126e-07],[3.3915332e-07],[2.5372494e-07],[1.8908461e-07],[1.4037019e-07],[1.0380521e-07],[7.6469596e-08],[5.6115603e-08],[4.1020745e-08],[2.9870906e-08],[2.1667963e-08],[1.5657142e-08],[1.1270198e-08],[8.0811873e-09],[5.7722253e-09],[4.1071049e-09],[2.9110702e-09]],"fill":"tonexty","fillcolor":"rgba(160.71429, 217.42857, 55.85714, 0.65)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Very Good Chance","x":[-12.5,-12.249499,-11.998998,-11.748497,-11.497996,-11.247495,-10.996994,-10.746493,-10.495992,-10.245491,-9.99499,-9.744489,-9.493988,-9.243487,-8.992986,-8.742485,-8.491984,-8.241483,-7.990982,-7.740481,-7.48998,-7.239479,-6.988978,-6.738477,-6.487976,-6.2374749,-5.9869739,-5.7364729,-5.4859719,-5.2354709,-4.9849699,-4.7344689,-4.4839679,-4.2334669,-3.9829659,-3.7324649,-3.4819639,-3.2314629,-2.9809619,-2.7304609,-2.4799599,-2.2294589,-1.9789579,-1.7284569,-1.4779559,-1.2274549,-0.97695391,-0.72645291,-0.4759519,-0.2254509,0.0250501,0.2755511,0.5260521,0.77655311,1.0270541,1.2775551,1.5280561,1.7785571,2.0290581,2.2795591,2.5300601,2.7805611,3.0310621,3.2815631,3.5320641,3.7825651,4.0330661,4.2835671,4.5340681,4.7845691,5.0350701,5.2855711,5.5360721,5.7865731,6.0370741,6.2875752,6.5380762,6.7885772,7.0390782,7.2895792,7.5400802,7.7905812,8.0410822,8.2915832,8.5420842,8.7925852,9.0430862,9.2935872,9.5440882,9.7945892,10.04509,10.295591,10.546092,10.796593,11.047094,11.297595,11.548096,11.798597,12.049098,12.299599,12.5501,12.800601,13.051102,13.301603,13.552104,13.802605,14.053106,14.303607,14.554108,14.804609,15.05511,15.305611,15.556112,15.806613,16.057114,16.307615,16.558116,16.808617,17.059118,17.309619,17.56012,17.810621,18.061122,18.311623,18.562124,18.812625,19.063126,19.313627,19.564128,19.814629,20.06513,20.315631,20.566132,20.816633,21.067134,21.317635,21.568136,21.818637,22.069138,22.319639,22.57014,22.820641,23.071142,23.321643,23.572144,23.822645,24.073146,24.323647,24.574148,24.824649,25.07515,25.325651,25.576152,25.826653,26.077154,26.327655,26.578156,26.828657,27.079158,27.329659,27.58016,27.830661,28.081162,28.331663,28.582164,28.832665,29.083166,29.333667,29.584168,29.834669,30.08517,30.335671,30.586172,30.836673,31.087174,31.337675,31.588176,31.838677,32.089178,32.339679,32.59018,32.840681,33.091182,33.341683,33.592184,33.842685,34.093186,34.343687,34.594188,34.844689,35.09519,35.345691,35.596192,35.846693,36.097194,36.347695,36.598196,36.848697,37.099198,37.349699,37.6002,37.850701,38.101202,38.351703,38.602204,38.852705,39.103206,39.353707,39.604208,39.854709,40.10521,40.355711,40.606212,40.856713,41.107214,41.357715,41.608216,41.858717,42.109218,42.359719,42.61022,42.860721,43.111222,43.361723,43.612224,43.862725,44.113226,44.363727,44.614228,44.864729,45.11523,45.365731,45.616232,45.866733,46.117234,46.367735,46.618236,46.868737,47.119238,47.369739,47.62024,47.870741,48.121242,48.371743,48.622244,48.872745,49.123246,49.373747,49.624248,49.874749,50.125251,50.375752,50.626253,50.876754,51.127255,51.377756,51.628257,51.878758,52.129259,52.37976,52.630261,52.880762,53.131263,53.381764,53.632265,53.882766,54.133267,54.383768,54.634269,54.88477,55.135271,55.385772,55.636273,55.886774,56.137275,56.387776,56.638277,56.888778,57.139279,57.38978,57.640281,57.890782,58.141283,58.391784,58.642285,58.892786,59.143287,59.393788,59.644289,59.89479,60.145291,60.395792,60.646293,60.896794,61.147295,61.397796,61.648297,61.898798,62.149299,62.3998,62.650301,62.900802,63.151303,63.401804,63.652305,63.902806,64.153307,64.403808,64.654309,64.90481,65.155311,65.405812,65.656313,65.906814,66.157315,66.407816,66.658317,66.908818,67.159319,67.40982,67.660321,67.910822,68.161323,68.411824,68.662325,68.912826,69.163327,69.413828,69.664329,69.91483,70.165331,70.415832,70.666333,70.916834,71.167335,71.417836,71.668337,71.918838,72.169339,72.41984,72.670341,72.920842,73.171343,73.421844,73.672345,73.922846,74.173347,74.423848,74.674349,74.92485,75.175351,75.425852,75.676353,75.926854,76.177355,76.427856,76.678357,76.928858,77.179359,77.42986,77.680361,77.930862,78.181363,78.431864,78.682365,78.932866,79.183367,79.433868,79.684369,79.93487,80.185371,80.435872,80.686373,80.936874,81.187375,81.437876,81.688377,81.938878,82.189379,82.43988,82.690381,82.940882,83.191383,83.441884,83.692385,83.942886,84.193387,84.443888,84.694389,84.94489,85.195391,85.445892,85.696393,85.946894,86.197395,86.447896,86.698397,86.948898,87.199399,87.4499,87.700401,87.950902,88.201403,88.451904,88.702405,88.952906,89.203407,89.453908,89.704409,89.95491,90.205411,90.455912,90.706413,90.956914,91.207415,91.457916,91.708417,91.958918,92.209419,92.45992,92.710421,92.960922,93.211423,93.461924,93.712425,93.962926,94.213427,94.463928,94.714429,94.96493,95.215431,95.465932,95.716433,95.966934,96.217435,96.467936,96.718437,96.968938,97.219439,97.46994,97.720441,97.970942,98.221443,98.471944,98.722445,98.972946,99.223447,99.473948,99.724449,99.97495,100.22545,100.47595,100.72645,100.97695,101.22745,101.47796,101.72846,101.97896,102.22946,102.47996,102.73046,102.98096,103.23146,103.48196,103.73246,103.98297,104.23347,104.48397,104.73447,104.98497,105.23547,105.48597,105.73647,105.98697,106.23747,106.48798,106.73848,106.98898,107.23948,107.48998,107.74048,107.99098,108.24148,108.49198,108.74248,108.99299,109.24349,109.49399,109.74449,109.99499,110.24549,110.49599,110.74649,110.99699,111.24749,111.498,111.7485,111.999,112.2495,112.5],"y":[-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.052476891,-0.05247689,-0.05247689,-0.05247689,-0.05247689,-0.052476889,-0.052476888,-0.052476887,-0.052476886,-0.052476884,-0.052476882,-0.052476878,-0.052476874,-0.052476868,-0.052476859,-0.052476849,-0.052476834,-0.052476816,-0.052476791,-0.052476759,-0.052476717,-0.052476663,-0.052476593,-0.052476504,-0.052476389,-0.052476243,-0.052476058,-0.052475824,-0.052475529,-0.05247516,-0.052474699,-0.052474126,-0.052473416,-0.05247254,-0.052471464,-0.052470148,-0.052468544,-0.052466598,-0.052464244,-0.052461411,-0.052458013,-0.052453954,-0.052449124,-0.052443401,-0.052436644,-0.0524287,-0.052419394,-0.052408535,-0.052395914,-0.0523813,-0.05236444,-0.052345064,-0.052322876,-0.052297563,-0.052268787,-0.052236191,-0.052199398,-0.052158007,-0.052111604,-0.052059752,-0.052001998,-0.051937875,-0.051866898,-0.051788571,-0.05170238,-0.051607804,-0.051504307,-0.05139134,-0.051268345,-0.05113475,-0.05098997,-0.050833407,-0.050664448,-0.05048246,-0.050286796,-0.050076785,-0.049851734,-0.049610927,-0.04935362,-0.04907904,-0.048786388,-0.048474832,-0.04814351,-0.047791532,-0.047417978,-0.047021904,-0.046602343,-0.04615831,-0.04568881,-0.045192841,-0.044669409,-0.044117532,-0.043536256,-0.042924666,-0.042281902,-0.041607174,-0.04089978,-0.040159126,-0.039384743,-0.038576313,-0.037733682,-0.036856891,-0.035946191,-0.035002064,-0.034025245,-0.033016739,-0.031977833,-0.030910112,-0.029815467,-0.028696095,-0.027554506,-0.026393509,-0.02521621,-0.024025987,-0.022826474,-0.021621532,-0.020415214,-0.019211733,-0.018015419,-0.016830674,-0.015661929,-0.014513601,-0.013390042,-0.012295498,-0.011234071,-0.010209675,-0.0092260099,-0.0082865281,-0.0073944161,-0.006552576,-0.0057636153,-0.0050298414,-0.0043532609,-0.0037355831,-0.0031782271,-0.0026823308,-0.0022487611,-0.0018781253,-0.0015707808,-0.001326844,-0.0011461972,-0.001028493,-0.00097315581,-0.00097938162,-0.0010461349,-0.0011721441,-0.0013558966,-0.0015956336,-0.0018893454,-0.00223477,-0.0026293939,-0.0030704574,-0.0035549647,-0.0040796995,-0.0046412466,-0.0052360198,-0.0058602958,-0.0065102531,-0.0071820172,-0.0078717089,-0.0085754959,-0.009289647,-0.010010586,-0.010734944,-0.011459614,-0.012181793,-0.012899028,-0.013609252,-0.014310811,-0.015002484,-0.0156835,-0.016353534,-0.017012704,-0.017661556,-0.018301033,-0.01893245,-0.019557443,-0.020177927,-0.020796037,-0.021414073,-0.022034431,-0.022659543,-0.023291806,-0.023933524,-0.024586838,-0.025253673,-0.025935681,-0.026634192,-0.027350179,-0.02808422,-0.028836482,-0.029606701,-0.030394182,-0.031197806,-0.032016043,-0.03284698,-0.03368835,-0.034537579,-0.035391825,-0.036248038,-0.037103008,-0.037953431,-0.03879596,-0.039627269,-0.040444106,-0.041243347,-0.042022047,-0.042777476,-0.043507166,-0.044208933,-0.044880904,-0.045521533,-0.046129609,-0.046704256,-0.047244935,-0.047751423,-0.048223807,-0.048662456,-0.049068,-0.049441304,-0.049783435,-0.050095633,-0.050379284,-0.050635881,-0.050867004,-0.051074285,-0.051259385,-0.051423969,-0.051569684,-0.051698143,-0.051810908,-0.051909476,-0.051995268,-0.052069625,-0.052133799,-0.052188951,-0.05223615,-0.052276375,-0.052310511,-0.05233936,-0.052363638,-0.052383985,-0.052400967,-0.052415082,-0.052426764,-0.052436393,-0.052444298,-0.05245076,-0.052456021,-0.052460287,-0.052463731,-0.052466501,-0.052468719,-0.052470488,-0.052471894,-0.052473006,-0.052473882,-0.052474569,-0.052475107,-0.052475525,-0.052475849,-0.052476099,-0.052476292,-0.052476439,-0.052476552,-0.052476637,-0.052476702,-0.052476751,-0.052476787,-0.052476814,-0.052476835,-0.05247685,-0.052476861,-0.052476869,-0.052476875,-0.05247688,-0.052476883,-0.052476885,-0.052476887,-0.052476888],"zorder":1,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-12.5,-12.249499,-11.998998,-11.748497,-11.497996,-11.247495,-10.996994,-10.746493,-10.495992,-10.245491,-9.99499,-9.744489,-9.493988,-9.243487,-8.992986,-8.742485,-8.491984,-8.241483,-7.990982,-7.740481,-7.48998,-7.239479,-6.988978,-6.738477,-6.487976,-6.2374749,-5.9869739,-5.7364729,-5.4859719,-5.2354709,-4.9849699,-4.7344689,-4.4839679,-4.2334669,-3.9829659,-3.7324649,-3.4819639,-3.2314629,-2.9809619,-2.7304609,-2.4799599,-2.2294589,-1.9789579,-1.7284569,-1.4779559,-1.2274549,-0.97695391,-0.72645291,-0.4759519,-0.2254509,0.0250501,0.2755511,0.5260521,0.77655311,1.0270541,1.2775551,1.5280561,1.7785571,2.0290581,2.2795591,2.5300601,2.7805611,3.0310621,3.2815631,3.5320641,3.7825651,4.0330661,4.2835671,4.5340681,4.7845691,5.0350701,5.2855711,5.5360721,5.7865731,6.0370741,6.2875752,6.5380762,6.7885772,7.0390782,7.2895792,7.5400802,7.7905812,8.0410822,8.2915832,8.5420842,8.7925852,9.0430862,9.2935872,9.5440882,9.7945892,10.04509,10.295591,10.546092,10.796593,11.047094,11.297595,11.548096,11.798597,12.049098,12.299599,12.5501,12.800601,13.051102,13.301603,13.552104,13.802605,14.053106,14.303607,14.554108,14.804609,15.05511,15.305611,15.556112,15.806613,16.057114,16.307615,16.558116,16.808617,17.059118,17.309619,17.56012,17.810621,18.061122,18.311623,18.562124,18.812625,19.063126,19.313627,19.564128,19.814629,20.06513,20.315631,20.566132,20.816633,21.067134,21.317635,21.568136,21.818637,22.069138,22.319639,22.57014,22.820641,23.071142,23.321643,23.572144,23.822645,24.073146,24.323647,24.574148,24.824649,25.07515,25.325651,25.576152,25.826653,26.077154,26.327655,26.578156,26.828657,27.079158,27.329659,27.58016,27.830661,28.081162,28.331663,28.582164,28.832665,29.083166,29.333667,29.584168,29.834669,30.08517,30.335671,30.586172,30.836673,31.087174,31.337675,31.588176,31.838677,32.089178,32.339679,32.59018,32.840681,33.091182,33.341683,33.592184,33.842685,34.093186,34.343687,34.594188,34.844689,35.09519,35.345691,35.596192,35.846693,36.097194,36.347695,36.598196,36.848697,37.099198,37.349699,37.6002,37.850701,38.101202,38.351703,38.602204,38.852705,39.103206,39.353707,39.604208,39.854709,40.10521,40.355711,40.606212,40.856713,41.107214,41.357715,41.608216,41.858717,42.109218,42.359719,42.61022,42.860721,43.111222,43.361723,43.612224,43.862725,44.113226,44.363727,44.614228,44.864729,45.11523,45.365731,45.616232,45.866733,46.117234,46.367735,46.618236,46.868737,47.119238,47.369739,47.62024,47.870741,48.121242,48.371743,48.622244,48.872745,49.123246,49.373747,49.624248,49.874749,50.125251,50.375752,50.626253,50.876754,51.127255,51.377756,51.628257,51.878758,52.129259,52.37976,52.630261,52.880762,53.131263,53.381764,53.632265,53.882766,54.133267,54.383768,54.634269,54.88477,55.135271,55.385772,55.636273,55.886774,56.137275,56.387776,56.638277,56.888778,57.139279,57.38978,57.640281,57.890782,58.141283,58.391784,58.642285,58.892786,59.143287,59.393788,59.644289,59.89479,60.145291,60.395792,60.646293,60.896794,61.147295,61.397796,61.648297,61.898798,62.149299,62.3998,62.650301,62.900802,63.151303,63.401804,63.652305,63.902806,64.153307,64.403808,64.654309,64.90481,65.155311,65.405812,65.656313,65.906814,66.157315,66.407816,66.658317,66.908818,67.159319,67.40982,67.660321,67.910822,68.161323,68.411824,68.662325,68.912826,69.163327,69.413828,69.664329,69.91483,70.165331,70.415832,70.666333,70.916834,71.167335,71.417836,71.668337,71.918838,72.169339,72.41984,72.670341,72.920842,73.171343,73.421844,73.672345,73.922846,74.173347,74.423848,74.674349,74.92485,75.175351,75.425852,75.676353,75.926854,76.177355,76.427856,76.678357,76.928858,77.179359,77.42986,77.680361,77.930862,78.181363,78.431864,78.682365,78.932866,79.183367,79.433868,79.684369,79.93487,80.185371,80.435872,80.686373,80.936874,81.187375,81.437876,81.688377,81.938878,82.189379,82.43988,82.690381,82.940882,83.191383,83.441884,83.692385,83.942886,84.193387,84.443888,84.694389,84.94489,85.195391,85.445892,85.696393,85.946894,86.197395,86.447896,86.698397,86.948898,87.199399,87.4499,87.700401,87.950902,88.201403,88.451904,88.702405,88.952906,89.203407,89.453908,89.704409,89.95491,90.205411,90.455912,90.706413,90.956914,91.207415,91.457916,91.708417,91.958918,92.209419,92.45992,92.710421,92.960922,93.211423,93.461924,93.712425,93.962926,94.213427,94.463928,94.714429,94.96493,95.215431,95.465932,95.716433,95.966934,96.217435,96.467936,96.718437,96.968938,97.219439,97.46994,97.720441,97.970942,98.221443,98.471944,98.722445,98.972946,99.223447,99.473948,99.724449,99.97495,100.22545,100.47595,100.72645,100.97695,101.22745,101.47796,101.72846,101.97896,102.22946,102.47996,102.73046,102.98096,103.23146,103.48196,103.73246,103.98297,104.23347,104.48397,104.73447,104.98497,105.23547,105.48597,105.73647,105.98697,106.23747,106.48798,106.73848,106.98898,107.23948,107.48998,107.74048,107.99098,108.24148,108.49198,108.74248,108.99299,109.24349,109.49399,109.74449,109.99499,110.24549,110.49599,110.74649,110.99699,111.24749,111.498,111.7485,111.999,112.2495,112.5],"y":[-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378,-0.10495378],"zorder":2,"type":"scatter"},{"customdata":[[1.5127193e-07],[1.9856243e-07],[2.5961666e-07],[3.3811525e-07],[4.3862532e-07],[5.6678632e-07],[7.2952765e-07],[9.3532144e-07],[1.1944741e-06],[1.5194602e-06],[1.9253011e-06],[2.4299913e-06],[3.0549739e-06],[3.8256657e-06],[4.772031e-06],[5.9292018e-06],[7.3381391e-06],[9.046329e-06],[1.1108503e-05],[1.3587371e-05],[1.6554348e-05],[2.0090255e-05],[2.4285975e-05],[2.9243029e-05],[3.507405e-05],[4.1903104e-05],[4.9865849e-05],[5.9109456e-05],[6.9792289e-05],[8.208327e-05],[9.6160916e-05],[0.00011221199],[0.00013042975],[0.00015101177],[0.00017415729],[0.00020006414],[0.00022892519],[0.00026092437],[0.00029623231],[0.00033500165],[0.00037736202],[0.00042341494],[0.00047322849],[0.00052683222],[0.00058421204],[0.00064530556],[0.00070999786],[0.0007781179],[0.00084943568],[0.00092366041],[0.0010004396],[0.0010793596],[0.0011599471],[0.0012416722],[0.0013239526],[0.0014061597],[0.0014876254],[0.0015676506],[0.0016455143],[0.0017204847],[0.0017918295],[0.0018588283],[0.0019207843],[0.0019770364],[0.0020269706],[0.0020700316],[0.0021057326],[0.0021336649],[0.0021535052],[0.0021650223],[0.0021680812],[0.0021626461],[0.0021487807],[0.0021266473],[0.0020965034],[0.0020586968],[0.0020136592],[0.0019618972],[0.0019039839],[0.0018405475],[0.0017722603],[0.0016998271],[0.0016239726],[0.0015454301],[0.0014649297],[0.001383187],[0.0013008936],[0.0012187072],[0.0011372442],[0.0010570725],[0.00097870674],[0.00090260369],[0.00082916004],[0.00075871095],[0.00069153007],[0.00062783066],[0.00056776772],[0.00051144109],[0.00045889915],[0.00041014331],[0.0003651327],[0.00032378936],[0.00028600336],[0.00025163812],[0.00022053548],[0.00019252061],[0.00016740665],[0.00014499897],[0.00012509901],[0.0001075077],[9.2028422e-05],[7.8469543e-05],[6.6646446e-05],[5.6383185e-05],[4.751371e-05],[3.9882742e-05],[3.3346312e-05],[2.7772012e-05],[2.3038999e-05],[1.9037793e-05],[1.5669903e-05],[1.2847327e-05],[1.0491944e-05],[8.53485e-06],[6.9156429e-06],[5.5816934e-06],[4.4874142e-06],[3.5935453e-06],[2.866467e-06],[2.277549e-06],[1.8025431e-06],[1.4210229e-06],[1.1158727e-06],[8.7282606e-07],[6.8005264e-07],[5.2779292e-07],[4.0803651e-07],[3.1424209e-07],[2.4109509e-07],[1.8429983e-07],[1.4040246e-07],[1.0664127e-07],[8.0821213e-08],[6.1209533e-08],[4.6449796e-08],[3.5491836e-08],[2.753552e-08],[2.1986455e-08],[1.8422166e-08],[1.6567487e-08],[1.6278302e-08],[1.7532985e-08],[2.0431255e-08],[2.5200398e-08],[3.2209135e-08],[4.1989717e-08],[5.5269109e-08],[7.3010488e-08],[9.6466589e-08],[1.2724678e-07],[1.6740018e-07],[2.1951736e-07],[2.8685384e-07],[3.7347864e-07],[4.8445192e-07],[6.2603573e-07],[8.0594273e-07],[1.0336276e-06],[1.3206263e-06],[1.6809489e-06],[2.1315315e-06],[2.6927511e-06],[3.3890123e-06],[4.2494062e-06],[5.3084499e-06],[6.6069079e-06],[8.192699e-06],[1.0121891e-05],[1.2459781e-05],[1.5282065e-05],[1.8676087e-05],[2.2742171e-05],[2.7595019e-05],[3.336518e-05],[4.0200563e-05],[4.8268001e-05],[5.7754832e-05],[6.8870496e-05],[8.1848127e-05],[9.6946124e-05],[0.00011444968],[0.00013467223],[0.00015795691],[0.00018467776],[0.00021524098],[0.00025008596],[0.00028968617],[0.00033454988],[0.00038522073],[0.00044227794],[0.00050633645],[0.00057804659],[0.00065809348],[0.00074719604],[0.00084610549],[0.00095560327],[0.0010764983],[0.0012096238],[0.0013558322],[0.0015159908],[0.0016909744],[0.0018816579],[0.002088907],[0.0023135674],[0.0025564526],[0.0028183299],[0.0030999044],[0.0034018018],[0.0037245496],[0.0040685566],[0.0044340912],[0.0048212599],[0.0052299841],[0.0056599778],[0.0061107264],[0.0065814661],[0.007071166],[0.0075785136],[0.0081019033],[0.0086394298],[0.0091888873],[0.0097477741],[0.010313304],[0.010882425],[0.011451846],[0.012018068],[0.012577426],[0.01312614],[0.013660363],[0.014176244],[0.014669991],[0.015137941],[0.015576625],[0.015982839],[0.016353711],[0.016686766],[0.016979984],[0.017231853],[0.017441412],[0.017608284],[0.0177327],[0.017815511],[0.017858182],[0.01786278],[0.017831945],[0.01776885],[0.017677148],[0.017560909],[0.017424547],[0.017272737],[0.017110333],[0.016942276],[0.016773499],[0.016608836],[0.016452934],[0.016310166],[0.016184554],[0.016079697],[0.015998711],[0.015944182],[0.015918125],[0.015921961],[0.01595651],[0.016021985],[0.016118014],[0.01624366],[0.016397466],[0.016577496],[0.016781395],[0.01700645],[0.017249659],[0.017507803],[0.017777517],[0.01805536],[0.018337891],[0.01862173],[0.018903619],[0.019180481],[0.019449462],[0.019707974],[0.01995372],[0.020184724],[0.020399337],[0.020596244],[0.020774463],[0.020933334],[0.021072502],[0.021191897],[0.021291711],[0.021372368],[0.021434494],[0.021478892],[0.021506506],[0.021518398],[0.021515716],[0.021499675],[0.021471531],[0.021432567],[0.021384073],[0.021327337],[0.021263634],[0.021194221],[0.021120331],[0.021043171],[0.020963924],[0.020883745],[0.020803764],[0.020725091],[0.02064881],[0.020575989],[0.020507672],[0.020444887],[0.020388638],[0.020339909],[0.020299656],[0.02026881],[0.020248264],[0.020238875],[0.020241453],[0.020256759],[0.02028549],[0.020328281],[0.020385689],[0.02045819],[0.020546169],[0.020649911],[0.020769594],[0.02090528],[0.021056911],[0.021224295],[0.021407105],[0.02160487],[0.021816969],[0.022042624],[0.022280901],[0.0225307],[0.022790759],[0.023059649],[0.023335777],[0.023617392],[0.023902584],[0.0241893],[0.02447535],[0.024758423],[0.025036102],[0.025305887],[0.025565218],[0.025811497],[0.026042123],[0.026254519],[0.026446163],[0.026614627],[0.026757608],[0.026872962],[0.026958734],[0.027013197],[0.027034869],[0.027022544],[0.026975312],[0.026892568],[0.026774028],[0.026619731],[0.026430033],[0.026205607],[0.025947423],[0.02565673],[0.025335039],[0.024984088],[0.024605818],[0.024202335],[0.02377588],[0.023328793],[0.022863476],[0.022382362],[0.021887882],[0.021382434],[0.020868361],[0.020347922],[0.019823273],[0.019296454],[0.018769373],[0.018243796],[0.017721344],[0.017203487],[0.016691548],[0.016186699],[0.015689972],[0.015202259],[0.014724325],[0.01425681],[0.013800246],[0.01335506],[0.012921584],[0.012500069],[0.012090693],[0.011693565],[0.01130874],[0.010936226],[0.010575986],[0.010227953],[0.0098920274],[0.0095680888],[0.009255996],[0.0089555921],[0.008666707],[0.0083891585],[0.0081227541],[0.0078672909],[0.0076225551],[0.0073883214],[0.0071643517],[0.0069503931],[0.006746176],[0.0065514123],[0.0063657928],[0.0061889858],[0.0060206349],[0.0058603578],[0.0057077456],[0.0055623623],[0.005423745],[0.0052914053],[0.0051648306],[0.0050434871],[0.0049268229],[0.0048142721],[0.0047052596],[0.0045992069],[0.0044955375],[0.0043936837],[0.0042930936],[0.0041932377],[0.0040936159],[0.0039937648],[0.0038932638],[0.0037917413],[0.0036888802],[0.0035844226],[0.0034781734],[0.0033700031],[0.0032598492],[0.0031477165],[0.0030336765],[0.0029178648],[0.0028004779],[0.0026817688],[0.0025620412],[0.0024416433],[0.0023209601],[0.0022004059],[0.0020804158],[0.0019614373],[0.001843922],[0.0017283168],[0.0016150564],[0.0015045556],[0.001397203],[0.0012933547],[0.0011933296],[0.0010974052],[0.0010058152],[0.00091874705],[0.00083634128],[0.00075869176],[0.00068584661],[0.00061781007],[0.00055454506],[0.00049597638],[0.00044199432],[0.0003924587],[0.00034720306],[0.00030603907],[0.00026876085],[0.00023514924],[0.00020497587],[0.00017800705],[0.00015400722],[0.00013274218],[0.00011398188],[9.7502779e-05],[8.3089891e-05],[7.053837e-05],[5.9654745e-05],[5.0257802e-05],[4.2179143e-05],[3.5263454e-05],[2.9368522e-05],[2.436503e-05],[2.0136181e-05],[1.6577172e-05]],"fill":"tonexty","fillcolor":"rgba(77.42857, 192.85714, 106.85714, 0.65)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"We Believe","x":[-12.5,-12.249499,-11.998998,-11.748497,-11.497996,-11.247495,-10.996994,-10.746493,-10.495992,-10.245491,-9.99499,-9.744489,-9.493988,-9.243487,-8.992986,-8.742485,-8.491984,-8.241483,-7.990982,-7.740481,-7.48998,-7.239479,-6.988978,-6.738477,-6.487976,-6.2374749,-5.9869739,-5.7364729,-5.4859719,-5.2354709,-4.9849699,-4.7344689,-4.4839679,-4.2334669,-3.9829659,-3.7324649,-3.4819639,-3.2314629,-2.9809619,-2.7304609,-2.4799599,-2.2294589,-1.9789579,-1.7284569,-1.4779559,-1.2274549,-0.97695391,-0.72645291,-0.4759519,-0.2254509,0.0250501,0.2755511,0.5260521,0.77655311,1.0270541,1.2775551,1.5280561,1.7785571,2.0290581,2.2795591,2.5300601,2.7805611,3.0310621,3.2815631,3.5320641,3.7825651,4.0330661,4.2835671,4.5340681,4.7845691,5.0350701,5.2855711,5.5360721,5.7865731,6.0370741,6.2875752,6.5380762,6.7885772,7.0390782,7.2895792,7.5400802,7.7905812,8.0410822,8.2915832,8.5420842,8.7925852,9.0430862,9.2935872,9.5440882,9.7945892,10.04509,10.295591,10.546092,10.796593,11.047094,11.297595,11.548096,11.798597,12.049098,12.299599,12.5501,12.800601,13.051102,13.301603,13.552104,13.802605,14.053106,14.303607,14.554108,14.804609,15.05511,15.305611,15.556112,15.806613,16.057114,16.307615,16.558116,16.808617,17.059118,17.309619,17.56012,17.810621,18.061122,18.311623,18.562124,18.812625,19.063126,19.313627,19.564128,19.814629,20.06513,20.315631,20.566132,20.816633,21.067134,21.317635,21.568136,21.818637,22.069138,22.319639,22.57014,22.820641,23.071142,23.321643,23.572144,23.822645,24.073146,24.323647,24.574148,24.824649,25.07515,25.325651,25.576152,25.826653,26.077154,26.327655,26.578156,26.828657,27.079158,27.329659,27.58016,27.830661,28.081162,28.331663,28.582164,28.832665,29.083166,29.333667,29.584168,29.834669,30.08517,30.335671,30.586172,30.836673,31.087174,31.337675,31.588176,31.838677,32.089178,32.339679,32.59018,32.840681,33.091182,33.341683,33.592184,33.842685,34.093186,34.343687,34.594188,34.844689,35.09519,35.345691,35.596192,35.846693,36.097194,36.347695,36.598196,36.848697,37.099198,37.349699,37.6002,37.850701,38.101202,38.351703,38.602204,38.852705,39.103206,39.353707,39.604208,39.854709,40.10521,40.355711,40.606212,40.856713,41.107214,41.357715,41.608216,41.858717,42.109218,42.359719,42.61022,42.860721,43.111222,43.361723,43.612224,43.862725,44.113226,44.363727,44.614228,44.864729,45.11523,45.365731,45.616232,45.866733,46.117234,46.367735,46.618236,46.868737,47.119238,47.369739,47.62024,47.870741,48.121242,48.371743,48.622244,48.872745,49.123246,49.373747,49.624248,49.874749,50.125251,50.375752,50.626253,50.876754,51.127255,51.377756,51.628257,51.878758,52.129259,52.37976,52.630261,52.880762,53.131263,53.381764,53.632265,53.882766,54.133267,54.383768,54.634269,54.88477,55.135271,55.385772,55.636273,55.886774,56.137275,56.387776,56.638277,56.888778,57.139279,57.38978,57.640281,57.890782,58.141283,58.391784,58.642285,58.892786,59.143287,59.393788,59.644289,59.89479,60.145291,60.395792,60.646293,60.896794,61.147295,61.397796,61.648297,61.898798,62.149299,62.3998,62.650301,62.900802,63.151303,63.401804,63.652305,63.902806,64.153307,64.403808,64.654309,64.90481,65.155311,65.405812,65.656313,65.906814,66.157315,66.407816,66.658317,66.908818,67.159319,67.40982,67.660321,67.910822,68.161323,68.411824,68.662325,68.912826,69.163327,69.413828,69.664329,69.91483,70.165331,70.415832,70.666333,70.916834,71.167335,71.417836,71.668337,71.918838,72.169339,72.41984,72.670341,72.920842,73.171343,73.421844,73.672345,73.922846,74.173347,74.423848,74.674349,74.92485,75.175351,75.425852,75.676353,75.926854,76.177355,76.427856,76.678357,76.928858,77.179359,77.42986,77.680361,77.930862,78.181363,78.431864,78.682365,78.932866,79.183367,79.433868,79.684369,79.93487,80.185371,80.435872,80.686373,80.936874,81.187375,81.437876,81.688377,81.938878,82.189379,82.43988,82.690381,82.940882,83.191383,83.441884,83.692385,83.942886,84.193387,84.443888,84.694389,84.94489,85.195391,85.445892,85.696393,85.946894,86.197395,86.447896,86.698397,86.948898,87.199399,87.4499,87.700401,87.950902,88.201403,88.451904,88.702405,88.952906,89.203407,89.453908,89.704409,89.95491,90.205411,90.455912,90.706413,90.956914,91.207415,91.457916,91.708417,91.958918,92.209419,92.45992,92.710421,92.960922,93.211423,93.461924,93.712425,93.962926,94.213427,94.463928,94.714429,94.96493,95.215431,95.465932,95.716433,95.966934,96.217435,96.467936,96.718437,96.968938,97.219439,97.46994,97.720441,97.970942,98.221443,98.471944,98.722445,98.972946,99.223447,99.473948,99.724449,99.97495,100.22545,100.47595,100.72645,100.97695,101.22745,101.47796,101.72846,101.97896,102.22946,102.47996,102.73046,102.98096,103.23146,103.48196,103.73246,103.98297,104.23347,104.48397,104.73447,104.98497,105.23547,105.48597,105.73647,105.98697,106.23747,106.48798,106.73848,106.98898,107.23948,107.48998,107.74048,107.99098,108.24148,108.49198,108.74248,108.99299,109.24349,109.49399,109.74449,109.99499,110.24549,110.49599,110.74649,110.99699,111.24749,111.498,111.7485,111.999,112.2495,112.5],"y":[-0.10495363,-0.10495358,-0.10495352,-0.10495344,-0.10495334,-0.10495322,-0.10495305,-0.10495285,-0.10495259,-0.10495226,-0.10495186,-0.10495135,-0.10495073,-0.10494996,-0.10494901,-0.10494785,-0.10494644,-0.10494474,-0.10494267,-0.10494019,-0.10493723,-0.10493369,-0.1049295,-0.10492454,-0.10491871,-0.10491188,-0.10490392,-0.10489467,-0.10488399,-0.1048717,-0.10485762,-0.10484157,-0.10482335,-0.10480277,-0.10477962,-0.10475372,-0.10472486,-0.10469286,-0.10465755,-0.10461878,-0.10457642,-0.10453037,-0.10448055,-0.10442695,-0.10436957,-0.10430848,-0.10424378,-0.10417566,-0.10410435,-0.10403012,-0.10395334,-0.10387442,-0.10379383,-0.10371211,-0.10362983,-0.10354762,-0.10346616,-0.10338613,-0.10330827,-0.1032333,-0.10316195,-0.10309495,-0.103033,-0.10297675,-0.10292681,-0.10288375,-0.10284805,-0.10282012,-0.10280028,-0.10278876,-0.1027857,-0.10279114,-0.102805,-0.10282713,-0.10285728,-0.10289509,-0.10294012,-0.10299188,-0.1030498,-0.10311323,-0.10318152,-0.10325395,-0.10332981,-0.10340835,-0.10348885,-0.10357059,-0.10365289,-0.10373507,-0.10381654,-0.10389671,-0.10397508,-0.10405118,-0.10412462,-0.10419507,-0.10426225,-0.10432595,-0.10438601,-0.10444234,-0.10449488,-0.10454364,-0.10458865,-0.10462999,-0.10466778,-0.10470214,-0.10473325,-0.10476126,-0.10478638,-0.10480878,-0.10482868,-0.10484627,-0.10486175,-0.10487531,-0.10488714,-0.1048974,-0.10490627,-0.1049139,-0.10492044,-0.10492601,-0.10493074,-0.10493474,-0.10493811,-0.10494093,-0.10494329,-0.10494525,-0.10494687,-0.1049482,-0.10494929,-0.10495019,-0.10495092,-0.1049515,-0.10495198,-0.10495236,-0.10495267,-0.10495291,-0.1049531,-0.10495325,-0.10495337,-0.10495347,-0.10495354,-0.1049536,-0.10495364,-0.10495368,-0.1049537,-0.10495372,-0.10495374,-0.10495375,-0.10495375,-0.10495376,-0.10495376,-0.10495377,-0.10495377,-0.10495376,-0.10495376,-0.10495376,-0.10495375,-0.10495374,-0.10495373,-0.10495371,-0.10495369,-0.10495365,-0.10495361,-0.10495356,-0.1049535,-0.10495341,-0.1049533,-0.10495316,-0.10495298,-0.10495275,-0.10495246,-0.1049521,-0.10495165,-0.10495109,-0.10495039,-0.10494953,-0.10494847,-0.10494717,-0.10494559,-0.10494366,-0.10494132,-0.1049385,-0.10493511,-0.10493104,-0.10492619,-0.10492042,-0.10491358,-0.10490551,-0.10489603,-0.10488491,-0.10487193,-0.10485684,-0.10483933,-0.10481911,-0.10479582,-0.1047691,-0.10473854,-0.1047037,-0.1046641,-0.10461923,-0.10456856,-0.1045115,-0.10444745,-0.10437574,-0.10429569,-0.10420659,-0.10410768,-0.10399818,-0.10387728,-0.10374416,-0.10359795,-0.10343779,-0.10326281,-0.10307212,-0.10286487,-0.10264021,-0.10239733,-0.10213545,-0.10185388,-0.10155198,-0.10122923,-0.10088523,-0.10051969,-0.10013252,-0.099723798,-0.099293804,-0.098843055,-0.098372316,-0.097882616,-0.097375268,-0.096851879,-0.096314352,-0.095764895,-0.095206008,-0.094640478,-0.094071357,-0.093501936,-0.092935714,-0.092376355,-0.091827642,-0.091293419,-0.090777538,-0.090283791,-0.089815841,-0.089377157,-0.088970943,-0.088600071,-0.088267016,-0.087973798,-0.087721929,-0.08751237,-0.087345498,-0.087221081,-0.087138271,-0.0870956,-0.087091002,-0.087121837,-0.087184932,-0.087276633,-0.087392872,-0.087529235,-0.087681045,-0.087843449,-0.088011506,-0.088180283,-0.088344946,-0.088500848,-0.088643616,-0.088769228,-0.088874085,-0.088955071,-0.0890096,-0.089035657,-0.089031821,-0.088997272,-0.088931797,-0.088835768,-0.088710122,-0.088556316,-0.088376286,-0.088172387,-0.087947332,-0.087704123,-0.087445979,-0.087176265,-0.086898422,-0.086615891,-0.086332052,-0.086050163,-0.085773301,-0.085504319,-0.085245808,-0.085000062,-0.084769058,-0.084554445,-0.084357538,-0.084179319,-0.084020448,-0.08388128,-0.083761884,-0.08366207,-0.083581414,-0.083519288,-0.08347489,-0.083447276,-0.083435384,-0.083438066,-0.083454107,-0.08348225,-0.083521214,-0.083569708,-0.083626445,-0.083690147,-0.083759561,-0.083833451,-0.08391061,-0.083989858,-0.084070037,-0.084150018,-0.084228691,-0.084304972,-0.084377793,-0.08444611,-0.084508895,-0.084565144,-0.084613873,-0.084654126,-0.084684972,-0.084705518,-0.084714907,-0.084712328,-0.084697023,-0.084668292,-0.084625501,-0.084568093,-0.084495591,-0.084407612,-0.084303871,-0.084184188,-0.084048501,-0.083896871,-0.083729487,-0.083546676,-0.083348911,-0.083136813,-0.082911158,-0.082672881,-0.082423082,-0.082163023,-0.081894133,-0.081618005,-0.08133639,-0.081051198,-0.080764482,-0.080478432,-0.080195359,-0.07991768,-0.079647895,-0.079388564,-0.079142285,-0.078911658,-0.078699263,-0.078507619,-0.078339155,-0.078196174,-0.07808082,-0.077995047,-0.077940585,-0.077918913,-0.077931237,-0.07797847,-0.078061214,-0.078179754,-0.078334051,-0.078523749,-0.078748175,-0.079006359,-0.079297052,-0.079618743,-0.079969694,-0.080347964,-0.080751447,-0.081177902,-0.081624989,-0.082090306,-0.08257142,-0.0830659,-0.083571348,-0.08408542,-0.08460586,-0.085130509,-0.085657327,-0.086184409,-0.086709986,-0.087232438,-0.087750295,-0.088262234,-0.088767083,-0.08926381,-0.089751523,-0.090229457,-0.090696971,-0.091153535,-0.091598722,-0.092032198,-0.092453712,-0.092863089,-0.093260217,-0.093645042,-0.094017556,-0.094377796,-0.094725829,-0.095061754,-0.095385693,-0.095697786,-0.09599819,-0.096287075,-0.096564623,-0.096831028,-0.097086491,-0.097331227,-0.09756546,-0.09778943,-0.098003389,-0.098207606,-0.09840237,-0.098587989,-0.098764796,-0.098933147,-0.099093424,-0.099246036,-0.09939142,-0.099530037,-0.099662377,-0.099788951,-0.099910295,-0.10002696,-0.10013951,-0.10024852,-0.10035457,-0.10045824,-0.1005601,-0.10066069,-0.10076054,-0.10086017,-0.10096002,-0.10106052,-0.10116204,-0.1012649,-0.10136936,-0.10147561,-0.10158378,-0.10169393,-0.10180607,-0.10192011,-0.10203592,-0.1021533,-0.10227201,-0.10239174,-0.10251214,-0.10263282,-0.10275338,-0.10287337,-0.10299234,-0.10310986,-0.10322547,-0.10333873,-0.10344923,-0.10355658,-0.10366043,-0.10376045,-0.10385638,-0.10394797,-0.10403503,-0.10411744,-0.10419509,-0.10426794,-0.10433597,-0.10439924,-0.10445781,-0.10451179,-0.10456132,-0.10460658,-0.10464774,-0.10468502,-0.10471863,-0.10474881,-0.10477577,-0.10479977,-0.10482104,-0.1048398,-0.10485628,-0.10487069,-0.10488324,-0.10489413,-0.10490352,-0.1049116,-0.10491852,-0.10492441,-0.10492942,-0.10493365,-0.1049372],"zorder":2,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-12.5,-12.249499,-11.998998,-11.748497,-11.497996,-11.247495,-10.996994,-10.746493,-10.495992,-10.245491,-9.99499,-9.744489,-9.493988,-9.243487,-8.992986,-8.742485,-8.491984,-8.241483,-7.990982,-7.740481,-7.48998,-7.239479,-6.988978,-6.738477,-6.487976,-6.2374749,-5.9869739,-5.7364729,-5.4859719,-5.2354709,-4.9849699,-4.7344689,-4.4839679,-4.2334669,-3.9829659,-3.7324649,-3.4819639,-3.2314629,-2.9809619,-2.7304609,-2.4799599,-2.2294589,-1.9789579,-1.7284569,-1.4779559,-1.2274549,-0.97695391,-0.72645291,-0.4759519,-0.2254509,0.0250501,0.2755511,0.5260521,0.77655311,1.0270541,1.2775551,1.5280561,1.7785571,2.0290581,2.2795591,2.5300601,2.7805611,3.0310621,3.2815631,3.5320641,3.7825651,4.0330661,4.2835671,4.5340681,4.7845691,5.0350701,5.2855711,5.5360721,5.7865731,6.0370741,6.2875752,6.5380762,6.7885772,7.0390782,7.2895792,7.5400802,7.7905812,8.0410822,8.2915832,8.5420842,8.7925852,9.0430862,9.2935872,9.5440882,9.7945892,10.04509,10.295591,10.546092,10.796593,11.047094,11.297595,11.548096,11.798597,12.049098,12.299599,12.5501,12.800601,13.051102,13.301603,13.552104,13.802605,14.053106,14.303607,14.554108,14.804609,15.05511,15.305611,15.556112,15.806613,16.057114,16.307615,16.558116,16.808617,17.059118,17.309619,17.56012,17.810621,18.061122,18.311623,18.562124,18.812625,19.063126,19.313627,19.564128,19.814629,20.06513,20.315631,20.566132,20.816633,21.067134,21.317635,21.568136,21.818637,22.069138,22.319639,22.57014,22.820641,23.071142,23.321643,23.572144,23.822645,24.073146,24.323647,24.574148,24.824649,25.07515,25.325651,25.576152,25.826653,26.077154,26.327655,26.578156,26.828657,27.079158,27.329659,27.58016,27.830661,28.081162,28.331663,28.582164,28.832665,29.083166,29.333667,29.584168,29.834669,30.08517,30.335671,30.586172,30.836673,31.087174,31.337675,31.588176,31.838677,32.089178,32.339679,32.59018,32.840681,33.091182,33.341683,33.592184,33.842685,34.093186,34.343687,34.594188,34.844689,35.09519,35.345691,35.596192,35.846693,36.097194,36.347695,36.598196,36.848697,37.099198,37.349699,37.6002,37.850701,38.101202,38.351703,38.602204,38.852705,39.103206,39.353707,39.604208,39.854709,40.10521,40.355711,40.606212,40.856713,41.107214,41.357715,41.608216,41.858717,42.109218,42.359719,42.61022,42.860721,43.111222,43.361723,43.612224,43.862725,44.113226,44.363727,44.614228,44.864729,45.11523,45.365731,45.616232,45.866733,46.117234,46.367735,46.618236,46.868737,47.119238,47.369739,47.62024,47.870741,48.121242,48.371743,48.622244,48.872745,49.123246,49.373747,49.624248,49.874749,50.125251,50.375752,50.626253,50.876754,51.127255,51.377756,51.628257,51.878758,52.129259,52.37976,52.630261,52.880762,53.131263,53.381764,53.632265,53.882766,54.133267,54.383768,54.634269,54.88477,55.135271,55.385772,55.636273,55.886774,56.137275,56.387776,56.638277,56.888778,57.139279,57.38978,57.640281,57.890782,58.141283,58.391784,58.642285,58.892786,59.143287,59.393788,59.644289,59.89479,60.145291,60.395792,60.646293,60.896794,61.147295,61.397796,61.648297,61.898798,62.149299,62.3998,62.650301,62.900802,63.151303,63.401804,63.652305,63.902806,64.153307,64.403808,64.654309,64.90481,65.155311,65.405812,65.656313,65.906814,66.157315,66.407816,66.658317,66.908818,67.159319,67.40982,67.660321,67.910822,68.161323,68.411824,68.662325,68.912826,69.163327,69.413828,69.664329,69.91483,70.165331,70.415832,70.666333,70.916834,71.167335,71.417836,71.668337,71.918838,72.169339,72.41984,72.670341,72.920842,73.171343,73.421844,73.672345,73.922846,74.173347,74.423848,74.674349,74.92485,75.175351,75.425852,75.676353,75.926854,76.177355,76.427856,76.678357,76.928858,77.179359,77.42986,77.680361,77.930862,78.181363,78.431864,78.682365,78.932866,79.183367,79.433868,79.684369,79.93487,80.185371,80.435872,80.686373,80.936874,81.187375,81.437876,81.688377,81.938878,82.189379,82.43988,82.690381,82.940882,83.191383,83.441884,83.692385,83.942886,84.193387,84.443888,84.694389,84.94489,85.195391,85.445892,85.696393,85.946894,86.197395,86.447896,86.698397,86.948898,87.199399,87.4499,87.700401,87.950902,88.201403,88.451904,88.702405,88.952906,89.203407,89.453908,89.704409,89.95491,90.205411,90.455912,90.706413,90.956914,91.207415,91.457916,91.708417,91.958918,92.209419,92.45992,92.710421,92.960922,93.211423,93.461924,93.712425,93.962926,94.213427,94.463928,94.714429,94.96493,95.215431,95.465932,95.716433,95.966934,96.217435,96.467936,96.718437,96.968938,97.219439,97.46994,97.720441,97.970942,98.221443,98.471944,98.722445,98.972946,99.223447,99.473948,99.724449,99.97495,100.22545,100.47595,100.72645,100.97695,101.22745,101.47796,101.72846,101.97896,102.22946,102.47996,102.73046,102.98096,103.23146,103.48196,103.73246,103.98297,104.23347,104.48397,104.73447,104.98497,105.23547,105.48597,105.73647,105.98697,106.23747,106.48798,106.73848,106.98898,107.23948,107.48998,107.74048,107.99098,108.24148,108.49198,108.74248,108.99299,109.24349,109.49399,109.74449,109.99499,110.24549,110.49599,110.74649,110.99699,111.24749,111.498,111.7485,111.999,112.2495,112.5],"y":[-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067],"zorder":3,"type":"scatter"},{"customdata":[[8.4935073e-41],[1.9284419e-40],[4.3613686e-40],[9.8250723e-40],[2.2046794e-39],[4.9277864e-39],[1.0971223e-38],[2.4330717e-38],[5.3746666e-38],[1.1826191e-37],[2.5919997e-37],[5.6587664e-37],[1.2305671e-36],[2.6655423e-36],[5.7512544e-36],[1.2360508e-35],[2.6461032e-35],[5.6425312e-35],[1.1984996e-34],[2.535704e-34],[5.3438706e-34],[1.1217861e-33],[2.3456375e-33],[4.885494e-33],[1.0135678e-32],[2.094565e-32],[4.311532e-32],[8.8402819e-32],[1.8054994e-31],[3.6730371e-31],[7.4430341e-31],[1.5023511e-30],[3.0205748e-30],[6.0492911e-30],[1.2067467e-29],[2.3978635e-29],[4.7460197e-29],[9.3568863e-29],[1.8375108e-28],[3.5943898e-28],[7.0035329e-28],[1.3592706e-27],[2.6277944e-27],[5.0602687e-27],[9.7062731e-27],[1.8545057e-26],[3.5293974e-26],[6.6906711e-26],[1.2633845e-25],[2.3762828e-25],[4.4520233e-25],[8.308325e-25],[1.544423e-24],[2.859669e-24],[5.2742657e-24],[9.6895804e-24],[1.7731467e-23],[3.2320726e-23],[5.8683264e-23],[1.0613146e-22],[1.9119247e-22],[3.43079e-22],[6.1321705e-22],[1.0917697e-21],[1.9361749e-21],[3.4202265e-21],[6.0181343e-21],[1.0547891e-20],[1.8414761e-20],[3.2023094e-20],[5.5469879e-20],[9.5707922e-20],[1.644884e-19],[2.8159141e-19],[4.8017579e-19],[8.1560119e-19],[1.3799145e-18],[2.3255368e-18],[3.9038309e-18],[6.5276297e-18],[1.0872183e-17],[1.8037433e-17],[2.9807766e-17],[4.9066024e-17],[8.0450553e-17],[1.3139351e-16],[2.1375464e-16],[3.4638088e-16],[5.5909937e-16],[8.9891955e-16],[1.439625e-15],[2.2965434e-15],[3.6491917e-15],[5.7758435e-15],[9.1060681e-15],[1.4300233e-14],[2.2369282e-14],[3.4854407e-14],[5.4095371e-14],[8.3629448e-14],[1.2878198e-13],[1.9753665e-13],[3.0181235e-13],[4.5932815e-13],[6.9631515e-13],[1.0514421e-12],[1.5814724e-12],[2.3693793e-12],[3.5359351e-12],[5.2561861e-12],[7.7827647e-12],[1.1478729e-11],[1.6863605e-11],[2.467765e-11],[3.5971114e-11],[5.2227677e-11],[7.553431e-11],[1.0881394e-10],[1.5614266e-10],[2.2318002e-10],[3.1775018e-10],[4.5062264e-10],[6.3655649e-10],[8.9568979e-10],[1.2553795e-09],[1.7526256e-09],[2.4372497e-09],[3.3760403e-09],[4.6581336e-09],[6.4019607e-09],[8.7641699e-09],[1.1951029e-08],[1.6232917e-08],[2.196264e-08],[2.9598469e-08],[3.9732939e-08],[5.3128661e-08],[7.0762598e-08],[9.3880503e-08],[1.2406343e-07],[1.6330853e-07],[2.1412664e-07],[2.796593e-07],[3.6381831e-07],[4.7145101e-07],[6.0853466e-07],[7.8240354e-07],[1.0020122e-06],[1.2782387e-06],[1.6242304e-06],[2.0557961e-06],[2.5918459e-06],[3.2548805e-06],[4.0715301e-06],[5.0731416e-06],[6.2964106e-06],[7.7840539e-06],[9.5855129e-06],[1.1757679e-05],[1.4365627e-05],[1.7483336e-05],[2.1194382e-05],[2.5592572e-05],[3.0782497e-05],[3.6879964e-05],[4.4012279e-05],[5.231834e-05],[6.1948499e-05],[7.3064152e-05],[8.5837022e-05],[0.00010044809],[0.00011708612],[0.00013594584],[0.00015722555],[0.00018112445],[0.00020783934],[0.00023756101],[0.00027047013],[0.00030673277],[0.00034649565],[0.00038988104],[0.00043698163],[0.00048785525],[0.00054251969],[0.00060094782],[0.00066306294],[0.00072873474],[0.00079777593],[0.00086993962],[0.00094491779],[0.0010223408],[0.0011017779],[0.0011827397],[0.0012646811],[0.0013470062],[0.0014290747],[0.0015102087],[0.0015897022],[0.0016668301],[0.0017408591],[0.0018110594],[0.0018767159],[0.0019371406],[0.0019916846],[0.0020397494],[0.0020807981],[0.0021143652],[0.0021400653],[0.0021576011],[0.0021667685],[0.0021674608],[0.0021596713],[0.0021434928],[0.0021191165],[0.0020868284],[0.0020470033],[0.002000099],[0.0019466467],[0.0018872426],[0.0018225366],[0.0017532218],[0.0016800228],[0.0016036845],[0.0015249607],[0.0014446039],[0.0013633553],[0.0012819359],[0.0012010395],[0.0011213266],[0.0010434192],[0.00096789895],[0.00089530505],[0.00082613504],[0.00076084663],[0.00069986123],[0.00064356883],[0.00059233408],[0.00054650353],[0.0005064137],[0.00047239986],[0.0004448052],[0.00042399029],[0.00041034245],[0.00040428491],[0.00040628535],[0.0004168638],[0.00043659946],[0.0004661363],[0.00050618727],[0.00055753682],[0.00062104163],[0.00069762937],[0.00078829546],[0.00089409751],[0.0010161478],[0.0011556034],[0.0013136543],[0.0014915094],[0.0016903812],[0.0019114679],[0.0021559357],[0.0024248987],[0.0027193996],[0.0030403893],[0.0033887077],[0.0037650649],[0.0041700245],[0.0046039875],[0.0050671803],[0.0055596439],[0.0060812269],[0.0066315822],[0.007210166],[0.0078162414],[0.0084488855],[0.0091069987],[0.0097893186],[0.010494435],[0.011220809],[0.01196679],[0.01273064],[0.013510553],[0.014304675],[0.015111124],[0.015928013],[0.016753461],[0.017585614],[0.018422652],[0.019262804],[0.020104351],[0.020945635],[0.021785058],[0.022621086],[0.023452244],[0.024277116],[0.025094341],[0.02590261],[0.026700661],[0.027487275],[0.028261276],[0.029021528],[0.029766931],[0.030496428],[0.031208999],[0.03190367],[0.032579511],[0.033235642],[0.033871237],[0.034485526],[0.035077799],[0.03564741],[0.036193777],[0.036716383],[0.037214777],[0.037688568],[0.038137428],[0.038561082],[0.038959303],[0.03933191],[0.039678753],[0.039999712],[0.040294681],[0.040563564],[0.040806264],[0.041022672],[0.041212662],[0.041376077],[0.041512728],[0.041622383],[0.041704764],[0.041759544],[0.041786343],[0.04178473],[0.041754227],[0.041694312],[0.041604429],[0.041483995],[0.041332419],[0.041149113],[0.040933513],[0.040685104],[0.040403434],[0.040088146],[0.039739003],[0.039355909],[0.038938937],[0.038488353],[0.038004636],[0.037488496],[0.036940892],[0.036363038],[0.03575641],[0.035122749],[0.034464051],[0.033782561],[0.033080753],[0.03236131],[0.031627101],[0.030881146],[0.030126588],[0.029366653],[0.028604615],[0.027843758],[0.02708734],[0.026338551],[0.025600481],[0.024876091],[0.024168174],[0.023479336],[0.02281197],[0.022168236],[0.021550046],[0.020959053],[0.02039664],[0.019863913],[0.019361706],[0.018890573],[0.018450794],[0.018042379],[0.017665076],[0.017318376],[0.017001522],[0.016713521],[0.016453155],[0.016218991],[0.016009395],[0.015822548],[0.015656459],[0.01550898],[0.015377829],[0.015260603],[0.015154802],[0.015057849],[0.014967115],[0.014879942],[0.014793673],[0.014705673],[0.014613363],[0.014514247],[0.01440594],[0.0142862],[0.014152952],[0.014004319],[0.013838647],[0.013654528],[0.013450817],[0.013226654],[0.012981476],[0.012715022],[0.012427341],[0.01211879],[0.011790027],[0.011442004],[0.011075944],[0.010693328],[0.010295865],[0.0098854648],[0.0094642067],[0.009034304],[0.0085980678],[0.0081578699],[0.0077161046],[0.007275152],[0.0068373425],[0.0064049229],[0.0059800261],[0.0055646433],[0.0051606011],[0.0047695412],[0.0043929064],[0.0040319291],[0.0036876262],[0.0033607966],[0.003052024],[0.0027616827],[0.0024899473],[0.002236805],[0.0020020705],[0.0017854021],[0.0015863202],[0.001404226],[0.0012384206],[0.0010881239],[0.00095249362],[0.00083064248],[0.00072165517],[0.00062460338],[0.00053855958],[0.00046260901],[0.00039586003],[0.00033745282],[0.00028656631],[0.0002424236],[0.00020429586],[0.00017150492],[0.00014342457],[0.00011948082],[9.9151313e-05],[8.1963856e-05],[6.749446e-05],[5.5364835e-05],[4.5239569e-05],[3.6823069e-05],[2.9856385e-05],[2.411398e-05],[1.9400539e-05],[1.5547868e-05],[1.241192e-05],[9.8700011e-06],[7.8181619e-06],[6.1687973e-06],[4.8484612e-06],[3.7958953e-06],[2.9602657e-06],[2.2996022e-06],[1.7794251e-06],[1.3715482e-06],[1.0530436e-06],[8.0535069e-07],[6.135171e-07],[4.6555486e-07],[3.5189833e-07],[2.6495086e-07],[1.987078e-07],[1.4844503e-07],[1.104631e-07],[8.1878404e-08],[6.0453553e-08],[4.4460502e-08],[3.2570674e-08],[2.3767242e-08],[1.7275486e-08],[1.2507803e-08],[9.0205056e-09],[6.4800698e-09],[4.6368953e-09],[3.3050159e-09],[2.3464881e-09],[1.65944e-09],[1.1689692e-09]],"fill":"tonexty","fillcolor":"rgba(34.14286, 161.57143, 134.71429, 0.65)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Likely","x":[-12.5,-12.249499,-11.998998,-11.748497,-11.497996,-11.247495,-10.996994,-10.746493,-10.495992,-10.245491,-9.99499,-9.744489,-9.493988,-9.243487,-8.992986,-8.742485,-8.491984,-8.241483,-7.990982,-7.740481,-7.48998,-7.239479,-6.988978,-6.738477,-6.487976,-6.2374749,-5.9869739,-5.7364729,-5.4859719,-5.2354709,-4.9849699,-4.7344689,-4.4839679,-4.2334669,-3.9829659,-3.7324649,-3.4819639,-3.2314629,-2.9809619,-2.7304609,-2.4799599,-2.2294589,-1.9789579,-1.7284569,-1.4779559,-1.2274549,-0.97695391,-0.72645291,-0.4759519,-0.2254509,0.0250501,0.2755511,0.5260521,0.77655311,1.0270541,1.2775551,1.5280561,1.7785571,2.0290581,2.2795591,2.5300601,2.7805611,3.0310621,3.2815631,3.5320641,3.7825651,4.0330661,4.2835671,4.5340681,4.7845691,5.0350701,5.2855711,5.5360721,5.7865731,6.0370741,6.2875752,6.5380762,6.7885772,7.0390782,7.2895792,7.5400802,7.7905812,8.0410822,8.2915832,8.5420842,8.7925852,9.0430862,9.2935872,9.5440882,9.7945892,10.04509,10.295591,10.546092,10.796593,11.047094,11.297595,11.548096,11.798597,12.049098,12.299599,12.5501,12.800601,13.051102,13.301603,13.552104,13.802605,14.053106,14.303607,14.554108,14.804609,15.05511,15.305611,15.556112,15.806613,16.057114,16.307615,16.558116,16.808617,17.059118,17.309619,17.56012,17.810621,18.061122,18.311623,18.562124,18.812625,19.063126,19.313627,19.564128,19.814629,20.06513,20.315631,20.566132,20.816633,21.067134,21.317635,21.568136,21.818637,22.069138,22.319639,22.57014,22.820641,23.071142,23.321643,23.572144,23.822645,24.073146,24.323647,24.574148,24.824649,25.07515,25.325651,25.576152,25.826653,26.077154,26.327655,26.578156,26.828657,27.079158,27.329659,27.58016,27.830661,28.081162,28.331663,28.582164,28.832665,29.083166,29.333667,29.584168,29.834669,30.08517,30.335671,30.586172,30.836673,31.087174,31.337675,31.588176,31.838677,32.089178,32.339679,32.59018,32.840681,33.091182,33.341683,33.592184,33.842685,34.093186,34.343687,34.594188,34.844689,35.09519,35.345691,35.596192,35.846693,36.097194,36.347695,36.598196,36.848697,37.099198,37.349699,37.6002,37.850701,38.101202,38.351703,38.602204,38.852705,39.103206,39.353707,39.604208,39.854709,40.10521,40.355711,40.606212,40.856713,41.107214,41.357715,41.608216,41.858717,42.109218,42.359719,42.61022,42.860721,43.111222,43.361723,43.612224,43.862725,44.113226,44.363727,44.614228,44.864729,45.11523,45.365731,45.616232,45.866733,46.117234,46.367735,46.618236,46.868737,47.119238,47.369739,47.62024,47.870741,48.121242,48.371743,48.622244,48.872745,49.123246,49.373747,49.624248,49.874749,50.125251,50.375752,50.626253,50.876754,51.127255,51.377756,51.628257,51.878758,52.129259,52.37976,52.630261,52.880762,53.131263,53.381764,53.632265,53.882766,54.133267,54.383768,54.634269,54.88477,55.135271,55.385772,55.636273,55.886774,56.137275,56.387776,56.638277,56.888778,57.139279,57.38978,57.640281,57.890782,58.141283,58.391784,58.642285,58.892786,59.143287,59.393788,59.644289,59.89479,60.145291,60.395792,60.646293,60.896794,61.147295,61.397796,61.648297,61.898798,62.149299,62.3998,62.650301,62.900802,63.151303,63.401804,63.652305,63.902806,64.153307,64.403808,64.654309,64.90481,65.155311,65.405812,65.656313,65.906814,66.157315,66.407816,66.658317,66.908818,67.159319,67.40982,67.660321,67.910822,68.161323,68.411824,68.662325,68.912826,69.163327,69.413828,69.664329,69.91483,70.165331,70.415832,70.666333,70.916834,71.167335,71.417836,71.668337,71.918838,72.169339,72.41984,72.670341,72.920842,73.171343,73.421844,73.672345,73.922846,74.173347,74.423848,74.674349,74.92485,75.175351,75.425852,75.676353,75.926854,76.177355,76.427856,76.678357,76.928858,77.179359,77.42986,77.680361,77.930862,78.181363,78.431864,78.682365,78.932866,79.183367,79.433868,79.684369,79.93487,80.185371,80.435872,80.686373,80.936874,81.187375,81.437876,81.688377,81.938878,82.189379,82.43988,82.690381,82.940882,83.191383,83.441884,83.692385,83.942886,84.193387,84.443888,84.694389,84.94489,85.195391,85.445892,85.696393,85.946894,86.197395,86.447896,86.698397,86.948898,87.199399,87.4499,87.700401,87.950902,88.201403,88.451904,88.702405,88.952906,89.203407,89.453908,89.704409,89.95491,90.205411,90.455912,90.706413,90.956914,91.207415,91.457916,91.708417,91.958918,92.209419,92.45992,92.710421,92.960922,93.211423,93.461924,93.712425,93.962926,94.213427,94.463928,94.714429,94.96493,95.215431,95.465932,95.716433,95.966934,96.217435,96.467936,96.718437,96.968938,97.219439,97.46994,97.720441,97.970942,98.221443,98.471944,98.722445,98.972946,99.223447,99.473948,99.724449,99.97495,100.22545,100.47595,100.72645,100.97695,101.22745,101.47796,101.72846,101.97896,102.22946,102.47996,102.73046,102.98096,103.23146,103.48196,103.73246,103.98297,104.23347,104.48397,104.73447,104.98497,105.23547,105.48597,105.73647,105.98697,106.23747,106.48798,106.73848,106.98898,107.23948,107.48998,107.74048,107.99098,108.24148,108.49198,108.74248,108.99299,109.24349,109.49399,109.74449,109.99499,110.24549,110.49599,110.74649,110.99699,111.24749,111.498,111.7485,111.999,112.2495,112.5],"y":[-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743066,-0.15743066,-0.15743066,-0.15743065,-0.15743064,-0.15743063,-0.15743062,-0.1574306,-0.15743058,-0.15743055,-0.15743051,-0.15743046,-0.15743039,-0.15743031,-0.1574302,-0.15743006,-0.15742989,-0.15742967,-0.15742939,-0.15742905,-0.15742862,-0.15742808,-0.15742742,-0.1574266,-0.1574256,-0.15742438,-0.15742289,-0.15742109,-0.15741892,-0.15741631,-0.15741319,-0.15740948,-0.15740508,-0.15739989,-0.15739379,-0.15738666,-0.15737835,-0.15736872,-0.15735761,-0.15734484,-0.15733022,-0.15731359,-0.15729473,-0.15727345,-0.15724955,-0.15722283,-0.15719311,-0.1571602,-0.15712394,-0.15708418,-0.15704079,-0.15699369,-0.15694282,-0.15688815,-0.15682973,-0.15676761,-0.15670194,-0.1566329,-0.15656073,-0.15648576,-0.15640833,-0.15632889,-0.15624793,-0.15616599,-0.15608367,-0.1560016,-0.15592046,-0.15584097,-0.15576384,-0.15568981,-0.15561961,-0.15555396,-0.15549353,-0.15543899,-0.15539092,-0.15534987,-0.15531631,-0.15529061,-0.15527307,-0.1552639,-0.15526321,-0.155271,-0.15528718,-0.15531156,-0.15534384,-0.15538367,-0.15543057,-0.15548403,-0.15554343,-0.15560814,-0.15567745,-0.15575065,-0.15582699,-0.15590571,-0.15598607,-0.15606732,-0.15614874,-0.15622963,-0.15630935,-0.15638725,-0.15646277,-0.15653537,-0.15660454,-0.15666983,-0.15673081,-0.1567871,-0.15683834,-0.15688417,-0.15692426,-0.15695827,-0.15698587,-0.15700668,-0.15702033,-0.15702639,-0.15702439,-0.15701381,-0.15699407,-0.15696454,-0.15692449,-0.15687314,-0.15680963,-0.15673304,-0.15664238,-0.15653658,-0.15641453,-0.15627507,-0.15611702,-0.15593916,-0.15574029,-0.1555192,-0.15527474,-0.15500577,-0.15471127,-0.15439028,-0.15404197,-0.15366561,-0.15326065,-0.15282669,-0.15236349,-0.15187103,-0.15134945,-0.15079909,-0.15022051,-0.14961443,-0.14898179,-0.14832367,-0.14764135,-0.14693624,-0.14620986,-0.14546388,-0.14470003,-0.14392012,-0.143126,-0.14231955,-0.14150266,-0.14067721,-0.13984506,-0.13900802,-0.13816787,-0.13732632,-0.13648504,-0.13564561,-0.13480959,-0.13397843,-0.13315356,-0.13233633,-0.13152806,-0.13073001,-0.1299434,-0.1291694,-0.12840914,-0.12766374,-0.12693424,-0.12622167,-0.125527,-0.12485116,-0.12419503,-0.12355944,-0.12294515,-0.12235287,-0.12178326,-0.1212369,-0.12071429,-0.1202159,-0.1197421,-0.11929324,-0.11886959,-0.11847137,-0.11809876,-0.11775192,-0.11743096,-0.11713599,-0.11686711,-0.11662441,-0.116408,-0.11621801,-0.1160546,-0.11591795,-0.11580829,-0.11572591,-0.11567113,-0.11564433,-0.11564594,-0.11567645,-0.11573636,-0.11582624,-0.11594668,-0.11609825,-0.11628156,-0.11649716,-0.11674557,-0.11702724,-0.11734253,-0.11769167,-0.11807476,-0.11849174,-0.11894232,-0.11942604,-0.11994218,-0.12048978,-0.12106764,-0.12167426,-0.12230792,-0.12296662,-0.12364811,-0.12434992,-0.12506936,-0.12580357,-0.12654953,-0.12730408,-0.12806402,-0.12882606,-0.12958691,-0.13034333,-0.13109212,-0.13183019,-0.13255458,-0.1332625,-0.13395134,-0.1346187,-0.13526244,-0.13588063,-0.13647162,-0.13703403,-0.13756676,-0.13806897,-0.1385401,-0.13897988,-0.13938829,-0.1397656,-0.1401123,-0.14042915,-0.14071715,-0.14097752,-0.14121168,-0.14142128,-0.14160812,-0.14177421,-0.14192169,-0.14205284,-0.14217007,-0.14227587,-0.14237282,-0.14246356,-0.14255073,-0.142637,-0.142725,-0.14281731,-0.14291643,-0.14302473,-0.14314447,-0.14327772,-0.14342635,-0.14359203,-0.14377615,-0.14397986,-0.14420402,-0.1444492,-0.14471565,-0.14500333,-0.14531188,-0.14564065,-0.14598867,-0.14635473,-0.14673734,-0.14713481,-0.14754521,-0.14796647,-0.14839637,-0.14883261,-0.1492728,-0.14971457,-0.15015552,-0.15059333,-0.15102575,-0.15145065,-0.15186603,-0.15227007,-0.15266113,-0.15303777,-0.15339874,-0.15374305,-0.15406988,-0.15437865,-0.15466899,-0.15494073,-0.15519387,-0.1554286,-0.15564527,-0.15584435,-0.15602645,-0.15619225,-0.15634255,-0.15647818,-0.15660003,-0.15670902,-0.15680607,-0.15689211,-0.15696806,-0.15703481,-0.15709322,-0.15714411,-0.15718825,-0.15722638,-0.15725917,-0.15728725,-0.15731119,-0.15733152,-0.15734871,-0.15736318,-0.15737531,-0.15738543,-0.15739385,-0.15740082,-0.15740656,-0.15741127,-0.15741512,-0.15741826,-0.1574208,-0.15742285,-0.1574245,-0.15742582,-0.15742688,-0.15742771,-0.15742837,-0.15742889,-0.1574293,-0.15742962,-0.15742987,-0.15743006,-0.15743021,-0.15743032,-0.15743041,-0.15743047,-0.15743052,-0.15743056,-0.15743059,-0.15743061,-0.15743063,-0.15743064,-0.15743065,-0.15743066,-0.15743066,-0.15743066,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067,-0.15743067],"zorder":3,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-12.5,-12.249499,-11.998998,-11.748497,-11.497996,-11.247495,-10.996994,-10.746493,-10.495992,-10.245491,-9.99499,-9.744489,-9.493988,-9.243487,-8.992986,-8.742485,-8.491984,-8.241483,-7.990982,-7.740481,-7.48998,-7.239479,-6.988978,-6.738477,-6.487976,-6.2374749,-5.9869739,-5.7364729,-5.4859719,-5.2354709,-4.9849699,-4.7344689,-4.4839679,-4.2334669,-3.9829659,-3.7324649,-3.4819639,-3.2314629,-2.9809619,-2.7304609,-2.4799599,-2.2294589,-1.9789579,-1.7284569,-1.4779559,-1.2274549,-0.97695391,-0.72645291,-0.4759519,-0.2254509,0.0250501,0.2755511,0.5260521,0.77655311,1.0270541,1.2775551,1.5280561,1.7785571,2.0290581,2.2795591,2.5300601,2.7805611,3.0310621,3.2815631,3.5320641,3.7825651,4.0330661,4.2835671,4.5340681,4.7845691,5.0350701,5.2855711,5.5360721,5.7865731,6.0370741,6.2875752,6.5380762,6.7885772,7.0390782,7.2895792,7.5400802,7.7905812,8.0410822,8.2915832,8.5420842,8.7925852,9.0430862,9.2935872,9.5440882,9.7945892,10.04509,10.295591,10.546092,10.796593,11.047094,11.297595,11.548096,11.798597,12.049098,12.299599,12.5501,12.800601,13.051102,13.301603,13.552104,13.802605,14.053106,14.303607,14.554108,14.804609,15.05511,15.305611,15.556112,15.806613,16.057114,16.307615,16.558116,16.808617,17.059118,17.309619,17.56012,17.810621,18.061122,18.311623,18.562124,18.812625,19.063126,19.313627,19.564128,19.814629,20.06513,20.315631,20.566132,20.816633,21.067134,21.317635,21.568136,21.818637,22.069138,22.319639,22.57014,22.820641,23.071142,23.321643,23.572144,23.822645,24.073146,24.323647,24.574148,24.824649,25.07515,25.325651,25.576152,25.826653,26.077154,26.327655,26.578156,26.828657,27.079158,27.329659,27.58016,27.830661,28.081162,28.331663,28.582164,28.832665,29.083166,29.333667,29.584168,29.834669,30.08517,30.335671,30.586172,30.836673,31.087174,31.337675,31.588176,31.838677,32.089178,32.339679,32.59018,32.840681,33.091182,33.341683,33.592184,33.842685,34.093186,34.343687,34.594188,34.844689,35.09519,35.345691,35.596192,35.846693,36.097194,36.347695,36.598196,36.848697,37.099198,37.349699,37.6002,37.850701,38.101202,38.351703,38.602204,38.852705,39.103206,39.353707,39.604208,39.854709,40.10521,40.355711,40.606212,40.856713,41.107214,41.357715,41.608216,41.858717,42.109218,42.359719,42.61022,42.860721,43.111222,43.361723,43.612224,43.862725,44.113226,44.363727,44.614228,44.864729,45.11523,45.365731,45.616232,45.866733,46.117234,46.367735,46.618236,46.868737,47.119238,47.369739,47.62024,47.870741,48.121242,48.371743,48.622244,48.872745,49.123246,49.373747,49.624248,49.874749,50.125251,50.375752,50.626253,50.876754,51.127255,51.377756,51.628257,51.878758,52.129259,52.37976,52.630261,52.880762,53.131263,53.381764,53.632265,53.882766,54.133267,54.383768,54.634269,54.88477,55.135271,55.385772,55.636273,55.886774,56.137275,56.387776,56.638277,56.888778,57.139279,57.38978,57.640281,57.890782,58.141283,58.391784,58.642285,58.892786,59.143287,59.393788,59.644289,59.89479,60.145291,60.395792,60.646293,60.896794,61.147295,61.397796,61.648297,61.898798,62.149299,62.3998,62.650301,62.900802,63.151303,63.401804,63.652305,63.902806,64.153307,64.403808,64.654309,64.90481,65.155311,65.405812,65.656313,65.906814,66.157315,66.407816,66.658317,66.908818,67.159319,67.40982,67.660321,67.910822,68.161323,68.411824,68.662325,68.912826,69.163327,69.413828,69.664329,69.91483,70.165331,70.415832,70.666333,70.916834,71.167335,71.417836,71.668337,71.918838,72.169339,72.41984,72.670341,72.920842,73.171343,73.421844,73.672345,73.922846,74.173347,74.423848,74.674349,74.92485,75.175351,75.425852,75.676353,75.926854,76.177355,76.427856,76.678357,76.928858,77.179359,77.42986,77.680361,77.930862,78.181363,78.431864,78.682365,78.932866,79.183367,79.433868,79.684369,79.93487,80.185371,80.435872,80.686373,80.936874,81.187375,81.437876,81.688377,81.938878,82.189379,82.43988,82.690381,82.940882,83.191383,83.441884,83.692385,83.942886,84.193387,84.443888,84.694389,84.94489,85.195391,85.445892,85.696393,85.946894,86.197395,86.447896,86.698397,86.948898,87.199399,87.4499,87.700401,87.950902,88.201403,88.451904,88.702405,88.952906,89.203407,89.453908,89.704409,89.95491,90.205411,90.455912,90.706413,90.956914,91.207415,91.457916,91.708417,91.958918,92.209419,92.45992,92.710421,92.960922,93.211423,93.461924,93.712425,93.962926,94.213427,94.463928,94.714429,94.96493,95.215431,95.465932,95.716433,95.966934,96.217435,96.467936,96.718437,96.968938,97.219439,97.46994,97.720441,97.970942,98.221443,98.471944,98.722445,98.972946,99.223447,99.473948,99.724449,99.97495,100.22545,100.47595,100.72645,100.97695,101.22745,101.47796,101.72846,101.97896,102.22946,102.47996,102.73046,102.98096,103.23146,103.48196,103.73246,103.98297,104.23347,104.48397,104.73447,104.98497,105.23547,105.48597,105.73647,105.98697,106.23747,106.48798,106.73848,106.98898,107.23948,107.48998,107.74048,107.99098,108.24148,108.49198,108.74248,108.99299,109.24349,109.49399,109.74449,109.99499,110.24549,110.49599,110.74649,110.99699,111.24749,111.498,111.7485,111.999,112.2495,112.5],"y":[-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756],"zorder":4,"type":"scatter"},{"customdata":[[8.4935079e-41],[1.9284421e-40],[4.361369e-40],[9.8250732e-40],[2.2046796e-39],[4.9277869e-39],[1.0971224e-38],[2.433072e-38],[5.3746673e-38],[1.1826192e-37],[2.5920001e-37],[5.6587673e-37],[1.2305673e-36],[2.6655428e-36],[5.7512555e-36],[1.236051e-35],[2.6461038e-35],[5.6425326e-35],[1.1984999e-34],[2.5357047e-34],[5.3438724e-34],[1.1217865e-33],[2.3456384e-33],[4.885496e-33],[1.0135682e-32],[2.094566e-32],[4.3115342e-32],[8.8402869e-32],[1.8055005e-31],[3.6730395e-31],[7.4430395e-31],[1.5023523e-30],[3.0205773e-30],[6.0492966e-30],[1.2067478e-29],[2.397866e-29],[4.7460252e-29],[9.3568979e-29],[1.8375132e-28],[3.594395e-28],[7.0035439e-28],[1.3592729e-27],[2.6277992e-27],[5.0602787e-27],[9.706294e-27],[1.85451e-26],[3.5294062e-26],[6.6906893e-26],[1.2633882e-25],[2.3762903e-25],[4.4520386e-25],[8.3083559e-25],[1.5444292e-24],[2.8596814e-24],[5.2742905e-24],[9.6896297e-24],[1.7731565e-23],[3.2320918e-23],[5.8683642e-23],[1.061322e-22],[1.9119391e-22],[3.4308179e-22],[6.1322245e-22],[1.0917801e-21],[1.9361948e-21],[3.4202645e-21],[6.0182067e-21],[1.0548028e-20],[1.841502e-20],[3.2023581e-20],[5.5470793e-20],[9.5709626e-20],[1.6449157e-19],[2.8159728e-19],[4.8018661e-19],[8.1562105e-19],[1.3799508e-18],[2.325603e-18],[3.9039512e-18],[6.5278472e-18],[1.0872575e-17],[1.8038136e-17],[2.9809022e-17],[4.9068259e-17],[8.0454517e-17],[1.3140052e-16],[2.1376696e-16],[3.4640247e-16],[5.5913706e-16],[8.9898507e-16],[1.4397385e-15],[2.2967392e-15],[3.6495281e-15],[5.7764194e-15],[9.10705e-15],[1.43019e-14],[2.2372103e-14],[3.4859162e-14],[5.4103351e-14],[8.3642791e-14],[1.288042e-13],[1.9757351e-13],[3.0187326e-13],[4.5942841e-13],[6.9647954e-13],[1.0517106e-12],[1.5819091e-12],[2.3700869e-12],[3.5370774e-12],[5.2580225e-12],[7.7857057e-12],[1.1483421e-11],[1.687106e-11],[2.4689449e-11],[3.5989717e-11],[5.2256893e-11],[7.5580013e-11],[1.0888516e-10],[1.562532e-10],[2.2335093e-10],[3.1801338e-10],[4.5102641e-10],[6.3717349e-10],[8.9662895e-10],[1.2568035e-09],[1.7547763e-09],[2.4404852e-09],[3.380889e-09],[4.6653717e-09],[6.4127235e-09],[8.7801118e-09],[1.1974551e-08],[1.6267487e-08],[2.2013251e-08],[2.9672279e-08],[3.9840164e-08],[5.3283826e-08],[7.098627e-08],[9.4201683e-08],[1.2452285e-07],[1.6396316e-07],[2.1505583e-07],[2.8097313e-07],[3.656689e-07],[4.7404765e-07],[6.1216418e-07],[7.874574e-07],[1.0090226e-06],[1.2879259e-06],[1.6375658e-06],[2.0740841e-06],[2.6168308e-06],[3.2888861e-06],[4.1176391e-06],[5.1354273e-06],[6.380234e-06],[7.896442e-06],[9.7356402e-06],[1.1957476e-05],[1.4630547e-05],[1.7833317e-05],[2.1655046e-05],[2.6196719e-05],[3.1571953e-05],[3.7907857e-05],[4.5345839e-05],[5.4042318e-05],[6.4169327e-05],[7.5914994e-05],[8.9483872e-05],[0.0001050971],[0.00012299241],[0.00014342395],[0.00016666197],[0.00019299234],[0.00022271602],[0.00025614847],[0.00029361906],[0.00033547068],[0.00038205954],[0.00043375533],[0.000490942],[0.00055401916],[0.00062340445],[0.00069953694],[0.00078288198],[0.00087393747],[0.000973242],[0.0010813849],[0.0011990183],[0.0013268721],[0.0014657702],[0.0016166506],[0.0017805868],[0.0019588122],[0.0021527463],[0.002364023],[0.0025945202],[0.0028463903],[0.003122091],[0.0034244152],[0.0037565194],[0.0041219498],[0.0045246634],[0.0049690449],[0.005459916],[0.0060025368],[0.006602597],[0.0072661956],[0.0079998083],[0.0088102393],[0.0097045585],[0.010690022],[0.011773975],[0.012963736],[0.014266468],[0.015689026],[0.017237795],[0.018918514],[0.020736082],[0.022694365],[0.024795993],[0.027042161],[0.029432429],[0.031964541],[0.03463425],[0.037435175],[0.04035868],[0.043393786],[0.046527127],[0.049742942],[0.053023125],[0.056347317],[0.059693057],[0.063035978],[0.066350068],[0.069607968],[0.072781325],[0.075841183],[0.078758403],[0.08150412],[0.084050201],[0.086369718],[0.08843742],[0.090230175],[0.091727396],[0.092911426],[0.093767874],[0.094285895],[0.094458404],[0.09428222],[0.093758142],[0.092890937],[0.091689265],[0.090165517],[0.088335593],[0.086218612],[0.083836561],[0.081213909],[0.078377164],[0.075354423],[0.072174895],[0.068868417],[0.065464989],[0.061994315],[0.058485373],[0.054966023],[0.051462653],[0.047999879],[0.044600284],[0.041284228],[0.038069695],[0.034972208],[0.032004789],[0.029177968],[0.026499844],[0.023976171],[0.021610496],[0.019404313],[0.017357242],[0.015467226],[0.013730735],[0.01214298],[0.010698118],[0.0093894619],[0.0082096721],[0.0071509439],[0.0062051757],[0.0053641223],[0.0046195313],[0.0039632606],[0.0033873778],[0.0028842429],[0.0024465726],[0.00206749],[0.0017405588],[0.0014598053],[0.0012197285],[0.0010153],[0.00084195655],[0.00069558483],[0.00057250165],[0.00046942985],[0.00038347151],[0.00031207938],[0.00025302752],[0.00020438184],[0.00016447121],[0.00013185956],[0.00010531949],[8.3807395e-05],[6.6440616e-05],[5.2476373e-05],[4.1292768e-05],[3.2371689e-05],[2.5283609e-05],[1.9674162e-05],[1.5252396e-05],[1.1780551e-05],[9.065255e-06],[6.9499612e-06],[5.3085237e-06],[4.0397568e-06],[3.0628647e-06],[2.3136226e-06],[1.7412068e-06],[1.3055763e-06],[9.7532463e-07],[7.2592547e-07],[5.3830903e-07],[3.9771221e-07],[2.9275519e-07],[2.1470367e-07],[1.5688241e-07],[1.1421145e-07],[8.2841185e-08],[5.9866628e-08],[4.3104808e-08],[3.0922141e-08],[2.2101247e-08],[1.5738663e-08],[1.1166655e-08],[7.8937403e-09],[5.5596491e-09],[3.9013682e-09],[2.7276691e-09],[1.9000794e-09],[1.3187339e-09],[9.1190165e-10],[6.2826692e-10],[4.3126644e-10],[2.9495263e-10],[2.0098509e-10],[1.3645207e-10],[9.2299812e-11],[6.2205042e-11],[4.1768996e-11],[2.7943817e-11],[1.8626025e-11],[1.2369634e-11],[8.1845561e-12],[5.3955337e-12],[3.5438393e-12],[2.3190666e-12],[1.5119982e-12],[9.8217159e-13],[6.3565382e-13],[4.0987391e-13],[2.6331481e-13],[1.685368e-13],[1.0747506e-13],[6.8283077e-14],[4.32225e-14],[2.725819e-14],[1.7126688e-14],[1.0721063e-14],[6.6863527e-15],[4.1545739e-15],[2.5718657e-15],[1.5861837e-15],[9.7463231e-16],[5.9663544e-16],[3.6387896e-16],[2.2109719e-16],[1.3384022e-16],[8.0717154e-17],[4.8497526e-17],[2.9029968e-17],[1.7311929e-17],[1.0285253e-17],[6.0877075e-18],[3.5897201e-18],[2.1087937e-18],[1.2341643e-18],[7.1957482e-19],[4.1796673e-19],[2.4186273e-19],[1.3943006e-19],[8.0076078e-20],[4.581491e-20],[2.6113632e-20],[1.482801e-20],[8.3878829e-21],[4.7268796e-21],[2.6536778e-21],[1.4841305e-21],[8.2688497e-22],[4.5895066e-22],[2.5376612e-22],[1.397806e-22],[7.6701635e-23],[4.1928151e-23],[2.2832269e-23],[1.2386072e-23],[6.6935771e-24],[3.6034792e-24],[1.9325192e-24],[1.0324348e-24],[5.4946184e-25],[2.913047e-25],[1.5384789e-25],[8.0941042e-26],[4.2420744e-26],[2.2147215e-26],[1.1518354e-26],[5.9674844e-27],[3.0797887e-27],[1.5833555e-27],[8.1089207e-28],[4.1368898e-28],[2.1023759e-28],[1.0643183e-28],[5.3673097e-29],[2.6962804e-29],[1.3492611e-29],[6.7258752e-30],[3.3398177e-30],[1.6520273e-30],[8.1401337e-31],[3.9954441e-31],[1.9535169e-31],[9.5145287e-32],[4.6160955e-32],[2.2308949e-32],[1.0739886e-32],[5.1503409e-33],[2.4602965e-33],[1.1707215e-33],[5.5492445e-34],[2.6201599e-34],[1.2323524e-34],[5.7737069e-35],[2.6945534e-35],[1.2526527e-35],[5.8007738e-36],[2.6757906e-36],[1.229501e-36],[5.6275033e-37],[2.5657385e-37],[1.1652481e-37],[5.2714907e-38],[2.3755114e-38],[1.0663238e-38],[4.7679209e-39],[2.1236191e-39],[9.4217489e-40],[4.1638342e-40],[1.8329982e-40],[8.0377974e-41],[3.5108979e-41],[1.5275843e-41],[6.6206062e-42],[2.8582199e-42],[1.2291322e-42],[5.2650965e-43],[2.2465633e-43],[9.548504e-44],[4.0425567e-44],[1.7048289e-44],[7.1615849e-45],[2.9966842e-45],[1.2490392e-45],[5.1857818e-46],[2.1446444e-46],[8.8348472e-47],[3.6253114e-47],[1.4818148e-47],[6.0331584e-48],[2.4467947e-48],[9.884443e-49],[3.9774851e-49],[1.5942869e-49],[6.3654014e-50],[2.5315492e-50],[1.0028779e-50],[3.9574076e-51],[1.5555155e-51],[6.0902995e-52],[2.3752185e-52],[9.2271799e-53]],"fill":"tonexty","fillcolor":"rgba(39.57143, 126.28571, 142.0, 0.65)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"About Even","x":[-12.5,-12.249499,-11.998998,-11.748497,-11.497996,-11.247495,-10.996994,-10.746493,-10.495992,-10.245491,-9.99499,-9.744489,-9.493988,-9.243487,-8.992986,-8.742485,-8.491984,-8.241483,-7.990982,-7.740481,-7.48998,-7.239479,-6.988978,-6.738477,-6.487976,-6.2374749,-5.9869739,-5.7364729,-5.4859719,-5.2354709,-4.9849699,-4.7344689,-4.4839679,-4.2334669,-3.9829659,-3.7324649,-3.4819639,-3.2314629,-2.9809619,-2.7304609,-2.4799599,-2.2294589,-1.9789579,-1.7284569,-1.4779559,-1.2274549,-0.97695391,-0.72645291,-0.4759519,-0.2254509,0.0250501,0.2755511,0.5260521,0.77655311,1.0270541,1.2775551,1.5280561,1.7785571,2.0290581,2.2795591,2.5300601,2.7805611,3.0310621,3.2815631,3.5320641,3.7825651,4.0330661,4.2835671,4.5340681,4.7845691,5.0350701,5.2855711,5.5360721,5.7865731,6.0370741,6.2875752,6.5380762,6.7885772,7.0390782,7.2895792,7.5400802,7.7905812,8.0410822,8.2915832,8.5420842,8.7925852,9.0430862,9.2935872,9.5440882,9.7945892,10.04509,10.295591,10.546092,10.796593,11.047094,11.297595,11.548096,11.798597,12.049098,12.299599,12.5501,12.800601,13.051102,13.301603,13.552104,13.802605,14.053106,14.303607,14.554108,14.804609,15.05511,15.305611,15.556112,15.806613,16.057114,16.307615,16.558116,16.808617,17.059118,17.309619,17.56012,17.810621,18.061122,18.311623,18.562124,18.812625,19.063126,19.313627,19.564128,19.814629,20.06513,20.315631,20.566132,20.816633,21.067134,21.317635,21.568136,21.818637,22.069138,22.319639,22.57014,22.820641,23.071142,23.321643,23.572144,23.822645,24.073146,24.323647,24.574148,24.824649,25.07515,25.325651,25.576152,25.826653,26.077154,26.327655,26.578156,26.828657,27.079158,27.329659,27.58016,27.830661,28.081162,28.331663,28.582164,28.832665,29.083166,29.333667,29.584168,29.834669,30.08517,30.335671,30.586172,30.836673,31.087174,31.337675,31.588176,31.838677,32.089178,32.339679,32.59018,32.840681,33.091182,33.341683,33.592184,33.842685,34.093186,34.343687,34.594188,34.844689,35.09519,35.345691,35.596192,35.846693,36.097194,36.347695,36.598196,36.848697,37.099198,37.349699,37.6002,37.850701,38.101202,38.351703,38.602204,38.852705,39.103206,39.353707,39.604208,39.854709,40.10521,40.355711,40.606212,40.856713,41.107214,41.357715,41.608216,41.858717,42.109218,42.359719,42.61022,42.860721,43.111222,43.361723,43.612224,43.862725,44.113226,44.363727,44.614228,44.864729,45.11523,45.365731,45.616232,45.866733,46.117234,46.367735,46.618236,46.868737,47.119238,47.369739,47.62024,47.870741,48.121242,48.371743,48.622244,48.872745,49.123246,49.373747,49.624248,49.874749,50.125251,50.375752,50.626253,50.876754,51.127255,51.377756,51.628257,51.878758,52.129259,52.37976,52.630261,52.880762,53.131263,53.381764,53.632265,53.882766,54.133267,54.383768,54.634269,54.88477,55.135271,55.385772,55.636273,55.886774,56.137275,56.387776,56.638277,56.888778,57.139279,57.38978,57.640281,57.890782,58.141283,58.391784,58.642285,58.892786,59.143287,59.393788,59.644289,59.89479,60.145291,60.395792,60.646293,60.896794,61.147295,61.397796,61.648297,61.898798,62.149299,62.3998,62.650301,62.900802,63.151303,63.401804,63.652305,63.902806,64.153307,64.403808,64.654309,64.90481,65.155311,65.405812,65.656313,65.906814,66.157315,66.407816,66.658317,66.908818,67.159319,67.40982,67.660321,67.910822,68.161323,68.411824,68.662325,68.912826,69.163327,69.413828,69.664329,69.91483,70.165331,70.415832,70.666333,70.916834,71.167335,71.417836,71.668337,71.918838,72.169339,72.41984,72.670341,72.920842,73.171343,73.421844,73.672345,73.922846,74.173347,74.423848,74.674349,74.92485,75.175351,75.425852,75.676353,75.926854,76.177355,76.427856,76.678357,76.928858,77.179359,77.42986,77.680361,77.930862,78.181363,78.431864,78.682365,78.932866,79.183367,79.433868,79.684369,79.93487,80.185371,80.435872,80.686373,80.936874,81.187375,81.437876,81.688377,81.938878,82.189379,82.43988,82.690381,82.940882,83.191383,83.441884,83.692385,83.942886,84.193387,84.443888,84.694389,84.94489,85.195391,85.445892,85.696393,85.946894,86.197395,86.447896,86.698397,86.948898,87.199399,87.4499,87.700401,87.950902,88.201403,88.451904,88.702405,88.952906,89.203407,89.453908,89.704409,89.95491,90.205411,90.455912,90.706413,90.956914,91.207415,91.457916,91.708417,91.958918,92.209419,92.45992,92.710421,92.960922,93.211423,93.461924,93.712425,93.962926,94.213427,94.463928,94.714429,94.96493,95.215431,95.465932,95.716433,95.966934,96.217435,96.467936,96.718437,96.968938,97.219439,97.46994,97.720441,97.970942,98.221443,98.471944,98.722445,98.972946,99.223447,99.473948,99.724449,99.97495,100.22545,100.47595,100.72645,100.97695,101.22745,101.47796,101.72846,101.97896,102.22946,102.47996,102.73046,102.98096,103.23146,103.48196,103.73246,103.98297,104.23347,104.48397,104.73447,104.98497,105.23547,105.48597,105.73647,105.98697,106.23747,106.48798,106.73848,106.98898,107.23948,107.48998,107.74048,107.99098,108.24148,108.49198,108.74248,108.99299,109.24349,109.49399,109.74449,109.99499,110.24549,110.49599,110.74649,110.99699,111.24749,111.498,111.7485,111.999,112.2495,112.5],"y":[-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990755,-0.20990755,-0.20990755,-0.20990754,-0.20990753,-0.20990752,-0.20990751,-0.20990749,-0.20990747,-0.20990744,-0.2099074,-0.20990735,-0.20990728,-0.2099072,-0.20990709,-0.20990695,-0.20990678,-0.20990655,-0.20990628,-0.20990593,-0.20990549,-0.20990495,-0.20990427,-0.20990345,-0.20990243,-0.20990118,-0.20989967,-0.20989783,-0.20989561,-0.20989293,-0.20988973,-0.20988591,-0.20988137,-0.20987599,-0.20986966,-0.20986222,-0.20985352,-0.20984339,-0.20983165,-0.20981808,-0.20980247,-0.20978457,-0.20976414,-0.2097409,-0.20971457,-0.20968485,-0.20965142,-0.20961394,-0.20957209,-0.2095255,-0.20947381,-0.20941662,-0.20935354,-0.20928416,-0.20920803,-0.20912468,-0.20903363,-0.20893432,-0.20882618,-0.20870855,-0.20858069,-0.20844179,-0.20829091,-0.20812698,-0.20794875,-0.20775482,-0.20754354,-0.20731304,-0.20706117,-0.20678547,-0.20648315,-0.20615104,-0.20578561,-0.2053829,-0.20493852,-0.20444765,-0.20390503,-0.20330497,-0.20264137,-0.20190776,-0.20109732,-0.20020301,-0.19921754,-0.19813359,-0.19694383,-0.1956411,-0.19421854,-0.19266977,-0.19098905,-0.18917148,-0.1872132,-0.18511157,-0.1828654,-0.18047513,-0.17794302,-0.17527331,-0.17247239,-0.16954888,-0.16651378,-0.16338044,-0.16016462,-0.15688444,-0.15356025,-0.15021451,-0.14687159,-0.1435575,-0.1402996,-0.13712624,-0.13406638,-0.13114916,-0.12840344,-0.12585736,-0.12353785,-0.12147014,-0.11967739,-0.11818017,-0.11699614,-0.11613969,-0.11562167,-0.11544916,-0.11562534,-0.11614942,-0.11701663,-0.1182183,-0.11974205,-0.12157197,-0.12368895,-0.126071,-0.12869366,-0.1315304,-0.13455314,-0.13773267,-0.14103915,-0.14444257,-0.14791325,-0.15142219,-0.15494154,-0.15844491,-0.16190769,-0.16530728,-0.16862334,-0.17183787,-0.17493536,-0.17790277,-0.1807296,-0.18340772,-0.18593139,-0.18829707,-0.19050325,-0.19255032,-0.19444034,-0.19617683,-0.19776458,-0.19920945,-0.2005181,-0.20169789,-0.20275662,-0.20370239,-0.20454344,-0.20528803,-0.2059443,-0.20652019,-0.20702332,-0.20746099,-0.20784007,-0.20816701,-0.20844776,-0.20868784,-0.20889226,-0.20906561,-0.20921198,-0.20933506,-0.20943813,-0.20952409,-0.20959548,-0.20965454,-0.20970318,-0.20974309,-0.2097757,-0.20980224,-0.20982376,-0.20984112,-0.20985509,-0.20986627,-0.20987519,-0.20988228,-0.20988789,-0.20989231,-0.20989578,-0.2098985,-0.20990061,-0.20990226,-0.20990352,-0.2099045,-0.20990525,-0.20990582,-0.20990626,-0.20990659,-0.20990684,-0.20990703,-0.20990717,-0.20990727,-0.20990735,-0.20990741,-0.20990745,-0.20990748,-0.2099075,-0.20990752,-0.20990753,-0.20990754,-0.20990755,-0.20990755,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756,-0.20990756],"zorder":4,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-12.5,-12.249499,-11.998998,-11.748497,-11.497996,-11.247495,-10.996994,-10.746493,-10.495992,-10.245491,-9.99499,-9.744489,-9.493988,-9.243487,-8.992986,-8.742485,-8.491984,-8.241483,-7.990982,-7.740481,-7.48998,-7.239479,-6.988978,-6.738477,-6.487976,-6.2374749,-5.9869739,-5.7364729,-5.4859719,-5.2354709,-4.9849699,-4.7344689,-4.4839679,-4.2334669,-3.9829659,-3.7324649,-3.4819639,-3.2314629,-2.9809619,-2.7304609,-2.4799599,-2.2294589,-1.9789579,-1.7284569,-1.4779559,-1.2274549,-0.97695391,-0.72645291,-0.4759519,-0.2254509,0.0250501,0.2755511,0.5260521,0.77655311,1.0270541,1.2775551,1.5280561,1.7785571,2.0290581,2.2795591,2.5300601,2.7805611,3.0310621,3.2815631,3.5320641,3.7825651,4.0330661,4.2835671,4.5340681,4.7845691,5.0350701,5.2855711,5.5360721,5.7865731,6.0370741,6.2875752,6.5380762,6.7885772,7.0390782,7.2895792,7.5400802,7.7905812,8.0410822,8.2915832,8.5420842,8.7925852,9.0430862,9.2935872,9.5440882,9.7945892,10.04509,10.295591,10.546092,10.796593,11.047094,11.297595,11.548096,11.798597,12.049098,12.299599,12.5501,12.800601,13.051102,13.301603,13.552104,13.802605,14.053106,14.303607,14.554108,14.804609,15.05511,15.305611,15.556112,15.806613,16.057114,16.307615,16.558116,16.808617,17.059118,17.309619,17.56012,17.810621,18.061122,18.311623,18.562124,18.812625,19.063126,19.313627,19.564128,19.814629,20.06513,20.315631,20.566132,20.816633,21.067134,21.317635,21.568136,21.818637,22.069138,22.319639,22.57014,22.820641,23.071142,23.321643,23.572144,23.822645,24.073146,24.323647,24.574148,24.824649,25.07515,25.325651,25.576152,25.826653,26.077154,26.327655,26.578156,26.828657,27.079158,27.329659,27.58016,27.830661,28.081162,28.331663,28.582164,28.832665,29.083166,29.333667,29.584168,29.834669,30.08517,30.335671,30.586172,30.836673,31.087174,31.337675,31.588176,31.838677,32.089178,32.339679,32.59018,32.840681,33.091182,33.341683,33.592184,33.842685,34.093186,34.343687,34.594188,34.844689,35.09519,35.345691,35.596192,35.846693,36.097194,36.347695,36.598196,36.848697,37.099198,37.349699,37.6002,37.850701,38.101202,38.351703,38.602204,38.852705,39.103206,39.353707,39.604208,39.854709,40.10521,40.355711,40.606212,40.856713,41.107214,41.357715,41.608216,41.858717,42.109218,42.359719,42.61022,42.860721,43.111222,43.361723,43.612224,43.862725,44.113226,44.363727,44.614228,44.864729,45.11523,45.365731,45.616232,45.866733,46.117234,46.367735,46.618236,46.868737,47.119238,47.369739,47.62024,47.870741,48.121242,48.371743,48.622244,48.872745,49.123246,49.373747,49.624248,49.874749,50.125251,50.375752,50.626253,50.876754,51.127255,51.377756,51.628257,51.878758,52.129259,52.37976,52.630261,52.880762,53.131263,53.381764,53.632265,53.882766,54.133267,54.383768,54.634269,54.88477,55.135271,55.385772,55.636273,55.886774,56.137275,56.387776,56.638277,56.888778,57.139279,57.38978,57.640281,57.890782,58.141283,58.391784,58.642285,58.892786,59.143287,59.393788,59.644289,59.89479,60.145291,60.395792,60.646293,60.896794,61.147295,61.397796,61.648297,61.898798,62.149299,62.3998,62.650301,62.900802,63.151303,63.401804,63.652305,63.902806,64.153307,64.403808,64.654309,64.90481,65.155311,65.405812,65.656313,65.906814,66.157315,66.407816,66.658317,66.908818,67.159319,67.40982,67.660321,67.910822,68.161323,68.411824,68.662325,68.912826,69.163327,69.413828,69.664329,69.91483,70.165331,70.415832,70.666333,70.916834,71.167335,71.417836,71.668337,71.918838,72.169339,72.41984,72.670341,72.920842,73.171343,73.421844,73.672345,73.922846,74.173347,74.423848,74.674349,74.92485,75.175351,75.425852,75.676353,75.926854,76.177355,76.427856,76.678357,76.928858,77.179359,77.42986,77.680361,77.930862,78.181363,78.431864,78.682365,78.932866,79.183367,79.433868,79.684369,79.93487,80.185371,80.435872,80.686373,80.936874,81.187375,81.437876,81.688377,81.938878,82.189379,82.43988,82.690381,82.940882,83.191383,83.441884,83.692385,83.942886,84.193387,84.443888,84.694389,84.94489,85.195391,85.445892,85.696393,85.946894,86.197395,86.447896,86.698397,86.948898,87.199399,87.4499,87.700401,87.950902,88.201403,88.451904,88.702405,88.952906,89.203407,89.453908,89.704409,89.95491,90.205411,90.455912,90.706413,90.956914,91.207415,91.457916,91.708417,91.958918,92.209419,92.45992,92.710421,92.960922,93.211423,93.461924,93.712425,93.962926,94.213427,94.463928,94.714429,94.96493,95.215431,95.465932,95.716433,95.966934,96.217435,96.467936,96.718437,96.968938,97.219439,97.46994,97.720441,97.970942,98.221443,98.471944,98.722445,98.972946,99.223447,99.473948,99.724449,99.97495,100.22545,100.47595,100.72645,100.97695,101.22745,101.47796,101.72846,101.97896,102.22946,102.47996,102.73046,102.98096,103.23146,103.48196,103.73246,103.98297,104.23347,104.48397,104.73447,104.98497,105.23547,105.48597,105.73647,105.98697,106.23747,106.48798,106.73848,106.98898,107.23948,107.48998,107.74048,107.99098,108.24148,108.49198,108.74248,108.99299,109.24349,109.49399,109.74449,109.99499,110.24549,110.49599,110.74649,110.99699,111.24749,111.498,111.7485,111.999,112.2495,112.5],"y":[-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445],"zorder":5,"type":"scatter"},{"customdata":[[4.4096298e-06],[5.5976648e-06],[7.0810128e-06],[8.9263053e-06],[1.1213471e-05],[1.4037975e-05],[1.7513342e-05],[2.1773977e-05],[2.6978308e-05],[3.3312241e-05],[4.0992946e-05],[5.0272961e-05],[6.1444602e-05],[7.4844652e-05],[9.0859295e-05],[0.00010992925],[0.00013255503],[0.00015930224],[0.00019080684],[0.00022778022],[0.000271014],[0.0003213843],[0.00037985552],[0.00044748314],[0.00052541565],[0.00061489518],[0.00071725674],[0.00083392584],[0.00096641424],[0.0011163137],[0.0012852877],[0.0014750603],[0.0016874033],[0.0019241207],[0.0021870302],[0.002477943],[0.0027986408],[0.0031508512],[0.003536221],[0.003956288],[0.0044124521],[0.0049059456],[0.0054378036],[0.0060088352],[0.0066195955],[0.0072703604],[0.0079611028],[0.0086914731],[0.0094607829],[0.010267993],[0.011111708],[0.011990171],[0.012901273],[0.013842557],[0.014811236],[0.015804213],[0.01681811],[0.017849291],[0.018893908],[0.01994793],[0.021007195],[0.022067445],[0.02312438],[0.024173701],[0.025211157],[0.026232594],[0.027233997],[0.028211533],[0.02916159],[0.030080816],[0.030966151],[0.031814855],[0.032624535],[0.033393165],[0.034119106],[0.034801116],[0.035438358],[0.036030412],[0.036577269],[0.037079331],[0.037537404],[0.037952689],[0.038326766],[0.038661576],[0.038959398],[0.039222823],[0.039454721],[0.039658208],[0.039836606],[0.039993396],[0.040132175],[0.040256604],[0.040370349],[0.04047703],[0.040580161],[0.040683088],[0.040788932],[0.040900532],[0.041020385],[0.041150597],[0.041292833],[0.041448272],[0.041617578],[0.041800864],[0.041997677],[0.042206986],[0.042427181],[0.042656086],[0.042890975],[0.043128605],[0.043365256],[0.043596783],[0.043818673],[0.044026117],[0.044214081],[0.044377389],[0.04451081],[0.044609142],[0.044667305],[0.044680431],[0.044643948],[0.044553666],[0.044405853],[0.044197305],[0.043925407],[0.043588187],[0.043184351],[0.042713313],[0.042175211],[0.041570903],[0.04090196],[0.040170639],[0.039379843],[0.038533075],[0.037634377],[0.036688263],[0.035699641],[0.034673735],[0.033616],[0.032532034],[0.031427499],[0.03030803],[0.029179165],[0.028046268],[0.026914464],[0.025788584],[0.024673114],[0.023572162],[0.022489426],[0.021428178],[0.020391252],[0.01938105],[0.018399547],[0.017448308],[0.016528511],[0.015640974],[0.014786188],[0.013964349],[0.013175395],[0.012419044],[0.011694828],[0.011002129],[0.01034021],[0.0097082466],[0.0091053554],[0.0085306148],[0.0079830874],[0.0074618361],[0.0069659373],[0.006494492],[0.0060466316],[0.0056215236],[0.0052183725],[0.0048364209],[0.004474947],[0.0041332624],[0.0038107078],[0.003506649],[0.0032204722],[0.0029515791],[0.0026993826],[0.0024633024],[0.002242762],[0.0020371847],[0.0018459923],[0.0016686027],[0.0015044294],[0.0013528812],[0.0012133622],[0.0010852737],[0.00096801469],[0.00086098434],[0.00076358409],[0.00067522006],[0.00059530569],[0.00052326438],[0.00045853215],[0.00040056009],[0.00034881682],[0.00030279054],[0.000261991],[0.00022595104],[0.00019422789],[0.00016640415],[0.00014208842],[0.00012091565],[0.00010254711],[8.6670206e-05],[7.299796e-05],[6.1268264e-05],[5.1242978e-05],[4.2706851e-05],[3.5466315e-05],[2.9348187e-05],[2.4198308e-05],[1.988014e-05],[1.6273359e-05],[1.3272455e-05],[1.0785368e-05],[8.732167e-06],[7.0437905e-06],[5.6608612e-06],[4.5325738e-06],[3.6156676e-06],[2.8734822e-06],[2.2750995e-06],[1.7945676e-06],[1.4102065e-06],[1.1039903e-06],[8.6100126e-07],[6.6895188e-07],[5.177681e-07],[3.9922889e-07],[3.0665637e-07],[2.3465114e-07],[1.7886748e-07],[1.3582377e-07],[1.0274329e-07],[7.7421647e-08],[5.8116637e-08],[4.3457605e-08],[3.2371032e-08],[2.4019891e-08],[1.7754467e-08],[1.3072688e-08],[9.5882937e-09],[7.0054435e-09],[5.0985483e-09],[3.6963481e-09],[2.669399e-09],[1.9202924e-09],[1.3760477e-09],[9.8222496e-10],[6.9839141e-10],[4.9464821e-10],[3.4898187e-10],[2.4525474e-10],[1.7168778e-10],[1.1972041e-10],[8.3157835e-11],[5.7536546e-11],[3.9654227e-11],[2.7223238e-11],[1.8616334e-11],[1.2680963e-11],[8.6042606e-12],[5.815375e-12],[3.9151138e-12],[2.625507e-12],[1.753815e-12],[1.1669598e-12],[7.7344464e-13],[5.1062669e-13],[3.3579829e-13],[2.1996516e-13],[1.4352565e-13],[9.3283577e-14],[6.0392174e-14],[3.8945364e-14],[2.5016717e-14],[1.6006787e-14],[1.0201808e-14],[6.4766303e-15],[4.0956225e-15],[2.5798203e-15],[1.6186673e-15],[1.0116359e-15],[6.2978056e-16],[3.9052833e-16],[2.412204e-16],[1.4841357e-16],[9.0955972e-17],[5.552477e-17],[3.3762936e-17],[2.0449915e-17],[1.2337886e-17],[7.4146096e-18],[4.4384909e-18],[2.6465842e-18],[1.5719948e-18],[9.3018047e-19],[5.4845684e-19],[3.2248229e-19],[1.8951846e-19],[1.1208473e-19],[6.8034834e-20],[4.4603237e-20],[3.4925617e-20],[3.6146648e-20],[4.8627075e-20],[7.6044008e-20],[1.2641051e-19],[2.1427908e-19],[3.6469568e-19],[6.1990894e-19],[1.0505132e-18],[1.7737685e-18],[2.9835287e-18],[4.9988924e-18],[8.342929e-18],[1.3869522e-17],[2.2966862e-17],[3.7882508e-17],[6.2240427e-17],[1.0185988e-16],[1.6604679e-16],[2.6962151e-16],[4.360892e-16],[7.0257525e-16],[1.1274755e-15],[1.8022626e-15],[2.8696293e-15],[4.5512452e-15],[7.1900418e-15],[1.1314342e-14],[1.7734704e-14],[2.7689513e-14],[4.3062915e-14],[6.6709587e-14],[1.029366e-13],[1.5821516e-13],[2.4222732e-13],[3.6939829e-13],[5.6112984e-13],[8.4904084e-13],[1.279648e-12],[1.9210966e-12],[2.8727948e-12],[4.2791425e-12],[6.3490043e-12],[9.3832053e-12],[1.3813176e-11],[2.0255017e-11],[2.9584784e-11],[4.3042841e-11],[6.2377819e-11],[9.0044289e-11],[1.294729e-10],[1.8543783e-10],[2.6455411e-10],[3.759477e-10],[5.3215368e-10],[7.5031467e-10],[1.0537717e-09],[1.474166e-09],[2.054201e-09],[2.8512562e-09],[3.9420875e-09],[5.4289147e-09],[7.4472599e-09],[1.0175991e-08],[1.3850124e-08],[1.877705e-08],[2.5356994e-08],[3.410868e-08],[4.5701324e-08],[6.0994319e-08],[8.1086158e-08],[1.0737441e-07],[1.416288e-07],[1.8607975e-07],[2.435249e-07],[3.174566e-07],[4.1221338e-07],[5.3315875e-07],[6.8689084e-07],[8.8148644e-07],[1.126783e-06],[1.4347018e-06],[1.8196161e-06],[2.2987651e-06],[2.8927185e-06],[3.6258887e-06],[4.5270938e-06],[5.6301668e-06],[6.9746071e-06],[8.6062701e-06],[1.0578082e-05],[1.2950771e-05],[1.5793596e-05],[1.9185061e-05],[2.3213576e-05],[2.7978064e-05],[3.3588453e-05],[4.0166045e-05],[4.7843712e-05],[5.6765884e-05],[6.7088281e-05],[7.8977368e-05],[9.2609467e-05],[0.0001081695],[0.00012584936],[0.00014584581],[0.00016835794],[0.00019358423],[0.00022171909],[0.00025294897],[0.00028744813],[0.00032537396],[0.00036686209],[0.00041202123],[0.000460928],[0.00051362165],[0.000570099],[0.00063030966],[0.00069415169],[0.00076146779],[0.00083204232],[0.0009055992],[0.00098180078],[0.001060248],[0.0011404815],[0.0012219848],[0.0013041876],[0.0013864718],[0.0014681782],[0.0015486142],[0.0016270632],[0.0017027949],[0.0017750762],[0.0018431827],[0.0019064108],[0.0019640898],[0.0020155934],[0.0020603511],[0.0020978589],[0.0021276884],[0.0021494955],[0.0021630261],[0.0021681221],[0.0021647234],[0.0021528702],[0.0021327011],[0.0021044513],[0.0020684475],[0.0020251017],[0.0019749037],[0.0019184113],[0.0018562406],[0.0017890544],[0.0017175506],[0.0016424504],[0.0015644862],[0.0014843897],[0.0014028811],[0.0013206584],[0.0012383885],[0.0011566981],[0.0010761675],[0.00099732441],[0.00092063983],[0.00084652502],[0.00077532997],[0.00070734303],[0.00064279177],[0.00058184496],[0.00052461532],[0.00047116324],[0.00042150095],[0.00037559729],[0.00033338271],[0.00029475448],[0.00025958195],[0.00022771168],[0.00019897241],[0.00017317976],[0.0001501406],[0.00012965697],[0.00011152965],[9.5561187e-05],[8.1558544e-05],[6.9335256e-05],[5.8713168e-05],[4.9523763e-05],[4.1609116e-05],[3.482251e-05],[2.9028754e-05],[2.410424e-05],[1.9936789e-05],[1.6425315e-05]],"fill":"tonexty","fillcolor":"rgba(54.57143, 90.71429, 139.85714, 0.65)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Little Chance","x":[-12.5,-12.249499,-11.998998,-11.748497,-11.497996,-11.247495,-10.996994,-10.746493,-10.495992,-10.245491,-9.99499,-9.744489,-9.493988,-9.243487,-8.992986,-8.742485,-8.491984,-8.241483,-7.990982,-7.740481,-7.48998,-7.239479,-6.988978,-6.738477,-6.487976,-6.2374749,-5.9869739,-5.7364729,-5.4859719,-5.2354709,-4.9849699,-4.7344689,-4.4839679,-4.2334669,-3.9829659,-3.7324649,-3.4819639,-3.2314629,-2.9809619,-2.7304609,-2.4799599,-2.2294589,-1.9789579,-1.7284569,-1.4779559,-1.2274549,-0.97695391,-0.72645291,-0.4759519,-0.2254509,0.0250501,0.2755511,0.5260521,0.77655311,1.0270541,1.2775551,1.5280561,1.7785571,2.0290581,2.2795591,2.5300601,2.7805611,3.0310621,3.2815631,3.5320641,3.7825651,4.0330661,4.2835671,4.5340681,4.7845691,5.0350701,5.2855711,5.5360721,5.7865731,6.0370741,6.2875752,6.5380762,6.7885772,7.0390782,7.2895792,7.5400802,7.7905812,8.0410822,8.2915832,8.5420842,8.7925852,9.0430862,9.2935872,9.5440882,9.7945892,10.04509,10.295591,10.546092,10.796593,11.047094,11.297595,11.548096,11.798597,12.049098,12.299599,12.5501,12.800601,13.051102,13.301603,13.552104,13.802605,14.053106,14.303607,14.554108,14.804609,15.05511,15.305611,15.556112,15.806613,16.057114,16.307615,16.558116,16.808617,17.059118,17.309619,17.56012,17.810621,18.061122,18.311623,18.562124,18.812625,19.063126,19.313627,19.564128,19.814629,20.06513,20.315631,20.566132,20.816633,21.067134,21.317635,21.568136,21.818637,22.069138,22.319639,22.57014,22.820641,23.071142,23.321643,23.572144,23.822645,24.073146,24.323647,24.574148,24.824649,25.07515,25.325651,25.576152,25.826653,26.077154,26.327655,26.578156,26.828657,27.079158,27.329659,27.58016,27.830661,28.081162,28.331663,28.582164,28.832665,29.083166,29.333667,29.584168,29.834669,30.08517,30.335671,30.586172,30.836673,31.087174,31.337675,31.588176,31.838677,32.089178,32.339679,32.59018,32.840681,33.091182,33.341683,33.592184,33.842685,34.093186,34.343687,34.594188,34.844689,35.09519,35.345691,35.596192,35.846693,36.097194,36.347695,36.598196,36.848697,37.099198,37.349699,37.6002,37.850701,38.101202,38.351703,38.602204,38.852705,39.103206,39.353707,39.604208,39.854709,40.10521,40.355711,40.606212,40.856713,41.107214,41.357715,41.608216,41.858717,42.109218,42.359719,42.61022,42.860721,43.111222,43.361723,43.612224,43.862725,44.113226,44.363727,44.614228,44.864729,45.11523,45.365731,45.616232,45.866733,46.117234,46.367735,46.618236,46.868737,47.119238,47.369739,47.62024,47.870741,48.121242,48.371743,48.622244,48.872745,49.123246,49.373747,49.624248,49.874749,50.125251,50.375752,50.626253,50.876754,51.127255,51.377756,51.628257,51.878758,52.129259,52.37976,52.630261,52.880762,53.131263,53.381764,53.632265,53.882766,54.133267,54.383768,54.634269,54.88477,55.135271,55.385772,55.636273,55.886774,56.137275,56.387776,56.638277,56.888778,57.139279,57.38978,57.640281,57.890782,58.141283,58.391784,58.642285,58.892786,59.143287,59.393788,59.644289,59.89479,60.145291,60.395792,60.646293,60.896794,61.147295,61.397796,61.648297,61.898798,62.149299,62.3998,62.650301,62.900802,63.151303,63.401804,63.652305,63.902806,64.153307,64.403808,64.654309,64.90481,65.155311,65.405812,65.656313,65.906814,66.157315,66.407816,66.658317,66.908818,67.159319,67.40982,67.660321,67.910822,68.161323,68.411824,68.662325,68.912826,69.163327,69.413828,69.664329,69.91483,70.165331,70.415832,70.666333,70.916834,71.167335,71.417836,71.668337,71.918838,72.169339,72.41984,72.670341,72.920842,73.171343,73.421844,73.672345,73.922846,74.173347,74.423848,74.674349,74.92485,75.175351,75.425852,75.676353,75.926854,76.177355,76.427856,76.678357,76.928858,77.179359,77.42986,77.680361,77.930862,78.181363,78.431864,78.682365,78.932866,79.183367,79.433868,79.684369,79.93487,80.185371,80.435872,80.686373,80.936874,81.187375,81.437876,81.688377,81.938878,82.189379,82.43988,82.690381,82.940882,83.191383,83.441884,83.692385,83.942886,84.193387,84.443888,84.694389,84.94489,85.195391,85.445892,85.696393,85.946894,86.197395,86.447896,86.698397,86.948898,87.199399,87.4499,87.700401,87.950902,88.201403,88.451904,88.702405,88.952906,89.203407,89.453908,89.704409,89.95491,90.205411,90.455912,90.706413,90.956914,91.207415,91.457916,91.708417,91.958918,92.209419,92.45992,92.710421,92.960922,93.211423,93.461924,93.712425,93.962926,94.213427,94.463928,94.714429,94.96493,95.215431,95.465932,95.716433,95.966934,96.217435,96.467936,96.718437,96.968938,97.219439,97.46994,97.720441,97.970942,98.221443,98.471944,98.722445,98.972946,99.223447,99.473948,99.724449,99.97495,100.22545,100.47595,100.72645,100.97695,101.22745,101.47796,101.72846,101.97896,102.22946,102.47996,102.73046,102.98096,103.23146,103.48196,103.73246,103.98297,104.23347,104.48397,104.73447,104.98497,105.23547,105.48597,105.73647,105.98697,106.23747,106.48798,106.73848,106.98898,107.23948,107.48998,107.74048,107.99098,108.24148,108.49198,108.74248,108.99299,109.24349,109.49399,109.74449,109.99499,110.24549,110.49599,110.74649,110.99699,111.24749,111.498,111.7485,111.999,112.2495,112.5],"y":[-0.26238005,-0.26237886,-0.26237737,-0.26237553,-0.26237324,-0.26237042,-0.26236694,-0.26236268,-0.26235748,-0.26235114,-0.26234346,-0.26233418,-0.26232301,-0.26230961,-0.2622936,-0.26227453,-0.2622519,-0.26222515,-0.26219365,-0.26215667,-0.26211344,-0.26206307,-0.2620046,-0.26193697,-0.26185904,-0.26176956,-0.2616672,-0.26155053,-0.26141804,-0.26126814,-0.26109917,-0.26090939,-0.26069705,-0.26046033,-0.26019742,-0.25990651,-0.25958581,-0.2592336,-0.25884823,-0.25842817,-0.257972,-0.25747851,-0.25694665,-0.25637562,-0.25576486,-0.25511409,-0.25442335,-0.25369298,-0.25292367,-0.25211646,-0.25127275,-0.25039428,-0.24948318,-0.2485419,-0.24757322,-0.24658024,-0.24556635,-0.24453516,-0.24349055,-0.24243652,-0.24137726,-0.24031701,-0.23926007,-0.23821075,-0.2371733,-0.23615186,-0.23515046,-0.23417292,-0.23322286,-0.23230364,-0.2314183,-0.2305696,-0.22975992,-0.22899129,-0.22826535,-0.22758334,-0.2269461,-0.22635404,-0.22580719,-0.22530512,-0.22484705,-0.22443177,-0.22405769,-0.22372288,-0.22342506,-0.22316163,-0.22292973,-0.22272625,-0.22254785,-0.22239106,-0.22225228,-0.22212785,-0.22201411,-0.22190742,-0.22180429,-0.22170137,-0.22159552,-0.22148392,-0.22136407,-0.22123386,-0.22109162,-0.22093618,-0.22076688,-0.22058359,-0.22038678,-0.22017747,-0.21995727,-0.21972837,-0.21949348,-0.21925585,-0.2190192,-0.21878767,-0.21856578,-0.21835834,-0.21817037,-0.21800707,-0.21787364,-0.21777531,-0.21771715,-0.21770402,-0.21774051,-0.21783079,-0.2179786,-0.21818715,-0.21845905,-0.21879627,-0.2192001,-0.21967114,-0.22020924,-0.22081355,-0.22148249,-0.22221382,-0.22300461,-0.22385138,-0.22475008,-0.22569619,-0.22668481,-0.22771072,-0.22876846,-0.22985242,-0.23095696,-0.23207642,-0.23320529,-0.23433819,-0.23546999,-0.23659587,-0.23771134,-0.23881229,-0.23989503,-0.24095628,-0.2419932,-0.2430034,-0.24398491,-0.24493615,-0.24585594,-0.24674348,-0.24759827,-0.24842011,-0.24920906,-0.24996541,-0.25068963,-0.25138233,-0.25204425,-0.25267621,-0.2532791,-0.25385384,-0.25440137,-0.25492262,-0.25541852,-0.25588996,-0.25633782,-0.25676293,-0.25716608,-0.25754803,-0.25790951,-0.25825119,-0.25857375,-0.25887781,-0.25916398,-0.25943288,-0.25968507,-0.25992115,-0.26014169,-0.26034727,-0.26053846,-0.26071585,-0.26088003,-0.26103157,-0.26117109,-0.26129918,-0.26141644,-0.26152347,-0.26162087,-0.26170923,-0.26178915,-0.26186119,-0.26192592,-0.26198389,-0.26203564,-0.26208166,-0.26212246,-0.2621585,-0.26219023,-0.26221805,-0.26224237,-0.26226354,-0.26228191,-0.26229778,-0.26231146,-0.26232319,-0.26233321,-0.26234175,-0.26234899,-0.26235511,-0.26236026,-0.26236457,-0.26236818,-0.26237118,-0.26237367,-0.26237572,-0.26237741,-0.26237879,-0.26237992,-0.26238084,-0.26238158,-0.26238218,-0.26238266,-0.26238304,-0.26238335,-0.26238359,-0.26238379,-0.26238394,-0.26238406,-0.26238415,-0.26238422,-0.26238428,-0.26238432,-0.26238435,-0.26238438,-0.2623844,-0.26238441,-0.26238442,-0.26238443,-0.26238444,-0.26238444,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238445,-0.26238444,-0.26238444,-0.26238444,-0.26238443,-0.26238442,-0.26238441,-0.26238439,-0.26238437,-0.26238435,-0.26238431,-0.26238427,-0.26238421,-0.26238414,-0.26238404,-0.26238392,-0.26238377,-0.26238357,-0.26238333,-0.26238302,-0.26238264,-0.26238216,-0.26238156,-0.26238083,-0.26237993,-0.26237882,-0.26237748,-0.26237585,-0.26237388,-0.2623715,-0.26236866,-0.26236527,-0.26236124,-0.26235648,-0.26235087,-0.26234429,-0.26233661,-0.26232769,-0.26231737,-0.26230548,-0.26229185,-0.26227629,-0.26225861,-0.26223861,-0.2622161,-0.26219087,-0.26216274,-0.26213151,-0.26209701,-0.26205908,-0.26201759,-0.26197243,-0.26192353,-0.26187083,-0.26181436,-0.26175415,-0.2616903,-0.26162299,-0.26155241,-0.26147886,-0.26140265,-0.26132421,-0.26124397,-0.26116247,-0.26108027,-0.26099798,-0.26091628,-0.26083584,-0.26075739,-0.26068166,-0.26060938,-0.26054127,-0.26047804,-0.26042036,-0.26036886,-0.2603241,-0.2602866,-0.26025677,-0.26023496,-0.26022143,-0.26021633,-0.26021973,-0.26023158,-0.26025175,-0.26028,-0.26031601,-0.26035935,-0.26040955,-0.26046604,-0.26052821,-0.2605954,-0.2606669,-0.260742,-0.26081997,-0.26090007,-0.26098157,-0.2610638,-0.26114607,-0.26122776,-0.26130829,-0.26138713,-0.26146381,-0.26153793,-0.26160912,-0.26167711,-0.26174166,-0.26180261,-0.26185984,-0.26191329,-0.26196295,-0.26200886,-0.26205107,-0.2620897,-0.26212487,-0.26215674,-0.26218548,-0.26221127,-0.26223431,-0.2622548,-0.26227293,-0.26228889,-0.2623029,-0.26231512,-0.26232574,-0.26233493,-0.26234285,-0.26234963,-0.26235543,-0.26236035,-0.26236452,-0.26236803],"zorder":5,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-12.5,-12.249499,-11.998998,-11.748497,-11.497996,-11.247495,-10.996994,-10.746493,-10.495992,-10.245491,-9.99499,-9.744489,-9.493988,-9.243487,-8.992986,-8.742485,-8.491984,-8.241483,-7.990982,-7.740481,-7.48998,-7.239479,-6.988978,-6.738477,-6.487976,-6.2374749,-5.9869739,-5.7364729,-5.4859719,-5.2354709,-4.9849699,-4.7344689,-4.4839679,-4.2334669,-3.9829659,-3.7324649,-3.4819639,-3.2314629,-2.9809619,-2.7304609,-2.4799599,-2.2294589,-1.9789579,-1.7284569,-1.4779559,-1.2274549,-0.97695391,-0.72645291,-0.4759519,-0.2254509,0.0250501,0.2755511,0.5260521,0.77655311,1.0270541,1.2775551,1.5280561,1.7785571,2.0290581,2.2795591,2.5300601,2.7805611,3.0310621,3.2815631,3.5320641,3.7825651,4.0330661,4.2835671,4.5340681,4.7845691,5.0350701,5.2855711,5.5360721,5.7865731,6.0370741,6.2875752,6.5380762,6.7885772,7.0390782,7.2895792,7.5400802,7.7905812,8.0410822,8.2915832,8.5420842,8.7925852,9.0430862,9.2935872,9.5440882,9.7945892,10.04509,10.295591,10.546092,10.796593,11.047094,11.297595,11.548096,11.798597,12.049098,12.299599,12.5501,12.800601,13.051102,13.301603,13.552104,13.802605,14.053106,14.303607,14.554108,14.804609,15.05511,15.305611,15.556112,15.806613,16.057114,16.307615,16.558116,16.808617,17.059118,17.309619,17.56012,17.810621,18.061122,18.311623,18.562124,18.812625,19.063126,19.313627,19.564128,19.814629,20.06513,20.315631,20.566132,20.816633,21.067134,21.317635,21.568136,21.818637,22.069138,22.319639,22.57014,22.820641,23.071142,23.321643,23.572144,23.822645,24.073146,24.323647,24.574148,24.824649,25.07515,25.325651,25.576152,25.826653,26.077154,26.327655,26.578156,26.828657,27.079158,27.329659,27.58016,27.830661,28.081162,28.331663,28.582164,28.832665,29.083166,29.333667,29.584168,29.834669,30.08517,30.335671,30.586172,30.836673,31.087174,31.337675,31.588176,31.838677,32.089178,32.339679,32.59018,32.840681,33.091182,33.341683,33.592184,33.842685,34.093186,34.343687,34.594188,34.844689,35.09519,35.345691,35.596192,35.846693,36.097194,36.347695,36.598196,36.848697,37.099198,37.349699,37.6002,37.850701,38.101202,38.351703,38.602204,38.852705,39.103206,39.353707,39.604208,39.854709,40.10521,40.355711,40.606212,40.856713,41.107214,41.357715,41.608216,41.858717,42.109218,42.359719,42.61022,42.860721,43.111222,43.361723,43.612224,43.862725,44.113226,44.363727,44.614228,44.864729,45.11523,45.365731,45.616232,45.866733,46.117234,46.367735,46.618236,46.868737,47.119238,47.369739,47.62024,47.870741,48.121242,48.371743,48.622244,48.872745,49.123246,49.373747,49.624248,49.874749,50.125251,50.375752,50.626253,50.876754,51.127255,51.377756,51.628257,51.878758,52.129259,52.37976,52.630261,52.880762,53.131263,53.381764,53.632265,53.882766,54.133267,54.383768,54.634269,54.88477,55.135271,55.385772,55.636273,55.886774,56.137275,56.387776,56.638277,56.888778,57.139279,57.38978,57.640281,57.890782,58.141283,58.391784,58.642285,58.892786,59.143287,59.393788,59.644289,59.89479,60.145291,60.395792,60.646293,60.896794,61.147295,61.397796,61.648297,61.898798,62.149299,62.3998,62.650301,62.900802,63.151303,63.401804,63.652305,63.902806,64.153307,64.403808,64.654309,64.90481,65.155311,65.405812,65.656313,65.906814,66.157315,66.407816,66.658317,66.908818,67.159319,67.40982,67.660321,67.910822,68.161323,68.411824,68.662325,68.912826,69.163327,69.413828,69.664329,69.91483,70.165331,70.415832,70.666333,70.916834,71.167335,71.417836,71.668337,71.918838,72.169339,72.41984,72.670341,72.920842,73.171343,73.421844,73.672345,73.922846,74.173347,74.423848,74.674349,74.92485,75.175351,75.425852,75.676353,75.926854,76.177355,76.427856,76.678357,76.928858,77.179359,77.42986,77.680361,77.930862,78.181363,78.431864,78.682365,78.932866,79.183367,79.433868,79.684369,79.93487,80.185371,80.435872,80.686373,80.936874,81.187375,81.437876,81.688377,81.938878,82.189379,82.43988,82.690381,82.940882,83.191383,83.441884,83.692385,83.942886,84.193387,84.443888,84.694389,84.94489,85.195391,85.445892,85.696393,85.946894,86.197395,86.447896,86.698397,86.948898,87.199399,87.4499,87.700401,87.950902,88.201403,88.451904,88.702405,88.952906,89.203407,89.453908,89.704409,89.95491,90.205411,90.455912,90.706413,90.956914,91.207415,91.457916,91.708417,91.958918,92.209419,92.45992,92.710421,92.960922,93.211423,93.461924,93.712425,93.962926,94.213427,94.463928,94.714429,94.96493,95.215431,95.465932,95.716433,95.966934,96.217435,96.467936,96.718437,96.968938,97.219439,97.46994,97.720441,97.970942,98.221443,98.471944,98.722445,98.972946,99.223447,99.473948,99.724449,99.97495,100.22545,100.47595,100.72645,100.97695,101.22745,101.47796,101.72846,101.97896,102.22946,102.47996,102.73046,102.98096,103.23146,103.48196,103.73246,103.98297,104.23347,104.48397,104.73447,104.98497,105.23547,105.48597,105.73647,105.98697,106.23747,106.48798,106.73848,106.98898,107.23948,107.48998,107.74048,107.99098,108.24148,108.49198,108.74248,108.99299,109.24349,109.49399,109.74449,109.99499,110.24549,110.49599,110.74649,110.99699,111.24749,111.498,111.7485,111.999,112.2495,112.5],"y":[-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135],"zorder":6,"type":"scatter"},{"customdata":[[1.6678104e-06],[2.1896094e-06],[2.8634524e-06],[3.7300718e-06],[4.8400394e-06],[6.2558413e-06],[8.0543101e-06],[1.0329458e-05],[1.3195748e-05],[1.6791857e-05],[2.1284948e-05],[2.6875503e-05],[3.3802736e-05],[4.2350596e-05],[5.2854372e-05],[6.570787e-05],[8.1371147e-05],[0.00010037873],[0.00012334821],[0.00015098919],[0.00018411225],[0.00022363799],[0.00027060568],[0.00032618142],[0.00039166547],[0.00046849837],[0.00055826559],[0.00066270016],[0.00078368312],[0.00092324114],[0.0010835412],[0.0012668815],[0.0014756791],[0.001712453],[0.0019798037],[0.0022803871],[0.0026168861],[0.0029919763],[0.003408289],[0.00386837],[0.0043746363],[0.0049293302],[0.0055344726],[0.0061918156],[0.0069027963],[0.0076684925],[0.0084895818],[0.0093663052],[0.010298436],[0.011285255],[0.012325535],[0.013417533],[0.014558988],[0.015747138],[0.016978731],[0.018250061],[0.019557001],[0.020895053],[0.022259396],[0.023644946],[0.025046415],[0.02645838],[0.027875343],[0.029291794],[0.030702278],[0.032101444],[0.033484096],[0.034845244],[0.036180128],[0.037484256],[0.038753415],[0.039983684],[0.041171436],[0.042313334],[0.043406317],[0.044447585],[0.045434577],[0.046364954],[0.047236567],[0.048047446],[0.048795768],[0.04947985],[0.050098128],[0.050649155],[0.051131593],[0.051544218],[0.051885925],[0.052155741],[0.05235284],[0.052476564],[0.05252644],[0.052502208],[0.052403841],[0.052231569],[0.051985897],[0.051667627],[0.051277871],[0.050818065],[0.050289973],[0.049695689],[0.04903764],[0.048318576],[0.047541557],[0.046709941],[0.045827362],[0.044897707],[0.04392509],[0.042913822],[0.041868377],[0.040793362],[0.039693479],[0.038573487],[0.037438172],[0.036292301],[0.035140595],[0.033987684],[0.032838084],[0.031696156],[0.03056608],[0.029451829],[0.028357142],[0.027285508],[0.026240143],[0.025223979],[0.024239658],[0.023289521],[0.022375607],[0.021499657],[0.020663115],[0.019867142],[0.019112616],[0.018400156],[0.017730126],[0.017102658],[0.016517661],[0.015974842],[0.015473716],[0.015013629],[0.01459376],[0.014213145],[0.013870678],[0.013565125],[0.013295132],[0.013059226],[0.012855826],[0.012683242],[0.012539679],[0.012423241],[0.012331933],[0.012263662],[0.012216247],[0.012187419],[0.012174834],[0.012176078],[0.01218868],[0.012210132],[0.012237897],[0.012269438],[0.01230223],[0.012333794],[0.012361713],[0.012383667],[0.012397452],[0.012401012],[0.012392464],[0.012370121],[0.012332515],[0.012278418],[0.012206857],[0.012117124],[0.012008786],[0.011881687],[0.011735949],[0.011571956],[0.011390353],[0.011192022],[0.010978064],[0.010749773],[0.010508607],[0.010256162],[0.0099941329],[0.0097242861],[0.0094484217],[0.0091683419],[0.008885819],[0.0086025648],[0.0083202037],[0.008040248],[0.0077640769],[0.0074929197],[0.0072278424],[0.0069697394],[0.0067193281],[0.0064771483],[0.0062435655],[0.0060187773],[0.0058028229],[0.005595596],[0.0053968595],[0.0052062621],[0.0050233563],[0.0048476177],[0.0046784637],[0.0045152735],[0.0043574062],[0.004204219],[0.0040550837],[0.0039094018],[0.003766618],[0.0036262311],[0.0034878032],[0.0033509671],[0.0032154306],[0.0030809791],[0.0029474758],[0.0028148605],[0.0026831458],[0.0025524121],[0.0024228009],[0.0022945074],[0.002167772],[0.0020428706],[0.0019201059],[0.001799797],[0.0016822706],[0.0015678518],[0.0014568556],[0.0013495796],[0.0012462967],[0.0011472504],[0.0010526492],[0.00096266399],[0.00087742513],[0.00079702163],[0.00072150078],[0.00065086897],[0.00058509332],[0.00052410401],[0.00046779727],[0.00041603883],[0.00036866772],[0.00032550029],[0.00028633433],[0.00025095319],[0.00021912981],[0.00019063052],[0.00016521863],[0.00014265766],[0.00012271426],[0.00010516074],[8.977722e-05],[7.6353364e-05],[6.4689777e-05],[5.4599018e-05],[4.5906299e-05],[3.8449863e-05],[3.2081116e-05],[2.6664508e-05],[2.2077232e-05],[1.8208758e-05],[1.4960239e-05],[1.224383e-05],[9.9819358e-06],[8.1064242e-06],[6.5578187e-06],[5.284496e-06],[4.2419009e-06],[3.3917905e-06],[2.7015186e-06],[2.1433658e-06],[1.6939207e-06],[1.3335135e-06],[1.0457033e-06],[8.1681838e-07],[6.3554721e-07],[4.9257772e-07],[3.8028198e-07],[2.9244231e-07],[2.2401528e-07],[1.7092972e-07],[1.2991508e-07],[9.835654e-08],[7.4173402e-08],[5.5717818e-08],[4.1690838e-08],[3.1073308e-08],[2.30693e-08],[1.7060084e-08],[1.256688e-08],[9.2208969e-09],[6.7393501e-09],[4.9063875e-09],[3.5579881e-09],[2.570075e-09],[1.8492073e-09],[1.3253293e-09],[9.4615052e-10],[6.7281367e-10],[4.7657079e-10],[3.3624665e-10],[2.3631231e-10],[1.6542932e-10],[1.1535497e-10],[8.0123104e-11],[5.5434068e-11],[3.8202626e-11],[2.6224493e-11],[1.7931572e-11],[1.221313e-11],[8.2857693e-12],[5.5993285e-12],[3.7690878e-12],[2.5271658e-12],[1.6878286e-12],[1.1228457e-12],[7.4406153e-13],[4.9112799e-13],[3.2290707e-13],[2.1147421e-13],[1.3795399e-13],[8.9641284e-14],[5.8020147e-14],[3.7406451e-14],[2.4022107e-14],[1.5366417e-14],[9.7910889e-15],[6.2142148e-15],[3.9286052e-15],[2.4739298e-15],[1.5517909e-15],[9.6956263e-16],[6.0341398e-16],[3.7406897e-16],[2.3098555e-16],[1.4207405e-16],[8.7044534e-17],[5.3120854e-17],[3.2291289e-17],[1.9552509e-17],[1.1792786e-17],[7.0847918e-18],[4.2396944e-18],[2.5271952e-18],[1.5005131e-18],[8.8743705e-19],[5.227958e-19],[3.0677741e-19],[1.7931286e-19],[1.0439898e-19],[6.0544933e-20],[3.4974871e-20],[2.0124782e-20],[1.1534613e-20],[6.5852396e-21],[3.7448713e-21],[2.1212847e-21],[1.1968997e-21],[6.7268742e-22],[3.7658724e-22],[2.0999775e-22],[1.1664346e-22],[6.453613e-23],[3.5566586e-23],[1.9524421e-23],[1.0676057e-23],[5.8148748e-24],[3.1547618e-24],[1.7048631e-24],[9.1771789e-25],[4.9206856e-25],[2.6280811e-25],[1.3981335e-25],[7.4089263e-26],[3.9107372e-26],[2.0561686e-26],[1.0768508e-26],[5.6175779e-27],[2.9190356e-27],[1.5108676e-27],[7.7895107e-28],[4.0002826e-28],[2.0462934e-28],[1.0426579e-28],[5.2919111e-29],[2.675346e-29],[1.3472374e-29],[6.7577948e-30],[3.3764679e-30],[1.6804166e-30],[8.3304422e-31],[4.1135414e-31],[2.0233006e-31],[9.9129221e-32],[4.8377086e-32],[2.3516595e-32],[1.1386911e-32],[5.4920455e-33],[2.6385119e-33],[1.2626434e-33],[6.0186505e-34],[2.8576844e-34],[1.3515313e-34],[6.366998e-35],[2.987721e-35],[1.3965037e-35],[6.5019089e-36],[3.0153407e-36],[1.3929279e-36],[6.4094037e-37],[2.9376722e-37],[1.341176e-37],[6.0990887e-38],[2.7627453e-38],[1.2465609e-38],[5.6025128e-39],[2.5081237e-39],[1.1184377e-39],[4.9678828e-40],[2.1979997e-40],[9.6868072e-41],[4.2523638e-41],[1.8594174e-41],[8.0987895e-42],[3.5136626e-42],[1.5184368e-42],[6.5362724e-43],[2.8025946e-43],[1.1969807e-43],[5.0922621e-44],[2.1578988e-44],[9.1085269e-45],[3.8296752e-45],[1.6038822e-45],[6.6908257e-46],[2.7802491e-46],[1.1507591e-46],[4.7444063e-47],[1.9483907e-47],[7.9701585e-48],[3.2475407e-48],[1.3180715e-48],[5.3286854e-49],[2.1458428e-49],[8.6074097e-50],[3.4390918e-50],[1.3687111e-50],[5.4259596e-51],[2.1425849e-51],[8.4274515e-52],[3.3018034e-52],[1.2885548e-52],[5.0090032e-53],[1.9395298e-53],[7.4806326e-54],[2.8739349e-54],[1.0997963e-54],[4.1922226e-55],[1.5917437e-55],[6.0200301e-56],[2.2678844e-56],[8.5102028e-57],[3.1809411e-57],[1.1843173e-57],[4.3921511e-58],[1.6224943e-58],[5.9701581e-59],[2.1881909e-59],[7.9887956e-60],[2.9051874e-60],[1.0523585e-60],[3.7970824e-61],[1.364687e-61],[4.8855427e-62],[1.7421651e-62],[6.1881742e-63],[2.1894371e-63],[7.7161235e-64],[2.7087105e-64],[9.4715865e-65],[3.2989794e-65],[1.1445459e-65],[3.9553376e-66],[1.3615407e-66],[4.6684685e-67],[1.5944649e-67],[5.4244065e-68],[1.8381723e-68],[6.2046451e-69],[2.0861446e-69],[6.9866436e-70],[2.3307168e-70],[7.7447456e-71],[2.5634304e-71],[8.4514777e-72],[2.7754953e-72],[9.0791473e-73],[2.9583283e-73],[9.6016175e-74],[3.1041248e-74],[9.9961017e-75]],"fill":"tonexty","fillcolor":"rgba(69.14286, 49.42857, 124.85714, 0.65)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Chances Are Slight","x":[-12.5,-12.249499,-11.998998,-11.748497,-11.497996,-11.247495,-10.996994,-10.746493,-10.495992,-10.245491,-9.99499,-9.744489,-9.493988,-9.243487,-8.992986,-8.742485,-8.491984,-8.241483,-7.990982,-7.740481,-7.48998,-7.239479,-6.988978,-6.738477,-6.487976,-6.2374749,-5.9869739,-5.7364729,-5.4859719,-5.2354709,-4.9849699,-4.7344689,-4.4839679,-4.2334669,-3.9829659,-3.7324649,-3.4819639,-3.2314629,-2.9809619,-2.7304609,-2.4799599,-2.2294589,-1.9789579,-1.7284569,-1.4779559,-1.2274549,-0.97695391,-0.72645291,-0.4759519,-0.2254509,0.0250501,0.2755511,0.5260521,0.77655311,1.0270541,1.2775551,1.5280561,1.7785571,2.0290581,2.2795591,2.5300601,2.7805611,3.0310621,3.2815631,3.5320641,3.7825651,4.0330661,4.2835671,4.5340681,4.7845691,5.0350701,5.2855711,5.5360721,5.7865731,6.0370741,6.2875752,6.5380762,6.7885772,7.0390782,7.2895792,7.5400802,7.7905812,8.0410822,8.2915832,8.5420842,8.7925852,9.0430862,9.2935872,9.5440882,9.7945892,10.04509,10.295591,10.546092,10.796593,11.047094,11.297595,11.548096,11.798597,12.049098,12.299599,12.5501,12.800601,13.051102,13.301603,13.552104,13.802605,14.053106,14.303607,14.554108,14.804609,15.05511,15.305611,15.556112,15.806613,16.057114,16.307615,16.558116,16.808617,17.059118,17.309619,17.56012,17.810621,18.061122,18.311623,18.562124,18.812625,19.063126,19.313627,19.564128,19.814629,20.06513,20.315631,20.566132,20.816633,21.067134,21.317635,21.568136,21.818637,22.069138,22.319639,22.57014,22.820641,23.071142,23.321643,23.572144,23.822645,24.073146,24.323647,24.574148,24.824649,25.07515,25.325651,25.576152,25.826653,26.077154,26.327655,26.578156,26.828657,27.079158,27.329659,27.58016,27.830661,28.081162,28.331663,28.582164,28.832665,29.083166,29.333667,29.584168,29.834669,30.08517,30.335671,30.586172,30.836673,31.087174,31.337675,31.588176,31.838677,32.089178,32.339679,32.59018,32.840681,33.091182,33.341683,33.592184,33.842685,34.093186,34.343687,34.594188,34.844689,35.09519,35.345691,35.596192,35.846693,36.097194,36.347695,36.598196,36.848697,37.099198,37.349699,37.6002,37.850701,38.101202,38.351703,38.602204,38.852705,39.103206,39.353707,39.604208,39.854709,40.10521,40.355711,40.606212,40.856713,41.107214,41.357715,41.608216,41.858717,42.109218,42.359719,42.61022,42.860721,43.111222,43.361723,43.612224,43.862725,44.113226,44.363727,44.614228,44.864729,45.11523,45.365731,45.616232,45.866733,46.117234,46.367735,46.618236,46.868737,47.119238,47.369739,47.62024,47.870741,48.121242,48.371743,48.622244,48.872745,49.123246,49.373747,49.624248,49.874749,50.125251,50.375752,50.626253,50.876754,51.127255,51.377756,51.628257,51.878758,52.129259,52.37976,52.630261,52.880762,53.131263,53.381764,53.632265,53.882766,54.133267,54.383768,54.634269,54.88477,55.135271,55.385772,55.636273,55.886774,56.137275,56.387776,56.638277,56.888778,57.139279,57.38978,57.640281,57.890782,58.141283,58.391784,58.642285,58.892786,59.143287,59.393788,59.644289,59.89479,60.145291,60.395792,60.646293,60.896794,61.147295,61.397796,61.648297,61.898798,62.149299,62.3998,62.650301,62.900802,63.151303,63.401804,63.652305,63.902806,64.153307,64.403808,64.654309,64.90481,65.155311,65.405812,65.656313,65.906814,66.157315,66.407816,66.658317,66.908818,67.159319,67.40982,67.660321,67.910822,68.161323,68.411824,68.662325,68.912826,69.163327,69.413828,69.664329,69.91483,70.165331,70.415832,70.666333,70.916834,71.167335,71.417836,71.668337,71.918838,72.169339,72.41984,72.670341,72.920842,73.171343,73.421844,73.672345,73.922846,74.173347,74.423848,74.674349,74.92485,75.175351,75.425852,75.676353,75.926854,76.177355,76.427856,76.678357,76.928858,77.179359,77.42986,77.680361,77.930862,78.181363,78.431864,78.682365,78.932866,79.183367,79.433868,79.684369,79.93487,80.185371,80.435872,80.686373,80.936874,81.187375,81.437876,81.688377,81.938878,82.189379,82.43988,82.690381,82.940882,83.191383,83.441884,83.692385,83.942886,84.193387,84.443888,84.694389,84.94489,85.195391,85.445892,85.696393,85.946894,86.197395,86.447896,86.698397,86.948898,87.199399,87.4499,87.700401,87.950902,88.201403,88.451904,88.702405,88.952906,89.203407,89.453908,89.704409,89.95491,90.205411,90.455912,90.706413,90.956914,91.207415,91.457916,91.708417,91.958918,92.209419,92.45992,92.710421,92.960922,93.211423,93.461924,93.712425,93.962926,94.213427,94.463928,94.714429,94.96493,95.215431,95.465932,95.716433,95.966934,96.217435,96.467936,96.718437,96.968938,97.219439,97.46994,97.720441,97.970942,98.221443,98.471944,98.722445,98.972946,99.223447,99.473948,99.724449,99.97495,100.22545,100.47595,100.72645,100.97695,101.22745,101.47796,101.72846,101.97896,102.22946,102.47996,102.73046,102.98096,103.23146,103.48196,103.73246,103.98297,104.23347,104.48397,104.73447,104.98497,105.23547,105.48597,105.73647,105.98697,106.23747,106.48798,106.73848,106.98898,107.23948,107.48998,107.74048,107.99098,108.24148,108.49198,108.74248,108.99299,109.24349,109.49399,109.74449,109.99499,110.24549,110.49599,110.74649,110.99699,111.24749,111.498,111.7485,111.999,112.2495,112.5],"y":[-0.31485968,-0.31485916,-0.31485848,-0.31485762,-0.31485651,-0.31485509,-0.31485329,-0.31485102,-0.31484815,-0.31484455,-0.31484006,-0.31483447,-0.31482754,-0.314819,-0.31480849,-0.31479564,-0.31477997,-0.31476097,-0.314738,-0.31471036,-0.31467723,-0.31463771,-0.31459074,-0.31453516,-0.31446968,-0.31439285,-0.31430308,-0.31419865,-0.31407766,-0.3139381,-0.3137778,-0.31359446,-0.31338567,-0.31314889,-0.31288154,-0.31258096,-0.31224446,-0.31186937,-0.31145306,-0.31099298,-0.31048671,-0.30993202,-0.30932687,-0.30866953,-0.30795855,-0.30719285,-0.30637176,-0.30549504,-0.30456291,-0.30357609,-0.30253581,-0.30144381,-0.30030236,-0.29911421,-0.29788261,-0.29661129,-0.29530434,-0.29396629,-0.29260195,-0.2912164,-0.28981493,-0.28840297,-0.286986,-0.28556955,-0.28415907,-0.2827599,-0.28137725,-0.2800161,-0.27868122,-0.27737709,-0.27610793,-0.27487766,-0.27368991,-0.27254801,-0.27145503,-0.27041376,-0.26942677,-0.26849639,-0.26762478,-0.2668139,-0.26606558,-0.2653815,-0.26476322,-0.26421219,-0.26372975,-0.26331713,-0.26297542,-0.2627056,-0.26250851,-0.26238478,-0.26233491,-0.26235914,-0.2624575,-0.26262978,-0.26287545,-0.26319372,-0.26358347,-0.26404328,-0.26457137,-0.26516566,-0.26582371,-0.26654277,-0.26731979,-0.2681514,-0.26903398,-0.26996364,-0.27093626,-0.27194752,-0.27299297,-0.27406798,-0.27516787,-0.27628786,-0.27742317,-0.27856904,-0.27972075,-0.28087366,-0.28202326,-0.28316519,-0.28429527,-0.28540952,-0.2865042,-0.28757584,-0.2886212,-0.28963737,-0.29062169,-0.29157182,-0.29248574,-0.29336169,-0.29419823,-0.2949942,-0.29574873,-0.29646119,-0.29713122,-0.29775869,-0.29834368,-0.2988865,-0.29938763,-0.29984772,-0.30026759,-0.3006482,-0.30099067,-0.30129622,-0.30156621,-0.30180212,-0.30200552,-0.3021781,-0.30232167,-0.3024381,-0.30252941,-0.30259768,-0.3026451,-0.30267393,-0.30268651,-0.30268527,-0.30267267,-0.30265121,-0.30262345,-0.30259191,-0.30255912,-0.30252755,-0.30249963,-0.30247768,-0.30246389,-0.30246033,-0.30246888,-0.30249122,-0.30252883,-0.30258293,-0.30265449,-0.30274422,-0.30285256,-0.30297966,-0.3031254,-0.30328939,-0.30347099,-0.30366932,-0.30388328,-0.30411157,-0.30435274,-0.30460518,-0.30486721,-0.30513706,-0.30541292,-0.305693,-0.30597553,-0.30625878,-0.30654114,-0.3068211,-0.30709727,-0.30736843,-0.3076335,-0.30789161,-0.30814202,-0.3083842,-0.30861778,-0.30884257,-0.30905852,-0.30926575,-0.30946449,-0.30965508,-0.30983799,-0.31001373,-0.31018288,-0.31034607,-0.31050394,-0.31065713,-0.31080626,-0.31095194,-0.31109473,-0.31123511,-0.31137354,-0.31151038,-0.31164592,-0.31178037,-0.31191387,-0.31204649,-0.3121782,-0.31230893,-0.31243854,-0.31256684,-0.31269357,-0.31281848,-0.31294124,-0.31306155,-0.31317908,-0.31329349,-0.31340449,-0.31351177,-0.31361505,-0.3137141,-0.3138087,-0.31389868,-0.31398392,-0.31406432,-0.31413984,-0.31421048,-0.31427625,-0.31433724,-0.31439355,-0.31444531,-0.31449268,-0.31453585,-0.31457501,-0.31461039,-0.31464222,-0.31467072,-0.31469613,-0.31471869,-0.31473863,-0.31475618,-0.31477157,-0.31478499,-0.31479666,-0.31480675,-0.31481544,-0.3148229,-0.31482926,-0.31483468,-0.31483927,-0.31484314,-0.31484639,-0.3148491,-0.31485136,-0.31485324,-0.31485479,-0.31485606,-0.3148571,-0.31485795,-0.31485864,-0.3148592,-0.31485965,-0.31486001,-0.3148603,-0.31486053,-0.31486071,-0.31486085,-0.31486097,-0.31486105,-0.31486112,-0.31486117,-0.31486122,-0.31486125,-0.31486127,-0.31486129,-0.3148613,-0.31486131,-0.31486132,-0.31486133,-0.31486133,-0.31486134,-0.31486134,-0.31486134,-0.31486134,-0.31486134,-0.31486134,-0.31486134,-0.31486134,-0.31486134,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135,-0.31486135],"zorder":6,"type":"scatter"},{"hoverinfo":"skip","line":{"color":"rgba(0,0,0,0)","width":0},"showlegend":false,"x":[-12.5,-12.249499,-11.998998,-11.748497,-11.497996,-11.247495,-10.996994,-10.746493,-10.495992,-10.245491,-9.99499,-9.744489,-9.493988,-9.243487,-8.992986,-8.742485,-8.491984,-8.241483,-7.990982,-7.740481,-7.48998,-7.239479,-6.988978,-6.738477,-6.487976,-6.2374749,-5.9869739,-5.7364729,-5.4859719,-5.2354709,-4.9849699,-4.7344689,-4.4839679,-4.2334669,-3.9829659,-3.7324649,-3.4819639,-3.2314629,-2.9809619,-2.7304609,-2.4799599,-2.2294589,-1.9789579,-1.7284569,-1.4779559,-1.2274549,-0.97695391,-0.72645291,-0.4759519,-0.2254509,0.0250501,0.2755511,0.5260521,0.77655311,1.0270541,1.2775551,1.5280561,1.7785571,2.0290581,2.2795591,2.5300601,2.7805611,3.0310621,3.2815631,3.5320641,3.7825651,4.0330661,4.2835671,4.5340681,4.7845691,5.0350701,5.2855711,5.5360721,5.7865731,6.0370741,6.2875752,6.5380762,6.7885772,7.0390782,7.2895792,7.5400802,7.7905812,8.0410822,8.2915832,8.5420842,8.7925852,9.0430862,9.2935872,9.5440882,9.7945892,10.04509,10.295591,10.546092,10.796593,11.047094,11.297595,11.548096,11.798597,12.049098,12.299599,12.5501,12.800601,13.051102,13.301603,13.552104,13.802605,14.053106,14.303607,14.554108,14.804609,15.05511,15.305611,15.556112,15.806613,16.057114,16.307615,16.558116,16.808617,17.059118,17.309619,17.56012,17.810621,18.061122,18.311623,18.562124,18.812625,19.063126,19.313627,19.564128,19.814629,20.06513,20.315631,20.566132,20.816633,21.067134,21.317635,21.568136,21.818637,22.069138,22.319639,22.57014,22.820641,23.071142,23.321643,23.572144,23.822645,24.073146,24.323647,24.574148,24.824649,25.07515,25.325651,25.576152,25.826653,26.077154,26.327655,26.578156,26.828657,27.079158,27.329659,27.58016,27.830661,28.081162,28.331663,28.582164,28.832665,29.083166,29.333667,29.584168,29.834669,30.08517,30.335671,30.586172,30.836673,31.087174,31.337675,31.588176,31.838677,32.089178,32.339679,32.59018,32.840681,33.091182,33.341683,33.592184,33.842685,34.093186,34.343687,34.594188,34.844689,35.09519,35.345691,35.596192,35.846693,36.097194,36.347695,36.598196,36.848697,37.099198,37.349699,37.6002,37.850701,38.101202,38.351703,38.602204,38.852705,39.103206,39.353707,39.604208,39.854709,40.10521,40.355711,40.606212,40.856713,41.107214,41.357715,41.608216,41.858717,42.109218,42.359719,42.61022,42.860721,43.111222,43.361723,43.612224,43.862725,44.113226,44.363727,44.614228,44.864729,45.11523,45.365731,45.616232,45.866733,46.117234,46.367735,46.618236,46.868737,47.119238,47.369739,47.62024,47.870741,48.121242,48.371743,48.622244,48.872745,49.123246,49.373747,49.624248,49.874749,50.125251,50.375752,50.626253,50.876754,51.127255,51.377756,51.628257,51.878758,52.129259,52.37976,52.630261,52.880762,53.131263,53.381764,53.632265,53.882766,54.133267,54.383768,54.634269,54.88477,55.135271,55.385772,55.636273,55.886774,56.137275,56.387776,56.638277,56.888778,57.139279,57.38978,57.640281,57.890782,58.141283,58.391784,58.642285,58.892786,59.143287,59.393788,59.644289,59.89479,60.145291,60.395792,60.646293,60.896794,61.147295,61.397796,61.648297,61.898798,62.149299,62.3998,62.650301,62.900802,63.151303,63.401804,63.652305,63.902806,64.153307,64.403808,64.654309,64.90481,65.155311,65.405812,65.656313,65.906814,66.157315,66.407816,66.658317,66.908818,67.159319,67.40982,67.660321,67.910822,68.161323,68.411824,68.662325,68.912826,69.163327,69.413828,69.664329,69.91483,70.165331,70.415832,70.666333,70.916834,71.167335,71.417836,71.668337,71.918838,72.169339,72.41984,72.670341,72.920842,73.171343,73.421844,73.672345,73.922846,74.173347,74.423848,74.674349,74.92485,75.175351,75.425852,75.676353,75.926854,76.177355,76.427856,76.678357,76.928858,77.179359,77.42986,77.680361,77.930862,78.181363,78.431864,78.682365,78.932866,79.183367,79.433868,79.684369,79.93487,80.185371,80.435872,80.686373,80.936874,81.187375,81.437876,81.688377,81.938878,82.189379,82.43988,82.690381,82.940882,83.191383,83.441884,83.692385,83.942886,84.193387,84.443888,84.694389,84.94489,85.195391,85.445892,85.696393,85.946894,86.197395,86.447896,86.698397,86.948898,87.199399,87.4499,87.700401,87.950902,88.201403,88.451904,88.702405,88.952906,89.203407,89.453908,89.704409,89.95491,90.205411,90.455912,90.706413,90.956914,91.207415,91.457916,91.708417,91.958918,92.209419,92.45992,92.710421,92.960922,93.211423,93.461924,93.712425,93.962926,94.213427,94.463928,94.714429,94.96493,95.215431,95.465932,95.716433,95.966934,96.217435,96.467936,96.718437,96.968938,97.219439,97.46994,97.720441,97.970942,98.221443,98.471944,98.722445,98.972946,99.223447,99.473948,99.724449,99.97495,100.22545,100.47595,100.72645,100.97695,101.22745,101.47796,101.72846,101.97896,102.22946,102.47996,102.73046,102.98096,103.23146,103.48196,103.73246,103.98297,104.23347,104.48397,104.73447,104.98497,105.23547,105.48597,105.73647,105.98697,106.23747,106.48798,106.73848,106.98898,107.23948,107.48998,107.74048,107.99098,108.24148,108.49198,108.74248,108.99299,109.24349,109.49399,109.74449,109.99499,110.24549,110.49599,110.74649,110.99699,111.24749,111.498,111.7485,111.999,112.2495,112.5],"y":[-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824],"zorder":7,"type":"scatter"},{"customdata":[[0.00014105833],[0.00017453261],[0.000215137],[0.00026418966],[0.00032320659],[0.00039392171],[0.00047830688],[0.00057859162],[0.00069728175],[0.0008371766],[0.0010013837],[0.0011933307],[0.0014167727],[0.0016757955],[0.0019748122],[0.0023185536],[0.0027120503],[0.0031606069],[0.0036697658],[0.0042452618],[0.0048929653],[0.0056188152],[0.0064287405],[0.0073285716],[0.0083239405],[0.0094201729],[0.010622172],[0.011934295],[0.013360226],[0.01490285],[0.016564119],[0.01834493],[0.020245009],[0.022262797],[0.024395358],[0.026638302],[0.028985719],[0.031430146],[0.033962553],[0.036572355],[0.039247456],[0.041974319],[0.044738063],[0.047522595],[0.050310763],[0.053084539],[0.055825221],[0.058513655],[0.061130476],[0.063656357],[0.066072263],[0.068359706],[0.070501004],[0.072479518],[0.07427989],[0.075888244],[0.077292386],[0.078481957],[0.079448574],[0.080185924],[0.080689834],[0.080958309],[0.080991521],[0.080791784],[0.080363481],[0.079712968],[0.07884845],[0.077779831],[0.076518545],[0.075077367],[0.073470215],[0.071711938],[0.069818107],[0.067804797],[0.065688378],[0.063485307],[0.061211939],[0.058884339],[0.056518117],[0.054128278],[0.05172909],[0.049333971],[0.046955395],[0.04460482],[0.042292637],[0.040028131],[0.037819471],[0.035673707],[0.033596788],[0.031593592],[0.029667967],[0.027822787],[0.02606001],[0.024380747],[0.022785334],[0.021273407],[0.019843982],[0.018495529],[0.017226052],[0.016033159],[0.014914138],[0.013866023],[0.012885653],[0.011969736],[0.0111149],[0.010317738],[0.0095748528],[0.0088828932],[0.0082385849],[0.0076387572],[0.0070803644],[0.0065605023],[0.0060764212],[0.0056255343],[0.0052054228],[0.0048138377],[0.0044486992],[0.0041080926],[0.0037902633],[0.0034936092],[0.0032166721],[0.002958128],[0.0027167763],[0.0024915293],[0.0022814004],[0.0020854934],[0.0019029914],[0.0017331466],[0.0015752704],[0.0014287245],[0.0012929126],[0.0011672732],[0.0010512735],[0.00094440398],[0.00084617412],[0.00075610894],[0.00067374647],[0.00059863603],[0.00053033709],[0.00046841888],[0.00041246038],[0.00036205077],[0.00031679015],[0.00027629053],[0.00024017684],[0.00020808805],[0.00017967824],[0.00015461758],[0.0001325932],[0.00011330984],[9.6490408e-05],[8.1876241e-05],[6.9227224e-05],[5.832169e-05],[4.8956138e-05],[4.094478e-05],[3.4118932e-05],[2.8326285e-05],[2.3430068e-05],[1.9308129e-05],[1.5851964e-05],[1.2965706e-05],[1.0565108e-05],[8.5765221e-06],[6.9359072e-06],[5.5878625e-06],[4.4847111e-06],[3.5856326e-06],[2.8558552e-06],[2.265909e-06],[1.7909426e-06],[1.4101036e-06],[1.1059819e-06],[8.6411251e-07],[6.7253625e-07],[5.2141345e-07],[4.0268739e-07],[3.0979286e-07],[2.3740549e-07],[1.8122773e-07],[1.3780714e-07],[1.0438323e-07],[7.8759056e-08],[5.9194316e-08],[4.4316784e-08],[3.3049455e-08],[2.4550896e-08],[1.8166723e-08],[1.3390332e-08],[9.8312993e-09],[7.1900963e-09],[5.2379596e-09],[3.8009549e-09],[2.7474255e-09],[1.9781596e-09],[1.418726e-09],[1.0135312e-09],[7.2123492e-10],[5.1123091e-10],[3.60959e-10],[2.5386264e-10],[1.7784416e-10],[1.2410236e-10],[8.6262079e-11],[5.9725393e-11],[4.1190507e-11],[2.8296592e-11],[1.9362874e-11],[1.3197876e-11],[8.9605921e-12],[6.0599305e-12],[4.0822232e-12],[2.7392011e-12],[1.8308343e-12],[1.2189111e-12],[8.0833766e-13],[5.3396315e-13],[3.5133984e-13],[2.3027196e-13],[1.5033228e-13],[9.775992e-14],[6.332378e-14],[4.0857347e-14],[2.6258553e-14],[1.6810037e-14],[1.0719234e-14],[6.8085716e-15],[4.3076996e-15],[2.714763e-15],[1.7041802e-15],[1.0656048e-15],[6.6370309e-16],[4.1176414e-16],[2.5446039e-16],[1.5663501e-16],[9.6040503e-17],[5.8656609e-17],[3.5684235e-17],[2.1623836e-17],[1.3052268e-17],[7.8475862e-18],[4.6998401e-18],[2.8036702e-18],[1.6659717e-18],[9.8606408e-19],[5.8135244e-19],[3.4140563e-19],[1.9970948e-19],[1.163653e-19],[6.753752e-20],[3.9044829e-20],[2.2484267e-20],[1.289706e-20],[7.3688464e-21],[4.1937744e-21],[2.3774282e-21],[1.342476e-21],[7.5509651e-22],[4.230535e-22],[2.3609421e-22],[1.3124227e-22],[7.2671549e-23],[4.0084018e-23],[2.2026356e-23],[1.2062796e-23],[6.5929245e-24],[3.6131011e-24],[2.0173231e-24],[1.2059694e-24],[8.7095583e-25],[8.8414765e-25],[1.2506028e-24],[2.1104221e-24],[3.7898502e-24],[6.9193506e-24],[1.2659282e-23],[2.3109941e-23],[4.2043602e-23],[7.6200722e-23],[1.3757278e-22],[2.4740456e-22],[4.4318091e-22],[7.9077245e-22],[1.4054612e-21],[2.4881867e-21],[4.3877694e-21],[7.707284e-21],[1.3485146e-20],[2.3502102e-20],[4.0799464e-20],[7.0550315e-20],[1.2151788e-19],[2.084866e-19],[3.5629754e-19],[6.0651877e-19],[1.0284245e-18],[1.7369898e-18],[2.9222602e-18],[4.8970803e-18],[8.1743325e-18],[1.3591397e-17],[2.2509852e-17],[3.7134528e-17],[6.1021082e-17],[9.9880022e-17],[1.6284487e-16],[2.6446383e-16],[4.278142e-16],[6.893517e-16],[1.1064282e-15],[1.7688962e-15],[2.8169438e-15],[4.4683868e-15],[7.0602498e-15],[1.1111843e-14],[1.7420029e-14],[2.7202472e-14],[4.2312102e-14],[6.5556772e-14],[1.0117361e-13],[1.5552982e-13],[2.3815342e-13],[3.6324255e-13],[5.5186561e-13],[8.3515421e-13],[1.258916e-12],[1.8902688e-12],[2.8271386e-12],[4.2117964e-12],[6.2500626e-12],[9.2384284e-12],[1.3602181e-11],[1.9948753e-11],[2.9142022e-11],[4.2405319e-11],[6.1463561e-11],[8.873845e-11],[1.2761528e-10],[1.8280592e-10],[2.6084023e-10],[3.7072819e-10],[5.2484781e-10],[7.401298e-10],[1.0396308e-09],[1.4546117e-09],[2.0272709e-09],[2.8143183e-09],[3.8916284e-09],[5.3602649e-09],[7.3542412e-09],[1.0050467e-08],[1.3681424e-08],[1.8551247e-08],[2.5055995e-08],[3.3709082e-08],[4.5173e-08],[6.0298661e-08],[8.0173923e-08],[1.0618308e-07],[1.400794e-07],[1.8407293e-07],[2.4093634e-07],[3.1413146e-07],[4.0795972e-07],[5.2773982e-07],[6.8001607e-07],[8.7280097e-07],[1.1158556e-06],[1.4210112e-06],[1.8025351e-06],[2.2775436e-06],[2.8664634e-06],[3.5935429e-06],[4.4874126e-06],[5.5816923e-06],[6.9156422e-06],[8.5348495e-06],[1.0491944e-05],[1.2847327e-05],[1.5669903e-05],[1.9037793e-05],[2.3038999e-05],[2.7772012e-05],[3.3346312e-05],[3.9882742e-05],[4.751371e-05],[5.6383185e-05],[6.6646446e-05],[7.8469543e-05],[9.2028422e-05],[0.0001075077],[0.00012509901],[0.00014499897],[0.00016740665],[0.00019252061],[0.00022053548],[0.00025163812],[0.00028600336],[0.00032378936],[0.0003651327],[0.00041014331],[0.00045889915],[0.00051144109],[0.00056776772],[0.00062783066],[0.00069153007],[0.00075871095],[0.00082916004],[0.00090260369],[0.00097870674],[0.0010570725],[0.0011372442],[0.0012187072],[0.0013008936],[0.001383187],[0.0014649297],[0.0015454301],[0.0016239726],[0.0016998271],[0.0017722603],[0.0018405475],[0.0019039839],[0.0019618972],[0.0020136592],[0.0020586968],[0.0020965034],[0.0021266473],[0.0021487807],[0.0021626461],[0.0021680812],[0.0021650223],[0.0021535052],[0.0021336649],[0.0021057326],[0.0020700316],[0.0020269706],[0.0019770364],[0.0019207843],[0.0018588283],[0.0017918295],[0.0017204847],[0.0016455143],[0.0015676506],[0.0014876254],[0.0014061597],[0.0013239526],[0.0012416722],[0.0011599471],[0.0010793596],[0.0010004396],[0.00092366041],[0.00084943568],[0.0007781179],[0.00070999786],[0.00064530556],[0.00058421204],[0.00052683222],[0.00047322849],[0.00042341494],[0.00037736202],[0.00033500165],[0.00029623231],[0.00026092437],[0.00022892519],[0.00020006414],[0.00017415729],[0.00015101177],[0.00013042975],[0.00011221199],[9.6160916e-05],[8.208327e-05],[6.9792289e-05],[5.9109456e-05],[4.9865849e-05],[4.1903104e-05],[3.507405e-05],[2.9243029e-05],[2.4285975e-05],[2.0090255e-05],[1.6554348e-05],[1.3587371e-05],[1.1108503e-05],[9.046329e-06],[7.3381391e-06],[5.9292018e-06],[4.772031e-06],[3.8256657e-06],[3.0549739e-06],[2.4299913e-06],[1.9253011e-06],[1.5194602e-06],[1.1944741e-06],[9.3532144e-07],[7.2952765e-07],[5.6678632e-07],[4.3862532e-07],[3.3811525e-07],[2.5961666e-07],[1.9856243e-07],[1.5127193e-07]],"fill":"tonexty","fillcolor":"rgba(68, 1, 84, 0.65)","hovertemplate":"(%{x:.7}, %{customdata[0]:.7})\u003cbr\u003e\u003cextra\u003e%{fullData.name}\u003c\u002fextra\u003e","line":{"color":"black","width":1.5},"mode":"lines","name":"Almost No Chance","x":[-12.5,-12.249499,-11.998998,-11.748497,-11.497996,-11.247495,-10.996994,-10.746493,-10.495992,-10.245491,-9.99499,-9.744489,-9.493988,-9.243487,-8.992986,-8.742485,-8.491984,-8.241483,-7.990982,-7.740481,-7.48998,-7.239479,-6.988978,-6.738477,-6.487976,-6.2374749,-5.9869739,-5.7364729,-5.4859719,-5.2354709,-4.9849699,-4.7344689,-4.4839679,-4.2334669,-3.9829659,-3.7324649,-3.4819639,-3.2314629,-2.9809619,-2.7304609,-2.4799599,-2.2294589,-1.9789579,-1.7284569,-1.4779559,-1.2274549,-0.97695391,-0.72645291,-0.4759519,-0.2254509,0.0250501,0.2755511,0.5260521,0.77655311,1.0270541,1.2775551,1.5280561,1.7785571,2.0290581,2.2795591,2.5300601,2.7805611,3.0310621,3.2815631,3.5320641,3.7825651,4.0330661,4.2835671,4.5340681,4.7845691,5.0350701,5.2855711,5.5360721,5.7865731,6.0370741,6.2875752,6.5380762,6.7885772,7.0390782,7.2895792,7.5400802,7.7905812,8.0410822,8.2915832,8.5420842,8.7925852,9.0430862,9.2935872,9.5440882,9.7945892,10.04509,10.295591,10.546092,10.796593,11.047094,11.297595,11.548096,11.798597,12.049098,12.299599,12.5501,12.800601,13.051102,13.301603,13.552104,13.802605,14.053106,14.303607,14.554108,14.804609,15.05511,15.305611,15.556112,15.806613,16.057114,16.307615,16.558116,16.808617,17.059118,17.309619,17.56012,17.810621,18.061122,18.311623,18.562124,18.812625,19.063126,19.313627,19.564128,19.814629,20.06513,20.315631,20.566132,20.816633,21.067134,21.317635,21.568136,21.818637,22.069138,22.319639,22.57014,22.820641,23.071142,23.321643,23.572144,23.822645,24.073146,24.323647,24.574148,24.824649,25.07515,25.325651,25.576152,25.826653,26.077154,26.327655,26.578156,26.828657,27.079158,27.329659,27.58016,27.830661,28.081162,28.331663,28.582164,28.832665,29.083166,29.333667,29.584168,29.834669,30.08517,30.335671,30.586172,30.836673,31.087174,31.337675,31.588176,31.838677,32.089178,32.339679,32.59018,32.840681,33.091182,33.341683,33.592184,33.842685,34.093186,34.343687,34.594188,34.844689,35.09519,35.345691,35.596192,35.846693,36.097194,36.347695,36.598196,36.848697,37.099198,37.349699,37.6002,37.850701,38.101202,38.351703,38.602204,38.852705,39.103206,39.353707,39.604208,39.854709,40.10521,40.355711,40.606212,40.856713,41.107214,41.357715,41.608216,41.858717,42.109218,42.359719,42.61022,42.860721,43.111222,43.361723,43.612224,43.862725,44.113226,44.363727,44.614228,44.864729,45.11523,45.365731,45.616232,45.866733,46.117234,46.367735,46.618236,46.868737,47.119238,47.369739,47.62024,47.870741,48.121242,48.371743,48.622244,48.872745,49.123246,49.373747,49.624248,49.874749,50.125251,50.375752,50.626253,50.876754,51.127255,51.377756,51.628257,51.878758,52.129259,52.37976,52.630261,52.880762,53.131263,53.381764,53.632265,53.882766,54.133267,54.383768,54.634269,54.88477,55.135271,55.385772,55.636273,55.886774,56.137275,56.387776,56.638277,56.888778,57.139279,57.38978,57.640281,57.890782,58.141283,58.391784,58.642285,58.892786,59.143287,59.393788,59.644289,59.89479,60.145291,60.395792,60.646293,60.896794,61.147295,61.397796,61.648297,61.898798,62.149299,62.3998,62.650301,62.900802,63.151303,63.401804,63.652305,63.902806,64.153307,64.403808,64.654309,64.90481,65.155311,65.405812,65.656313,65.906814,66.157315,66.407816,66.658317,66.908818,67.159319,67.40982,67.660321,67.910822,68.161323,68.411824,68.662325,68.912826,69.163327,69.413828,69.664329,69.91483,70.165331,70.415832,70.666333,70.916834,71.167335,71.417836,71.668337,71.918838,72.169339,72.41984,72.670341,72.920842,73.171343,73.421844,73.672345,73.922846,74.173347,74.423848,74.674349,74.92485,75.175351,75.425852,75.676353,75.926854,76.177355,76.427856,76.678357,76.928858,77.179359,77.42986,77.680361,77.930862,78.181363,78.431864,78.682365,78.932866,79.183367,79.433868,79.684369,79.93487,80.185371,80.435872,80.686373,80.936874,81.187375,81.437876,81.688377,81.938878,82.189379,82.43988,82.690381,82.940882,83.191383,83.441884,83.692385,83.942886,84.193387,84.443888,84.694389,84.94489,85.195391,85.445892,85.696393,85.946894,86.197395,86.447896,86.698397,86.948898,87.199399,87.4499,87.700401,87.950902,88.201403,88.451904,88.702405,88.952906,89.203407,89.453908,89.704409,89.95491,90.205411,90.455912,90.706413,90.956914,91.207415,91.457916,91.708417,91.958918,92.209419,92.45992,92.710421,92.960922,93.211423,93.461924,93.712425,93.962926,94.213427,94.463928,94.714429,94.96493,95.215431,95.465932,95.716433,95.966934,96.217435,96.467936,96.718437,96.968938,97.219439,97.46994,97.720441,97.970942,98.221443,98.471944,98.722445,98.972946,99.223447,99.473948,99.724449,99.97495,100.22545,100.47595,100.72645,100.97695,101.22745,101.47796,101.72846,101.97896,102.22946,102.47996,102.73046,102.98096,103.23146,103.48196,103.73246,103.98297,104.23347,104.48397,104.73447,104.98497,105.23547,105.48597,105.73647,105.98697,106.23747,106.48798,106.73848,106.98898,107.23948,107.48998,107.74048,107.99098,108.24148,108.49198,108.74248,108.99299,109.24349,109.49399,109.74449,109.99499,110.24549,110.49599,110.74649,110.99699,111.24749,111.498,111.7485,111.999,112.2495,112.5],"y":[-0.36719718,-0.3671637,-0.3671231,-0.36707405,-0.36701503,-0.36694431,-0.36685993,-0.36675964,-0.36664095,-0.36650106,-0.36633685,-0.36614491,-0.36592146,-0.36566244,-0.36536342,-0.36501968,-0.36462619,-0.36417763,-0.36366847,-0.36309297,-0.36244527,-0.36171942,-0.3609095,-0.36000967,-0.3590143,-0.35791806,-0.35671606,-0.35540394,-0.35397801,-0.35243539,-0.35077412,-0.34899331,-0.34709323,-0.34507544,-0.34294288,-0.34069993,-0.33835252,-0.33590809,-0.33337568,-0.33076588,-0.32809078,-0.32536392,-0.32260017,-0.31981564,-0.31702747,-0.3142537,-0.31151302,-0.30882458,-0.30620776,-0.30368188,-0.30126597,-0.29897853,-0.29683723,-0.29485872,-0.29305835,-0.29144999,-0.29004585,-0.28885628,-0.28788966,-0.28715231,-0.2866484,-0.28637993,-0.28634672,-0.28654645,-0.28697476,-0.28762527,-0.28848979,-0.28955841,-0.29081969,-0.29226087,-0.29386802,-0.2956263,-0.29752013,-0.29953344,-0.30164986,-0.30385293,-0.3061263,-0.3084539,-0.31082012,-0.31320996,-0.31560915,-0.31800427,-0.32038284,-0.32273342,-0.3250456,-0.32731011,-0.32951877,-0.33166453,-0.33374145,-0.33574464,-0.33767027,-0.33951545,-0.34127823,-0.34295749,-0.3445529,-0.34606483,-0.34749425,-0.34884271,-0.35011218,-0.35130508,-0.3524241,-0.35347221,-0.35445258,-0.3553685,-0.35622334,-0.3570205,-0.35776338,-0.35845534,-0.35909965,-0.35969948,-0.36025787,-0.36077773,-0.36126182,-0.3617127,-0.36213281,-0.3625244,-0.36288954,-0.36323014,-0.36354797,-0.36384463,-0.36412156,-0.36438011,-0.36462146,-0.36484671,-0.36505684,-0.36525274,-0.36543525,-0.36560509,-0.36576297,-0.36590951,-0.36604532,-0.36617096,-0.36628696,-0.36639383,-0.36649206,-0.36658213,-0.36666449,-0.3667396,-0.3668079,-0.36686982,-0.36692578,-0.36697619,-0.36702145,-0.36706195,-0.36709806,-0.36713015,-0.36715856,-0.36718362,-0.36720564,-0.36722493,-0.36724175,-0.36725636,-0.36726901,-0.36727991,-0.36728928,-0.36729729,-0.36730412,-0.36730991,-0.36731481,-0.36731893,-0.36732238,-0.36732527,-0.36732767,-0.36732966,-0.3673313,-0.36733265,-0.36733375,-0.36733465,-0.36733538,-0.36733597,-0.36733645,-0.36733683,-0.36733713,-0.36733737,-0.36733756,-0.36733772,-0.36733783,-0.36733793,-0.367338,-0.36733806,-0.3673381,-0.36733813,-0.36733816,-0.36733818,-0.36733819,-0.3673382,-0.36733821,-0.36733822,-0.36733822,-0.36733823,-0.36733823,-0.36733823,-0.36733823,-0.36733823,-0.36733823,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733824,-0.36733823,-0.36733823,-0.36733823,-0.36733823,-0.36733823,-0.36733823,-0.36733822,-0.36733822,-0.36733821,-0.3673382,-0.36733819,-0.36733818,-0.36733816,-0.36733813,-0.3673381,-0.36733805,-0.367338,-0.36733792,-0.36733783,-0.36733771,-0.36733756,-0.36733736,-0.36733712,-0.36733682,-0.36733643,-0.36733596,-0.36733537,-0.36733464,-0.36733375,-0.36733265,-0.36733132,-0.3673297,-0.36732774,-0.36732539,-0.36732257,-0.3673192,-0.3673152,-0.36731046,-0.36730489,-0.36729835,-0.36729072,-0.36728185,-0.36727159,-0.36725977,-0.36724621,-0.36723073,-0.36721314,-0.36719324,-0.36717083,-0.36714572,-0.3671177,-0.3670866,-0.36705223,-0.36701445,-0.3669731,-0.36692809,-0.36687934,-0.3668268,-0.36677047,-0.36671041,-0.36664671,-0.36657953,-0.36650908,-0.36643563,-0.36635953,-0.36628116,-0.36620099,-0.36611953,-0.36603734,-0.36595505,-0.36587331,-0.36579281,-0.36571426,-0.36563841,-0.36556598,-0.36549769,-0.36543425,-0.36537634,-0.36532458,-0.36527954,-0.36524173,-0.36521159,-0.36518946,-0.36517559,-0.36517016,-0.36517321,-0.36518473,-0.36520457,-0.3652325,-0.3652682,-0.36531127,-0.3653612,-0.36541745,-0.36547941,-0.36554641,-0.36561775,-0.36569272,-0.36577059,-0.36585061,-0.36593208,-0.36601428,-0.36609656,-0.36617829,-0.36625888,-0.3663378,-0.36641458,-0.3664888,-0.36656012,-0.36662824,-0.36669293,-0.36675402,-0.3668114,-0.36686501,-0.36691482,-0.36696087,-0.36700323,-0.367042,-0.36707731,-0.36710931,-0.36713817,-0.36716408,-0.36718722,-0.36720781,-0.36722602,-0.36724208,-0.36725615,-0.36726844,-0.36727913,-0.36728837,-0.36729633,-0.36730316,-0.36730899,-0.36731395,-0.36731815,-0.36732168,-0.36732465,-0.36732713,-0.36732919,-0.3673309,-0.36733231,-0.36733346,-0.36733441,-0.36733518,-0.36733581,-0.36733631,-0.36733672,-0.36733704,-0.3673373,-0.36733751,-0.36733767,-0.3673378,-0.3673379,-0.36733798,-0.36733804,-0.36733809],"zorder":7,"type":"scatter"}],"layout":{"template":{"data":{"histogram2dcontour":[{"type":"histogram2dcontour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"choropleth":[{"type":"choropleth","colorbar":{"outlinewidth":0,"ticks":""}}],"histogram2d":[{"type":"histogram2d","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"heatmap":[{"type":"heatmap","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"contourcarpet":[{"type":"contourcarpet","colorbar":{"outlinewidth":0,"ticks":""}}],"contour":[{"type":"contour","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"surface":[{"type":"surface","colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]}],"mesh3d":[{"type":"mesh3d","colorbar":{"outlinewidth":0,"ticks":""}}],"scatter":[{"fillpattern":{"fillmode":"overlay","size":10,"solidity":0.2},"type":"scatter"}],"parcoords":[{"type":"parcoords","line":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolargl":[{"type":"scatterpolargl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"bar":[{"error_x":{"color":"#2a3f5f"},"error_y":{"color":"#2a3f5f"},"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"scattergeo":[{"type":"scattergeo","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterpolar":[{"type":"scatterpolar","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"scattergl":[{"type":"scattergl","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatter3d":[{"type":"scatter3d","line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattermap":[{"type":"scattermap","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattermapbox":[{"type":"scattermapbox","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scatterternary":[{"type":"scatterternary","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"scattercarpet":[{"type":"scattercarpet","marker":{"colorbar":{"outlinewidth":0,"ticks":""}}}],"carpet":[{"aaxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"baxis":{"endlinecolor":"#2a3f5f","gridcolor":"white","linecolor":"white","minorgridcolor":"white","startlinecolor":"#2a3f5f"},"type":"carpet"}],"table":[{"cells":{"fill":{"color":"#EBF0F8"},"line":{"color":"white"}},"header":{"fill":{"color":"#C8D4E3"},"line":{"color":"white"}},"type":"table"}],"barpolar":[{"marker":{"line":{"color":"#E5ECF6","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"pie":[{"automargin":true,"type":"pie"}]},"layout":{"autotypenumbers":"strict","colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#2a3f5f"},"hovermode":"closest","hoverlabel":{"align":"left"},"paper_bgcolor":"white","plot_bgcolor":"#E5ECF6","polar":{"bgcolor":"#E5ECF6","angularaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"radialaxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"ternary":{"bgcolor":"#E5ECF6","aaxis":{"gridcolor":"white","linecolor":"white","ticks":""},"baxis":{"gridcolor":"white","linecolor":"white","ticks":""},"caxis":{"gridcolor":"white","linecolor":"white","ticks":""}},"coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]]},"xaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"yaxis":{"gridcolor":"white","linecolor":"white","ticks":"","title":{"standoff":15},"zerolinecolor":"white","automargin":true,"zerolinewidth":2},"scene":{"xaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"yaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2},"zaxis":{"backgroundcolor":"#E5ECF6","gridcolor":"white","linecolor":"white","showbackground":true,"ticks":"","zerolinecolor":"white","gridwidth":2}},"shapedefaults":{"line":{"color":"#2a3f5f"}},"annotationdefaults":{"arrowcolor":"#2a3f5f","arrowhead":0,"arrowwidth":1},"geo":{"bgcolor":"white","landcolor":"#E5ECF6","subunitcolor":"white","showland":true,"showlakes":true,"lakecolor":"white"},"title":{"x":0.05},"mapbox":{"style":"light"}}},"legend":{"traceorder":"normal"},"yaxis":{"showticklabels":true,"tickvals":[0.0,-0.052476890942663564,-0.10495378188532713,-0.15743067282799067,-0.20990756377065425,-0.26238445471331784,-0.31486134565598134,-0.36733823659864495],"ticktext":[["Almost Certainly"],["Very Good Chance"],["We Believe"],["Likely"],["About Even"],["Little Chance"],["Chances Are Slight"],["Almost No Chance"]],"zeroline":false,"showgrid":true,"title":{"font":{"size":13},"text":"Assigned Probability (%)"},"gridcolor":"rgba(0, 0, 0, 0.1)"},"xaxis":{"range":[-18.75,118.75],"showticklabels":true,"zeroline":false,"showgrid":true,"tickvals":[-12.5,0,12.5,25,37.5,50,62.5,75,87.5,100,112.5],"ticktext":["","0","","25","","50","","75","","100",""],"gridcolor":"rgba(0, 0, 0, 0.1)"},"barmode":"stack","bargap":0,"bargroupgap":0,"font":{"size":16},"height":560,"width":800,"plot_bgcolor":"white","showlegend":false}} diff --git a/tests/e2e/test_examples.py b/tests/e2e/test_examples.py index 475399a..cba7748 100644 --- a/tests/e2e/test_examples.py +++ b/tests/e2e/test_examples.py @@ -6,9 +6,6 @@ import pytest from ridgeplot_examples import ALL_EXAMPLES, Example -from ridgeplot_examples._base import round_fig_data - -JSON_SIG_FIGS = 8 PATH_ROOT = Path(__file__).parents[2].resolve() PATH_ARTIFACTS = PATH_ROOT / "tests/e2e/artifacts" @@ -29,11 +26,9 @@ def test_examples_width_height_set(example: Example) -> None: @pytest.mark.parametrize("example", ALL_EXAMPLES, ids=lambda e: e.plot_id) -def test_regressions(example: Example) -> None: - """Verify that the rendered JPEG images match the current artifacts.""" +def test_json_regressions(example: Example) -> None: expected = (PATH_ARTIFACTS / f"{example.plot_id}.json").read_text() - fig = round_fig_data(example.fig, sig_figs=JSON_SIG_FIGS) - assert fig.to_dict() == json.loads(expected) + assert json.loads(example.to_json()) == json.loads(expected) def _update_all_artifacts() -> None: @@ -48,18 +43,19 @@ def _update_all_artifacts() -> None: """ for example in ALL_EXAMPLES: + print(f"Updating artifacts for: {example.plot_id!r}") # noqa: T201 # Save JSONs for regression tests - example.to_json(PATH_ARTIFACTS, sig_figs=JSON_SIG_FIGS) + example.write_json(PATH_ARTIFACTS) # We also save JPEGs for visual inspection (e.g., in PRs) # (Don't use JPEGs for regression tests because outputs # will vary between Plotly versions and platforms) - example.to_jpeg(PATH_ARTIFACTS) + example.write_jpeg(PATH_ARTIFACTS) # Just to keep things in sync with the docs, we should also # regenerate the WebP images used there. These are tracked # by Git because some are used in the README (which needs # to be rendered on GitHub), otherwise they would be in # the .gitignore file (like the HTML artifacts). - example.to_webp(PATH_CHARTS) + example.write_webp(PATH_CHARTS) if __name__ == "__main__":