Skip to content

Instantly share code, notes, and snippets.

@ohe
Last active May 12, 2020 13:58
Show Gist options
  • Save ohe/e2da68a01a39c1b1581cf992a7d9b714 to your computer and use it in GitHub Desktop.
Save ohe/e2da68a01a39c1b1581cf992a7d9b714 to your computer and use it in GitHub Desktop.
Journee Type
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "code",
"execution_count": 122,
"metadata": {},
"outputs": [],
"source": [
"import pandas"
]
},
{
"cell_type": "code",
"execution_count": 123,
"metadata": {},
"outputs": [],
"source": [
"input_file = \"/Users/olivier/Downloads/input.csv\"\n",
"output_file = \"/Users/olivier/Downloads/results.csv\""
]
},
{
"cell_type": "code",
"execution_count": 141,
"metadata": {},
"outputs": [],
"source": [
"d = pandas.read_csv(input_file)\n"
]
},
{
"cell_type": "code",
"execution_count": 142,
"metadata": {},
"outputs": [],
"source": [
"d['datetime'] = pandas.to_datetime(d['datetime']) - pandas.Timedelta(hours=1)\n",
"# To avoid alignment issues, each timestamp is rounded to the closest 1 minutes interval\n",
"d['rounded_dt'] = d['datetime'].dt.round('1min')\n",
"d['dow'] = d['rounded_dt'].dt.dayofweek\n"
]
},
{
"cell_type": "code",
"execution_count": 143,
"metadata": {},
"outputs": [],
"source": [
"# Converting input Data to datetime (from str)\n",
"# Retrieve the day of weeak of each datetime\n",
"f = d\n",
"\n",
"f = f.sort_values(['site', 'conf', 'zone','dow', 'rounded_dt'])\n",
"f['rounded_dt'] = f['rounded_dt'].apply(lambda dt: dt.replace(year=1970, day=1, month=1))\n",
"\n",
"# We're sampling downsampling with 5 minutes interval\n",
"f = f.set_index('rounded_dt')\n",
"f = f.groupby(['site', 'conf', 'zone', 'dow']).resample('5min', label='right', closed='right').presence.mean() # Adds a point every 5 minute\n",
"f = f.reset_index()\n",
"\n",
"f['presence'] = f.groupby(['site', 'conf', 'zone', 'dow'])['presence'].transform(lambda x: x.ewm(span=3).mean()).values\n",
"f = f.reset_index()\n",
"\n",
"# We're upsampling with 1 minutes interval and adds a linear interapolation between points\n",
"f = f.set_index('rounded_dt')\n",
"f = f.groupby(['site', 'conf', 'zone', 'dow']).resample('1min', label='left', closed='right').presence.mean().interpolate(method=\"linear\") # Adds a point every minute\n",
"f = f.reset_index()\n",
"\n",
"\n"
]
},
{
"cell_type": "code",
"execution_count": 144,
"metadata": {},
"outputs": [],
"source": [
"# Casting ts_offset as int\n",
"f['ts_offset'] = f['rounded_dt'].astype(int) / 10 ** 9\n"
]
},
{
"cell_type": "code",
"execution_count": 145,
"metadata": {},
"outputs": [],
"source": [
"result = f.sort_values(['site', 'conf', 'zone','dow', 'ts_offset'])\n",
"result.to_csv(output_file)"
]
},
{
"cell_type": "code",
"execution_count": 146,
"metadata": {},
"outputs": [],
"source": [
"import chart_studio.plotly as py\n",
"import plotly.express as px\n"
]
},
{
"cell_type": "code",
"execution_count": 147,
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.plotly.v1+json": {
"config": {
"plotlyServerURL": "https://plot.ly"
},
"data": [
{
"hovertemplate": "dow=6<br>ts_offset=%{x}<br>presence=%{y}<extra></extra>",
"legendgroup": "6",
"line": {
"color": "#636efa",
"dash": "solid"
},
"mode": "lines",
"name": "6",
"showlegend": true,
"type": "scattergl",
"x": [
240,
300,
360,
420,
480,
540,
600,
660,
720,
780,
840,
900,
960,
1020,
1080,
1140,
1200,
1260,
1320,
1380,
1440,
1500,
1560,
1620,
1680,
1740,
1800,
1860,
1920,
1980,
2040,
2100,
2160,
2220,
2280,
2340,
2400,
2460,
2520,
2580,
2640,
2700,
2760,
2820,
2880,
2940,
3000,
3060,
3120,
3180,
3240,
3300,
3360,
3420,
3480,
3540,
3600,
3660,
3720,
3780,
3840,
3900,
3960,
4020,
4080,
4140,
4200,
4260,
4320,
4380,
4440,
4500,
4560,
4620,
4680,
4740,
4800,
4860,
4920,
4980,
5040,
5100,
5160,
5220,
5280,
5340,
5400,
5460,
5520,
5580,
5640,
5700,
5760,
5820,
5880,
5940,
6000,
6060,
6120,
6180,
6240,
6300,
6360,
6420,
6480,
6540,
6600,
6660,
6720,
6780,
6840,
6900,
6960,
7020,
7080,
7140,
7200,
7260,
7320,
7380,
7440,
7500,
7560,
7620,
7680,
7740,
7800,
7860,
7920,
7980,
8040,
8100,
8160,
8220,
8280,
8340,
8400,
8460,
8520,
8580,
8640,
8700,
8760,
8820,
8880,
8940,
9000,
9060,
9120,
9180,
9240,
9300,
9360,
9420,
9480,
9540,
9600,
9660,
9720,
9780,
9840,
9900,
9960,
10020,
10080,
10140,
10200,
10260,
10320,
10380,
10440,
10500,
10560,
10620,
10680,
10740,
10800,
10860,
10920,
10980,
11040,
11100,
11160,
11220,
11280,
11340,
11400,
11460,
11520,
11580,
11640,
11700,
11760,
11820,
11880,
11940,
12000,
12060,
12120,
12180,
12240,
12300,
12360,
12420,
12480,
12540,
12600,
12660,
12720,
12780,
12840,
12900,
12960,
13020,
13080,
13140,
13200,
13260,
13320,
13380,
13440,
13500,
13560,
13620,
13680,
13740,
13800,
13860,
13920,
13980,
14040,
14100,
14160,
14220,
14280,
14340,
14400,
14460,
14520,
14580,
14640,
14700,
14760,
14820,
14880,
14940,
15000,
15060,
15120,
15180,
15240,
15300,
15360,
15420,
15480,
15540,
15600,
15660,
15720,
15780,
15840,
15900,
15960,
16020,
16080,
16140,
16200,
16260,
16320,
16380,
16440,
16500,
16560,
16620,
16680,
16740,
16800,
16860,
16920,
16980,
17040,
17100,
17160,
17220,
17280,
17340,
17400,
17460,
17520,
17580,
17640,
17700,
17760,
17820,
17880,
17940,
18000,
18060,
18120,
18180,
18240,
18300,
18360,
18420,
18480,
18540,
18600,
18660,
18720,
18780,
18840,
18900,
18960,
19020,
19080,
19140,
19200,
19260,
19320,
19380,
19440,
19500,
19560,
19620,
19680,
19740,
19800,
19860,
19920,
19980,
20040,
20100,
20160,
20220,
20280,
20340,
20400,
20460,
20520,
20580,
20640,
20700,
20760,
20820,
20880,
20940,
21000,
21060,
21120,
21180,
21240,
21300,
21360,
21420,
21480,
21540,
21600,
21660,
21720,
21780,
21840,
21900,
21960,
22020,
22080,
22140,
22200,
22260,
22320,
22380,
22440,
22500,
22560,
22620,
22680,
22740,
22800,
22860,
22920,
22980,
23040,
23100,
23160,
23220,
23280,
23340,
23400,
23460,
23520,
23580,
23640,
23700,
23760,
23820,
23880,
23940,
24000,
24060,
24120,
24180,
24240,
24300,
24360,
24420,
24480,
24540,
24600,
24660,
24720,
24780,
24840,
24900,
24960,
25020,
25080,
25140,
25200,
25260,
25320,
25380,
25440,
25500,
25560,
25620,
25680,
25740,
25800,
25860,
25920,
25980,
26040,
26100,
26160,
26220,
26280,
26340,
26400,
26460,
26520,
26580,
26640,
26700,
26760,
26820,
26880,
26940,
27000,
27060,
27120,
27180,
27240,
27300,
27360,
27420,
27480,
27540,
27600,
27660,
27720,
27780,
27840,
27900,
27960,
28020,
28080,
28140,
28200,
28260,
28320,
28380,
28440,
28500,
28560,
28620,
28680,
28740,
28800,
28860,
28920,
28980,
29040,
29100,
29160,
29220,
29280,
29340,
29400,
29460,
29520,
29580,
29640,
29700,
29760,
29820,
29880,
29940,
30000,
30060,
30120,
30180,
30240,
30300,
30360,
30420,
30480,
30540,
30600,
30660,
30720,
30780,
30840,
30900,
30960,
31020,
31080,
31140,
31200,
31260,
31320,
31380,
31440,
31500,
31560,
31620,
31680,
31740,
31800,
31860,
31920,
31980,
32040,
32100,
32160,
32220,
32280,
32340,
32400,
32460,
32520,
32580,
32640,
32700,
32760,
32820,
32880,
32940,
33000,
33060,
33120,
33180,
33240,
33300,
33360,
33420,
33480,
33540,
33600,
33660,
33720,
33780,
33840,
33900,
33960,
34020,
34080,
34140,
34200,
34260,
34320,
34380,
34440,
34500,
34560,
34620,
34680,
34740,
34800,
34860,
34920,
34980,
35040,
35100,
35160,
35220,
35280,
35340,
35400,
35460,
35520,
35580,
35640,
35700,
35760,
35820,
35880,
35940,
36000,
36060,
36120,
36180,
36240,
36300,
36360,
36420,
36480,
36540,
36600,
36660,
36720,
36780,
36840,
36900,
36960,
37020,
37080,
37140,
37200,
37260,
37320,
37380,
37440,
37500,
37560,
37620,
37680,
37740,
37800,
37860,
37920,
37980,
38040,
38100,
38160,
38220,
38280,
38340,
38400,
38460,
38520,
38580,
38640,
38700,
38760,
38820,
38880,
38940,
39000,
39060,
39120,
39180,
39240,
39300,
39360,
39420,
39480,
39540,
39600,
39660,
39720,
39780,
39840,
39900,
39960,
40020,
40080,
40140,
40200,
40260,
40320,
40380,
40440,
40500,
40560,
40620,
40680,
40740,
40800,
40860,
40920,
40980,
41040,
41100,
41160,
41220,
41280,
41340,
41400,
41460,
41520,
41580,
41640,
41700,
41760,
41820,
41880,
41940,
42000,
42060,
42120,
42180,
42240,
42300,
42360,
42420,
42480,
42540,
42600,
42660,
42720,
42780,
42840,
42900,
42960,
43020,
43080,
43140,
43200,
43260,
43320,
43380,
43440,
43500,
43560,
43620,
43680,
43740,
43800,
43860,
43920,
43980,
44040,
44100,
44160,
44220,
44280,
44340,
44400,
44460,
44520,
44580,
44640,
44700,
44760,
44820,
44880,
44940,
45000,
45060,
45120,
45180,
45240,
45300,
45360,
45420,
45480,
45540,
45600,
45660,
45720,
45780,
45840,
45900,
45960,
46020,
46080,
46140,
46200,
46260,
46320,
46380,
46440,
46500,
46560,
46620,
46680,
46740,
46800,
46860,
46920,
46980,
47040,
47100,
47160,
47220,
47280,
47340,
47400,
47460,
47520,
47580,
47640,
47700,
47760,
47820,
47880,
47940,
48000,
48060,
48120,
48180,
48240,
48300,
48360,
48420,
48480,
48540,
48600,
48660,
48720,
48780,
48840,
48900,
48960,
49020,
49080,
49140,
49200,
49260,
49320,
49380,
49440,
49500,
49560,
49620,
49680,
49740,
49800,
49860,
49920,
49980,
50040,
50100,
50160,
50220,
50280,
50340,
50400,
50460,
50520,
50580,
50640,
50700,
50760,
50820,
50880,
50940,
51000,
51060,
51120,
51180,
51240,
51300,
51360,
51420,
51480,
51540,
51600,
51660,
51720,
51780,
51840,
51900,
51960,
52020,
52080,
52140,
52200,
52260,
52320,
52380,
52440,
52500,
52560,
52620,
52680,
52740,
52800,
52860,
52920,
52980,
53040,
53100,
53160,
53220,
53280,
53340,
53400,
53460,
53520,
53580,
53640,
53700,
53760,
53820,
53880,
53940,
54000,
54060,
54120,
54180,
54240,
54300,
54360,
54420,
54480,
54540,
54600,
54660,
54720,
54780,
54840,
54900,
54960,
55020,
55080,
55140,
55200,
55260,
55320,
55380,
55440,
55500,
55560,
55620,
55680,
55740,
55800,
55860,
55920,
55980,
56040,
56100,
56160,
56220,
56280,
56340,
56400,
56460,
56520,
56580,
56640,
56700,
56760,
56820,
56880,
56940,
57000,
57060,
57120,
57180,
57240,
57300,
57360,
57420,
57480,
57540,
57600,
57660,
57720,
57780,
57840,
57900,
57960,
58020,
58080,
58140,
58200,
58260,
58320,
58380,
58440,
58500,
58560,
58620,
58680,
58740,
58800,
58860,
58920,
58980,
59040,
59100,
59160,
59220,
59280,
59340,
59400,
59460,
59520,
59580,
59640,
59700,
59760,
59820,
59880,
59940,
60000,
60060,
60120,
60180,
60240,
60300,
60360,
60420,
60480,
60540,
60600,
60660,
60720,
60780,
60840,
60900,
60960,
61020,
61080,
61140,
61200,
61260,
61320,
61380,
61440,
61500,
61560,
61620,
61680,
61740,
61800,
61860,
61920,
61980,
62040,
62100,
62160,
62220,
62280,
62340,
62400,
62460,
62520,
62580,
62640,
62700,
62760,
62820,
62880,
62940,
63000,
63060,
63120,
63180,
63240,
63300,
63360,
63420,
63480,
63540,
63600,
63660,
63720,
63780,
63840,
63900,
63960,
64020,
64080,
64140,
64200,
64260,
64320,
64380,
64440,
64500,
64560,
64620,
64680,
64740,
64800,
64860,
64920,
64980,
65040,
65100,
65160,
65220,
65280,
65340,
65400,
65460,
65520,
65580,
65640,
65700,
65760,
65820,
65880,
65940,
66000,
66060,
66120,
66180,
66240,
66300,
66360,
66420,
66480,
66540,
66600,
66660,
66720,
66780,
66840,
66900,
66960,
67020,
67080,
67140,
67200,
67260,
67320,
67380,
67440,
67500,
67560,
67620,
67680,
67740,
67800,
67860,
67920,
67980,
68040,
68100,
68160,
68220,
68280,
68340,
68400,
68460,
68520,
68580,
68640,
68700,
68760,
68820,
68880,
68940,
69000,
69060,
69120,
69180,
69240,
69300,
69360,
69420,
69480,
69540,
69600,
69660,
69720,
69780,
69840,
69900,
69960,
70020,
70080,
70140,
70200,
70260,
70320,
70380,
70440,
70500,
70560,
70620,
70680,
70740,
70800,
70860,
70920,
70980,
71040,
71100,
71160,
71220,
71280,
71340,
71400,
71460,
71520,
71580,
71640,
71700,
71760,
71820,
71880,
71940,
72000,
72060,
72120,
72180,
72240,
72300,
72360,
72420,
72480,
72540,
72600,
72660,
72720,
72780,
72840,
72900,
72960,
73020,
73080,
73140,
73200,
73260,
73320,
73380,
73440,
73500,
73560,
73620,
73680,
73740,
73800,
73860,
73920,
73980,
74040,
74100,
74160,
74220,
74280,
74340,
74400,
74460,
74520,
74580,
74640,
74700,
74760,
74820,
74880,
74940,
75000,
75060,
75120,
75180,
75240,
75300,
75360,
75420,
75480,
75540,
75600,
75660,
75720,
75780,
75840,
75900,
75960,
76020,
76080,
76140,
76200,
76260,
76320,
76380,
76440,
76500,
76560,
76620,
76680,
76740,
76800,
76860,
76920,
76980,
77040,
77100,
77160,
77220,
77280,
77340,
77400,
77460,
77520,
77580,
77640,
77700,
77760,
77820,
77880,
77940,
78000,
78060,
78120,
78180,
78240,
78300,
78360,
78420,
78480,
78540,
78600,
78660,
78720,
78780,
78840,
78900,
78960,
79020,
79080,
79140,
79200,
79260,
79320,
79380,
79440,
79500,
79560,
79620,
79680,
79740,
79800,
79860,
79920,
79980,
80040,
80100,
80160,
80220,
80280,
80340,
80400,
80460,
80520,
80580,
80640,
80700,
80760,
80820,
80880,
80940,
81000,
81060,
81120,
81180,
81240,
81300,
81360,
81420,
81480,
81540,
81600,
81660,
81720,
81780,
81840,
81900,
81960,
82020,
82080,
82140,
82200,
82260,
82320,
82380,
82440,
82500,
82560,
82620,
82680,
82740,
82800,
82860,
82920,
82980,
83040,
83100,
83160,
83220,
83280,
83340,
83400,
83460,
83520,
83580,
83640,
83700,
83760,
83820,
83880,
83940,
84000,
84060,
84120,
84180,
84240,
84300,
84360,
84420,
84480,
84540,
84600,
84660,
84720,
84780,
84840,
84900,
84960,
85020,
85080,
85140,
85200,
85260,
85320,
85380,
85440,
85500,
85560,
85620,
85680,
85740,
85800,
85860,
85920,
85980,
86040,
86100,
86160,
86220,
86280,
86340
],
"xaxis": "x",
"y": [
181.66666666666666,
157.44444444444443,
133.22222222222223,
109,
84.77777777777777,
60.55555555555555,
53.63492063492063,
46.71428571428571,
39.79365079365079,
32.87301587301587,
25.952380952380953,
23.184126984126983,
20.415873015873018,
17.64761904761905,
14.87936507936508,
12.11111111111111,
10.860931899641576,
9.610752688172042,
8.360573476702509,
7.110394265232975,
5.860215053763441,
5.26489161973033,
4.6695681856972175,
4.074244751664106,
3.478921317630995,
2.8835978835978833,
2.592967545723451,
2.3023372078490185,
2.0117068699745864,
1.721076532100154,
1.4304461942257216,
1.2868406155112961,
1.1432350367968709,
0.9996294580824454,
0.85602387936802,
0.7124183006535947,
0.6410370540910427,
0.5696558075284908,
0.49827456096593886,
0.4268933144033869,
0.35551206784083494,
0.3199261091439615,
0.28434015044708816,
0.24875419175021474,
0.21316823305334132,
0.1775822743564679,
0.15981537167537135,
0.1420484689942748,
0.12428156631317826,
0.10651466363208172,
0.08874776095098517,
0.07987081763339701,
0.07099387431580885,
0.06211693099822069,
0.053239987680632525,
0.04436304436304436,
0.039926198319556884,
0.035489352276069405,
0.031052506232581923,
0.026615660189094444,
0.022178814145606966,
0.01996079735404483,
0.017742780562482695,
0.015524763770920562,
0.013306746979358427,
0.011088730187796292,
0.009979823327864932,
0.008870916467933572,
0.0077620096080022105,
0.00665310274807085,
0.00554419588813949,
0.004989767839424895,
0.004435339790710301,
0.003880911741995706,
0.003326483693281111,
0.0027720556445665163,
0.0024948479651831115,
0.0022176402857997067,
0.0019404326064163023,
0.0016632249270328975,
0.0013860172476494927,
0.001247414994158906,
0.0011088127406683195,
0.0009702104871777326,
0.000831608233687146,
0.0006930059801965593,
0.0006237052499962504,
0.0005544045197959414,
0.00048510378959563255,
0.0004158030593953236,
0.00034650232919501467,
0.0003118520632304445,
0.00027720179726587434,
0.00024255153130130414,
0.00020790126533673398,
0.0001732509993721638,
0.00015592589117369206,
0.0001386007829752203,
0.00012127567477674859,
0.00010395056657827684,
8.66254583798051e-05,
7.796291047651223e-05,
6.930036257321936e-05,
6.0637814669926485e-05,
5.1975266766633614e-05,
4.331271886334074e-05,
3.898144646067876e-05,
3.465017405801678e-05,
3.0318901655354804e-05,
2.5987629252692823e-05,
2.1656356850030842e-05,
1.9490721035945805e-05,
1.7325085221860765e-05,
1.5159449407775728e-05,
1.2993813593690691e-05,
1.0828177779605653e-05,
36.20001082420407,
72.40001082023036,
108.60001081625666,
144.80001081228295,
181.00001080830924,
208.0333434636397,
235.06667611897015,
262.1000087743006,
289.13334142963106,
316.1666740849615,
350.20000693003345,
384.2333397751054,
418.2666726201773,
452.3000054652492,
486.33333831032115,
498.5666711915284,
510.8000040727357,
523.0333369539429,
535.2666698351502,
547.5000027163575,
541.4500024334527,
535.400002150548,
529.3500018676432,
523.3000015847384,
517.2500013018337,
530.4916678506493,
543.7333343994649,
556.9750009482804,
570.216667497096,
583.4583340459116,
581.2125006402746,
578.9666672346376,
576.7208338290008,
574.4750004233638,
572.2291670177268,
581.6729169848196,
591.1166669519123,
600.5604169190051,
610.0041668860978,
619.4479168531906,
622.6031251682389,
625.7583334832871,
628.9135417983354,
632.0687501133835,
635.2239584284318,
638.2682292524325,
641.3125000764333,
644.3567709004338,
647.4010417244345,
650.4453125484353,
653.100781293669,
655.7562500389027,
658.4117187841365,
661.0671875293702,
663.722656274604,
670.717057313912,
677.7114583532201,
684.7058593925282,
691.7002604318362,
698.6946614711443,
683.6251953239203,
668.5557291766961,
653.4862630294721,
638.4167968822479,
623.3473307350239,
597.0459309947591,
570.7445312544944,
544.4431315142297,
518.1417317739649,
491.8403320337002,
508.60629883036063,
525.3722656270211,
542.1382324236816,
558.9041992203421,
575.6701660170025,
593.9698160819856,
612.2694661469686,
630.5691162119517,
648.8687662769347,
667.1684163419178,
664.3515747077247,
661.5347330735317,
658.7178914393386,
655.9010498051456,
653.0842081709525,
657.2757873538582,
661.4673665367638,
665.6589457196696,
669.8505249025753,
674.042104085481,
651.3878936769304,
628.7336832683797,
606.079472859829,
583.4252624512783,
560.7710520427277,
555.0606135051212,
549.3501749675148,
543.6397364299083,
537.929297892302,
532.2188593546955,
533.996973419226,
535.7750874837565,
537.553201548287,
539.3313156128174,
541.109429677348,
549.8584867096133,
558.6075437418787,
567.3566007741439,
576.1056578064092,
584.8547148386746,
589.6292433548072,
594.4037718709397,
599.1783003870723,
603.9528289032049,
608.7273574193375,
641.1879550107373,
673.648552602137,
706.1091501935366,
738.5697477849363,
771.0303453763361,
767.0773108387025,
763.1242763010689,
759.1712417634352,
755.2182072258016,
751.265172688168,
752.9053220860179,
754.5454714838678,
756.1856208817176,
757.8257702795675,
759.4659196774173,
752.5193277096756,
745.5727357419339,
738.6261437741921,
731.6795518064504,
724.7329598387087,
755.1929971881711,
785.6530345376336,
816.1130718870961,
846.5731092365586,
877.0331465860211,
861.779831927419,
846.5265172688169,
831.2732026102148,
816.0198879516126,
800.7665732930105,
779.0899159637095,
757.4132586344084,
735.7366013051073,
714.0599439758063,
692.3832866465052,
690.9949579818547,
689.6066293172041,
688.2183006525537,
686.8299719879031,
685.4416433232526,
670.864145657594,
656.2866479919354,
641.7091503262768,
627.1316526606182,
612.5541549949596,
608.2487394954636,
603.9433239959677,
599.6379084964717,
595.3324929969758,
591.0270774974798,
583.0243697477318,
575.0216619979839,
567.0189542482358,
559.0162464984878,
551.0135387487398,
558.9621848738659,
566.9108309989919,
574.8594771241179,
582.8081232492439,
590.7567693743699,
595.7144257702663,
600.6720821661627,
605.629738562059,
610.5873949579553,
615.5450513538517,
627.7905462184665,
640.0360410830814,
652.2815359476962,
664.5270308123111,
676.7725256769259,
697.3952731092332,
718.0180205415406,
738.6407679738481,
759.2635154061555,
779.8862628384629,
811.33096988795,
842.775676937437,
874.220383986924,
905.665091036411,
937.1097980858981,
939.965484943975,
942.8211718020518,
945.6768586601286,
948.5325455182054,
951.3882323762823,
972.049409138654,
992.7105859010259,
1013.3717626633976,
1034.0329394257694,
1054.6941161881412,
1088.5580379026603,
1122.4219596171795,
1156.2858813316989,
1190.149803046218,
1224.0137247607372,
1224.9623522846634,
1225.9109798085897,
1226.8596073325161,
1227.8082348564424,
1228.7568623803686,
1214.0811761423317,
1199.4054899042949,
1184.729803666258,
1170.0541174282212,
1155.3784311901843,
1186.1905880711658,
1217.0027449521474,
1247.8149018331292,
1278.6270587141107,
1309.4392155950923,
1334.595294035583,
1359.7513724760738,
1384.9074509165646,
1410.0635293570554,
1435.2196077975461,
1422.7976470177914,
1410.375686238037,
1397.9537254582822,
1385.5317646785277,
1373.109803898773,
1377.2988235088956,
1381.4878431190184,
1385.676862729141,
1389.8658823392639,
1394.0549019493865,
1364.3494117544478,
1334.6439215595092,
1304.9384313645705,
1275.2329411696319,
1245.5274509746932,
1265.9747058772239,
1286.4219607797545,
1306.8692156822854,
1327.316470584816,
1347.7637254873466,
1371.387352938612,
1395.0109803898772,
1418.6346078411427,
1442.258235292408,
1465.8818627436733,
1475.493676469306,
1485.1054901949385,
1494.7173039205713,
1504.329117646204,
1513.9409313718365,
1526.4968382346528,
1539.0527450974691,
1551.6086519602857,
1564.164558823102,
1576.7204656859183,
1565.5484191173264,
1554.3763725487347,
1543.2043259801428,
1532.0322794115511,
1520.8602328429592,
1516.94087622533,
1513.0215196077006,
1509.1021629900715,
1505.1828063724422,
1501.2634497548129,
1522.1371047793316,
1543.0107598038503,
1563.884414828369,
1584.7580698528877,
1605.6317248774064,
1624.4685523896658,
1643.305379901925,
1662.1422074141847,
1680.979034926444,
1699.8158624387033,
1671.234276194833,
1642.6526899509627,
1614.0711037070923,
1585.489517463222,
1556.9079312193517,
1547.6504714307498,
1538.393011642148,
1529.135551853546,
1519.8780920649442,
1510.6206322763423,
1521.258569048708,
1531.8965058210738,
1542.5344425934397,
1553.1723793658055,
1563.8103161381712,
1583.579284524354,
1603.348252910537,
1623.11722129672,
1642.8861896829028,
1662.6551580690857,
1685.2229755955104,
1707.7907931219352,
1730.35861064836,
1752.9264281747846,
1775.4942457012094,
1781.3948211310885,
1787.2953965609674,
1793.1959719908466,
1799.0965474207255,
1804.9971228506047,
1790.2640772322109,
1775.531031613817,
1760.7979859954235,
1746.0649403770296,
1731.3318947586358,
1739.9987052827723,
1748.6655158069086,
1757.3323263310451,
1765.9991368551814,
1774.665947379318,
1788.899352641386,
1803.1327579034544,
1817.3661631655225,
1831.5995684275908,
1845.832973689659,
1838.3163429873598,
1830.7997122850604,
1823.2830815827613,
1815.766450880462,
1808.2498201781627,
1801.0748381603464,
1793.89985614253,
1786.724874124714,
1779.5498921068977,
1772.3749100890814,
1744.4374190801732,
1716.499928071265,
1688.562437062357,
1660.6249460534489,
1632.6874550445407,
1656.5187095400865,
1680.3499640356326,
1704.1812185311785,
1728.0124730267246,
1751.8437275222705,
1722.12602143671,
1692.4083153511497,
1662.6906092655895,
1632.972903180029,
1603.2551970944687,
1595.7796773850218,
1588.304157675575,
1580.828637966128,
1573.3531182566812,
1565.8775985472344,
1571.289838692511,
1576.7020788377874,
1582.114318983064,
1587.5265591283405,
1592.9387992736172,
1600.7949193462555,
1608.6510394188938,
1616.507159491532,
1624.3632795641704,
1632.2193996368087,
1658.7307930064612,
1685.2421863761135,
1711.753579745766,
1738.2649731154183,
1764.7763664850709,
1792.2987298365638,
1819.8210931880567,
1847.3434565395496,
1874.8658198910425,
1902.3881832425354,
1883.8160315849486,
1865.2438799273616,
1846.6717282697748,
1828.0995766121878,
1809.527424954601,
1818.6246824591408,
1827.7219399636808,
1836.8191974682206,
1845.9164549727607,
1855.0137124773005,
1858.8456745629037,
1862.6776366485071,
1866.5095987341103,
1870.3415608197138,
1874.173522905317,
1876.7561706147853,
1879.3388183242537,
1881.9214660337218,
1884.5041137431901,
1887.0867614526585,
1876.8447519740594,
1866.6027424954602,
1856.3607330168609,
1846.1187235382617,
1835.8767140596626,
1799.8890426536964,
1763.9013712477301,
1727.913699841764,
1691.9260284357977,
1655.9383570298314,
1658.611187993515,
1661.2840189571984,
1663.9568499208822,
1666.6296808845657,
1669.3025118482492,
1677.7922606634243,
1686.2820094785993,
1694.7717582937744,
1703.2615071089494,
1711.7512559241245,
1686.076130331712,
1660.4010047392997,
1634.725879146887,
1609.0507535544748,
1583.3756279620623,
1549.238065165856,
1515.1005023696498,
1480.9629395734435,
1446.8253767772374,
1412.687813981031,
1412.9856992495945,
1413.283584518158,
1413.5814697867218,
1413.8793550552853,
1414.1772403238488,
1435.809516291464,
1457.441792259079,
1479.0740682266942,
1500.7063441943092,
1522.3386201619244,
1491.7380914790654,
1461.137562796206,
1430.537034113347,
1399.9365054304878,
1369.3359767476288,
1397.002379072866,
1424.668781398103,
1452.3351837233402,
1480.001586048577,
1507.6679883738143,
1543.5678562030996,
1579.467724032385,
1615.36759186167,
1651.2674596909553,
1687.1673275202406,
1655.2505947682166,
1623.3338620161926,
1591.4171292641684,
1559.5003965121443,
1527.5836637601203,
1523.091964050775,
1518.6002643414297,
1514.1085646320842,
1509.6168649227388,
1505.1251652133935,
1554.362648692054,
1603.6001321707147,
1652.8376156493755,
1702.075099128036,
1751.3125826066967,
1745.4479910126936,
1739.5833994186905,
1733.7188078246877,
1727.8542162306846,
1721.9896246366816,
1776.2406621730133,
1830.4916997093453,
1884.742737245677,
1938.993774782009,
1993.2448123183408,
2005.9869977531735,
2018.729183188006,
2031.4713686228386,
2044.213554057671,
2056.9557394925037,
2080.360165543253,
2103.764591594003,
2127.1690176447523,
2150.573443695502,
2173.9778697462516,
2170.846749438293,
2167.7156291303345,
2164.584508822376,
2161.4533885144174,
2158.322268206459,
2118.590041385813,
2078.8578145651672,
2039.1255877445212,
1999.3933609238752,
1959.6611341032294,
1962.3950206929064,
1965.1289072825834,
1967.8627938722607,
1970.5966804619377,
1973.3305670516147,
2012.5975103464532,
2051.8644536412917,
2091.1313969361304,
2130.3983402309686,
2169.6652835258074,
2169.7987551732267,
2169.932226820646,
2170.065698468065,
2170.1991701154843,
2170.3326417629037,
2133.449377586613,
2096.566113410323,
2059.682849234033,
2022.7995850577422,
1985.9163208814518,
2008.1913554599732,
2030.4663900384949,
2052.7414246170165,
2075.0164591955377,
2097.2914937740593,
2107.2123443966534,
2117.1331950192475,
2127.054045641841,
2136.9748962644353,
2146.8957468870294,
2103.3061721983263,
2059.7165975096236,
2016.1270228209205,
1972.5374481322176,
1928.9478734435147,
1907.7030860991633,
1886.4582987548117,
1865.2135114104603,
1843.9687240661087,
1822.7239367217574,
1813.6182097162482,
1804.5124827107393,
1795.4067557052301,
1786.3010286997212,
1777.195301694212,
1696.4757715247908,
1615.7562413553696,
1535.0367111859484,
1454.3171810165272,
1373.597650847106,
1409.7712190957288,
1445.9447873443514,
1482.1183555929742,
1518.2919238415968,
1554.4654920902196,
1592.4689428811976,
1630.4723936721757,
1668.4758444631536,
1706.4792952541318,
1744.4827460451097,
1782.9011381072653,
1821.3195301694211,
1859.7379222315767,
1898.1563142937325,
1936.574706355888,
1979.1672357202992,
2021.7597650847106,
2064.352294449122,
2106.944823813533,
2149.537353177944,
2130.8502845268163,
2112.163215875689,
2093.476147224561,
2074.7890785734335,
2056.1020099223056,
2028.841808930075,
2001.5816079378444,
1974.321406945614,
1947.0612059533833,
1919.8010049611528,
1915.8542377983708,
1911.9074706355889,
1907.960703472807,
1904.013936310025,
1900.067169147243,
1878.4604522325187,
1856.8537353177944,
1835.2470184030701,
1813.6403014883458,
1792.0335845736215,
1812.0302261162594,
1832.0268676588973,
1852.023509201535,
1872.020150744173,
1892.0167922868109,
1946.66511305813,
2001.3134338294487,
2055.9617546007676,
2110.6100753720866,
2165.2583961434057,
2151.632556529065,
2138.0067169147246,
2124.380877300384,
2110.7550376860436,
2097.129198071703,
2186.0162782645325,
2274.903358457362,
2363.7904386501923,
2452.677518843022,
2541.5645990358516,
2527.0414724656,
2512.518345895348,
2497.9952193250965,
2483.4720927548447,
2468.948966184593,
2453.5040695661337,
2438.059172947674,
2422.614276329215,
2407.1693797107555,
2391.7244830922964,
2391.0187014497333,
2390.3129198071706,
2389.6071381646075,
2388.901356522045,
2388.1955748794817,
2454.1260173915334,
2520.056459903585,
2585.9869024156374,
2651.917344927689,
2717.847787439741,
2698.5296753624334,
2679.211563285126,
2659.8934512078185,
2640.575339130511,
2621.2572270532037,
2605.6315043478835,
2590.005781642563,
2574.3800589372427,
2558.754336231922,
2543.128613526602,
2526.8157521739417,
2510.5028908212817,
2494.190029468621,
2477.877168115961,
2461.564306763301,
2449.857876086971,
2438.151445410641,
2426.4450147343105,
2414.7385840579805,
2403.0321533816505,
2396.062271376819,
2389.092389371987,
2382.1225073671553,
2375.1526253623233,
2368.1827433574917,
2361.9644690217424,
2355.7461946859935,
2349.527920350244,
2343.3096460144952,
2337.091371678746,
2302.248901177538,
2267.40643067633,
2232.5639601751222,
2197.721489673914,
2162.879019172706,
2126.4911172554357,
2090.103215338165,
2053.7153134208943,
2017.3274115036238,
1980.939509586353,
1977.4788919610512,
1974.018274335749,
1970.5576567104472,
1967.097039085145,
1963.6364214598432,
1950.5227793138588,
1937.4091371678746,
1924.2954950218902,
1911.181852875906,
1898.0682107299217,
1873.6613896569295,
1849.2545685839373,
1824.8477475109453,
1800.440926437953,
1776.0341053649609,
1802.8806948284648,
1829.7272842919688,
1856.5738737554725,
1883.4204632189765,
1910.2670526824804,
1925.6736807475656,
1941.080308812651,
1956.4869368777363,
1971.8935649428217,
1987.300193007907,
1982.8701737071162,
1978.4401544063255,
1974.010135105535,
1969.5801158047443,
1965.1500965039536,
2007.7017535202249,
2050.253410536496,
2092.8050675527675,
2135.3567245690388,
2177.90838158531,
2263.567543426779,
2349.226705268248,
2434.885867109717,
2520.545028951186,
2606.204190792655,
2620.9504383800563,
2635.6966859674576,
2650.4429335548584,
2665.1891811422597,
2679.935428729661,
2666.791885856695,
2653.648342983729,
2640.5048001107625,
2627.3612572377965,
2614.2177143648305,
2519.8292762616807,
2425.440838158531,
2331.0524000553814,
2236.6639619522316,
2142.2755238490818,
2075.4479714641734,
2008.6204190792655,
1941.7928666943571,
1874.965314309449,
1808.1377619245409,
1888.5239857320869,
1968.910209539633,
2049.2964333471787,
2129.682657154725,
2210.0688809622707,
2236.9119928660434,
2263.7551047698166,
2290.5982166735894,
2317.4413285773626,
2344.2844404811353,
2322.555996433022,
2300.8275523849084,
2279.0991083367944,
2257.370664288681,
2235.6422202405674,
2268.3779982165106,
2301.1137761924538,
2333.8495541683974,
2366.5853321443406,
2399.3211101202837,
2402.6889991082553,
2406.056888096227,
2409.4247770841985,
2412.79266607217,
2416.1605550601416,
2438.1944995541276,
2460.2284440481135,
2482.262388542099,
2504.296333036085,
2526.330277530071,
2540.66391644373,
2554.99755535739,
2569.3311942710493,
2583.664833184709,
2597.9984720983684,
2519.4486248885314,
2440.898777678695,
2362.348930468858,
2283.7990832590212,
2205.249236049184,
2214.657645777599,
2224.066055506014,
2233.474465234429,
2242.8828749628437,
2252.2912846912586,
2296.5621562221327,
2340.8330277530067,
2385.103899283881,
2429.3747708147553,
2473.6456423456293,
2439.547744777733,
2405.4498472098367,
2371.3519496419403,
2337.254052074044,
2303.1561545061477,
2281.890539055533,
2260.624923604918,
2239.3593081543036,
2218.0936927036887,
2196.828077253074,
2165.8786028611,
2134.9291284691258,
2103.9796540771517,
2073.0301796851777,
2042.0807052932037,
1940.6726347638833,
1839.2645642345628,
1737.8564937052424,
1636.4484231759222,
1535.0403526466018,
1504.769650715275,
1474.4989487839482,
1444.2282468526212,
1413.9575449212944,
1383.6868429899675,
1416.2681586909707,
1448.8494743919741,
1481.4307900929773,
1514.0121057939807,
1546.5934214949839,
1542.6840793454855,
1538.7747371959872,
1534.8653950464886,
1530.9560528969903,
1527.046710747492,
1622.8087063394094,
1718.5707019313268,
1814.3326975232444,
1910.0946931151618,
2005.8566887070792,
2043.9210198363712,
2081.985350965663,
2120.0496820949556,
2158.1140132242476,
2196.1783443535396,
2192.993843251519,
2189.809342149498,
2186.6248410474777,
2183.440339945457,
2180.2558388434363,
2166.1802549590925,
2152.104671074749,
2138.0290871904053,
2123.953503306062,
2109.877919421718,
2132.4234608128795,
2154.9690022040413,
2177.5145435952027,
2200.0600849863645,
2222.605626377526,
2282.445063739773,
2342.284501102021,
2402.123938464268,
2461.963375826516,
2521.802813188763,
2345.35586520322,
2168.9089172176773,
1992.4619692321342,
1816.0150212465912,
1639.5680732610483,
1668.1612659349435,
1696.7544586088386,
1725.3476512827338,
1753.940843956629,
1782.534036630524,
1816.713966300805,
1850.8938959710858,
1885.073825641367,
1919.2537553116479,
1953.4336849819288,
1978.9903164837358,
2004.5469479855428,
2030.10357948735,
2055.660210989157,
2081.216842490964,
2078.5618249085346,
2075.9068073261046,
2073.251789743675,
2070.596772161245,
2067.9417545788156,
2095.997579120934,
2124.0534036630524,
2152.109228205171,
2180.1650527472893,
2208.220877289408,
2238.598789560467,
2268.9767018315265,
2299.3546141025854,
2329.7325263736448,
2360.110438644704,
2355.549394780234,
2350.9883509157635,
2346.4273070512927,
2341.8662631868224,
2337.305219322352,
2306.9413640567836,
2276.577508791215,
2246.2136535256464,
2215.849798260078,
2185.4859429945095,
2167.4873486950587,
2149.488754395608,
2131.4901600961566,
2113.491565796706,
2095.492971497255,
2115.5436743475293,
2135.594377197804,
2155.6450800480784,
2175.695782898353,
2195.7464857486275,
2164.2718371737647,
2132.797188598902,
2101.3225400240394,
2069.8478914491766,
2038.3732428743137,
2069.7359185868822,
2101.0985942994507,
2132.4612700120197,
2163.823945724588,
2195.1866214371566,
2218.317959293441,
2241.449297149725,
2264.5806350060097,
2287.711972862294,
2310.8433107185783,
2308.3589796467204,
2305.8746485748625,
2303.390317503005,
2300.905986431147,
2298.421655359289,
2274.92948982336,
2251.4373242874312,
2227.9451587515023,
2204.4529932155733,
2180.9608276796444,
2188.4314115783463,
2195.901995477049,
2203.372579375751,
2210.843163274453,
2218.313747173155,
2215.8323724558395,
2213.3509977385243,
2210.8696230212086,
2208.3882483038933,
2205.9068735865776,
2187.049519561253,
2168.192165535929,
2149.334811510604,
2130.47745748528,
2111.6201034599553,
2096.60809311396,
2081.596082767964,
2066.584072421969,
2051.572062075973,
2036.5600517299777,
2019.40404655698,
2002.2480413839821,
1985.0920362109844,
1967.9360310379866,
1950.7800258649888,
1962.75202327849,
1974.724020691991,
1986.6960181054922,
1998.6680155189931,
2010.6400129324943,
2067.7426783059113,
2124.845343679329,
2181.948009052746,
2239.0506744261634,
2296.1533397995804,
2309.8380058196226,
2323.5226718396643,
2337.2073378597065,
2350.8920038797482,
2364.5766698997904,
2309.285669576478,
2253.9946692531657,
2198.7036689298534,
2143.412668606541,
2088.1216682832287,
2070.609501454906,
2053.097334626583,
2035.58516779826,
2018.0730009699373,
2000.5608341416144,
2029.9380840607862,
2059.3153339799583,
2088.69258389913,
2118.069833818302,
2147.447083737474,
2117.8523753637264,
2088.257666989979,
2058.6629586162317,
2029.0682502424843,
1999.473541868737,
2015.0595210151964,
2030.6455001616562,
2046.2314793081157,
2061.8174584545754,
2077.403437601035,
2076.7630938409316,
2076.122750080828,
2075.4824063207243,
2074.842062560621,
2074.2017188005175,
2045.5815469204658,
2016.961375040414,
1988.3412031603623,
1959.7210312803104,
1931.1008594002587,
1893.4407734602328,
1855.780687520207,
1818.120601580181,
1780.4605156401553,
1742.8004297001294,
1734.487053396783,
1726.1736770934367,
1717.8603007900906,
1709.5469244867443,
1701.233548183398,
1699.460193365058,
1697.6868385467183,
1695.9134837283787,
1694.1401289100388,
1692.366774091699,
1668.330096682529,
1644.2934192733592,
1620.2567418641893,
1596.2200644550194,
1572.1833870458495,
1587.4650483412645,
1602.7467096366795,
1618.0283709320947,
1633.3100322275097,
1648.5916935229247,
1637.3991908372989,
1626.206688151673,
1615.0141854660474,
1603.8216827804215,
1592.6291800947956,
1558.0162620853162,
1523.4033440758365,
1488.790426066357,
1454.1775080568773,
1419.5645900473978,
1394.4747977093248,
1369.3850053712515,
1344.2952130331785,
1319.2054206951052,
1294.1156283570322,
1272.354065521329,
1250.5925026856257,
1228.8309398499225,
1207.0693770142193,
1185.307814178516,
1183.5103660939978,
1181.7129180094796,
1179.9154699249611,
1178.118021840443,
1176.3205737559247,
1096.5885163803323,
1016.8564590047397,
937.1244016291473,
857.3923442535548,
777.6602868779623,
723.5942581901661,
669.5282295023699,
615.4622008145736,
561.3961721267774,
507.33014343898117,
556.447129095083,
605.5641147511849,
654.6811004072867,
703.7980860633887,
752.9150717194906,
788.5902312142082,
824.2653907089258,
859.9405502036434,
895.615709698361,
931.2908691930786,
941.2117822737707,
951.1326953544628,
961.0536084351551,
970.9745215158472,
980.8954345965393,
983.2392244702187,
985.5830143438981,
987.9268042175776,
990.270594091257,
992.6143839649363,
984.9029455684426,
977.1915071719491,
969.4800687754554,
961.7686303789618,
954.0571919824681,
985.4514727842213,
1016.8457535859744,
1048.2400343877275,
1079.6343151894807,
1111.028595991234,
1114.3257363921105,
1117.6228767929872,
1120.9200171938637,
1124.2171575947405,
1127.514297995617,
1108.9962015293886,
1090.4781050631602,
1071.9600085969319,
1053.4419121307035,
1034.9238156644751,
1003.9814340980276,
973.0390525315801,
942.0966709651326,
911.154289398685,
880.2119078322376,
860.3240503823472,
840.4361929324567,
820.5483354825664,
800.6604780326759,
780.7726205827855,
768.945358524507,
757.1180964662284,
745.2908344079499,
733.4635723496713,
721.6363102913928,
746.9726792622535,
772.3090482331143,
797.645417203975,
822.9817861748357,
848.3181551456964,
839.3863396311268,
830.4545241165572,
821.5227086019875,
812.5908930874178,
803.6590775728482,
801.4931698155634,
799.3272620582786,
797.1613543009937,
794.9954465437089,
792.8295387864241,
794.8465849077817,
796.8636310291392,
798.8806771504969,
800.8977232718545,
802.914769393212,
796.0899591205575,
789.265148847903,
782.4403385752485,
775.6155283025939,
768.7907180299394,
779.1116462269455,
789.4325744239516,
799.7535026209575,
810.0744308179636,
820.3953590149697,
815.5891564468061,
810.7829538786424,
805.9767513104788,
801.1705487423151,
796.3643461741515,
802.6779115567364,
808.9914769393212,
815.3050423219061,
821.6186077044908,
827.9321730870757,
796.9389557783682,
765.9457384696606,
734.952521160953,
703.9593038522454,
672.9660865435378,
628.519477889184,
584.0728692348303,
539.6262605804765,
495.1796519261227,
450.7330432717689,
451.49307227792536,
452.2531012840818,
453.0131302902382,
453.7731592963947,
454.53318830255114,
452.42986947229605,
450.3265506420409,
448.2232318117858,
446.11991298153066,
444.01659415127557,
465.78160140281466,
487.5466086543538,
509.3116159058929,
531.076623157432,
552.8416304089711,
565.307467368074,
577.7733043271769,
590.2391412862797,
602.7049782453827,
615.1708152044855,
612.7870670173703,
610.4033188302551,
608.0195706431398,
605.6358224560246,
603.2520742689094,
610.9768668420185,
618.7016594151276,
626.4264519882365,
634.1512445613456,
641.8760371344547,
620.6551000876759,
599.4341630408971,
578.2132259941183,
556.9922889473395,
535.7713519005607,
527.3942167105047,
519.0170815204485,
510.6399463303925,
502.26281114033645,
493.88567595028036,
495.33044168858567,
496.775207426891,
498.2199731651962,
499.66473890350153,
501.10950464180684,
503.8985541776261,
506.68760371344547,
509.47665324926476,
512.265702785084,
515.0547523209034,
507.8826104221464,
500.71046852338935,
493.53832662463236,
486.3661847258753,
479.1940428271183,
473.4246385444065,
467.65523426169466,
461.8858299789828,
456.116425696271,
450.34702141355916,
461.7456526055366,
473.144283797514,
484.54291498949146,
495.9415461814689,
507.3401773734463,
519.0561596361017,
530.772141898757,
542.4881241614124,
554.2041064240677,
565.9200886867231,
565.5614131513842,
565.2027376160452,
564.8440620807062,
564.4853865453672,
564.1267110100282,
560.9140399090254,
557.7013688080226,
554.4886977070197,
551.2760266060169,
548.0633555050141,
548.4236866211794,
548.7840177373446,
549.1443488535099,
549.5046799696751,
549.8650110858404,
555.5785099772563,
561.2920088686723,
567.0055077600882,
572.7190066515042,
578.4325055429201,
577.2559216552947,
576.0793377676695,
574.9027538800441,
573.7261699924188,
572.5495861047934,
554.1279608276474,
535.7063355505014,
517.2847102733554,
498.86308499620935,
480.44145971906335,
465.847313747157,
451.2531677752507,
436.65902180334433,
422.06487583143803,
407.4707298595317,
389.1236568735785,
370.77658388762535,
352.4295109016722,
334.082437915719,
315.73536492976586,
312.0451617701226,
308.35495861047934,
304.6647554508361,
300.9745522911928,
297.28434913154956,
298.1559142183946,
299.02747930523964,
299.8990443920847,
300.7706094789297,
301.6421745657748,
298.29462377586395,
294.9470729859531,
291.59952219604236,
288.25197140613153,
284.9044206162207,
281.06397855459863,
277.22353649297656,
273.3830944313545,
269.5426523697324,
265.70221030811035,
262.13198927729934,
258.56176824648827,
254.99154721567726,
251.42132618486622,
247.85110515405518,
243.36599463864965,
238.88088412324413,
234.39577360783863,
229.9106630924331,
225.4255525770276,
221.18299731932484,
216.94044206162206,
212.69788680391932,
208.45533154621654,
204.2127762885138,
210.61649865966243,
217.02022103081103,
223.42394340195966,
229.82766577310827,
236.2313881442569,
230.6082493298312,
224.98511051540552,
219.36197170097984,
213.73883288655415,
208.11569407212846
],
"yaxis": "y"
}
],
"layout": {
"legend": {
"title": {
"text": "dow"
},
"tracegroupgap": 0
},
"template": {
"data": {
"bar": [
{
"error_x": {
"color": "#2a3f5f"
},
"error_y": {
"color": "#2a3f5f"
},
"marker": {
"line": {
"color": "#E5ECF6",
"width": 0.5
}
},
"type": "bar"
}
],
"barpolar": [
{
"marker": {
"line": {
"color": "#E5ECF6",
"width": 0.5
}
},
"type": "barpolar"
}
],
"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"
}
],
"choropleth": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"type": "choropleth"
}
],
"contour": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
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,
"#f0f921"
]
],
"type": "contour"
}
],
"contourcarpet": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"type": "contourcarpet"
}
],
"heatmap": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
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,
"#f0f921"
]
],
"type": "heatmap"
}
],
"heatmapgl": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
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,
"#f0f921"
]
],
"type": "heatmapgl"
}
],
"histogram": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "histogram"
}
],
"histogram2d": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
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,
"#f0f921"
]
],
"type": "histogram2d"
}
],
"histogram2dcontour": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
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,
"#f0f921"
]
],
"type": "histogram2dcontour"
}
],
"mesh3d": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"type": "mesh3d"
}
],
"parcoords": [
{
"line": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "parcoords"
}
],
"pie": [
{
"automargin": true,
"type": "pie"
}
],
"scatter": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatter"
}
],
"scatter3d": [
{
"line": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatter3d"
}
],
"scattercarpet": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattercarpet"
}
],
"scattergeo": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattergeo"
}
],
"scattergl": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattergl"
}
],
"scattermapbox": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattermapbox"
}
],
"scatterpolar": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatterpolar"
}
],
"scatterpolargl": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatterpolargl"
}
],
"scatterternary": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatterternary"
}
],
"surface": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
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,
"#f0f921"
]
],
"type": "surface"
}
],
"table": [
{
"cells": {
"fill": {
"color": "#EBF0F8"
},
"line": {
"color": "white"
}
},
"header": {
"fill": {
"color": "#C8D4E3"
},
"line": {
"color": "white"
}
},
"type": "table"
}
]
},
"layout": {
"annotationdefaults": {
"arrowcolor": "#2a3f5f",
"arrowhead": 0,
"arrowwidth": 1
},
"coloraxis": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"colorscale": {
"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"
]
],
"sequential": [
[
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,
"#f0f921"
]
],
"sequentialminus": [
[
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,
"#f0f921"
]
]
},
"colorway": [
"#636efa",
"#EF553B",
"#00cc96",
"#ab63fa",
"#FFA15A",
"#19d3f3",
"#FF6692",
"#B6E880",
"#FF97FF",
"#FECB52"
],
"font": {
"color": "#2a3f5f"
},
"geo": {
"bgcolor": "white",
"lakecolor": "white",
"landcolor": "#E5ECF6",
"showlakes": true,
"showland": true,
"subunitcolor": "white"
},
"hoverlabel": {
"align": "left"
},
"hovermode": "closest",
"mapbox": {
"style": "light"
},
"paper_bgcolor": "white",
"plot_bgcolor": "#E5ECF6",
"polar": {
"angularaxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
},
"bgcolor": "#E5ECF6",
"radialaxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
}
},
"scene": {
"xaxis": {
"backgroundcolor": "#E5ECF6",
"gridcolor": "white",
"gridwidth": 2,
"linecolor": "white",
"showbackground": true,
"ticks": "",
"zerolinecolor": "white"
},
"yaxis": {
"backgroundcolor": "#E5ECF6",
"gridcolor": "white",
"gridwidth": 2,
"linecolor": "white",
"showbackground": true,
"ticks": "",
"zerolinecolor": "white"
},
"zaxis": {
"backgroundcolor": "#E5ECF6",
"gridcolor": "white",
"gridwidth": 2,
"linecolor": "white",
"showbackground": true,
"ticks": "",
"zerolinecolor": "white"
}
},
"shapedefaults": {
"line": {
"color": "#2a3f5f"
}
},
"ternary": {
"aaxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
},
"baxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
},
"bgcolor": "#E5ECF6",
"caxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
}
},
"title": {
"x": 0.05
},
"xaxis": {
"automargin": true,
"gridcolor": "white",
"linecolor": "white",
"ticks": "",
"title": {
"standoff": 15
},
"zerolinecolor": "white",
"zerolinewidth": 2
},
"yaxis": {
"automargin": true,
"gridcolor": "white",
"linecolor": "white",
"ticks": "",
"title": {
"standoff": 15
},
"zerolinecolor": "white",
"zerolinewidth": 2
}
}
},
"title": {
"text": "Gare Du Nord"
},
"xaxis": {
"anchor": "y",
"domain": [
0,
1
],
"title": {
"text": "ts_offset"
}
},
"yaxis": {
"anchor": "x",
"domain": [
0,
1
],
"title": {
"text": "presence"
}
}
}
},
"text/html": [
"<div>\n",
" \n",
" \n",
" <div id=\"d7632f73-cdae-4336-bca4-3dfcf9506a83\" class=\"plotly-graph-div\" style=\"height:525px; width:100%;\"></div>\n",
" <script type=\"text/javascript\">\n",
" require([\"plotly\"], function(Plotly) {\n",
" window.PLOTLYENV=window.PLOTLYENV || {};\n",
" \n",
" if (document.getElementById(\"d7632f73-cdae-4336-bca4-3dfcf9506a83\")) {\n",
" Plotly.newPlot(\n",
" 'd7632f73-cdae-4336-bca4-3dfcf9506a83',\n",
" [{\"hovertemplate\": \"dow=6<br>ts_offset=%{x}<br>presence=%{y}<extra></extra>\", \"legendgroup\": \"6\", \"line\": {\"color\": \"#636efa\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"6\", \"showlegend\": true, \"type\": \"scattergl\", \"x\": [240.0, 300.0, 360.0, 420.0, 480.0, 540.0, 600.0, 660.0, 720.0, 780.0, 840.0, 900.0, 960.0, 1020.0, 1080.0, 1140.0, 1200.0, 1260.0, 1320.0, 1380.0, 1440.0, 1500.0, 1560.0, 1620.0, 1680.0, 1740.0, 1800.0, 1860.0, 1920.0, 1980.0, 2040.0, 2100.0, 2160.0, 2220.0, 2280.0, 2340.0, 2400.0, 2460.0, 2520.0, 2580.0, 2640.0, 2700.0, 2760.0, 2820.0, 2880.0, 2940.0, 3000.0, 3060.0, 3120.0, 3180.0, 3240.0, 3300.0, 3360.0, 3420.0, 3480.0, 3540.0, 3600.0, 3660.0, 3720.0, 3780.0, 3840.0, 3900.0, 3960.0, 4020.0, 4080.0, 4140.0, 4200.0, 4260.0, 4320.0, 4380.0, 4440.0, 4500.0, 4560.0, 4620.0, 4680.0, 4740.0, 4800.0, 4860.0, 4920.0, 4980.0, 5040.0, 5100.0, 5160.0, 5220.0, 5280.0, 5340.0, 5400.0, 5460.0, 5520.0, 5580.0, 5640.0, 5700.0, 5760.0, 5820.0, 5880.0, 5940.0, 6000.0, 6060.0, 6120.0, 6180.0, 6240.0, 6300.0, 6360.0, 6420.0, 6480.0, 6540.0, 6600.0, 6660.0, 6720.0, 6780.0, 6840.0, 6900.0, 6960.0, 7020.0, 7080.0, 7140.0, 7200.0, 7260.0, 7320.0, 7380.0, 7440.0, 7500.0, 7560.0, 7620.0, 7680.0, 7740.0, 7800.0, 7860.0, 7920.0, 7980.0, 8040.0, 8100.0, 8160.0, 8220.0, 8280.0, 8340.0, 8400.0, 8460.0, 8520.0, 8580.0, 8640.0, 8700.0, 8760.0, 8820.0, 8880.0, 8940.0, 9000.0, 9060.0, 9120.0, 9180.0, 9240.0, 9300.0, 9360.0, 9420.0, 9480.0, 9540.0, 9600.0, 9660.0, 9720.0, 9780.0, 9840.0, 9900.0, 9960.0, 10020.0, 10080.0, 10140.0, 10200.0, 10260.0, 10320.0, 10380.0, 10440.0, 10500.0, 10560.0, 10620.0, 10680.0, 10740.0, 10800.0, 10860.0, 10920.0, 10980.0, 11040.0, 11100.0, 11160.0, 11220.0, 11280.0, 11340.0, 11400.0, 11460.0, 11520.0, 11580.0, 11640.0, 11700.0, 11760.0, 11820.0, 11880.0, 11940.0, 12000.0, 12060.0, 12120.0, 12180.0, 12240.0, 12300.0, 12360.0, 12420.0, 12480.0, 12540.0, 12600.0, 12660.0, 12720.0, 12780.0, 12840.0, 12900.0, 12960.0, 13020.0, 13080.0, 13140.0, 13200.0, 13260.0, 13320.0, 13380.0, 13440.0, 13500.0, 13560.0, 13620.0, 13680.0, 13740.0, 13800.0, 13860.0, 13920.0, 13980.0, 14040.0, 14100.0, 14160.0, 14220.0, 14280.0, 14340.0, 14400.0, 14460.0, 14520.0, 14580.0, 14640.0, 14700.0, 14760.0, 14820.0, 14880.0, 14940.0, 15000.0, 15060.0, 15120.0, 15180.0, 15240.0, 15300.0, 15360.0, 15420.0, 15480.0, 15540.0, 15600.0, 15660.0, 15720.0, 15780.0, 15840.0, 15900.0, 15960.0, 16020.0, 16080.0, 16140.0, 16200.0, 16260.0, 16320.0, 16380.0, 16440.0, 16500.0, 16560.0, 16620.0, 16680.0, 16740.0, 16800.0, 16860.0, 16920.0, 16980.0, 17040.0, 17100.0, 17160.0, 17220.0, 17280.0, 17340.0, 17400.0, 17460.0, 17520.0, 17580.0, 17640.0, 17700.0, 17760.0, 17820.0, 17880.0, 17940.0, 18000.0, 18060.0, 18120.0, 18180.0, 18240.0, 18300.0, 18360.0, 18420.0, 18480.0, 18540.0, 18600.0, 18660.0, 18720.0, 18780.0, 18840.0, 18900.0, 18960.0, 19020.0, 19080.0, 19140.0, 19200.0, 19260.0, 19320.0, 19380.0, 19440.0, 19500.0, 19560.0, 19620.0, 19680.0, 19740.0, 19800.0, 19860.0, 19920.0, 19980.0, 20040.0, 20100.0, 20160.0, 20220.0, 20280.0, 20340.0, 20400.0, 20460.0, 20520.0, 20580.0, 20640.0, 20700.0, 20760.0, 20820.0, 20880.0, 20940.0, 21000.0, 21060.0, 21120.0, 21180.0, 21240.0, 21300.0, 21360.0, 21420.0, 21480.0, 21540.0, 21600.0, 21660.0, 21720.0, 21780.0, 21840.0, 21900.0, 21960.0, 22020.0, 22080.0, 22140.0, 22200.0, 22260.0, 22320.0, 22380.0, 22440.0, 22500.0, 22560.0, 22620.0, 22680.0, 22740.0, 22800.0, 22860.0, 22920.0, 22980.0, 23040.0, 23100.0, 23160.0, 23220.0, 23280.0, 23340.0, 23400.0, 23460.0, 23520.0, 23580.0, 23640.0, 23700.0, 23760.0, 23820.0, 23880.0, 23940.0, 24000.0, 24060.0, 24120.0, 24180.0, 24240.0, 24300.0, 24360.0, 24420.0, 24480.0, 24540.0, 24600.0, 24660.0, 24720.0, 24780.0, 24840.0, 24900.0, 24960.0, 25020.0, 25080.0, 25140.0, 25200.0, 25260.0, 25320.0, 25380.0, 25440.0, 25500.0, 25560.0, 25620.0, 25680.0, 25740.0, 25800.0, 25860.0, 25920.0, 25980.0, 26040.0, 26100.0, 26160.0, 26220.0, 26280.0, 26340.0, 26400.0, 26460.0, 26520.0, 26580.0, 26640.0, 26700.0, 26760.0, 26820.0, 26880.0, 26940.0, 27000.0, 27060.0, 27120.0, 27180.0, 27240.0, 27300.0, 27360.0, 27420.0, 27480.0, 27540.0, 27600.0, 27660.0, 27720.0, 27780.0, 27840.0, 27900.0, 27960.0, 28020.0, 28080.0, 28140.0, 28200.0, 28260.0, 28320.0, 28380.0, 28440.0, 28500.0, 28560.0, 28620.0, 28680.0, 28740.0, 28800.0, 28860.0, 28920.0, 28980.0, 29040.0, 29100.0, 29160.0, 29220.0, 29280.0, 29340.0, 29400.0, 29460.0, 29520.0, 29580.0, 29640.0, 29700.0, 29760.0, 29820.0, 29880.0, 29940.0, 30000.0, 30060.0, 30120.0, 30180.0, 30240.0, 30300.0, 30360.0, 30420.0, 30480.0, 30540.0, 30600.0, 30660.0, 30720.0, 30780.0, 30840.0, 30900.0, 30960.0, 31020.0, 31080.0, 31140.0, 31200.0, 31260.0, 31320.0, 31380.0, 31440.0, 31500.0, 31560.0, 31620.0, 31680.0, 31740.0, 31800.0, 31860.0, 31920.0, 31980.0, 32040.0, 32100.0, 32160.0, 32220.0, 32280.0, 32340.0, 32400.0, 32460.0, 32520.0, 32580.0, 32640.0, 32700.0, 32760.0, 32820.0, 32880.0, 32940.0, 33000.0, 33060.0, 33120.0, 33180.0, 33240.0, 33300.0, 33360.0, 33420.0, 33480.0, 33540.0, 33600.0, 33660.0, 33720.0, 33780.0, 33840.0, 33900.0, 33960.0, 34020.0, 34080.0, 34140.0, 34200.0, 34260.0, 34320.0, 34380.0, 34440.0, 34500.0, 34560.0, 34620.0, 34680.0, 34740.0, 34800.0, 34860.0, 34920.0, 34980.0, 35040.0, 35100.0, 35160.0, 35220.0, 35280.0, 35340.0, 35400.0, 35460.0, 35520.0, 35580.0, 35640.0, 35700.0, 35760.0, 35820.0, 35880.0, 35940.0, 36000.0, 36060.0, 36120.0, 36180.0, 36240.0, 36300.0, 36360.0, 36420.0, 36480.0, 36540.0, 36600.0, 36660.0, 36720.0, 36780.0, 36840.0, 36900.0, 36960.0, 37020.0, 37080.0, 37140.0, 37200.0, 37260.0, 37320.0, 37380.0, 37440.0, 37500.0, 37560.0, 37620.0, 37680.0, 37740.0, 37800.0, 37860.0, 37920.0, 37980.0, 38040.0, 38100.0, 38160.0, 38220.0, 38280.0, 38340.0, 38400.0, 38460.0, 38520.0, 38580.0, 38640.0, 38700.0, 38760.0, 38820.0, 38880.0, 38940.0, 39000.0, 39060.0, 39120.0, 39180.0, 39240.0, 39300.0, 39360.0, 39420.0, 39480.0, 39540.0, 39600.0, 39660.0, 39720.0, 39780.0, 39840.0, 39900.0, 39960.0, 40020.0, 40080.0, 40140.0, 40200.0, 40260.0, 40320.0, 40380.0, 40440.0, 40500.0, 40560.0, 40620.0, 40680.0, 40740.0, 40800.0, 40860.0, 40920.0, 40980.0, 41040.0, 41100.0, 41160.0, 41220.0, 41280.0, 41340.0, 41400.0, 41460.0, 41520.0, 41580.0, 41640.0, 41700.0, 41760.0, 41820.0, 41880.0, 41940.0, 42000.0, 42060.0, 42120.0, 42180.0, 42240.0, 42300.0, 42360.0, 42420.0, 42480.0, 42540.0, 42600.0, 42660.0, 42720.0, 42780.0, 42840.0, 42900.0, 42960.0, 43020.0, 43080.0, 43140.0, 43200.0, 43260.0, 43320.0, 43380.0, 43440.0, 43500.0, 43560.0, 43620.0, 43680.0, 43740.0, 43800.0, 43860.0, 43920.0, 43980.0, 44040.0, 44100.0, 44160.0, 44220.0, 44280.0, 44340.0, 44400.0, 44460.0, 44520.0, 44580.0, 44640.0, 44700.0, 44760.0, 44820.0, 44880.0, 44940.0, 45000.0, 45060.0, 45120.0, 45180.0, 45240.0, 45300.0, 45360.0, 45420.0, 45480.0, 45540.0, 45600.0, 45660.0, 45720.0, 45780.0, 45840.0, 45900.0, 45960.0, 46020.0, 46080.0, 46140.0, 46200.0, 46260.0, 46320.0, 46380.0, 46440.0, 46500.0, 46560.0, 46620.0, 46680.0, 46740.0, 46800.0, 46860.0, 46920.0, 46980.0, 47040.0, 47100.0, 47160.0, 47220.0, 47280.0, 47340.0, 47400.0, 47460.0, 47520.0, 47580.0, 47640.0, 47700.0, 47760.0, 47820.0, 47880.0, 47940.0, 48000.0, 48060.0, 48120.0, 48180.0, 48240.0, 48300.0, 48360.0, 48420.0, 48480.0, 48540.0, 48600.0, 48660.0, 48720.0, 48780.0, 48840.0, 48900.0, 48960.0, 49020.0, 49080.0, 49140.0, 49200.0, 49260.0, 49320.0, 49380.0, 49440.0, 49500.0, 49560.0, 49620.0, 49680.0, 49740.0, 49800.0, 49860.0, 49920.0, 49980.0, 50040.0, 50100.0, 50160.0, 50220.0, 50280.0, 50340.0, 50400.0, 50460.0, 50520.0, 50580.0, 50640.0, 50700.0, 50760.0, 50820.0, 50880.0, 50940.0, 51000.0, 51060.0, 51120.0, 51180.0, 51240.0, 51300.0, 51360.0, 51420.0, 51480.0, 51540.0, 51600.0, 51660.0, 51720.0, 51780.0, 51840.0, 51900.0, 51960.0, 52020.0, 52080.0, 52140.0, 52200.0, 52260.0, 52320.0, 52380.0, 52440.0, 52500.0, 52560.0, 52620.0, 52680.0, 52740.0, 52800.0, 52860.0, 52920.0, 52980.0, 53040.0, 53100.0, 53160.0, 53220.0, 53280.0, 53340.0, 53400.0, 53460.0, 53520.0, 53580.0, 53640.0, 53700.0, 53760.0, 53820.0, 53880.0, 53940.0, 54000.0, 54060.0, 54120.0, 54180.0, 54240.0, 54300.0, 54360.0, 54420.0, 54480.0, 54540.0, 54600.0, 54660.0, 54720.0, 54780.0, 54840.0, 54900.0, 54960.0, 55020.0, 55080.0, 55140.0, 55200.0, 55260.0, 55320.0, 55380.0, 55440.0, 55500.0, 55560.0, 55620.0, 55680.0, 55740.0, 55800.0, 55860.0, 55920.0, 55980.0, 56040.0, 56100.0, 56160.0, 56220.0, 56280.0, 56340.0, 56400.0, 56460.0, 56520.0, 56580.0, 56640.0, 56700.0, 56760.0, 56820.0, 56880.0, 56940.0, 57000.0, 57060.0, 57120.0, 57180.0, 57240.0, 57300.0, 57360.0, 57420.0, 57480.0, 57540.0, 57600.0, 57660.0, 57720.0, 57780.0, 57840.0, 57900.0, 57960.0, 58020.0, 58080.0, 58140.0, 58200.0, 58260.0, 58320.0, 58380.0, 58440.0, 58500.0, 58560.0, 58620.0, 58680.0, 58740.0, 58800.0, 58860.0, 58920.0, 58980.0, 59040.0, 59100.0, 59160.0, 59220.0, 59280.0, 59340.0, 59400.0, 59460.0, 59520.0, 59580.0, 59640.0, 59700.0, 59760.0, 59820.0, 59880.0, 59940.0, 60000.0, 60060.0, 60120.0, 60180.0, 60240.0, 60300.0, 60360.0, 60420.0, 60480.0, 60540.0, 60600.0, 60660.0, 60720.0, 60780.0, 60840.0, 60900.0, 60960.0, 61020.0, 61080.0, 61140.0, 61200.0, 61260.0, 61320.0, 61380.0, 61440.0, 61500.0, 61560.0, 61620.0, 61680.0, 61740.0, 61800.0, 61860.0, 61920.0, 61980.0, 62040.0, 62100.0, 62160.0, 62220.0, 62280.0, 62340.0, 62400.0, 62460.0, 62520.0, 62580.0, 62640.0, 62700.0, 62760.0, 62820.0, 62880.0, 62940.0, 63000.0, 63060.0, 63120.0, 63180.0, 63240.0, 63300.0, 63360.0, 63420.0, 63480.0, 63540.0, 63600.0, 63660.0, 63720.0, 63780.0, 63840.0, 63900.0, 63960.0, 64020.0, 64080.0, 64140.0, 64200.0, 64260.0, 64320.0, 64380.0, 64440.0, 64500.0, 64560.0, 64620.0, 64680.0, 64740.0, 64800.0, 64860.0, 64920.0, 64980.0, 65040.0, 65100.0, 65160.0, 65220.0, 65280.0, 65340.0, 65400.0, 65460.0, 65520.0, 65580.0, 65640.0, 65700.0, 65760.0, 65820.0, 65880.0, 65940.0, 66000.0, 66060.0, 66120.0, 66180.0, 66240.0, 66300.0, 66360.0, 66420.0, 66480.0, 66540.0, 66600.0, 66660.0, 66720.0, 66780.0, 66840.0, 66900.0, 66960.0, 67020.0, 67080.0, 67140.0, 67200.0, 67260.0, 67320.0, 67380.0, 67440.0, 67500.0, 67560.0, 67620.0, 67680.0, 67740.0, 67800.0, 67860.0, 67920.0, 67980.0, 68040.0, 68100.0, 68160.0, 68220.0, 68280.0, 68340.0, 68400.0, 68460.0, 68520.0, 68580.0, 68640.0, 68700.0, 68760.0, 68820.0, 68880.0, 68940.0, 69000.0, 69060.0, 69120.0, 69180.0, 69240.0, 69300.0, 69360.0, 69420.0, 69480.0, 69540.0, 69600.0, 69660.0, 69720.0, 69780.0, 69840.0, 69900.0, 69960.0, 70020.0, 70080.0, 70140.0, 70200.0, 70260.0, 70320.0, 70380.0, 70440.0, 70500.0, 70560.0, 70620.0, 70680.0, 70740.0, 70800.0, 70860.0, 70920.0, 70980.0, 71040.0, 71100.0, 71160.0, 71220.0, 71280.0, 71340.0, 71400.0, 71460.0, 71520.0, 71580.0, 71640.0, 71700.0, 71760.0, 71820.0, 71880.0, 71940.0, 72000.0, 72060.0, 72120.0, 72180.0, 72240.0, 72300.0, 72360.0, 72420.0, 72480.0, 72540.0, 72600.0, 72660.0, 72720.0, 72780.0, 72840.0, 72900.0, 72960.0, 73020.0, 73080.0, 73140.0, 73200.0, 73260.0, 73320.0, 73380.0, 73440.0, 73500.0, 73560.0, 73620.0, 73680.0, 73740.0, 73800.0, 73860.0, 73920.0, 73980.0, 74040.0, 74100.0, 74160.0, 74220.0, 74280.0, 74340.0, 74400.0, 74460.0, 74520.0, 74580.0, 74640.0, 74700.0, 74760.0, 74820.0, 74880.0, 74940.0, 75000.0, 75060.0, 75120.0, 75180.0, 75240.0, 75300.0, 75360.0, 75420.0, 75480.0, 75540.0, 75600.0, 75660.0, 75720.0, 75780.0, 75840.0, 75900.0, 75960.0, 76020.0, 76080.0, 76140.0, 76200.0, 76260.0, 76320.0, 76380.0, 76440.0, 76500.0, 76560.0, 76620.0, 76680.0, 76740.0, 76800.0, 76860.0, 76920.0, 76980.0, 77040.0, 77100.0, 77160.0, 77220.0, 77280.0, 77340.0, 77400.0, 77460.0, 77520.0, 77580.0, 77640.0, 77700.0, 77760.0, 77820.0, 77880.0, 77940.0, 78000.0, 78060.0, 78120.0, 78180.0, 78240.0, 78300.0, 78360.0, 78420.0, 78480.0, 78540.0, 78600.0, 78660.0, 78720.0, 78780.0, 78840.0, 78900.0, 78960.0, 79020.0, 79080.0, 79140.0, 79200.0, 79260.0, 79320.0, 79380.0, 79440.0, 79500.0, 79560.0, 79620.0, 79680.0, 79740.0, 79800.0, 79860.0, 79920.0, 79980.0, 80040.0, 80100.0, 80160.0, 80220.0, 80280.0, 80340.0, 80400.0, 80460.0, 80520.0, 80580.0, 80640.0, 80700.0, 80760.0, 80820.0, 80880.0, 80940.0, 81000.0, 81060.0, 81120.0, 81180.0, 81240.0, 81300.0, 81360.0, 81420.0, 81480.0, 81540.0, 81600.0, 81660.0, 81720.0, 81780.0, 81840.0, 81900.0, 81960.0, 82020.0, 82080.0, 82140.0, 82200.0, 82260.0, 82320.0, 82380.0, 82440.0, 82500.0, 82560.0, 82620.0, 82680.0, 82740.0, 82800.0, 82860.0, 82920.0, 82980.0, 83040.0, 83100.0, 83160.0, 83220.0, 83280.0, 83340.0, 83400.0, 83460.0, 83520.0, 83580.0, 83640.0, 83700.0, 83760.0, 83820.0, 83880.0, 83940.0, 84000.0, 84060.0, 84120.0, 84180.0, 84240.0, 84300.0, 84360.0, 84420.0, 84480.0, 84540.0, 84600.0, 84660.0, 84720.0, 84780.0, 84840.0, 84900.0, 84960.0, 85020.0, 85080.0, 85140.0, 85200.0, 85260.0, 85320.0, 85380.0, 85440.0, 85500.0, 85560.0, 85620.0, 85680.0, 85740.0, 85800.0, 85860.0, 85920.0, 85980.0, 86040.0, 86100.0, 86160.0, 86220.0, 86280.0, 86340.0], \"xaxis\": \"x\", \"y\": [181.66666666666666, 157.44444444444443, 133.22222222222223, 109.0, 84.77777777777777, 60.55555555555555, 53.63492063492063, 46.71428571428571, 39.79365079365079, 32.87301587301587, 25.952380952380953, 23.184126984126983, 20.415873015873018, 17.64761904761905, 14.87936507936508, 12.11111111111111, 10.860931899641576, 9.610752688172042, 8.360573476702509, 7.110394265232975, 5.860215053763441, 5.26489161973033, 4.6695681856972175, 4.074244751664106, 3.478921317630995, 2.8835978835978833, 2.592967545723451, 2.3023372078490185, 2.0117068699745864, 1.721076532100154, 1.4304461942257216, 1.2868406155112961, 1.1432350367968709, 0.9996294580824454, 0.85602387936802, 0.7124183006535947, 0.6410370540910427, 0.5696558075284908, 0.49827456096593886, 0.4268933144033869, 0.35551206784083494, 0.3199261091439615, 0.28434015044708816, 0.24875419175021474, 0.21316823305334132, 0.1775822743564679, 0.15981537167537135, 0.1420484689942748, 0.12428156631317826, 0.10651466363208172, 0.08874776095098517, 0.07987081763339701, 0.07099387431580885, 0.06211693099822069, 0.053239987680632525, 0.04436304436304436, 0.039926198319556884, 0.035489352276069405, 0.031052506232581923, 0.026615660189094444, 0.022178814145606966, 0.01996079735404483, 0.017742780562482695, 0.015524763770920562, 0.013306746979358427, 0.011088730187796292, 0.009979823327864932, 0.008870916467933572, 0.0077620096080022105, 0.00665310274807085, 0.00554419588813949, 0.004989767839424895, 0.004435339790710301, 0.003880911741995706, 0.003326483693281111, 0.0027720556445665163, 0.0024948479651831115, 0.0022176402857997067, 0.0019404326064163023, 0.0016632249270328975, 0.0013860172476494927, 0.001247414994158906, 0.0011088127406683195, 0.0009702104871777326, 0.000831608233687146, 0.0006930059801965593, 0.0006237052499962504, 0.0005544045197959414, 0.00048510378959563255, 0.0004158030593953236, 0.00034650232919501467, 0.0003118520632304445, 0.00027720179726587434, 0.00024255153130130414, 0.00020790126533673398, 0.0001732509993721638, 0.00015592589117369206, 0.0001386007829752203, 0.00012127567477674859, 0.00010395056657827684, 8.66254583798051e-05, 7.796291047651223e-05, 6.930036257321936e-05, 6.0637814669926485e-05, 5.1975266766633614e-05, 4.331271886334074e-05, 3.898144646067876e-05, 3.465017405801678e-05, 3.0318901655354804e-05, 2.5987629252692823e-05, 2.1656356850030842e-05, 1.9490721035945805e-05, 1.7325085221860765e-05, 1.5159449407775728e-05, 1.2993813593690691e-05, 1.0828177779605653e-05, 36.20001082420407, 72.40001082023036, 108.60001081625666, 144.80001081228295, 181.00001080830924, 208.0333434636397, 235.06667611897015, 262.1000087743006, 289.13334142963106, 316.1666740849615, 350.20000693003345, 384.2333397751054, 418.2666726201773, 452.3000054652492, 486.33333831032115, 498.5666711915284, 510.8000040727357, 523.0333369539429, 535.2666698351502, 547.5000027163575, 541.4500024334527, 535.400002150548, 529.3500018676432, 523.3000015847384, 517.2500013018337, 530.4916678506493, 543.7333343994649, 556.9750009482804, 570.216667497096, 583.4583340459116, 581.2125006402746, 578.9666672346376, 576.7208338290008, 574.4750004233638, 572.2291670177268, 581.6729169848196, 591.1166669519123, 600.5604169190051, 610.0041668860978, 619.4479168531906, 622.6031251682389, 625.7583334832871, 628.9135417983354, 632.0687501133835, 635.2239584284318, 638.2682292524325, 641.3125000764333, 644.3567709004338, 647.4010417244345, 650.4453125484353, 653.100781293669, 655.7562500389027, 658.4117187841365, 661.0671875293702, 663.722656274604, 670.717057313912, 677.7114583532201, 684.7058593925282, 691.7002604318362, 698.6946614711443, 683.6251953239203, 668.5557291766961, 653.4862630294721, 638.4167968822479, 623.3473307350239, 597.0459309947591, 570.7445312544944, 544.4431315142297, 518.1417317739649, 491.8403320337002, 508.60629883036063, 525.3722656270211, 542.1382324236816, 558.9041992203421, 575.6701660170025, 593.9698160819856, 612.2694661469686, 630.5691162119517, 648.8687662769347, 667.1684163419178, 664.3515747077247, 661.5347330735317, 658.7178914393386, 655.9010498051456, 653.0842081709525, 657.2757873538582, 661.4673665367638, 665.6589457196696, 669.8505249025753, 674.042104085481, 651.3878936769304, 628.7336832683797, 606.079472859829, 583.4252624512783, 560.7710520427277, 555.0606135051212, 549.3501749675148, 543.6397364299083, 537.929297892302, 532.2188593546955, 533.996973419226, 535.7750874837565, 537.553201548287, 539.3313156128174, 541.109429677348, 549.8584867096133, 558.6075437418787, 567.3566007741439, 576.1056578064092, 584.8547148386746, 589.6292433548072, 594.4037718709397, 599.1783003870723, 603.9528289032049, 608.7273574193375, 641.1879550107373, 673.648552602137, 706.1091501935366, 738.5697477849363, 771.0303453763361, 767.0773108387025, 763.1242763010689, 759.1712417634352, 755.2182072258016, 751.265172688168, 752.9053220860179, 754.5454714838678, 756.1856208817176, 757.8257702795675, 759.4659196774173, 752.5193277096756, 745.5727357419339, 738.6261437741921, 731.6795518064504, 724.7329598387087, 755.1929971881711, 785.6530345376336, 816.1130718870961, 846.5731092365586, 877.0331465860211, 861.779831927419, 846.5265172688169, 831.2732026102148, 816.0198879516126, 800.7665732930105, 779.0899159637095, 757.4132586344084, 735.7366013051073, 714.0599439758063, 692.3832866465052, 690.9949579818547, 689.6066293172041, 688.2183006525537, 686.8299719879031, 685.4416433232526, 670.864145657594, 656.2866479919354, 641.7091503262768, 627.1316526606182, 612.5541549949596, 608.2487394954636, 603.9433239959677, 599.6379084964717, 595.3324929969758, 591.0270774974798, 583.0243697477318, 575.0216619979839, 567.0189542482358, 559.0162464984878, 551.0135387487398, 558.9621848738659, 566.9108309989919, 574.8594771241179, 582.8081232492439, 590.7567693743699, 595.7144257702663, 600.6720821661627, 605.629738562059, 610.5873949579553, 615.5450513538517, 627.7905462184665, 640.0360410830814, 652.2815359476962, 664.5270308123111, 676.7725256769259, 697.3952731092332, 718.0180205415406, 738.6407679738481, 759.2635154061555, 779.8862628384629, 811.33096988795, 842.775676937437, 874.220383986924, 905.665091036411, 937.1097980858981, 939.965484943975, 942.8211718020518, 945.6768586601286, 948.5325455182054, 951.3882323762823, 972.049409138654, 992.7105859010259, 1013.3717626633976, 1034.0329394257694, 1054.6941161881412, 1088.5580379026603, 1122.4219596171795, 1156.2858813316989, 1190.149803046218, 1224.0137247607372, 1224.9623522846634, 1225.9109798085897, 1226.8596073325161, 1227.8082348564424, 1228.7568623803686, 1214.0811761423317, 1199.4054899042949, 1184.729803666258, 1170.0541174282212, 1155.3784311901843, 1186.1905880711658, 1217.0027449521474, 1247.8149018331292, 1278.6270587141107, 1309.4392155950923, 1334.595294035583, 1359.7513724760738, 1384.9074509165646, 1410.0635293570554, 1435.2196077975461, 1422.7976470177914, 1410.375686238037, 1397.9537254582822, 1385.5317646785277, 1373.109803898773, 1377.2988235088956, 1381.4878431190184, 1385.676862729141, 1389.8658823392639, 1394.0549019493865, 1364.3494117544478, 1334.6439215595092, 1304.9384313645705, 1275.2329411696319, 1245.5274509746932, 1265.9747058772239, 1286.4219607797545, 1306.8692156822854, 1327.316470584816, 1347.7637254873466, 1371.387352938612, 1395.0109803898772, 1418.6346078411427, 1442.258235292408, 1465.8818627436733, 1475.493676469306, 1485.1054901949385, 1494.7173039205713, 1504.329117646204, 1513.9409313718365, 1526.4968382346528, 1539.0527450974691, 1551.6086519602857, 1564.164558823102, 1576.7204656859183, 1565.5484191173264, 1554.3763725487347, 1543.2043259801428, 1532.0322794115511, 1520.8602328429592, 1516.94087622533, 1513.0215196077006, 1509.1021629900715, 1505.1828063724422, 1501.2634497548129, 1522.1371047793316, 1543.0107598038503, 1563.884414828369, 1584.7580698528877, 1605.6317248774064, 1624.4685523896658, 1643.305379901925, 1662.1422074141847, 1680.979034926444, 1699.8158624387033, 1671.234276194833, 1642.6526899509627, 1614.0711037070923, 1585.489517463222, 1556.9079312193517, 1547.6504714307498, 1538.393011642148, 1529.135551853546, 1519.8780920649442, 1510.6206322763423, 1521.258569048708, 1531.8965058210738, 1542.5344425934397, 1553.1723793658055, 1563.8103161381712, 1583.579284524354, 1603.348252910537, 1623.11722129672, 1642.8861896829028, 1662.6551580690857, 1685.2229755955104, 1707.7907931219352, 1730.35861064836, 1752.9264281747846, 1775.4942457012094, 1781.3948211310885, 1787.2953965609674, 1793.1959719908466, 1799.0965474207255, 1804.9971228506047, 1790.2640772322109, 1775.531031613817, 1760.7979859954235, 1746.0649403770296, 1731.3318947586358, 1739.9987052827723, 1748.6655158069086, 1757.3323263310451, 1765.9991368551814, 1774.665947379318, 1788.899352641386, 1803.1327579034544, 1817.3661631655225, 1831.5995684275908, 1845.832973689659, 1838.3163429873598, 1830.7997122850604, 1823.2830815827613, 1815.766450880462, 1808.2498201781627, 1801.0748381603464, 1793.89985614253, 1786.724874124714, 1779.5498921068977, 1772.3749100890814, 1744.4374190801732, 1716.499928071265, 1688.562437062357, 1660.6249460534489, 1632.6874550445407, 1656.5187095400865, 1680.3499640356326, 1704.1812185311785, 1728.0124730267246, 1751.8437275222705, 1722.12602143671, 1692.4083153511497, 1662.6906092655895, 1632.972903180029, 1603.2551970944687, 1595.7796773850218, 1588.304157675575, 1580.828637966128, 1573.3531182566812, 1565.8775985472344, 1571.289838692511, 1576.7020788377874, 1582.114318983064, 1587.5265591283405, 1592.9387992736172, 1600.7949193462555, 1608.6510394188938, 1616.507159491532, 1624.3632795641704, 1632.2193996368087, 1658.7307930064612, 1685.2421863761135, 1711.753579745766, 1738.2649731154183, 1764.7763664850709, 1792.2987298365638, 1819.8210931880567, 1847.3434565395496, 1874.8658198910425, 1902.3881832425354, 1883.8160315849486, 1865.2438799273616, 1846.6717282697748, 1828.0995766121878, 1809.527424954601, 1818.6246824591408, 1827.7219399636808, 1836.8191974682206, 1845.9164549727607, 1855.0137124773005, 1858.8456745629037, 1862.6776366485071, 1866.5095987341103, 1870.3415608197138, 1874.173522905317, 1876.7561706147853, 1879.3388183242537, 1881.9214660337218, 1884.5041137431901, 1887.0867614526585, 1876.8447519740594, 1866.6027424954602, 1856.3607330168609, 1846.1187235382617, 1835.8767140596626, 1799.8890426536964, 1763.9013712477301, 1727.913699841764, 1691.9260284357977, 1655.9383570298314, 1658.611187993515, 1661.2840189571984, 1663.9568499208822, 1666.6296808845657, 1669.3025118482492, 1677.7922606634243, 1686.2820094785993, 1694.7717582937744, 1703.2615071089494, 1711.7512559241245, 1686.076130331712, 1660.4010047392997, 1634.725879146887, 1609.0507535544748, 1583.3756279620623, 1549.238065165856, 1515.1005023696498, 1480.9629395734435, 1446.8253767772374, 1412.687813981031, 1412.9856992495945, 1413.283584518158, 1413.5814697867218, 1413.8793550552853, 1414.1772403238488, 1435.809516291464, 1457.441792259079, 1479.0740682266942, 1500.7063441943092, 1522.3386201619244, 1491.7380914790654, 1461.137562796206, 1430.537034113347, 1399.9365054304878, 1369.3359767476288, 1397.002379072866, 1424.668781398103, 1452.3351837233402, 1480.001586048577, 1507.6679883738143, 1543.5678562030996, 1579.467724032385, 1615.36759186167, 1651.2674596909553, 1687.1673275202406, 1655.2505947682166, 1623.3338620161926, 1591.4171292641684, 1559.5003965121443, 1527.5836637601203, 1523.091964050775, 1518.6002643414297, 1514.1085646320842, 1509.6168649227388, 1505.1251652133935, 1554.362648692054, 1603.6001321707147, 1652.8376156493755, 1702.075099128036, 1751.3125826066967, 1745.4479910126936, 1739.5833994186905, 1733.7188078246877, 1727.8542162306846, 1721.9896246366816, 1776.2406621730133, 1830.4916997093453, 1884.742737245677, 1938.993774782009, 1993.2448123183408, 2005.9869977531735, 2018.729183188006, 2031.4713686228386, 2044.213554057671, 2056.9557394925037, 2080.360165543253, 2103.764591594003, 2127.1690176447523, 2150.573443695502, 2173.9778697462516, 2170.846749438293, 2167.7156291303345, 2164.584508822376, 2161.4533885144174, 2158.322268206459, 2118.590041385813, 2078.8578145651672, 2039.1255877445212, 1999.3933609238752, 1959.6611341032294, 1962.3950206929064, 1965.1289072825834, 1967.8627938722607, 1970.5966804619377, 1973.3305670516147, 2012.5975103464532, 2051.8644536412917, 2091.1313969361304, 2130.3983402309686, 2169.6652835258074, 2169.7987551732267, 2169.932226820646, 2170.065698468065, 2170.1991701154843, 2170.3326417629037, 2133.449377586613, 2096.566113410323, 2059.682849234033, 2022.7995850577422, 1985.9163208814518, 2008.1913554599732, 2030.4663900384949, 2052.7414246170165, 2075.0164591955377, 2097.2914937740593, 2107.2123443966534, 2117.1331950192475, 2127.054045641841, 2136.9748962644353, 2146.8957468870294, 2103.3061721983263, 2059.7165975096236, 2016.1270228209205, 1972.5374481322176, 1928.9478734435147, 1907.7030860991633, 1886.4582987548117, 1865.2135114104603, 1843.9687240661087, 1822.7239367217574, 1813.6182097162482, 1804.5124827107393, 1795.4067557052301, 1786.3010286997212, 1777.195301694212, 1696.4757715247908, 1615.7562413553696, 1535.0367111859484, 1454.3171810165272, 1373.597650847106, 1409.7712190957288, 1445.9447873443514, 1482.1183555929742, 1518.2919238415968, 1554.4654920902196, 1592.4689428811976, 1630.4723936721757, 1668.4758444631536, 1706.4792952541318, 1744.4827460451097, 1782.9011381072653, 1821.3195301694211, 1859.7379222315767, 1898.1563142937325, 1936.574706355888, 1979.1672357202992, 2021.7597650847106, 2064.352294449122, 2106.944823813533, 2149.537353177944, 2130.8502845268163, 2112.163215875689, 2093.476147224561, 2074.7890785734335, 2056.1020099223056, 2028.841808930075, 2001.5816079378444, 1974.321406945614, 1947.0612059533833, 1919.8010049611528, 1915.8542377983708, 1911.9074706355889, 1907.960703472807, 1904.013936310025, 1900.067169147243, 1878.4604522325187, 1856.8537353177944, 1835.2470184030701, 1813.6403014883458, 1792.0335845736215, 1812.0302261162594, 1832.0268676588973, 1852.023509201535, 1872.020150744173, 1892.0167922868109, 1946.66511305813, 2001.3134338294487, 2055.9617546007676, 2110.6100753720866, 2165.2583961434057, 2151.632556529065, 2138.0067169147246, 2124.380877300384, 2110.7550376860436, 2097.129198071703, 2186.0162782645325, 2274.903358457362, 2363.7904386501923, 2452.677518843022, 2541.5645990358516, 2527.0414724656, 2512.518345895348, 2497.9952193250965, 2483.4720927548447, 2468.948966184593, 2453.5040695661337, 2438.059172947674, 2422.614276329215, 2407.1693797107555, 2391.7244830922964, 2391.0187014497333, 2390.3129198071706, 2389.6071381646075, 2388.901356522045, 2388.1955748794817, 2454.1260173915334, 2520.056459903585, 2585.9869024156374, 2651.917344927689, 2717.847787439741, 2698.5296753624334, 2679.211563285126, 2659.8934512078185, 2640.575339130511, 2621.2572270532037, 2605.6315043478835, 2590.005781642563, 2574.3800589372427, 2558.754336231922, 2543.128613526602, 2526.8157521739417, 2510.5028908212817, 2494.190029468621, 2477.877168115961, 2461.564306763301, 2449.857876086971, 2438.151445410641, 2426.4450147343105, 2414.7385840579805, 2403.0321533816505, 2396.062271376819, 2389.092389371987, 2382.1225073671553, 2375.1526253623233, 2368.1827433574917, 2361.9644690217424, 2355.7461946859935, 2349.527920350244, 2343.3096460144952, 2337.091371678746, 2302.248901177538, 2267.40643067633, 2232.5639601751222, 2197.721489673914, 2162.879019172706, 2126.4911172554357, 2090.103215338165, 2053.7153134208943, 2017.3274115036238, 1980.939509586353, 1977.4788919610512, 1974.018274335749, 1970.5576567104472, 1967.097039085145, 1963.6364214598432, 1950.5227793138588, 1937.4091371678746, 1924.2954950218902, 1911.181852875906, 1898.0682107299217, 1873.6613896569295, 1849.2545685839373, 1824.8477475109453, 1800.440926437953, 1776.0341053649609, 1802.8806948284648, 1829.7272842919688, 1856.5738737554725, 1883.4204632189765, 1910.2670526824804, 1925.6736807475656, 1941.080308812651, 1956.4869368777363, 1971.8935649428217, 1987.300193007907, 1982.8701737071162, 1978.4401544063255, 1974.010135105535, 1969.5801158047443, 1965.1500965039536, 2007.7017535202249, 2050.253410536496, 2092.8050675527675, 2135.3567245690388, 2177.90838158531, 2263.567543426779, 2349.226705268248, 2434.885867109717, 2520.545028951186, 2606.204190792655, 2620.9504383800563, 2635.6966859674576, 2650.4429335548584, 2665.1891811422597, 2679.935428729661, 2666.791885856695, 2653.648342983729, 2640.5048001107625, 2627.3612572377965, 2614.2177143648305, 2519.8292762616807, 2425.440838158531, 2331.0524000553814, 2236.6639619522316, 2142.2755238490818, 2075.4479714641734, 2008.6204190792655, 1941.7928666943571, 1874.965314309449, 1808.1377619245409, 1888.5239857320869, 1968.910209539633, 2049.2964333471787, 2129.682657154725, 2210.0688809622707, 2236.9119928660434, 2263.7551047698166, 2290.5982166735894, 2317.4413285773626, 2344.2844404811353, 2322.555996433022, 2300.8275523849084, 2279.0991083367944, 2257.370664288681, 2235.6422202405674, 2268.3779982165106, 2301.1137761924538, 2333.8495541683974, 2366.5853321443406, 2399.3211101202837, 2402.6889991082553, 2406.056888096227, 2409.4247770841985, 2412.79266607217, 2416.1605550601416, 2438.1944995541276, 2460.2284440481135, 2482.262388542099, 2504.296333036085, 2526.330277530071, 2540.66391644373, 2554.99755535739, 2569.3311942710493, 2583.664833184709, 2597.9984720983684, 2519.4486248885314, 2440.898777678695, 2362.348930468858, 2283.7990832590212, 2205.249236049184, 2214.657645777599, 2224.066055506014, 2233.474465234429, 2242.8828749628437, 2252.2912846912586, 2296.5621562221327, 2340.8330277530067, 2385.103899283881, 2429.3747708147553, 2473.6456423456293, 2439.547744777733, 2405.4498472098367, 2371.3519496419403, 2337.254052074044, 2303.1561545061477, 2281.890539055533, 2260.624923604918, 2239.3593081543036, 2218.0936927036887, 2196.828077253074, 2165.8786028611, 2134.9291284691258, 2103.9796540771517, 2073.0301796851777, 2042.0807052932037, 1940.6726347638833, 1839.2645642345628, 1737.8564937052424, 1636.4484231759222, 1535.0403526466018, 1504.769650715275, 1474.4989487839482, 1444.2282468526212, 1413.9575449212944, 1383.6868429899675, 1416.2681586909707, 1448.8494743919741, 1481.4307900929773, 1514.0121057939807, 1546.5934214949839, 1542.6840793454855, 1538.7747371959872, 1534.8653950464886, 1530.9560528969903, 1527.046710747492, 1622.8087063394094, 1718.5707019313268, 1814.3326975232444, 1910.0946931151618, 2005.8566887070792, 2043.9210198363712, 2081.985350965663, 2120.0496820949556, 2158.1140132242476, 2196.1783443535396, 2192.993843251519, 2189.809342149498, 2186.6248410474777, 2183.440339945457, 2180.2558388434363, 2166.1802549590925, 2152.104671074749, 2138.0290871904053, 2123.953503306062, 2109.877919421718, 2132.4234608128795, 2154.9690022040413, 2177.5145435952027, 2200.0600849863645, 2222.605626377526, 2282.445063739773, 2342.284501102021, 2402.123938464268, 2461.963375826516, 2521.802813188763, 2345.35586520322, 2168.9089172176773, 1992.4619692321342, 1816.0150212465912, 1639.5680732610483, 1668.1612659349435, 1696.7544586088386, 1725.3476512827338, 1753.940843956629, 1782.534036630524, 1816.713966300805, 1850.8938959710858, 1885.073825641367, 1919.2537553116479, 1953.4336849819288, 1978.9903164837358, 2004.5469479855428, 2030.10357948735, 2055.660210989157, 2081.216842490964, 2078.5618249085346, 2075.9068073261046, 2073.251789743675, 2070.596772161245, 2067.9417545788156, 2095.997579120934, 2124.0534036630524, 2152.109228205171, 2180.1650527472893, 2208.220877289408, 2238.598789560467, 2268.9767018315265, 2299.3546141025854, 2329.7325263736448, 2360.110438644704, 2355.549394780234, 2350.9883509157635, 2346.4273070512927, 2341.8662631868224, 2337.305219322352, 2306.9413640567836, 2276.577508791215, 2246.2136535256464, 2215.849798260078, 2185.4859429945095, 2167.4873486950587, 2149.488754395608, 2131.4901600961566, 2113.491565796706, 2095.492971497255, 2115.5436743475293, 2135.594377197804, 2155.6450800480784, 2175.695782898353, 2195.7464857486275, 2164.2718371737647, 2132.797188598902, 2101.3225400240394, 2069.8478914491766, 2038.3732428743137, 2069.7359185868822, 2101.0985942994507, 2132.4612700120197, 2163.823945724588, 2195.1866214371566, 2218.317959293441, 2241.449297149725, 2264.5806350060097, 2287.711972862294, 2310.8433107185783, 2308.3589796467204, 2305.8746485748625, 2303.390317503005, 2300.905986431147, 2298.421655359289, 2274.92948982336, 2251.4373242874312, 2227.9451587515023, 2204.4529932155733, 2180.9608276796444, 2188.4314115783463, 2195.901995477049, 2203.372579375751, 2210.843163274453, 2218.313747173155, 2215.8323724558395, 2213.3509977385243, 2210.8696230212086, 2208.3882483038933, 2205.9068735865776, 2187.049519561253, 2168.192165535929, 2149.334811510604, 2130.47745748528, 2111.6201034599553, 2096.60809311396, 2081.596082767964, 2066.584072421969, 2051.572062075973, 2036.5600517299777, 2019.40404655698, 2002.2480413839821, 1985.0920362109844, 1967.9360310379866, 1950.7800258649888, 1962.75202327849, 1974.724020691991, 1986.6960181054922, 1998.6680155189931, 2010.6400129324943, 2067.7426783059113, 2124.845343679329, 2181.948009052746, 2239.0506744261634, 2296.1533397995804, 2309.8380058196226, 2323.5226718396643, 2337.2073378597065, 2350.8920038797482, 2364.5766698997904, 2309.285669576478, 2253.9946692531657, 2198.7036689298534, 2143.412668606541, 2088.1216682832287, 2070.609501454906, 2053.097334626583, 2035.58516779826, 2018.0730009699373, 2000.5608341416144, 2029.9380840607862, 2059.3153339799583, 2088.69258389913, 2118.069833818302, 2147.447083737474, 2117.8523753637264, 2088.257666989979, 2058.6629586162317, 2029.0682502424843, 1999.473541868737, 2015.0595210151964, 2030.6455001616562, 2046.2314793081157, 2061.8174584545754, 2077.403437601035, 2076.7630938409316, 2076.122750080828, 2075.4824063207243, 2074.842062560621, 2074.2017188005175, 2045.5815469204658, 2016.961375040414, 1988.3412031603623, 1959.7210312803104, 1931.1008594002587, 1893.4407734602328, 1855.780687520207, 1818.120601580181, 1780.4605156401553, 1742.8004297001294, 1734.487053396783, 1726.1736770934367, 1717.8603007900906, 1709.5469244867443, 1701.233548183398, 1699.460193365058, 1697.6868385467183, 1695.9134837283787, 1694.1401289100388, 1692.366774091699, 1668.330096682529, 1644.2934192733592, 1620.2567418641893, 1596.2200644550194, 1572.1833870458495, 1587.4650483412645, 1602.7467096366795, 1618.0283709320947, 1633.3100322275097, 1648.5916935229247, 1637.3991908372989, 1626.206688151673, 1615.0141854660474, 1603.8216827804215, 1592.6291800947956, 1558.0162620853162, 1523.4033440758365, 1488.790426066357, 1454.1775080568773, 1419.5645900473978, 1394.4747977093248, 1369.3850053712515, 1344.2952130331785, 1319.2054206951052, 1294.1156283570322, 1272.354065521329, 1250.5925026856257, 1228.8309398499225, 1207.0693770142193, 1185.307814178516, 1183.5103660939978, 1181.7129180094796, 1179.9154699249611, 1178.118021840443, 1176.3205737559247, 1096.5885163803323, 1016.8564590047397, 937.1244016291473, 857.3923442535548, 777.6602868779623, 723.5942581901661, 669.5282295023699, 615.4622008145736, 561.3961721267774, 507.33014343898117, 556.447129095083, 605.5641147511849, 654.6811004072867, 703.7980860633887, 752.9150717194906, 788.5902312142082, 824.2653907089258, 859.9405502036434, 895.615709698361, 931.2908691930786, 941.2117822737707, 951.1326953544628, 961.0536084351551, 970.9745215158472, 980.8954345965393, 983.2392244702187, 985.5830143438981, 987.9268042175776, 990.270594091257, 992.6143839649363, 984.9029455684426, 977.1915071719491, 969.4800687754554, 961.7686303789618, 954.0571919824681, 985.4514727842213, 1016.8457535859744, 1048.2400343877275, 1079.6343151894807, 1111.028595991234, 1114.3257363921105, 1117.6228767929872, 1120.9200171938637, 1124.2171575947405, 1127.514297995617, 1108.9962015293886, 1090.4781050631602, 1071.9600085969319, 1053.4419121307035, 1034.9238156644751, 1003.9814340980276, 973.0390525315801, 942.0966709651326, 911.154289398685, 880.2119078322376, 860.3240503823472, 840.4361929324567, 820.5483354825664, 800.6604780326759, 780.7726205827855, 768.945358524507, 757.1180964662284, 745.2908344079499, 733.4635723496713, 721.6363102913928, 746.9726792622535, 772.3090482331143, 797.645417203975, 822.9817861748357, 848.3181551456964, 839.3863396311268, 830.4545241165572, 821.5227086019875, 812.5908930874178, 803.6590775728482, 801.4931698155634, 799.3272620582786, 797.1613543009937, 794.9954465437089, 792.8295387864241, 794.8465849077817, 796.8636310291392, 798.8806771504969, 800.8977232718545, 802.914769393212, 796.0899591205575, 789.265148847903, 782.4403385752485, 775.6155283025939, 768.7907180299394, 779.1116462269455, 789.4325744239516, 799.7535026209575, 810.0744308179636, 820.3953590149697, 815.5891564468061, 810.7829538786424, 805.9767513104788, 801.1705487423151, 796.3643461741515, 802.6779115567364, 808.9914769393212, 815.3050423219061, 821.6186077044908, 827.9321730870757, 796.9389557783682, 765.9457384696606, 734.952521160953, 703.9593038522454, 672.9660865435378, 628.519477889184, 584.0728692348303, 539.6262605804765, 495.1796519261227, 450.7330432717689, 451.49307227792536, 452.2531012840818, 453.0131302902382, 453.7731592963947, 454.53318830255114, 452.42986947229605, 450.3265506420409, 448.2232318117858, 446.11991298153066, 444.01659415127557, 465.78160140281466, 487.5466086543538, 509.3116159058929, 531.076623157432, 552.8416304089711, 565.307467368074, 577.7733043271769, 590.2391412862797, 602.7049782453827, 615.1708152044855, 612.7870670173703, 610.4033188302551, 608.0195706431398, 605.6358224560246, 603.2520742689094, 610.9768668420185, 618.7016594151276, 626.4264519882365, 634.1512445613456, 641.8760371344547, 620.6551000876759, 599.4341630408971, 578.2132259941183, 556.9922889473395, 535.7713519005607, 527.3942167105047, 519.0170815204485, 510.6399463303925, 502.26281114033645, 493.88567595028036, 495.33044168858567, 496.775207426891, 498.2199731651962, 499.66473890350153, 501.10950464180684, 503.8985541776261, 506.68760371344547, 509.47665324926476, 512.265702785084, 515.0547523209034, 507.8826104221464, 500.71046852338935, 493.53832662463236, 486.3661847258753, 479.1940428271183, 473.4246385444065, 467.65523426169466, 461.8858299789828, 456.116425696271, 450.34702141355916, 461.7456526055366, 473.144283797514, 484.54291498949146, 495.9415461814689, 507.3401773734463, 519.0561596361017, 530.772141898757, 542.4881241614124, 554.2041064240677, 565.9200886867231, 565.5614131513842, 565.2027376160452, 564.8440620807062, 564.4853865453672, 564.1267110100282, 560.9140399090254, 557.7013688080226, 554.4886977070197, 551.2760266060169, 548.0633555050141, 548.4236866211794, 548.7840177373446, 549.1443488535099, 549.5046799696751, 549.8650110858404, 555.5785099772563, 561.2920088686723, 567.0055077600882, 572.7190066515042, 578.4325055429201, 577.2559216552947, 576.0793377676695, 574.9027538800441, 573.7261699924188, 572.5495861047934, 554.1279608276474, 535.7063355505014, 517.2847102733554, 498.86308499620935, 480.44145971906335, 465.847313747157, 451.2531677752507, 436.65902180334433, 422.06487583143803, 407.4707298595317, 389.1236568735785, 370.77658388762535, 352.4295109016722, 334.082437915719, 315.73536492976586, 312.0451617701226, 308.35495861047934, 304.6647554508361, 300.9745522911928, 297.28434913154956, 298.1559142183946, 299.02747930523964, 299.8990443920847, 300.7706094789297, 301.6421745657748, 298.29462377586395, 294.9470729859531, 291.59952219604236, 288.25197140613153, 284.9044206162207, 281.06397855459863, 277.22353649297656, 273.3830944313545, 269.5426523697324, 265.70221030811035, 262.13198927729934, 258.56176824648827, 254.99154721567726, 251.42132618486622, 247.85110515405518, 243.36599463864965, 238.88088412324413, 234.39577360783863, 229.9106630924331, 225.4255525770276, 221.18299731932484, 216.94044206162206, 212.69788680391932, 208.45533154621654, 204.2127762885138, 210.61649865966243, 217.02022103081103, 223.42394340195966, 229.82766577310827, 236.2313881442569, 230.6082493298312, 224.98511051540552, 219.36197170097984, 213.73883288655415, 208.11569407212846], \"yaxis\": \"y\"}],\n",
" {\"legend\": {\"title\": {\"text\": \"dow\"}, \"tracegroupgap\": 0}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"title\": {\"text\": \"Gare Du Nord\"}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"ts_offset\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"presence\"}}},\n",
" {\"responsive\": true}\n",
" ).then(function(){\n",
" \n",
"var gd = document.getElementById('d7632f73-cdae-4336-bca4-3dfcf9506a83');\n",
"var x = new MutationObserver(function (mutations, observer) {{\n",
" var display = window.getComputedStyle(gd).display;\n",
" if (!display || display === 'none') {{\n",
" console.log([gd, 'removed!']);\n",
" Plotly.purge(gd);\n",
" observer.disconnect();\n",
" }}\n",
"}});\n",
"\n",
"// Listen for the removal of the full notebook cells\n",
"var notebookContainer = gd.closest('#notebook-container');\n",
"if (notebookContainer) {{\n",
" x.observe(notebookContainer, {childList: true});\n",
"}}\n",
"\n",
"// Listen for the clearing of the current output cell\n",
"var outputEl = gd.closest('.output');\n",
"if (outputEl) {{\n",
" x.observe(outputEl, {childList: true});\n",
"}}\n",
"\n",
" })\n",
" };\n",
" });\n",
" </script>\n",
" </div>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"for_plot = result.set_index(['site', 'conf', 'zone'])\n",
"for_plot = for_plot[for_plot['dow'] == 6]\n",
"inner_d = for_plot.loc[('Gare-de-Paris-Saint-Lazare', '8940a531-3cd9-4163-b925-bb5f815a4a23', 'Gare-de-Paris-Saint-Lazare')]\n",
"#for index_value in set(for_plot.index):\n",
"# inner_d = for_plot.loc[index_value]\n",
"px.line(inner_d, x=\"ts_offset\", y=\"presence\", color=\"dow\", title=str('Gare Du Nord')).show()\n",
"\n",
"\n"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.7.6"
}
},
"nbformat": 4,
"nbformat_minor": 4
}
{
"cells": [
{
"cell_type": "code",
"execution_count": 122,
"metadata": {},
"outputs": [],
"source": [
"import pandas"
]
},
{
"cell_type": "code",
"execution_count": 123,
"metadata": {},
"outputs": [],
"source": [
"input_file = \"/Users/olivier/Downloads/input.csv\"\n",
"output_file = \"/Users/olivier/Downloads/results.csv\""
]
},
{
"cell_type": "code",
"execution_count": 141,
"metadata": {},
"outputs": [],
"source": [
"d = pandas.read_csv(input_file)\n"
]
},
{
"cell_type": "code",
"execution_count": 142,
"metadata": {},
"outputs": [],
"source": [
"d['datetime'] = pandas.to_datetime(d['datetime']) - pandas.Timedelta(hours=1)\n",
"# To avoid alignment issues, each timestamp is rounded to the closest 1 minutes interval\n",
"d['rounded_dt'] = d['datetime'].dt.round('1min')\n",
"d['dow'] = d['rounded_dt'].dt.dayofweek\n"
]
},
{
"cell_type": "code",
"execution_count": 143,
"metadata": {},
"outputs": [],
"source": [
"# Converting input Data to datetime (from str)\n",
"# Retrieve the day of weeak of each datetime\n",
"f = d\n",
"\n",
"f = f.sort_values(['site', 'conf', 'zone','dow', 'rounded_dt'])\n",
"f['rounded_dt'] = f['rounded_dt'].apply(lambda dt: dt.replace(year=1970, day=1, month=1))\n",
"\n",
"# We're sampling downsampling with 5 minutes interval\n",
"f = f.set_index('rounded_dt')\n",
"f = f.groupby(['site', 'conf', 'zone', 'dow']).resample('5min', label='right', closed='right').presence.mean() # Adds a point every 5 minute\n",
"f = f.reset_index()\n",
"\n",
"f['presence'] = f.groupby(['site', 'conf', 'zone', 'dow'])['presence'].transform(lambda x: x.ewm(span=3).mean()).values\n",
"f = f.reset_index()\n",
"\n",
"# We're upsampling with 1 minutes interval and adds a linear interapolation between points\n",
"f = f.set_index('rounded_dt')\n",
"f = f.groupby(['site', 'conf', 'zone', 'dow']).resample('1min', label='left', closed='right').presence.mean().interpolate(method=\"linear\") # Adds a point every minute\n",
"f = f.reset_index()\n",
"\n",
"\n"
]
},
{
"cell_type": "code",
"execution_count": 144,
"metadata": {},
"outputs": [],
"source": [
"# Casting ts_offset as int\n",
"f['ts_offset'] = f['rounded_dt'].astype(int) / 10 ** 9\n"
]
},
{
"cell_type": "code",
"execution_count": 145,
"metadata": {},
"outputs": [],
"source": [
"result = f.sort_values(['site', 'conf', 'zone','dow', 'ts_offset'])\n",
"result.to_csv(output_file)"
]
},
{
"cell_type": "code",
"execution_count": 146,
"metadata": {},
"outputs": [],
"source": [
"import chart_studio.plotly as py\n",
"import plotly.express as px\n"
]
},
{
"cell_type": "code",
"execution_count": 147,
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.plotly.v1+json": {
"config": {
"plotlyServerURL": "https://plot.ly"
},
"data": [
{
"hovertemplate": "dow=6<br>ts_offset=%{x}<br>presence=%{y}<extra></extra>",
"legendgroup": "6",
"line": {
"color": "#636efa",
"dash": "solid"
},
"mode": "lines",
"name": "6",
"showlegend": true,
"type": "scattergl",
"x": [
240,
300,
360,
420,
480,
540,
600,
660,
720,
780,
840,
900,
960,
1020,
1080,
1140,
1200,
1260,
1320,
1380,
1440,
1500,
1560,
1620,
1680,
1740,
1800,
1860,
1920,
1980,
2040,
2100,
2160,
2220,
2280,
2340,
2400,
2460,
2520,
2580,
2640,
2700,
2760,
2820,
2880,
2940,
3000,
3060,
3120,
3180,
3240,
3300,
3360,
3420,
3480,
3540,
3600,
3660,
3720,
3780,
3840,
3900,
3960,
4020,
4080,
4140,
4200,
4260,
4320,
4380,
4440,
4500,
4560,
4620,
4680,
4740,
4800,
4860,
4920,
4980,
5040,
5100,
5160,
5220,
5280,
5340,
5400,
5460,
5520,
5580,
5640,
5700,
5760,
5820,
5880,
5940,
6000,
6060,
6120,
6180,
6240,
6300,
6360,
6420,
6480,
6540,
6600,
6660,
6720,
6780,
6840,
6900,
6960,
7020,
7080,
7140,
7200,
7260,
7320,
7380,
7440,
7500,
7560,
7620,
7680,
7740,
7800,
7860,
7920,
7980,
8040,
8100,
8160,
8220,
8280,
8340,
8400,
8460,
8520,
8580,
8640,
8700,
8760,
8820,
8880,
8940,
9000,
9060,
9120,
9180,
9240,
9300,
9360,
9420,
9480,
9540,
9600,
9660,
9720,
9780,
9840,
9900,
9960,
10020,
10080,
10140,
10200,
10260,
10320,
10380,
10440,
10500,
10560,
10620,
10680,
10740,
10800,
10860,
10920,
10980,
11040,
11100,
11160,
11220,
11280,
11340,
11400,
11460,
11520,
11580,
11640,
11700,
11760,
11820,
11880,
11940,
12000,
12060,
12120,
12180,
12240,
12300,
12360,
12420,
12480,
12540,
12600,
12660,
12720,
12780,
12840,
12900,
12960,
13020,
13080,
13140,
13200,
13260,
13320,
13380,
13440,
13500,
13560,
13620,
13680,
13740,
13800,
13860,
13920,
13980,
14040,
14100,
14160,
14220,
14280,
14340,
14400,
14460,
14520,
14580,
14640,
14700,
14760,
14820,
14880,
14940,
15000,
15060,
15120,
15180,
15240,
15300,
15360,
15420,
15480,
15540,
15600,
15660,
15720,
15780,
15840,
15900,
15960,
16020,
16080,
16140,
16200,
16260,
16320,
16380,
16440,
16500,
16560,
16620,
16680,
16740,
16800,
16860,
16920,
16980,
17040,
17100,
17160,
17220,
17280,
17340,
17400,
17460,
17520,
17580,
17640,
17700,
17760,
17820,
17880,
17940,
18000,
18060,
18120,
18180,
18240,
18300,
18360,
18420,
18480,
18540,
18600,
18660,
18720,
18780,
18840,
18900,
18960,
19020,
19080,
19140,
19200,
19260,
19320,
19380,
19440,
19500,
19560,
19620,
19680,
19740,
19800,
19860,
19920,
19980,
20040,
20100,
20160,
20220,
20280,
20340,
20400,
20460,
20520,
20580,
20640,
20700,
20760,
20820,
20880,
20940,
21000,
21060,
21120,
21180,
21240,
21300,
21360,
21420,
21480,
21540,
21600,
21660,
21720,
21780,
21840,
21900,
21960,
22020,
22080,
22140,
22200,
22260,
22320,
22380,
22440,
22500,
22560,
22620,
22680,
22740,
22800,
22860,
22920,
22980,
23040,
23100,
23160,
23220,
23280,
23340,
23400,
23460,
23520,
23580,
23640,
23700,
23760,
23820,
23880,
23940,
24000,
24060,
24120,
24180,
24240,
24300,
24360,
24420,
24480,
24540,
24600,
24660,
24720,
24780,
24840,
24900,
24960,
25020,
25080,
25140,
25200,
25260,
25320,
25380,
25440,
25500,
25560,
25620,
25680,
25740,
25800,
25860,
25920,
25980,
26040,
26100,
26160,
26220,
26280,
26340,
26400,
26460,
26520,
26580,
26640,
26700,
26760,
26820,
26880,
26940,
27000,
27060,
27120,
27180,
27240,
27300,
27360,
27420,
27480,
27540,
27600,
27660,
27720,
27780,
27840,
27900,
27960,
28020,
28080,
28140,
28200,
28260,
28320,
28380,
28440,
28500,
28560,
28620,
28680,
28740,
28800,
28860,
28920,
28980,
29040,
29100,
29160,
29220,
29280,
29340,
29400,
29460,
29520,
29580,
29640,
29700,
29760,
29820,
29880,
29940,
30000,
30060,
30120,
30180,
30240,
30300,
30360,
30420,
30480,
30540,
30600,
30660,
30720,
30780,
30840,
30900,
30960,
31020,
31080,
31140,
31200,
31260,
31320,
31380,
31440,
31500,
31560,
31620,
31680,
31740,
31800,
31860,
31920,
31980,
32040,
32100,
32160,
32220,
32280,
32340,
32400,
32460,
32520,
32580,
32640,
32700,
32760,
32820,
32880,
32940,
33000,
33060,
33120,
33180,
33240,
33300,
33360,
33420,
33480,
33540,
33600,
33660,
33720,
33780,
33840,
33900,
33960,
34020,
34080,
34140,
34200,
34260,
34320,
34380,
34440,
34500,
34560,
34620,
34680,
34740,
34800,
34860,
34920,
34980,
35040,
35100,
35160,
35220,
35280,
35340,
35400,
35460,
35520,
35580,
35640,
35700,
35760,
35820,
35880,
35940,
36000,
36060,
36120,
36180,
36240,
36300,
36360,
36420,
36480,
36540,
36600,
36660,
36720,
36780,
36840,
36900,
36960,
37020,
37080,
37140,
37200,
37260,
37320,
37380,
37440,
37500,
37560,
37620,
37680,
37740,
37800,
37860,
37920,
37980,
38040,
38100,
38160,
38220,
38280,
38340,
38400,
38460,
38520,
38580,
38640,
38700,
38760,
38820,
38880,
38940,
39000,
39060,
39120,
39180,
39240,
39300,
39360,
39420,
39480,
39540,
39600,
39660,
39720,
39780,
39840,
39900,
39960,
40020,
40080,
40140,
40200,
40260,
40320,
40380,
40440,
40500,
40560,
40620,
40680,
40740,
40800,
40860,
40920,
40980,
41040,
41100,
41160,
41220,
41280,
41340,
41400,
41460,
41520,
41580,
41640,
41700,
41760,
41820,
41880,
41940,
42000,
42060,
42120,
42180,
42240,
42300,
42360,
42420,
42480,
42540,
42600,
42660,
42720,
42780,
42840,
42900,
42960,
43020,
43080,
43140,
43200,
43260,
43320,
43380,
43440,
43500,
43560,
43620,
43680,
43740,
43800,
43860,
43920,
43980,
44040,
44100,
44160,
44220,
44280,
44340,
44400,
44460,
44520,
44580,
44640,
44700,
44760,
44820,
44880,
44940,
45000,
45060,
45120,
45180,
45240,
45300,
45360,
45420,
45480,
45540,
45600,
45660,
45720,
45780,
45840,
45900,
45960,
46020,
46080,
46140,
46200,
46260,
46320,
46380,
46440,
46500,
46560,
46620,
46680,
46740,
46800,
46860,
46920,
46980,
47040,
47100,
47160,
47220,
47280,
47340,
47400,
47460,
47520,
47580,
47640,
47700,
47760,
47820,
47880,
47940,
48000,
48060,
48120,
48180,
48240,
48300,
48360,
48420,
48480,
48540,
48600,
48660,
48720,
48780,
48840,
48900,
48960,
49020,
49080,
49140,
49200,
49260,
49320,
49380,
49440,
49500,
49560,
49620,
49680,
49740,
49800,
49860,
49920,
49980,
50040,
50100,
50160,
50220,
50280,
50340,
50400,
50460,
50520,
50580,
50640,
50700,
50760,
50820,
50880,
50940,
51000,
51060,
51120,
51180,
51240,
51300,
51360,
51420,
51480,
51540,
51600,
51660,
51720,
51780,
51840,
51900,
51960,
52020,
52080,
52140,
52200,
52260,
52320,
52380,
52440,
52500,
52560,
52620,
52680,
52740,
52800,
52860,
52920,
52980,
53040,
53100,
53160,
53220,
53280,
53340,
53400,
53460,
53520,
53580,
53640,
53700,
53760,
53820,
53880,
53940,
54000,
54060,
54120,
54180,
54240,
54300,
54360,
54420,
54480,
54540,
54600,
54660,
54720,
54780,
54840,
54900,
54960,
55020,
55080,
55140,
55200,
55260,
55320,
55380,
55440,
55500,
55560,
55620,
55680,
55740,
55800,
55860,
55920,
55980,
56040,
56100,
56160,
56220,
56280,
56340,
56400,
56460,
56520,
56580,
56640,
56700,
56760,
56820,
56880,
56940,
57000,
57060,
57120,
57180,
57240,
57300,
57360,
57420,
57480,
57540,
57600,
57660,
57720,
57780,
57840,
57900,
57960,
58020,
58080,
58140,
58200,
58260,
58320,
58380,
58440,
58500,
58560,
58620,
58680,
58740,
58800,
58860,
58920,
58980,
59040,
59100,
59160,
59220,
59280,
59340,
59400,
59460,
59520,
59580,
59640,
59700,
59760,
59820,
59880,
59940,
60000,
60060,
60120,
60180,
60240,
60300,
60360,
60420,
60480,
60540,
60600,
60660,
60720,
60780,
60840,
60900,
60960,
61020,
61080,
61140,
61200,
61260,
61320,
61380,
61440,
61500,
61560,
61620,
61680,
61740,
61800,
61860,
61920,
61980,
62040,
62100,
62160,
62220,
62280,
62340,
62400,
62460,
62520,
62580,
62640,
62700,
62760,
62820,
62880,
62940,
63000,
63060,
63120,
63180,
63240,
63300,
63360,
63420,
63480,
63540,
63600,
63660,
63720,
63780,
63840,
63900,
63960,
64020,
64080,
64140,
64200,
64260,
64320,
64380,
64440,
64500,
64560,
64620,
64680,
64740,
64800,
64860,
64920,
64980,
65040,
65100,
65160,
65220,
65280,
65340,
65400,
65460,
65520,
65580,
65640,
65700,
65760,
65820,
65880,
65940,
66000,
66060,
66120,
66180,
66240,
66300,
66360,
66420,
66480,
66540,
66600,
66660,
66720,
66780,
66840,
66900,
66960,
67020,
67080,
67140,
67200,
67260,
67320,
67380,
67440,
67500,
67560,
67620,
67680,
67740,
67800,
67860,
67920,
67980,
68040,
68100,
68160,
68220,
68280,
68340,
68400,
68460,
68520,
68580,
68640,
68700,
68760,
68820,
68880,
68940,
69000,
69060,
69120,
69180,
69240,
69300,
69360,
69420,
69480,
69540,
69600,
69660,
69720,
69780,
69840,
69900,
69960,
70020,
70080,
70140,
70200,
70260,
70320,
70380,
70440,
70500,
70560,
70620,
70680,
70740,
70800,
70860,
70920,
70980,
71040,
71100,
71160,
71220,
71280,
71340,
71400,
71460,
71520,
71580,
71640,
71700,
71760,
71820,
71880,
71940,
72000,
72060,
72120,
72180,
72240,
72300,
72360,
72420,
72480,
72540,
72600,
72660,
72720,
72780,
72840,
72900,
72960,
73020,
73080,
73140,
73200,
73260,
73320,
73380,
73440,
73500,
73560,
73620,
73680,
73740,
73800,
73860,
73920,
73980,
74040,
74100,
74160,
74220,
74280,
74340,
74400,
74460,
74520,
74580,
74640,
74700,
74760,
74820,
74880,
74940,
75000,
75060,
75120,
75180,
75240,
75300,
75360,
75420,
75480,
75540,
75600,
75660,
75720,
75780,
75840,
75900,
75960,
76020,
76080,
76140,
76200,
76260,
76320,
76380,
76440,
76500,
76560,
76620,
76680,
76740,
76800,
76860,
76920,
76980,
77040,
77100,
77160,
77220,
77280,
77340,
77400,
77460,
77520,
77580,
77640,
77700,
77760,
77820,
77880,
77940,
78000,
78060,
78120,
78180,
78240,
78300,
78360,
78420,
78480,
78540,
78600,
78660,
78720,
78780,
78840,
78900,
78960,
79020,
79080,
79140,
79200,
79260,
79320,
79380,
79440,
79500,
79560,
79620,
79680,
79740,
79800,
79860,
79920,
79980,
80040,
80100,
80160,
80220,
80280,
80340,
80400,
80460,
80520,
80580,
80640,
80700,
80760,
80820,
80880,
80940,
81000,
81060,
81120,
81180,
81240,
81300,
81360,
81420,
81480,
81540,
81600,
81660,
81720,
81780,
81840,
81900,
81960,
82020,
82080,
82140,
82200,
82260,
82320,
82380,
82440,
82500,
82560,
82620,
82680,
82740,
82800,
82860,
82920,
82980,
83040,
83100,
83160,
83220,
83280,
83340,
83400,
83460,
83520,
83580,
83640,
83700,
83760,
83820,
83880,
83940,
84000,
84060,
84120,
84180,
84240,
84300,
84360,
84420,
84480,
84540,
84600,
84660,
84720,
84780,
84840,
84900,
84960,
85020,
85080,
85140,
85200,
85260,
85320,
85380,
85440,
85500,
85560,
85620,
85680,
85740,
85800,
85860,
85920,
85980,
86040,
86100,
86160,
86220,
86280,
86340
],
"xaxis": "x",
"y": [
181.66666666666666,
157.44444444444443,
133.22222222222223,
109,
84.77777777777777,
60.55555555555555,
53.63492063492063,
46.71428571428571,
39.79365079365079,
32.87301587301587,
25.952380952380953,
23.184126984126983,
20.415873015873018,
17.64761904761905,
14.87936507936508,
12.11111111111111,
10.860931899641576,
9.610752688172042,
8.360573476702509,
7.110394265232975,
5.860215053763441,
5.26489161973033,
4.6695681856972175,
4.074244751664106,
3.478921317630995,
2.8835978835978833,
2.592967545723451,
2.3023372078490185,
2.0117068699745864,
1.721076532100154,
1.4304461942257216,
1.2868406155112961,
1.1432350367968709,
0.9996294580824454,
0.85602387936802,
0.7124183006535947,
0.6410370540910427,
0.5696558075284908,
0.49827456096593886,
0.4268933144033869,
0.35551206784083494,
0.3199261091439615,
0.28434015044708816,
0.24875419175021474,
0.21316823305334132,
0.1775822743564679,
0.15981537167537135,
0.1420484689942748,
0.12428156631317826,
0.10651466363208172,
0.08874776095098517,
0.07987081763339701,
0.07099387431580885,
0.06211693099822069,
0.053239987680632525,
0.04436304436304436,
0.039926198319556884,
0.035489352276069405,
0.031052506232581923,
0.026615660189094444,
0.022178814145606966,
0.01996079735404483,
0.017742780562482695,
0.015524763770920562,
0.013306746979358427,
0.011088730187796292,
0.009979823327864932,
0.008870916467933572,
0.0077620096080022105,
0.00665310274807085,
0.00554419588813949,
0.004989767839424895,
0.004435339790710301,
0.003880911741995706,
0.003326483693281111,
0.0027720556445665163,
0.0024948479651831115,
0.0022176402857997067,
0.0019404326064163023,
0.0016632249270328975,
0.0013860172476494927,
0.001247414994158906,
0.0011088127406683195,
0.0009702104871777326,
0.000831608233687146,
0.0006930059801965593,
0.0006237052499962504,
0.0005544045197959414,
0.00048510378959563255,
0.0004158030593953236,
0.00034650232919501467,
0.0003118520632304445,
0.00027720179726587434,
0.00024255153130130414,
0.00020790126533673398,
0.0001732509993721638,
0.00015592589117369206,
0.0001386007829752203,
0.00012127567477674859,
0.00010395056657827684,
8.66254583798051e-05,
7.796291047651223e-05,
6.930036257321936e-05,
6.0637814669926485e-05,
5.1975266766633614e-05,
4.331271886334074e-05,
3.898144646067876e-05,
3.465017405801678e-05,
3.0318901655354804e-05,
2.5987629252692823e-05,
2.1656356850030842e-05,
1.9490721035945805e-05,
1.7325085221860765e-05,
1.5159449407775728e-05,
1.2993813593690691e-05,
1.0828177779605653e-05,
36.20001082420407,
72.40001082023036,
108.60001081625666,
144.80001081228295,
181.00001080830924,
208.0333434636397,
235.06667611897015,
262.1000087743006,
289.13334142963106,
316.1666740849615,
350.20000693003345,
384.2333397751054,
418.2666726201773,
452.3000054652492,
486.33333831032115,
498.5666711915284,
510.8000040727357,
523.0333369539429,
535.2666698351502,
547.5000027163575,
541.4500024334527,
535.400002150548,
529.3500018676432,
523.3000015847384,
517.2500013018337,
530.4916678506493,
543.7333343994649,
556.9750009482804,
570.216667497096,
583.4583340459116,
581.2125006402746,
578.9666672346376,
576.7208338290008,
574.4750004233638,
572.2291670177268,
581.6729169848196,
591.1166669519123,
600.5604169190051,
610.0041668860978,
619.4479168531906,
622.6031251682389,
625.7583334832871,
628.9135417983354,
632.0687501133835,
635.2239584284318,
638.2682292524325,
641.3125000764333,
644.3567709004338,
647.4010417244345,
650.4453125484353,
653.100781293669,
655.7562500389027,
658.4117187841365,
661.0671875293702,
663.722656274604,
670.717057313912,
677.7114583532201,
684.7058593925282,
691.7002604318362,
698.6946614711443,
683.6251953239203,
668.5557291766961,
653.4862630294721,
638.4167968822479,
623.3473307350239,
597.0459309947591,
570.7445312544944,
544.4431315142297,
518.1417317739649,
491.8403320337002,
508.60629883036063,
525.3722656270211,
542.1382324236816,
558.9041992203421,
575.6701660170025,
593.9698160819856,
612.2694661469686,
630.5691162119517,
648.8687662769347,
667.1684163419178,
664.3515747077247,
661.5347330735317,
658.7178914393386,
655.9010498051456,
653.0842081709525,
657.2757873538582,
661.4673665367638,
665.6589457196696,
669.8505249025753,
674.042104085481,
651.3878936769304,
628.7336832683797,
606.079472859829,
583.4252624512783,
560.7710520427277,
555.0606135051212,
549.3501749675148,
543.6397364299083,
537.929297892302,
532.2188593546955,
533.996973419226,
535.7750874837565,
537.553201548287,
539.3313156128174,
541.109429677348,
549.8584867096133,
558.6075437418787,
567.3566007741439,
576.1056578064092,
584.8547148386746,
589.6292433548072,
594.4037718709397,
599.1783003870723,
603.9528289032049,
608.7273574193375,
641.1879550107373,
673.648552602137,
706.1091501935366,
738.5697477849363,
771.0303453763361,
767.0773108387025,
763.1242763010689,
759.1712417634352,
755.2182072258016,
751.265172688168,
752.9053220860179,
754.5454714838678,
756.1856208817176,
757.8257702795675,
759.4659196774173,
752.5193277096756,
745.5727357419339,
738.6261437741921,
731.6795518064504,
724.7329598387087,
755.1929971881711,
785.6530345376336,
816.1130718870961,
846.5731092365586,
877.0331465860211,
861.779831927419,
846.5265172688169,
831.2732026102148,
816.0198879516126,
800.7665732930105,
779.0899159637095,
757.4132586344084,
735.7366013051073,
714.0599439758063,
692.3832866465052,
690.9949579818547,
689.6066293172041,
688.2183006525537,
686.8299719879031,
685.4416433232526,
670.864145657594,
656.2866479919354,
641.7091503262768,
627.1316526606182,
612.5541549949596,
608.2487394954636,
603.9433239959677,
599.6379084964717,
595.3324929969758,
591.0270774974798,
583.0243697477318,
575.0216619979839,
567.0189542482358,
559.0162464984878,
551.0135387487398,
558.9621848738659,
566.9108309989919,
574.8594771241179,
582.8081232492439,
590.7567693743699,
595.7144257702663,
600.6720821661627,
605.629738562059,
610.5873949579553,
615.5450513538517,
627.7905462184665,
640.0360410830814,
652.2815359476962,
664.5270308123111,
676.7725256769259,
697.3952731092332,
718.0180205415406,
738.6407679738481,
759.2635154061555,
779.8862628384629,
811.33096988795,
842.775676937437,
874.220383986924,
905.665091036411,
937.1097980858981,
939.965484943975,
942.8211718020518,
945.6768586601286,
948.5325455182054,
951.3882323762823,
972.049409138654,
992.7105859010259,
1013.3717626633976,
1034.0329394257694,
1054.6941161881412,
1088.5580379026603,
1122.4219596171795,
1156.2858813316989,
1190.149803046218,
1224.0137247607372,
1224.9623522846634,
1225.9109798085897,
1226.8596073325161,
1227.8082348564424,
1228.7568623803686,
1214.0811761423317,
1199.4054899042949,
1184.729803666258,
1170.0541174282212,
1155.3784311901843,
1186.1905880711658,
1217.0027449521474,
1247.8149018331292,
1278.6270587141107,
1309.4392155950923,
1334.595294035583,
1359.7513724760738,
1384.9074509165646,
1410.0635293570554,
1435.2196077975461,
1422.7976470177914,
1410.375686238037,
1397.9537254582822,
1385.5317646785277,
1373.109803898773,
1377.2988235088956,
1381.4878431190184,
1385.676862729141,
1389.8658823392639,
1394.0549019493865,
1364.3494117544478,
1334.6439215595092,
1304.9384313645705,
1275.2329411696319,
1245.5274509746932,
1265.9747058772239,
1286.4219607797545,
1306.8692156822854,
1327.316470584816,
1347.7637254873466,
1371.387352938612,
1395.0109803898772,
1418.6346078411427,
1442.258235292408,
1465.8818627436733,
1475.493676469306,
1485.1054901949385,
1494.7173039205713,
1504.329117646204,
1513.9409313718365,
1526.4968382346528,
1539.0527450974691,
1551.6086519602857,
1564.164558823102,
1576.7204656859183,
1565.5484191173264,
1554.3763725487347,
1543.2043259801428,
1532.0322794115511,
1520.8602328429592,
1516.94087622533,
1513.0215196077006,
1509.1021629900715,
1505.1828063724422,
1501.2634497548129,
1522.1371047793316,
1543.0107598038503,
1563.884414828369,
1584.7580698528877,
1605.6317248774064,
1624.4685523896658,
1643.305379901925,
1662.1422074141847,
1680.979034926444,
1699.8158624387033,
1671.234276194833,
1642.6526899509627,
1614.0711037070923,
1585.489517463222,
1556.9079312193517,
1547.6504714307498,
1538.393011642148,
1529.135551853546,
1519.8780920649442,
1510.6206322763423,
1521.258569048708,
1531.8965058210738,
1542.5344425934397,
1553.1723793658055,
1563.8103161381712,
1583.579284524354,
1603.348252910537,
1623.11722129672,
1642.8861896829028,
1662.6551580690857,
1685.2229755955104,
1707.7907931219352,
1730.35861064836,
1752.9264281747846,
1775.4942457012094,
1781.3948211310885,
1787.2953965609674,
1793.1959719908466,
1799.0965474207255,
1804.9971228506047,
1790.2640772322109,
1775.531031613817,
1760.7979859954235,
1746.0649403770296,
1731.3318947586358,
1739.9987052827723,
1748.6655158069086,
1757.3323263310451,
1765.9991368551814,
1774.665947379318,
1788.899352641386,
1803.1327579034544,
1817.3661631655225,
1831.5995684275908,
1845.832973689659,
1838.3163429873598,
1830.7997122850604,
1823.2830815827613,
1815.766450880462,
1808.2498201781627,
1801.0748381603464,
1793.89985614253,
1786.724874124714,
1779.5498921068977,
1772.3749100890814,
1744.4374190801732,
1716.499928071265,
1688.562437062357,
1660.6249460534489,
1632.6874550445407,
1656.5187095400865,
1680.3499640356326,
1704.1812185311785,
1728.0124730267246,
1751.8437275222705,
1722.12602143671,
1692.4083153511497,
1662.6906092655895,
1632.972903180029,
1603.2551970944687,
1595.7796773850218,
1588.304157675575,
1580.828637966128,
1573.3531182566812,
1565.8775985472344,
1571.289838692511,
1576.7020788377874,
1582.114318983064,
1587.5265591283405,
1592.9387992736172,
1600.7949193462555,
1608.6510394188938,
1616.507159491532,
1624.3632795641704,
1632.2193996368087,
1658.7307930064612,
1685.2421863761135,
1711.753579745766,
1738.2649731154183,
1764.7763664850709,
1792.2987298365638,
1819.8210931880567,
1847.3434565395496,
1874.8658198910425,
1902.3881832425354,
1883.8160315849486,
1865.2438799273616,
1846.6717282697748,
1828.0995766121878,
1809.527424954601,
1818.6246824591408,
1827.7219399636808,
1836.8191974682206,
1845.9164549727607,
1855.0137124773005,
1858.8456745629037,
1862.6776366485071,
1866.5095987341103,
1870.3415608197138,
1874.173522905317,
1876.7561706147853,
1879.3388183242537,
1881.9214660337218,
1884.5041137431901,
1887.0867614526585,
1876.8447519740594,
1866.6027424954602,
1856.3607330168609,
1846.1187235382617,
1835.8767140596626,
1799.8890426536964,
1763.9013712477301,
1727.913699841764,
1691.9260284357977,
1655.9383570298314,
1658.611187993515,
1661.2840189571984,
1663.9568499208822,
1666.6296808845657,
1669.3025118482492,
1677.7922606634243,
1686.2820094785993,
1694.7717582937744,
1703.2615071089494,
1711.7512559241245,
1686.076130331712,
1660.4010047392997,
1634.725879146887,
1609.0507535544748,
1583.3756279620623,
1549.238065165856,
1515.1005023696498,
1480.9629395734435,
1446.8253767772374,
1412.687813981031,
1412.9856992495945,
1413.283584518158,
1413.5814697867218,
1413.8793550552853,
1414.1772403238488,
1435.809516291464,
1457.441792259079,
1479.0740682266942,
1500.7063441943092,
1522.3386201619244,
1491.7380914790654,
1461.137562796206,
1430.537034113347,
1399.9365054304878,
1369.3359767476288,
1397.002379072866,
1424.668781398103,
1452.3351837233402,
1480.001586048577,
1507.6679883738143,
1543.5678562030996,
1579.467724032385,
1615.36759186167,
1651.2674596909553,
1687.1673275202406,
1655.2505947682166,
1623.3338620161926,
1591.4171292641684,
1559.5003965121443,
1527.5836637601203,
1523.091964050775,
1518.6002643414297,
1514.1085646320842,
1509.6168649227388,
1505.1251652133935,
1554.362648692054,
1603.6001321707147,
1652.8376156493755,
1702.075099128036,
1751.3125826066967,
1745.4479910126936,
1739.5833994186905,
1733.7188078246877,
1727.8542162306846,
1721.9896246366816,
1776.2406621730133,
1830.4916997093453,
1884.742737245677,
1938.993774782009,
1993.2448123183408,
2005.9869977531735,
2018.729183188006,
2031.4713686228386,
2044.213554057671,
2056.9557394925037,
2080.360165543253,
2103.764591594003,
2127.1690176447523,
2150.573443695502,
2173.9778697462516,
2170.846749438293,
2167.7156291303345,
2164.584508822376,
2161.4533885144174,
2158.322268206459,
2118.590041385813,
2078.8578145651672,
2039.1255877445212,
1999.3933609238752,
1959.6611341032294,
1962.3950206929064,
1965.1289072825834,
1967.8627938722607,
1970.5966804619377,
1973.3305670516147,
2012.5975103464532,
2051.8644536412917,
2091.1313969361304,
2130.3983402309686,
2169.6652835258074,
2169.7987551732267,
2169.932226820646,
2170.065698468065,
2170.1991701154843,
2170.3326417629037,
2133.449377586613,
2096.566113410323,
2059.682849234033,
2022.7995850577422,
1985.9163208814518,
2008.1913554599732,
2030.4663900384949,
2052.7414246170165,
2075.0164591955377,
2097.2914937740593,
2107.2123443966534,
2117.1331950192475,
2127.054045641841,
2136.9748962644353,
2146.8957468870294,
2103.3061721983263,
2059.7165975096236,
2016.1270228209205,
1972.5374481322176,
1928.9478734435147,
1907.7030860991633,
1886.4582987548117,
1865.2135114104603,
1843.9687240661087,
1822.7239367217574,
1813.6182097162482,
1804.5124827107393,
1795.4067557052301,
1786.3010286997212,
1777.195301694212,
1696.4757715247908,
1615.7562413553696,
1535.0367111859484,
1454.3171810165272,
1373.597650847106,
1409.7712190957288,
1445.9447873443514,
1482.1183555929742,
1518.2919238415968,
1554.4654920902196,
1592.4689428811976,
1630.4723936721757,
1668.4758444631536,
1706.4792952541318,
1744.4827460451097,
1782.9011381072653,
1821.3195301694211,
1859.7379222315767,
1898.1563142937325,
1936.574706355888,
1979.1672357202992,
2021.7597650847106,
2064.352294449122,
2106.944823813533,
2149.537353177944,
2130.8502845268163,
2112.163215875689,
2093.476147224561,
2074.7890785734335,
2056.1020099223056,
2028.841808930075,
2001.5816079378444,
1974.321406945614,
1947.0612059533833,
1919.8010049611528,
1915.8542377983708,
1911.9074706355889,
1907.960703472807,
1904.013936310025,
1900.067169147243,
1878.4604522325187,
1856.8537353177944,
1835.2470184030701,
1813.6403014883458,
1792.0335845736215,
1812.0302261162594,
1832.0268676588973,
1852.023509201535,
1872.020150744173,
1892.0167922868109,
1946.66511305813,
2001.3134338294487,
2055.9617546007676,
2110.6100753720866,
2165.2583961434057,
2151.632556529065,
2138.0067169147246,
2124.380877300384,
2110.7550376860436,
2097.129198071703,
2186.0162782645325,
2274.903358457362,
2363.7904386501923,
2452.677518843022,
2541.5645990358516,
2527.0414724656,
2512.518345895348,
2497.9952193250965,
2483.4720927548447,
2468.948966184593,
2453.5040695661337,
2438.059172947674,
2422.614276329215,
2407.1693797107555,
2391.7244830922964,
2391.0187014497333,
2390.3129198071706,
2389.6071381646075,
2388.901356522045,
2388.1955748794817,
2454.1260173915334,
2520.056459903585,
2585.9869024156374,
2651.917344927689,
2717.847787439741,
2698.5296753624334,
2679.211563285126,
2659.8934512078185,
2640.575339130511,
2621.2572270532037,
2605.6315043478835,
2590.005781642563,
2574.3800589372427,
2558.754336231922,
2543.128613526602,
2526.8157521739417,
2510.5028908212817,
2494.190029468621,
2477.877168115961,
2461.564306763301,
2449.857876086971,
2438.151445410641,
2426.4450147343105,
2414.7385840579805,
2403.0321533816505,
2396.062271376819,
2389.092389371987,
2382.1225073671553,
2375.1526253623233,
2368.1827433574917,
2361.9644690217424,
2355.7461946859935,
2349.527920350244,
2343.3096460144952,
2337.091371678746,
2302.248901177538,
2267.40643067633,
2232.5639601751222,
2197.721489673914,
2162.879019172706,
2126.4911172554357,
2090.103215338165,
2053.7153134208943,
2017.3274115036238,
1980.939509586353,
1977.4788919610512,
1974.018274335749,
1970.5576567104472,
1967.097039085145,
1963.6364214598432,
1950.5227793138588,
1937.4091371678746,
1924.2954950218902,
1911.181852875906,
1898.0682107299217,
1873.6613896569295,
1849.2545685839373,
1824.8477475109453,
1800.440926437953,
1776.0341053649609,
1802.8806948284648,
1829.7272842919688,
1856.5738737554725,
1883.4204632189765,
1910.2670526824804,
1925.6736807475656,
1941.080308812651,
1956.4869368777363,
1971.8935649428217,
1987.300193007907,
1982.8701737071162,
1978.4401544063255,
1974.010135105535,
1969.5801158047443,
1965.1500965039536,
2007.7017535202249,
2050.253410536496,
2092.8050675527675,
2135.3567245690388,
2177.90838158531,
2263.567543426779,
2349.226705268248,
2434.885867109717,
2520.545028951186,
2606.204190792655,
2620.9504383800563,
2635.6966859674576,
2650.4429335548584,
2665.1891811422597,
2679.935428729661,
2666.791885856695,
2653.648342983729,
2640.5048001107625,
2627.3612572377965,
2614.2177143648305,
2519.8292762616807,
2425.440838158531,
2331.0524000553814,
2236.6639619522316,
2142.2755238490818,
2075.4479714641734,
2008.6204190792655,
1941.7928666943571,
1874.965314309449,
1808.1377619245409,
1888.5239857320869,
1968.910209539633,
2049.2964333471787,
2129.682657154725,
2210.0688809622707,
2236.9119928660434,
2263.7551047698166,
2290.5982166735894,
2317.4413285773626,
2344.2844404811353,
2322.555996433022,
2300.8275523849084,
2279.0991083367944,
2257.370664288681,
2235.6422202405674,
2268.3779982165106,
2301.1137761924538,
2333.8495541683974,
2366.5853321443406,
2399.3211101202837,
2402.6889991082553,
2406.056888096227,
2409.4247770841985,
2412.79266607217,
2416.1605550601416,
2438.1944995541276,
2460.2284440481135,
2482.262388542099,
2504.296333036085,
2526.330277530071,
2540.66391644373,
2554.99755535739,
2569.3311942710493,
2583.664833184709,
2597.9984720983684,
2519.4486248885314,
2440.898777678695,
2362.348930468858,
2283.7990832590212,
2205.249236049184,
2214.657645777599,
2224.066055506014,
2233.474465234429,
2242.8828749628437,
2252.2912846912586,
2296.5621562221327,
2340.8330277530067,
2385.103899283881,
2429.3747708147553,
2473.6456423456293,
2439.547744777733,
2405.4498472098367,
2371.3519496419403,
2337.254052074044,
2303.1561545061477,
2281.890539055533,
2260.624923604918,
2239.3593081543036,
2218.0936927036887,
2196.828077253074,
2165.8786028611,
2134.9291284691258,
2103.9796540771517,
2073.0301796851777,
2042.0807052932037,
1940.6726347638833,
1839.2645642345628,
1737.8564937052424,
1636.4484231759222,
1535.0403526466018,
1504.769650715275,
1474.4989487839482,
1444.2282468526212,
1413.9575449212944,
1383.6868429899675,
1416.2681586909707,
1448.8494743919741,
1481.4307900929773,
1514.0121057939807,
1546.5934214949839,
1542.6840793454855,
1538.7747371959872,
1534.8653950464886,
1530.9560528969903,
1527.046710747492,
1622.8087063394094,
1718.5707019313268,
1814.3326975232444,
1910.0946931151618,
2005.8566887070792,
2043.9210198363712,
2081.985350965663,
2120.0496820949556,
2158.1140132242476,
2196.1783443535396,
2192.993843251519,
2189.809342149498,
2186.6248410474777,
2183.440339945457,
2180.2558388434363,
2166.1802549590925,
2152.104671074749,
2138.0290871904053,
2123.953503306062,
2109.877919421718,
2132.4234608128795,
2154.9690022040413,
2177.5145435952027,
2200.0600849863645,
2222.605626377526,
2282.445063739773,
2342.284501102021,
2402.123938464268,
2461.963375826516,
2521.802813188763,
2345.35586520322,
2168.9089172176773,
1992.4619692321342,
1816.0150212465912,
1639.5680732610483,
1668.1612659349435,
1696.7544586088386,
1725.3476512827338,
1753.940843956629,
1782.534036630524,
1816.713966300805,
1850.8938959710858,
1885.073825641367,
1919.2537553116479,
1953.4336849819288,
1978.9903164837358,
2004.5469479855428,
2030.10357948735,
2055.660210989157,
2081.216842490964,
2078.5618249085346,
2075.9068073261046,
2073.251789743675,
2070.596772161245,
2067.9417545788156,
2095.997579120934,
2124.0534036630524,
2152.109228205171,
2180.1650527472893,
2208.220877289408,
2238.598789560467,
2268.9767018315265,
2299.3546141025854,
2329.7325263736448,
2360.110438644704,
2355.549394780234,
2350.9883509157635,
2346.4273070512927,
2341.8662631868224,
2337.305219322352,
2306.9413640567836,
2276.577508791215,
2246.2136535256464,
2215.849798260078,
2185.4859429945095,
2167.4873486950587,
2149.488754395608,
2131.4901600961566,
2113.491565796706,
2095.492971497255,
2115.5436743475293,
2135.594377197804,
2155.6450800480784,
2175.695782898353,
2195.7464857486275,
2164.2718371737647,
2132.797188598902,
2101.3225400240394,
2069.8478914491766,
2038.3732428743137,
2069.7359185868822,
2101.0985942994507,
2132.4612700120197,
2163.823945724588,
2195.1866214371566,
2218.317959293441,
2241.449297149725,
2264.5806350060097,
2287.711972862294,
2310.8433107185783,
2308.3589796467204,
2305.8746485748625,
2303.390317503005,
2300.905986431147,
2298.421655359289,
2274.92948982336,
2251.4373242874312,
2227.9451587515023,
2204.4529932155733,
2180.9608276796444,
2188.4314115783463,
2195.901995477049,
2203.372579375751,
2210.843163274453,
2218.313747173155,
2215.8323724558395,
2213.3509977385243,
2210.8696230212086,
2208.3882483038933,
2205.9068735865776,
2187.049519561253,
2168.192165535929,
2149.334811510604,
2130.47745748528,
2111.6201034599553,
2096.60809311396,
2081.596082767964,
2066.584072421969,
2051.572062075973,
2036.5600517299777,
2019.40404655698,
2002.2480413839821,
1985.0920362109844,
1967.9360310379866,
1950.7800258649888,
1962.75202327849,
1974.724020691991,
1986.6960181054922,
1998.6680155189931,
2010.6400129324943,
2067.7426783059113,
2124.845343679329,
2181.948009052746,
2239.0506744261634,
2296.1533397995804,
2309.8380058196226,
2323.5226718396643,
2337.2073378597065,
2350.8920038797482,
2364.5766698997904,
2309.285669576478,
2253.9946692531657,
2198.7036689298534,
2143.412668606541,
2088.1216682832287,
2070.609501454906,
2053.097334626583,
2035.58516779826,
2018.0730009699373,
2000.5608341416144,
2029.9380840607862,
2059.3153339799583,
2088.69258389913,
2118.069833818302,
2147.447083737474,
2117.8523753637264,
2088.257666989979,
2058.6629586162317,
2029.0682502424843,
1999.473541868737,
2015.0595210151964,
2030.6455001616562,
2046.2314793081157,
2061.8174584545754,
2077.403437601035,
2076.7630938409316,
2076.122750080828,
2075.4824063207243,
2074.842062560621,
2074.2017188005175,
2045.5815469204658,
2016.961375040414,
1988.3412031603623,
1959.7210312803104,
1931.1008594002587,
1893.4407734602328,
1855.780687520207,
1818.120601580181,
1780.4605156401553,
1742.8004297001294,
1734.487053396783,
1726.1736770934367,
1717.8603007900906,
1709.5469244867443,
1701.233548183398,
1699.460193365058,
1697.6868385467183,
1695.9134837283787,
1694.1401289100388,
1692.366774091699,
1668.330096682529,
1644.2934192733592,
1620.2567418641893,
1596.2200644550194,
1572.1833870458495,
1587.4650483412645,
1602.7467096366795,
1618.0283709320947,
1633.3100322275097,
1648.5916935229247,
1637.3991908372989,
1626.206688151673,
1615.0141854660474,
1603.8216827804215,
1592.6291800947956,
1558.0162620853162,
1523.4033440758365,
1488.790426066357,
1454.1775080568773,
1419.5645900473978,
1394.4747977093248,
1369.3850053712515,
1344.2952130331785,
1319.2054206951052,
1294.1156283570322,
1272.354065521329,
1250.5925026856257,
1228.8309398499225,
1207.0693770142193,
1185.307814178516,
1183.5103660939978,
1181.7129180094796,
1179.9154699249611,
1178.118021840443,
1176.3205737559247,
1096.5885163803323,
1016.8564590047397,
937.1244016291473,
857.3923442535548,
777.6602868779623,
723.5942581901661,
669.5282295023699,
615.4622008145736,
561.3961721267774,
507.33014343898117,
556.447129095083,
605.5641147511849,
654.6811004072867,
703.7980860633887,
752.9150717194906,
788.5902312142082,
824.2653907089258,
859.9405502036434,
895.615709698361,
931.2908691930786,
941.2117822737707,
951.1326953544628,
961.0536084351551,
970.9745215158472,
980.8954345965393,
983.2392244702187,
985.5830143438981,
987.9268042175776,
990.270594091257,
992.6143839649363,
984.9029455684426,
977.1915071719491,
969.4800687754554,
961.7686303789618,
954.0571919824681,
985.4514727842213,
1016.8457535859744,
1048.2400343877275,
1079.6343151894807,
1111.028595991234,
1114.3257363921105,
1117.6228767929872,
1120.9200171938637,
1124.2171575947405,
1127.514297995617,
1108.9962015293886,
1090.4781050631602,
1071.9600085969319,
1053.4419121307035,
1034.9238156644751,
1003.9814340980276,
973.0390525315801,
942.0966709651326,
911.154289398685,
880.2119078322376,
860.3240503823472,
840.4361929324567,
820.5483354825664,
800.6604780326759,
780.7726205827855,
768.945358524507,
757.1180964662284,
745.2908344079499,
733.4635723496713,
721.6363102913928,
746.9726792622535,
772.3090482331143,
797.645417203975,
822.9817861748357,
848.3181551456964,
839.3863396311268,
830.4545241165572,
821.5227086019875,
812.5908930874178,
803.6590775728482,
801.4931698155634,
799.3272620582786,
797.1613543009937,
794.9954465437089,
792.8295387864241,
794.8465849077817,
796.8636310291392,
798.8806771504969,
800.8977232718545,
802.914769393212,
796.0899591205575,
789.265148847903,
782.4403385752485,
775.6155283025939,
768.7907180299394,
779.1116462269455,
789.4325744239516,
799.7535026209575,
810.0744308179636,
820.3953590149697,
815.5891564468061,
810.7829538786424,
805.9767513104788,
801.1705487423151,
796.3643461741515,
802.6779115567364,
808.9914769393212,
815.3050423219061,
821.6186077044908,
827.9321730870757,
796.9389557783682,
765.9457384696606,
734.952521160953,
703.9593038522454,
672.9660865435378,
628.519477889184,
584.0728692348303,
539.6262605804765,
495.1796519261227,
450.7330432717689,
451.49307227792536,
452.2531012840818,
453.0131302902382,
453.7731592963947,
454.53318830255114,
452.42986947229605,
450.3265506420409,
448.2232318117858,
446.11991298153066,
444.01659415127557,
465.78160140281466,
487.5466086543538,
509.3116159058929,
531.076623157432,
552.8416304089711,
565.307467368074,
577.7733043271769,
590.2391412862797,
602.7049782453827,
615.1708152044855,
612.7870670173703,
610.4033188302551,
608.0195706431398,
605.6358224560246,
603.2520742689094,
610.9768668420185,
618.7016594151276,
626.4264519882365,
634.1512445613456,
641.8760371344547,
620.6551000876759,
599.4341630408971,
578.2132259941183,
556.9922889473395,
535.7713519005607,
527.3942167105047,
519.0170815204485,
510.6399463303925,
502.26281114033645,
493.88567595028036,
495.33044168858567,
496.775207426891,
498.2199731651962,
499.66473890350153,
501.10950464180684,
503.8985541776261,
506.68760371344547,
509.47665324926476,
512.265702785084,
515.0547523209034,
507.8826104221464,
500.71046852338935,
493.53832662463236,
486.3661847258753,
479.1940428271183,
473.4246385444065,
467.65523426169466,
461.8858299789828,
456.116425696271,
450.34702141355916,
461.7456526055366,
473.144283797514,
484.54291498949146,
495.9415461814689,
507.3401773734463,
519.0561596361017,
530.772141898757,
542.4881241614124,
554.2041064240677,
565.9200886867231,
565.5614131513842,
565.2027376160452,
564.8440620807062,
564.4853865453672,
564.1267110100282,
560.9140399090254,
557.7013688080226,
554.4886977070197,
551.2760266060169,
548.0633555050141,
548.4236866211794,
548.7840177373446,
549.1443488535099,
549.5046799696751,
549.8650110858404,
555.5785099772563,
561.2920088686723,
567.0055077600882,
572.7190066515042,
578.4325055429201,
577.2559216552947,
576.0793377676695,
574.9027538800441,
573.7261699924188,
572.5495861047934,
554.1279608276474,
535.7063355505014,
517.2847102733554,
498.86308499620935,
480.44145971906335,
465.847313747157,
451.2531677752507,
436.65902180334433,
422.06487583143803,
407.4707298595317,
389.1236568735785,
370.77658388762535,
352.4295109016722,
334.082437915719,
315.73536492976586,
312.0451617701226,
308.35495861047934,
304.6647554508361,
300.9745522911928,
297.28434913154956,
298.1559142183946,
299.02747930523964,
299.8990443920847,
300.7706094789297,
301.6421745657748,
298.29462377586395,
294.9470729859531,
291.59952219604236,
288.25197140613153,
284.9044206162207,
281.06397855459863,
277.22353649297656,
273.3830944313545,
269.5426523697324,
265.70221030811035,
262.13198927729934,
258.56176824648827,
254.99154721567726,
251.42132618486622,
247.85110515405518,
243.36599463864965,
238.88088412324413,
234.39577360783863,
229.9106630924331,
225.4255525770276,
221.18299731932484,
216.94044206162206,
212.69788680391932,
208.45533154621654,
204.2127762885138,
210.61649865966243,
217.02022103081103,
223.42394340195966,
229.82766577310827,
236.2313881442569,
230.6082493298312,
224.98511051540552,
219.36197170097984,
213.73883288655415,
208.11569407212846
],
"yaxis": "y"
}
],
"layout": {
"legend": {
"title": {
"text": "dow"
},
"tracegroupgap": 0
},
"template": {
"data": {
"bar": [
{
"error_x": {
"color": "#2a3f5f"
},
"error_y": {
"color": "#2a3f5f"
},
"marker": {
"line": {
"color": "#E5ECF6",
"width": 0.5
}
},
"type": "bar"
}
],
"barpolar": [
{
"marker": {
"line": {
"color": "#E5ECF6",
"width": 0.5
}
},
"type": "barpolar"
}
],
"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"
}
],
"choropleth": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"type": "choropleth"
}
],
"contour": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
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,
"#f0f921"
]
],
"type": "contour"
}
],
"contourcarpet": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"type": "contourcarpet"
}
],
"heatmap": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
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,
"#f0f921"
]
],
"type": "heatmap"
}
],
"heatmapgl": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
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,
"#f0f921"
]
],
"type": "heatmapgl"
}
],
"histogram": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "histogram"
}
],
"histogram2d": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
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,
"#f0f921"
]
],
"type": "histogram2d"
}
],
"histogram2dcontour": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
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,
"#f0f921"
]
],
"type": "histogram2dcontour"
}
],
"mesh3d": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"type": "mesh3d"
}
],
"parcoords": [
{
"line": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "parcoords"
}
],
"pie": [
{
"automargin": true,
"type": "pie"
}
],
"scatter": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatter"
}
],
"scatter3d": [
{
"line": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatter3d"
}
],
"scattercarpet": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattercarpet"
}
],
"scattergeo": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattergeo"
}
],
"scattergl": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattergl"
}
],
"scattermapbox": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattermapbox"
}
],
"scatterpolar": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatterpolar"
}
],
"scatterpolargl": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatterpolargl"
}
],
"scatterternary": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatterternary"
}
],
"surface": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
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,
"#f0f921"
]
],
"type": "surface"
}
],
"table": [
{
"cells": {
"fill": {
"color": "#EBF0F8"
},
"line": {
"color": "white"
}
},
"header": {
"fill": {
"color": "#C8D4E3"
},
"line": {
"color": "white"
}
},
"type": "table"
}
]
},
"layout": {
"annotationdefaults": {
"arrowcolor": "#2a3f5f",
"arrowhead": 0,
"arrowwidth": 1
},
"coloraxis": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"colorscale": {
"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"
]
],
"sequential": [
[
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,
"#f0f921"
]
],
"sequentialminus": [
[
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,
"#f0f921"
]
]
},
"colorway": [
"#636efa",
"#EF553B",
"#00cc96",
"#ab63fa",
"#FFA15A",
"#19d3f3",
"#FF6692",
"#B6E880",
"#FF97FF",
"#FECB52"
],
"font": {
"color": "#2a3f5f"
},
"geo": {
"bgcolor": "white",
"lakecolor": "white",
"landcolor": "#E5ECF6",
"showlakes": true,
"showland": true,
"subunitcolor": "white"
},
"hoverlabel": {
"align": "left"
},
"hovermode": "closest",
"mapbox": {
"style": "light"
},
"paper_bgcolor": "white",
"plot_bgcolor": "#E5ECF6",
"polar": {
"angularaxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
},
"bgcolor": "#E5ECF6",
"radialaxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
}
},
"scene": {
"xaxis": {
"backgroundcolor": "#E5ECF6",
"gridcolor": "white",
"gridwidth": 2,
"linecolor": "white",
"showbackground": true,
"ticks": "",
"zerolinecolor": "white"
},
"yaxis": {
"backgroundcolor": "#E5ECF6",
"gridcolor": "white",
"gridwidth": 2,
"linecolor": "white",
"showbackground": true,
"ticks": "",
"zerolinecolor": "white"
},
"zaxis": {
"backgroundcolor": "#E5ECF6",
"gridcolor": "white",
"gridwidth": 2,
"linecolor": "white",
"showbackground": true,
"ticks": "",
"zerolinecolor": "white"
}
},
"shapedefaults": {
"line": {
"color": "#2a3f5f"
}
},
"ternary": {
"aaxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
},
"baxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
},
"bgcolor": "#E5ECF6",
"caxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
}
},
"title": {
"x": 0.05
},
"xaxis": {
"automargin": true,
"gridcolor": "white",
"linecolor": "white",
"ticks": "",
"title": {
"standoff": 15
},
"zerolinecolor": "white",
"zerolinewidth": 2
},
"yaxis": {
"automargin": true,
"gridcolor": "white",
"linecolor": "white",
"ticks": "",
"title": {
"standoff": 15
},
"zerolinecolor": "white",
"zerolinewidth": 2
}
}
},
"title": {
"text": "Gare Du Nord"
},
"xaxis": {
"anchor": "y",
"domain": [
0,
1
],
"title": {
"text": "ts_offset"
}
},
"yaxis": {
"anchor": "x",
"domain": [
0,
1
],
"title": {
"text": "presence"
}
}
}
},
"text/html": [
"<div>\n",
" \n",
" \n",
" <div id=\"d7632f73-cdae-4336-bca4-3dfcf9506a83\" class=\"plotly-graph-div\" style=\"height:525px; width:100%;\"></div>\n",
" <script type=\"text/javascript\">\n",
" require([\"plotly\"], function(Plotly) {\n",
" window.PLOTLYENV=window.PLOTLYENV || {};\n",
" \n",
" if (document.getElementById(\"d7632f73-cdae-4336-bca4-3dfcf9506a83\")) {\n",
" Plotly.newPlot(\n",
" 'd7632f73-cdae-4336-bca4-3dfcf9506a83',\n",
" [{\"hovertemplate\": \"dow=6<br>ts_offset=%{x}<br>presence=%{y}<extra></extra>\", \"legendgroup\": \"6\", \"line\": {\"color\": \"#636efa\", \"dash\": \"solid\"}, \"mode\": \"lines\", \"name\": \"6\", \"showlegend\": true, \"type\": \"scattergl\", \"x\": [240.0, 300.0, 360.0, 420.0, 480.0, 540.0, 600.0, 660.0, 720.0, 780.0, 840.0, 900.0, 960.0, 1020.0, 1080.0, 1140.0, 1200.0, 1260.0, 1320.0, 1380.0, 1440.0, 1500.0, 1560.0, 1620.0, 1680.0, 1740.0, 1800.0, 1860.0, 1920.0, 1980.0, 2040.0, 2100.0, 2160.0, 2220.0, 2280.0, 2340.0, 2400.0, 2460.0, 2520.0, 2580.0, 2640.0, 2700.0, 2760.0, 2820.0, 2880.0, 2940.0, 3000.0, 3060.0, 3120.0, 3180.0, 3240.0, 3300.0, 3360.0, 3420.0, 3480.0, 3540.0, 3600.0, 3660.0, 3720.0, 3780.0, 3840.0, 3900.0, 3960.0, 4020.0, 4080.0, 4140.0, 4200.0, 4260.0, 4320.0, 4380.0, 4440.0, 4500.0, 4560.0, 4620.0, 4680.0, 4740.0, 4800.0, 4860.0, 4920.0, 4980.0, 5040.0, 5100.0, 5160.0, 5220.0, 5280.0, 5340.0, 5400.0, 5460.0, 5520.0, 5580.0, 5640.0, 5700.0, 5760.0, 5820.0, 5880.0, 5940.0, 6000.0, 6060.0, 6120.0, 6180.0, 6240.0, 6300.0, 6360.0, 6420.0, 6480.0, 6540.0, 6600.0, 6660.0, 6720.0, 6780.0, 6840.0, 6900.0, 6960.0, 7020.0, 7080.0, 7140.0, 7200.0, 7260.0, 7320.0, 7380.0, 7440.0, 7500.0, 7560.0, 7620.0, 7680.0, 7740.0, 7800.0, 7860.0, 7920.0, 7980.0, 8040.0, 8100.0, 8160.0, 8220.0, 8280.0, 8340.0, 8400.0, 8460.0, 8520.0, 8580.0, 8640.0, 8700.0, 8760.0, 8820.0, 8880.0, 8940.0, 9000.0, 9060.0, 9120.0, 9180.0, 9240.0, 9300.0, 9360.0, 9420.0, 9480.0, 9540.0, 9600.0, 9660.0, 9720.0, 9780.0, 9840.0, 9900.0, 9960.0, 10020.0, 10080.0, 10140.0, 10200.0, 10260.0, 10320.0, 10380.0, 10440.0, 10500.0, 10560.0, 10620.0, 10680.0, 10740.0, 10800.0, 10860.0, 10920.0, 10980.0, 11040.0, 11100.0, 11160.0, 11220.0, 11280.0, 11340.0, 11400.0, 11460.0, 11520.0, 11580.0, 11640.0, 11700.0, 11760.0, 11820.0, 11880.0, 11940.0, 12000.0, 12060.0, 12120.0, 12180.0, 12240.0, 12300.0, 12360.0, 12420.0, 12480.0, 12540.0, 12600.0, 12660.0, 12720.0, 12780.0, 12840.0, 12900.0, 12960.0, 13020.0, 13080.0, 13140.0, 13200.0, 13260.0, 13320.0, 13380.0, 13440.0, 13500.0, 13560.0, 13620.0, 13680.0, 13740.0, 13800.0, 13860.0, 13920.0, 13980.0, 14040.0, 14100.0, 14160.0, 14220.0, 14280.0, 14340.0, 14400.0, 14460.0, 14520.0, 14580.0, 14640.0, 14700.0, 14760.0, 14820.0, 14880.0, 14940.0, 15000.0, 15060.0, 15120.0, 15180.0, 15240.0, 15300.0, 15360.0, 15420.0, 15480.0, 15540.0, 15600.0, 15660.0, 15720.0, 15780.0, 15840.0, 15900.0, 15960.0, 16020.0, 16080.0, 16140.0, 16200.0, 16260.0, 16320.0, 16380.0, 16440.0, 16500.0, 16560.0, 16620.0, 16680.0, 16740.0, 16800.0, 16860.0, 16920.0, 16980.0, 17040.0, 17100.0, 17160.0, 17220.0, 17280.0, 17340.0, 17400.0, 17460.0, 17520.0, 17580.0, 17640.0, 17700.0, 17760.0, 17820.0, 17880.0, 17940.0, 18000.0, 18060.0, 18120.0, 18180.0, 18240.0, 18300.0, 18360.0, 18420.0, 18480.0, 18540.0, 18600.0, 18660.0, 18720.0, 18780.0, 18840.0, 18900.0, 18960.0, 19020.0, 19080.0, 19140.0, 19200.0, 19260.0, 19320.0, 19380.0, 19440.0, 19500.0, 19560.0, 19620.0, 19680.0, 19740.0, 19800.0, 19860.0, 19920.0, 19980.0, 20040.0, 20100.0, 20160.0, 20220.0, 20280.0, 20340.0, 20400.0, 20460.0, 20520.0, 20580.0, 20640.0, 20700.0, 20760.0, 20820.0, 20880.0, 20940.0, 21000.0, 21060.0, 21120.0, 21180.0, 21240.0, 21300.0, 21360.0, 21420.0, 21480.0, 21540.0, 21600.0, 21660.0, 21720.0, 21780.0, 21840.0, 21900.0, 21960.0, 22020.0, 22080.0, 22140.0, 22200.0, 22260.0, 22320.0, 22380.0, 22440.0, 22500.0, 22560.0, 22620.0, 22680.0, 22740.0, 22800.0, 22860.0, 22920.0, 22980.0, 23040.0, 23100.0, 23160.0, 23220.0, 23280.0, 23340.0, 23400.0, 23460.0, 23520.0, 23580.0, 23640.0, 23700.0, 23760.0, 23820.0, 23880.0, 23940.0, 24000.0, 24060.0, 24120.0, 24180.0, 24240.0, 24300.0, 24360.0, 24420.0, 24480.0, 24540.0, 24600.0, 24660.0, 24720.0, 24780.0, 24840.0, 24900.0, 24960.0, 25020.0, 25080.0, 25140.0, 25200.0, 25260.0, 25320.0, 25380.0, 25440.0, 25500.0, 25560.0, 25620.0, 25680.0, 25740.0, 25800.0, 25860.0, 25920.0, 25980.0, 26040.0, 26100.0, 26160.0, 26220.0, 26280.0, 26340.0, 26400.0, 26460.0, 26520.0, 26580.0, 26640.0, 26700.0, 26760.0, 26820.0, 26880.0, 26940.0, 27000.0, 27060.0, 27120.0, 27180.0, 27240.0, 27300.0, 27360.0, 27420.0, 27480.0, 27540.0, 27600.0, 27660.0, 27720.0, 27780.0, 27840.0, 27900.0, 27960.0, 28020.0, 28080.0, 28140.0, 28200.0, 28260.0, 28320.0, 28380.0, 28440.0, 28500.0, 28560.0, 28620.0, 28680.0, 28740.0, 28800.0, 28860.0, 28920.0, 28980.0, 29040.0, 29100.0, 29160.0, 29220.0, 29280.0, 29340.0, 29400.0, 29460.0, 29520.0, 29580.0, 29640.0, 29700.0, 29760.0, 29820.0, 29880.0, 29940.0, 30000.0, 30060.0, 30120.0, 30180.0, 30240.0, 30300.0, 30360.0, 30420.0, 30480.0, 30540.0, 30600.0, 30660.0, 30720.0, 30780.0, 30840.0, 30900.0, 30960.0, 31020.0, 31080.0, 31140.0, 31200.0, 31260.0, 31320.0, 31380.0, 31440.0, 31500.0, 31560.0, 31620.0, 31680.0, 31740.0, 31800.0, 31860.0, 31920.0, 31980.0, 32040.0, 32100.0, 32160.0, 32220.0, 32280.0, 32340.0, 32400.0, 32460.0, 32520.0, 32580.0, 32640.0, 32700.0, 32760.0, 32820.0, 32880.0, 32940.0, 33000.0, 33060.0, 33120.0, 33180.0, 33240.0, 33300.0, 33360.0, 33420.0, 33480.0, 33540.0, 33600.0, 33660.0, 33720.0, 33780.0, 33840.0, 33900.0, 33960.0, 34020.0, 34080.0, 34140.0, 34200.0, 34260.0, 34320.0, 34380.0, 34440.0, 34500.0, 34560.0, 34620.0, 34680.0, 34740.0, 34800.0, 34860.0, 34920.0, 34980.0, 35040.0, 35100.0, 35160.0, 35220.0, 35280.0, 35340.0, 35400.0, 35460.0, 35520.0, 35580.0, 35640.0, 35700.0, 35760.0, 35820.0, 35880.0, 35940.0, 36000.0, 36060.0, 36120.0, 36180.0, 36240.0, 36300.0, 36360.0, 36420.0, 36480.0, 36540.0, 36600.0, 36660.0, 36720.0, 36780.0, 36840.0, 36900.0, 36960.0, 37020.0, 37080.0, 37140.0, 37200.0, 37260.0, 37320.0, 37380.0, 37440.0, 37500.0, 37560.0, 37620.0, 37680.0, 37740.0, 37800.0, 37860.0, 37920.0, 37980.0, 38040.0, 38100.0, 38160.0, 38220.0, 38280.0, 38340.0, 38400.0, 38460.0, 38520.0, 38580.0, 38640.0, 38700.0, 38760.0, 38820.0, 38880.0, 38940.0, 39000.0, 39060.0, 39120.0, 39180.0, 39240.0, 39300.0, 39360.0, 39420.0, 39480.0, 39540.0, 39600.0, 39660.0, 39720.0, 39780.0, 39840.0, 39900.0, 39960.0, 40020.0, 40080.0, 40140.0, 40200.0, 40260.0, 40320.0, 40380.0, 40440.0, 40500.0, 40560.0, 40620.0, 40680.0, 40740.0, 40800.0, 40860.0, 40920.0, 40980.0, 41040.0, 41100.0, 41160.0, 41220.0, 41280.0, 41340.0, 41400.0, 41460.0, 41520.0, 41580.0, 41640.0, 41700.0, 41760.0, 41820.0, 41880.0, 41940.0, 42000.0, 42060.0, 42120.0, 42180.0, 42240.0, 42300.0, 42360.0, 42420.0, 42480.0, 42540.0, 42600.0, 42660.0, 42720.0, 42780.0, 42840.0, 42900.0, 42960.0, 43020.0, 43080.0, 43140.0, 43200.0, 43260.0, 43320.0, 43380.0, 43440.0, 43500.0, 43560.0, 43620.0, 43680.0, 43740.0, 43800.0, 43860.0, 43920.0, 43980.0, 44040.0, 44100.0, 44160.0, 44220.0, 44280.0, 44340.0, 44400.0, 44460.0, 44520.0, 44580.0, 44640.0, 44700.0, 44760.0, 44820.0, 44880.0, 44940.0, 45000.0, 45060.0, 45120.0, 45180.0, 45240.0, 45300.0, 45360.0, 45420.0, 45480.0, 45540.0, 45600.0, 45660.0, 45720.0, 45780.0, 45840.0, 45900.0, 45960.0, 46020.0, 46080.0, 46140.0, 46200.0, 46260.0, 46320.0, 46380.0, 46440.0, 46500.0, 46560.0, 46620.0, 46680.0, 46740.0, 46800.0, 46860.0, 46920.0, 46980.0, 47040.0, 47100.0, 47160.0, 47220.0, 47280.0, 47340.0, 47400.0, 47460.0, 47520.0, 47580.0, 47640.0, 47700.0, 47760.0, 47820.0, 47880.0, 47940.0, 48000.0, 48060.0, 48120.0, 48180.0, 48240.0, 48300.0, 48360.0, 48420.0, 48480.0, 48540.0, 48600.0, 48660.0, 48720.0, 48780.0, 48840.0, 48900.0, 48960.0, 49020.0, 49080.0, 49140.0, 49200.0, 49260.0, 49320.0, 49380.0, 49440.0, 49500.0, 49560.0, 49620.0, 49680.0, 49740.0, 49800.0, 49860.0, 49920.0, 49980.0, 50040.0, 50100.0, 50160.0, 50220.0, 50280.0, 50340.0, 50400.0, 50460.0, 50520.0, 50580.0, 50640.0, 50700.0, 50760.0, 50820.0, 50880.0, 50940.0, 51000.0, 51060.0, 51120.0, 51180.0, 51240.0, 51300.0, 51360.0, 51420.0, 51480.0, 51540.0, 51600.0, 51660.0, 51720.0, 51780.0, 51840.0, 51900.0, 51960.0, 52020.0, 52080.0, 52140.0, 52200.0, 52260.0, 52320.0, 52380.0, 52440.0, 52500.0, 52560.0, 52620.0, 52680.0, 52740.0, 52800.0, 52860.0, 52920.0, 52980.0, 53040.0, 53100.0, 53160.0, 53220.0, 53280.0, 53340.0, 53400.0, 53460.0, 53520.0, 53580.0, 53640.0, 53700.0, 53760.0, 53820.0, 53880.0, 53940.0, 54000.0, 54060.0, 54120.0, 54180.0, 54240.0, 54300.0, 54360.0, 54420.0, 54480.0, 54540.0, 54600.0, 54660.0, 54720.0, 54780.0, 54840.0, 54900.0, 54960.0, 55020.0, 55080.0, 55140.0, 55200.0, 55260.0, 55320.0, 55380.0, 55440.0, 55500.0, 55560.0, 55620.0, 55680.0, 55740.0, 55800.0, 55860.0, 55920.0, 55980.0, 56040.0, 56100.0, 56160.0, 56220.0, 56280.0, 56340.0, 56400.0, 56460.0, 56520.0, 56580.0, 56640.0, 56700.0, 56760.0, 56820.0, 56880.0, 56940.0, 57000.0, 57060.0, 57120.0, 57180.0, 57240.0, 57300.0, 57360.0, 57420.0, 57480.0, 57540.0, 57600.0, 57660.0, 57720.0, 57780.0, 57840.0, 57900.0, 57960.0, 58020.0, 58080.0, 58140.0, 58200.0, 58260.0, 58320.0, 58380.0, 58440.0, 58500.0, 58560.0, 58620.0, 58680.0, 58740.0, 58800.0, 58860.0, 58920.0, 58980.0, 59040.0, 59100.0, 59160.0, 59220.0, 59280.0, 59340.0, 59400.0, 59460.0, 59520.0, 59580.0, 59640.0, 59700.0, 59760.0, 59820.0, 59880.0, 59940.0, 60000.0, 60060.0, 60120.0, 60180.0, 60240.0, 60300.0, 60360.0, 60420.0, 60480.0, 60540.0, 60600.0, 60660.0, 60720.0, 60780.0, 60840.0, 60900.0, 60960.0, 61020.0, 61080.0, 61140.0, 61200.0, 61260.0, 61320.0, 61380.0, 61440.0, 61500.0, 61560.0, 61620.0, 61680.0, 61740.0, 61800.0, 61860.0, 61920.0, 61980.0, 62040.0, 62100.0, 62160.0, 62220.0, 62280.0, 62340.0, 62400.0, 62460.0, 62520.0, 62580.0, 62640.0, 62700.0, 62760.0, 62820.0, 62880.0, 62940.0, 63000.0, 63060.0, 63120.0, 63180.0, 63240.0, 63300.0, 63360.0, 63420.0, 63480.0, 63540.0, 63600.0, 63660.0, 63720.0, 63780.0, 63840.0, 63900.0, 63960.0, 64020.0, 64080.0, 64140.0, 64200.0, 64260.0, 64320.0, 64380.0, 64440.0, 64500.0, 64560.0, 64620.0, 64680.0, 64740.0, 64800.0, 64860.0, 64920.0, 64980.0, 65040.0, 65100.0, 65160.0, 65220.0, 65280.0, 65340.0, 65400.0, 65460.0, 65520.0, 65580.0, 65640.0, 65700.0, 65760.0, 65820.0, 65880.0, 65940.0, 66000.0, 66060.0, 66120.0, 66180.0, 66240.0, 66300.0, 66360.0, 66420.0, 66480.0, 66540.0, 66600.0, 66660.0, 66720.0, 66780.0, 66840.0, 66900.0, 66960.0, 67020.0, 67080.0, 67140.0, 67200.0, 67260.0, 67320.0, 67380.0, 67440.0, 67500.0, 67560.0, 67620.0, 67680.0, 67740.0, 67800.0, 67860.0, 67920.0, 67980.0, 68040.0, 68100.0, 68160.0, 68220.0, 68280.0, 68340.0, 68400.0, 68460.0, 68520.0, 68580.0, 68640.0, 68700.0, 68760.0, 68820.0, 68880.0, 68940.0, 69000.0, 69060.0, 69120.0, 69180.0, 69240.0, 69300.0, 69360.0, 69420.0, 69480.0, 69540.0, 69600.0, 69660.0, 69720.0, 69780.0, 69840.0, 69900.0, 69960.0, 70020.0, 70080.0, 70140.0, 70200.0, 70260.0, 70320.0, 70380.0, 70440.0, 70500.0, 70560.0, 70620.0, 70680.0, 70740.0, 70800.0, 70860.0, 70920.0, 70980.0, 71040.0, 71100.0, 71160.0, 71220.0, 71280.0, 71340.0, 71400.0, 71460.0, 71520.0, 71580.0, 71640.0, 71700.0, 71760.0, 71820.0, 71880.0, 71940.0, 72000.0, 72060.0, 72120.0, 72180.0, 72240.0, 72300.0, 72360.0, 72420.0, 72480.0, 72540.0, 72600.0, 72660.0, 72720.0, 72780.0, 72840.0, 72900.0, 72960.0, 73020.0, 73080.0, 73140.0, 73200.0, 73260.0, 73320.0, 73380.0, 73440.0, 73500.0, 73560.0, 73620.0, 73680.0, 73740.0, 73800.0, 73860.0, 73920.0, 73980.0, 74040.0, 74100.0, 74160.0, 74220.0, 74280.0, 74340.0, 74400.0, 74460.0, 74520.0, 74580.0, 74640.0, 74700.0, 74760.0, 74820.0, 74880.0, 74940.0, 75000.0, 75060.0, 75120.0, 75180.0, 75240.0, 75300.0, 75360.0, 75420.0, 75480.0, 75540.0, 75600.0, 75660.0, 75720.0, 75780.0, 75840.0, 75900.0, 75960.0, 76020.0, 76080.0, 76140.0, 76200.0, 76260.0, 76320.0, 76380.0, 76440.0, 76500.0, 76560.0, 76620.0, 76680.0, 76740.0, 76800.0, 76860.0, 76920.0, 76980.0, 77040.0, 77100.0, 77160.0, 77220.0, 77280.0, 77340.0, 77400.0, 77460.0, 77520.0, 77580.0, 77640.0, 77700.0, 77760.0, 77820.0, 77880.0, 77940.0, 78000.0, 78060.0, 78120.0, 78180.0, 78240.0, 78300.0, 78360.0, 78420.0, 78480.0, 78540.0, 78600.0, 78660.0, 78720.0, 78780.0, 78840.0, 78900.0, 78960.0, 79020.0, 79080.0, 79140.0, 79200.0, 79260.0, 79320.0, 79380.0, 79440.0, 79500.0, 79560.0, 79620.0, 79680.0, 79740.0, 79800.0, 79860.0, 79920.0, 79980.0, 80040.0, 80100.0, 80160.0, 80220.0, 80280.0, 80340.0, 80400.0, 80460.0, 80520.0, 80580.0, 80640.0, 80700.0, 80760.0, 80820.0, 80880.0, 80940.0, 81000.0, 81060.0, 81120.0, 81180.0, 81240.0, 81300.0, 81360.0, 81420.0, 81480.0, 81540.0, 81600.0, 81660.0, 81720.0, 81780.0, 81840.0, 81900.0, 81960.0, 82020.0, 82080.0, 82140.0, 82200.0, 82260.0, 82320.0, 82380.0, 82440.0, 82500.0, 82560.0, 82620.0, 82680.0, 82740.0, 82800.0, 82860.0, 82920.0, 82980.0, 83040.0, 83100.0, 83160.0, 83220.0, 83280.0, 83340.0, 83400.0, 83460.0, 83520.0, 83580.0, 83640.0, 83700.0, 83760.0, 83820.0, 83880.0, 83940.0, 84000.0, 84060.0, 84120.0, 84180.0, 84240.0, 84300.0, 84360.0, 84420.0, 84480.0, 84540.0, 84600.0, 84660.0, 84720.0, 84780.0, 84840.0, 84900.0, 84960.0, 85020.0, 85080.0, 85140.0, 85200.0, 85260.0, 85320.0, 85380.0, 85440.0, 85500.0, 85560.0, 85620.0, 85680.0, 85740.0, 85800.0, 85860.0, 85920.0, 85980.0, 86040.0, 86100.0, 86160.0, 86220.0, 86280.0, 86340.0], \"xaxis\": \"x\", \"y\": [181.66666666666666, 157.44444444444443, 133.22222222222223, 109.0, 84.77777777777777, 60.55555555555555, 53.63492063492063, 46.71428571428571, 39.79365079365079, 32.87301587301587, 25.952380952380953, 23.184126984126983, 20.415873015873018, 17.64761904761905, 14.87936507936508, 12.11111111111111, 10.860931899641576, 9.610752688172042, 8.360573476702509, 7.110394265232975, 5.860215053763441, 5.26489161973033, 4.6695681856972175, 4.074244751664106, 3.478921317630995, 2.8835978835978833, 2.592967545723451, 2.3023372078490185, 2.0117068699745864, 1.721076532100154, 1.4304461942257216, 1.2868406155112961, 1.1432350367968709, 0.9996294580824454, 0.85602387936802, 0.7124183006535947, 0.6410370540910427, 0.5696558075284908, 0.49827456096593886, 0.4268933144033869, 0.35551206784083494, 0.3199261091439615, 0.28434015044708816, 0.24875419175021474, 0.21316823305334132, 0.1775822743564679, 0.15981537167537135, 0.1420484689942748, 0.12428156631317826, 0.10651466363208172, 0.08874776095098517, 0.07987081763339701, 0.07099387431580885, 0.06211693099822069, 0.053239987680632525, 0.04436304436304436, 0.039926198319556884, 0.035489352276069405, 0.031052506232581923, 0.026615660189094444, 0.022178814145606966, 0.01996079735404483, 0.017742780562482695, 0.015524763770920562, 0.013306746979358427, 0.011088730187796292, 0.009979823327864932, 0.008870916467933572, 0.0077620096080022105, 0.00665310274807085, 0.00554419588813949, 0.004989767839424895, 0.004435339790710301, 0.003880911741995706, 0.003326483693281111, 0.0027720556445665163, 0.0024948479651831115, 0.0022176402857997067, 0.0019404326064163023, 0.0016632249270328975, 0.0013860172476494927, 0.001247414994158906, 0.0011088127406683195, 0.0009702104871777326, 0.000831608233687146, 0.0006930059801965593, 0.0006237052499962504, 0.0005544045197959414, 0.00048510378959563255, 0.0004158030593953236, 0.00034650232919501467, 0.0003118520632304445, 0.00027720179726587434, 0.00024255153130130414, 0.00020790126533673398, 0.0001732509993721638, 0.00015592589117369206, 0.0001386007829752203, 0.00012127567477674859, 0.00010395056657827684, 8.66254583798051e-05, 7.796291047651223e-05, 6.930036257321936e-05, 6.0637814669926485e-05, 5.1975266766633614e-05, 4.331271886334074e-05, 3.898144646067876e-05, 3.465017405801678e-05, 3.0318901655354804e-05, 2.5987629252692823e-05, 2.1656356850030842e-05, 1.9490721035945805e-05, 1.7325085221860765e-05, 1.5159449407775728e-05, 1.2993813593690691e-05, 1.0828177779605653e-05, 36.20001082420407, 72.40001082023036, 108.60001081625666, 144.80001081228295, 181.00001080830924, 208.0333434636397, 235.06667611897015, 262.1000087743006, 289.13334142963106, 316.1666740849615, 350.20000693003345, 384.2333397751054, 418.2666726201773, 452.3000054652492, 486.33333831032115, 498.5666711915284, 510.8000040727357, 523.0333369539429, 535.2666698351502, 547.5000027163575, 541.4500024334527, 535.400002150548, 529.3500018676432, 523.3000015847384, 517.2500013018337, 530.4916678506493, 543.7333343994649, 556.9750009482804, 570.216667497096, 583.4583340459116, 581.2125006402746, 578.9666672346376, 576.7208338290008, 574.4750004233638, 572.2291670177268, 581.6729169848196, 591.1166669519123, 600.5604169190051, 610.0041668860978, 619.4479168531906, 622.6031251682389, 625.7583334832871, 628.9135417983354, 632.0687501133835, 635.2239584284318, 638.2682292524325, 641.3125000764333, 644.3567709004338, 647.4010417244345, 650.4453125484353, 653.100781293669, 655.7562500389027, 658.4117187841365, 661.0671875293702, 663.722656274604, 670.717057313912, 677.7114583532201, 684.7058593925282, 691.7002604318362, 698.6946614711443, 683.6251953239203, 668.5557291766961, 653.4862630294721, 638.4167968822479, 623.3473307350239, 597.0459309947591, 570.7445312544944, 544.4431315142297, 518.1417317739649, 491.8403320337002, 508.60629883036063, 525.3722656270211, 542.1382324236816, 558.9041992203421, 575.6701660170025, 593.9698160819856, 612.2694661469686, 630.5691162119517, 648.8687662769347, 667.1684163419178, 664.3515747077247, 661.5347330735317, 658.7178914393386, 655.9010498051456, 653.0842081709525, 657.2757873538582, 661.4673665367638, 665.6589457196696, 669.8505249025753, 674.042104085481, 651.3878936769304, 628.7336832683797, 606.079472859829, 583.4252624512783, 560.7710520427277, 555.0606135051212, 549.3501749675148, 543.6397364299083, 537.929297892302, 532.2188593546955, 533.996973419226, 535.7750874837565, 537.553201548287, 539.3313156128174, 541.109429677348, 549.8584867096133, 558.6075437418787, 567.3566007741439, 576.1056578064092, 584.8547148386746, 589.6292433548072, 594.4037718709397, 599.1783003870723, 603.9528289032049, 608.7273574193375, 641.1879550107373, 673.648552602137, 706.1091501935366, 738.5697477849363, 771.0303453763361, 767.0773108387025, 763.1242763010689, 759.1712417634352, 755.2182072258016, 751.265172688168, 752.9053220860179, 754.5454714838678, 756.1856208817176, 757.8257702795675, 759.4659196774173, 752.5193277096756, 745.5727357419339, 738.6261437741921, 731.6795518064504, 724.7329598387087, 755.1929971881711, 785.6530345376336, 816.1130718870961, 846.5731092365586, 877.0331465860211, 861.779831927419, 846.5265172688169, 831.2732026102148, 816.0198879516126, 800.7665732930105, 779.0899159637095, 757.4132586344084, 735.7366013051073, 714.0599439758063, 692.3832866465052, 690.9949579818547, 689.6066293172041, 688.2183006525537, 686.8299719879031, 685.4416433232526, 670.864145657594, 656.2866479919354, 641.7091503262768, 627.1316526606182, 612.5541549949596, 608.2487394954636, 603.9433239959677, 599.6379084964717, 595.3324929969758, 591.0270774974798, 583.0243697477318, 575.0216619979839, 567.0189542482358, 559.0162464984878, 551.0135387487398, 558.9621848738659, 566.9108309989919, 574.8594771241179, 582.8081232492439, 590.7567693743699, 595.7144257702663, 600.6720821661627, 605.629738562059, 610.5873949579553, 615.5450513538517, 627.7905462184665, 640.0360410830814, 652.2815359476962, 664.5270308123111, 676.7725256769259, 697.3952731092332, 718.0180205415406, 738.6407679738481, 759.2635154061555, 779.8862628384629, 811.33096988795, 842.775676937437, 874.220383986924, 905.665091036411, 937.1097980858981, 939.965484943975, 942.8211718020518, 945.6768586601286, 948.5325455182054, 951.3882323762823, 972.049409138654, 992.7105859010259, 1013.3717626633976, 1034.0329394257694, 1054.6941161881412, 1088.5580379026603, 1122.4219596171795, 1156.2858813316989, 1190.149803046218, 1224.0137247607372, 1224.9623522846634, 1225.9109798085897, 1226.8596073325161, 1227.8082348564424, 1228.7568623803686, 1214.0811761423317, 1199.4054899042949, 1184.729803666258, 1170.0541174282212, 1155.3784311901843, 1186.1905880711658, 1217.0027449521474, 1247.8149018331292, 1278.6270587141107, 1309.4392155950923, 1334.595294035583, 1359.7513724760738, 1384.9074509165646, 1410.0635293570554, 1435.2196077975461, 1422.7976470177914, 1410.375686238037, 1397.9537254582822, 1385.5317646785277, 1373.109803898773, 1377.2988235088956, 1381.4878431190184, 1385.676862729141, 1389.8658823392639, 1394.0549019493865, 1364.3494117544478, 1334.6439215595092, 1304.9384313645705, 1275.2329411696319, 1245.5274509746932, 1265.9747058772239, 1286.4219607797545, 1306.8692156822854, 1327.316470584816, 1347.7637254873466, 1371.387352938612, 1395.0109803898772, 1418.6346078411427, 1442.258235292408, 1465.8818627436733, 1475.493676469306, 1485.1054901949385, 1494.7173039205713, 1504.329117646204, 1513.9409313718365, 1526.4968382346528, 1539.0527450974691, 1551.6086519602857, 1564.164558823102, 1576.7204656859183, 1565.5484191173264, 1554.3763725487347, 1543.2043259801428, 1532.0322794115511, 1520.8602328429592, 1516.94087622533, 1513.0215196077006, 1509.1021629900715, 1505.1828063724422, 1501.2634497548129, 1522.1371047793316, 1543.0107598038503, 1563.884414828369, 1584.7580698528877, 1605.6317248774064, 1624.4685523896658, 1643.305379901925, 1662.1422074141847, 1680.979034926444, 1699.8158624387033, 1671.234276194833, 1642.6526899509627, 1614.0711037070923, 1585.489517463222, 1556.9079312193517, 1547.6504714307498, 1538.393011642148, 1529.135551853546, 1519.8780920649442, 1510.6206322763423, 1521.258569048708, 1531.8965058210738, 1542.5344425934397, 1553.1723793658055, 1563.8103161381712, 1583.579284524354, 1603.348252910537, 1623.11722129672, 1642.8861896829028, 1662.6551580690857, 1685.2229755955104, 1707.7907931219352, 1730.35861064836, 1752.9264281747846, 1775.4942457012094, 1781.3948211310885, 1787.2953965609674, 1793.1959719908466, 1799.0965474207255, 1804.9971228506047, 1790.2640772322109, 1775.531031613817, 1760.7979859954235, 1746.0649403770296, 1731.3318947586358, 1739.9987052827723, 1748.6655158069086, 1757.3323263310451, 1765.9991368551814, 1774.665947379318, 1788.899352641386, 1803.1327579034544, 1817.3661631655225, 1831.5995684275908, 1845.832973689659, 1838.3163429873598, 1830.7997122850604, 1823.2830815827613, 1815.766450880462, 1808.2498201781627, 1801.0748381603464, 1793.89985614253, 1786.724874124714, 1779.5498921068977, 1772.3749100890814, 1744.4374190801732, 1716.499928071265, 1688.562437062357, 1660.6249460534489, 1632.6874550445407, 1656.5187095400865, 1680.3499640356326, 1704.1812185311785, 1728.0124730267246, 1751.8437275222705, 1722.12602143671, 1692.4083153511497, 1662.6906092655895, 1632.972903180029, 1603.2551970944687, 1595.7796773850218, 1588.304157675575, 1580.828637966128, 1573.3531182566812, 1565.8775985472344, 1571.289838692511, 1576.7020788377874, 1582.114318983064, 1587.5265591283405, 1592.9387992736172, 1600.7949193462555, 1608.6510394188938, 1616.507159491532, 1624.3632795641704, 1632.2193996368087, 1658.7307930064612, 1685.2421863761135, 1711.753579745766, 1738.2649731154183, 1764.7763664850709, 1792.2987298365638, 1819.8210931880567, 1847.3434565395496, 1874.8658198910425, 1902.3881832425354, 1883.8160315849486, 1865.2438799273616, 1846.6717282697748, 1828.0995766121878, 1809.527424954601, 1818.6246824591408, 1827.7219399636808, 1836.8191974682206, 1845.9164549727607, 1855.0137124773005, 1858.8456745629037, 1862.6776366485071, 1866.5095987341103, 1870.3415608197138, 1874.173522905317, 1876.7561706147853, 1879.3388183242537, 1881.9214660337218, 1884.5041137431901, 1887.0867614526585, 1876.8447519740594, 1866.6027424954602, 1856.3607330168609, 1846.1187235382617, 1835.8767140596626, 1799.8890426536964, 1763.9013712477301, 1727.913699841764, 1691.9260284357977, 1655.9383570298314, 1658.611187993515, 1661.2840189571984, 1663.9568499208822, 1666.6296808845657, 1669.3025118482492, 1677.7922606634243, 1686.2820094785993, 1694.7717582937744, 1703.2615071089494, 1711.7512559241245, 1686.076130331712, 1660.4010047392997, 1634.725879146887, 1609.0507535544748, 1583.3756279620623, 1549.238065165856, 1515.1005023696498, 1480.9629395734435, 1446.8253767772374, 1412.687813981031, 1412.9856992495945, 1413.283584518158, 1413.5814697867218, 1413.8793550552853, 1414.1772403238488, 1435.809516291464, 1457.441792259079, 1479.0740682266942, 1500.7063441943092, 1522.3386201619244, 1491.7380914790654, 1461.137562796206, 1430.537034113347, 1399.9365054304878, 1369.3359767476288, 1397.002379072866, 1424.668781398103, 1452.3351837233402, 1480.001586048577, 1507.6679883738143, 1543.5678562030996, 1579.467724032385, 1615.36759186167, 1651.2674596909553, 1687.1673275202406, 1655.2505947682166, 1623.3338620161926, 1591.4171292641684, 1559.5003965121443, 1527.5836637601203, 1523.091964050775, 1518.6002643414297, 1514.1085646320842, 1509.6168649227388, 1505.1251652133935, 1554.362648692054, 1603.6001321707147, 1652.8376156493755, 1702.075099128036, 1751.3125826066967, 1745.4479910126936, 1739.5833994186905, 1733.7188078246877, 1727.8542162306846, 1721.9896246366816, 1776.2406621730133, 1830.4916997093453, 1884.742737245677, 1938.993774782009, 1993.2448123183408, 2005.9869977531735, 2018.729183188006, 2031.4713686228386, 2044.213554057671, 2056.9557394925037, 2080.360165543253, 2103.764591594003, 2127.1690176447523, 2150.573443695502, 2173.9778697462516, 2170.846749438293, 2167.7156291303345, 2164.584508822376, 2161.4533885144174, 2158.322268206459, 2118.590041385813, 2078.8578145651672, 2039.1255877445212, 1999.3933609238752, 1959.6611341032294, 1962.3950206929064, 1965.1289072825834, 1967.8627938722607, 1970.5966804619377, 1973.3305670516147, 2012.5975103464532, 2051.8644536412917, 2091.1313969361304, 2130.3983402309686, 2169.6652835258074, 2169.7987551732267, 2169.932226820646, 2170.065698468065, 2170.1991701154843, 2170.3326417629037, 2133.449377586613, 2096.566113410323, 2059.682849234033, 2022.7995850577422, 1985.9163208814518, 2008.1913554599732, 2030.4663900384949, 2052.7414246170165, 2075.0164591955377, 2097.2914937740593, 2107.2123443966534, 2117.1331950192475, 2127.054045641841, 2136.9748962644353, 2146.8957468870294, 2103.3061721983263, 2059.7165975096236, 2016.1270228209205, 1972.5374481322176, 1928.9478734435147, 1907.7030860991633, 1886.4582987548117, 1865.2135114104603, 1843.9687240661087, 1822.7239367217574, 1813.6182097162482, 1804.5124827107393, 1795.4067557052301, 1786.3010286997212, 1777.195301694212, 1696.4757715247908, 1615.7562413553696, 1535.0367111859484, 1454.3171810165272, 1373.597650847106, 1409.7712190957288, 1445.9447873443514, 1482.1183555929742, 1518.2919238415968, 1554.4654920902196, 1592.4689428811976, 1630.4723936721757, 1668.4758444631536, 1706.4792952541318, 1744.4827460451097, 1782.9011381072653, 1821.3195301694211, 1859.7379222315767, 1898.1563142937325, 1936.574706355888, 1979.1672357202992, 2021.7597650847106, 2064.352294449122, 2106.944823813533, 2149.537353177944, 2130.8502845268163, 2112.163215875689, 2093.476147224561, 2074.7890785734335, 2056.1020099223056, 2028.841808930075, 2001.5816079378444, 1974.321406945614, 1947.0612059533833, 1919.8010049611528, 1915.8542377983708, 1911.9074706355889, 1907.960703472807, 1904.013936310025, 1900.067169147243, 1878.4604522325187, 1856.8537353177944, 1835.2470184030701, 1813.6403014883458, 1792.0335845736215, 1812.0302261162594, 1832.0268676588973, 1852.023509201535, 1872.020150744173, 1892.0167922868109, 1946.66511305813, 2001.3134338294487, 2055.9617546007676, 2110.6100753720866, 2165.2583961434057, 2151.632556529065, 2138.0067169147246, 2124.380877300384, 2110.7550376860436, 2097.129198071703, 2186.0162782645325, 2274.903358457362, 2363.7904386501923, 2452.677518843022, 2541.5645990358516, 2527.0414724656, 2512.518345895348, 2497.9952193250965, 2483.4720927548447, 2468.948966184593, 2453.5040695661337, 2438.059172947674, 2422.614276329215, 2407.1693797107555, 2391.7244830922964, 2391.0187014497333, 2390.3129198071706, 2389.6071381646075, 2388.901356522045, 2388.1955748794817, 2454.1260173915334, 2520.056459903585, 2585.9869024156374, 2651.917344927689, 2717.847787439741, 2698.5296753624334, 2679.211563285126, 2659.8934512078185, 2640.575339130511, 2621.2572270532037, 2605.6315043478835, 2590.005781642563, 2574.3800589372427, 2558.754336231922, 2543.128613526602, 2526.8157521739417, 2510.5028908212817, 2494.190029468621, 2477.877168115961, 2461.564306763301, 2449.857876086971, 2438.151445410641, 2426.4450147343105, 2414.7385840579805, 2403.0321533816505, 2396.062271376819, 2389.092389371987, 2382.1225073671553, 2375.1526253623233, 2368.1827433574917, 2361.9644690217424, 2355.7461946859935, 2349.527920350244, 2343.3096460144952, 2337.091371678746, 2302.248901177538, 2267.40643067633, 2232.5639601751222, 2197.721489673914, 2162.879019172706, 2126.4911172554357, 2090.103215338165, 2053.7153134208943, 2017.3274115036238, 1980.939509586353, 1977.4788919610512, 1974.018274335749, 1970.5576567104472, 1967.097039085145, 1963.6364214598432, 1950.5227793138588, 1937.4091371678746, 1924.2954950218902, 1911.181852875906, 1898.0682107299217, 1873.6613896569295, 1849.2545685839373, 1824.8477475109453, 1800.440926437953, 1776.0341053649609, 1802.8806948284648, 1829.7272842919688, 1856.5738737554725, 1883.4204632189765, 1910.2670526824804, 1925.6736807475656, 1941.080308812651, 1956.4869368777363, 1971.8935649428217, 1987.300193007907, 1982.8701737071162, 1978.4401544063255, 1974.010135105535, 1969.5801158047443, 1965.1500965039536, 2007.7017535202249, 2050.253410536496, 2092.8050675527675, 2135.3567245690388, 2177.90838158531, 2263.567543426779, 2349.226705268248, 2434.885867109717, 2520.545028951186, 2606.204190792655, 2620.9504383800563, 2635.6966859674576, 2650.4429335548584, 2665.1891811422597, 2679.935428729661, 2666.791885856695, 2653.648342983729, 2640.5048001107625, 2627.3612572377965, 2614.2177143648305, 2519.8292762616807, 2425.440838158531, 2331.0524000553814, 2236.6639619522316, 2142.2755238490818, 2075.4479714641734, 2008.6204190792655, 1941.7928666943571, 1874.965314309449, 1808.1377619245409, 1888.5239857320869, 1968.910209539633, 2049.2964333471787, 2129.682657154725, 2210.0688809622707, 2236.9119928660434, 2263.7551047698166, 2290.5982166735894, 2317.4413285773626, 2344.2844404811353, 2322.555996433022, 2300.8275523849084, 2279.0991083367944, 2257.370664288681, 2235.6422202405674, 2268.3779982165106, 2301.1137761924538, 2333.8495541683974, 2366.5853321443406, 2399.3211101202837, 2402.6889991082553, 2406.056888096227, 2409.4247770841985, 2412.79266607217, 2416.1605550601416, 2438.1944995541276, 2460.2284440481135, 2482.262388542099, 2504.296333036085, 2526.330277530071, 2540.66391644373, 2554.99755535739, 2569.3311942710493, 2583.664833184709, 2597.9984720983684, 2519.4486248885314, 2440.898777678695, 2362.348930468858, 2283.7990832590212, 2205.249236049184, 2214.657645777599, 2224.066055506014, 2233.474465234429, 2242.8828749628437, 2252.2912846912586, 2296.5621562221327, 2340.8330277530067, 2385.103899283881, 2429.3747708147553, 2473.6456423456293, 2439.547744777733, 2405.4498472098367, 2371.3519496419403, 2337.254052074044, 2303.1561545061477, 2281.890539055533, 2260.624923604918, 2239.3593081543036, 2218.0936927036887, 2196.828077253074, 2165.8786028611, 2134.9291284691258, 2103.9796540771517, 2073.0301796851777, 2042.0807052932037, 1940.6726347638833, 1839.2645642345628, 1737.8564937052424, 1636.4484231759222, 1535.0403526466018, 1504.769650715275, 1474.4989487839482, 1444.2282468526212, 1413.9575449212944, 1383.6868429899675, 1416.2681586909707, 1448.8494743919741, 1481.4307900929773, 1514.0121057939807, 1546.5934214949839, 1542.6840793454855, 1538.7747371959872, 1534.8653950464886, 1530.9560528969903, 1527.046710747492, 1622.8087063394094, 1718.5707019313268, 1814.3326975232444, 1910.0946931151618, 2005.8566887070792, 2043.9210198363712, 2081.985350965663, 2120.0496820949556, 2158.1140132242476, 2196.1783443535396, 2192.993843251519, 2189.809342149498, 2186.6248410474777, 2183.440339945457, 2180.2558388434363, 2166.1802549590925, 2152.104671074749, 2138.0290871904053, 2123.953503306062, 2109.877919421718, 2132.4234608128795, 2154.9690022040413, 2177.5145435952027, 2200.0600849863645, 2222.605626377526, 2282.445063739773, 2342.284501102021, 2402.123938464268, 2461.963375826516, 2521.802813188763, 2345.35586520322, 2168.9089172176773, 1992.4619692321342, 1816.0150212465912, 1639.5680732610483, 1668.1612659349435, 1696.7544586088386, 1725.3476512827338, 1753.940843956629, 1782.534036630524, 1816.713966300805, 1850.8938959710858, 1885.073825641367, 1919.2537553116479, 1953.4336849819288, 1978.9903164837358, 2004.5469479855428, 2030.10357948735, 2055.660210989157, 2081.216842490964, 2078.5618249085346, 2075.9068073261046, 2073.251789743675, 2070.596772161245, 2067.9417545788156, 2095.997579120934, 2124.0534036630524, 2152.109228205171, 2180.1650527472893, 2208.220877289408, 2238.598789560467, 2268.9767018315265, 2299.3546141025854, 2329.7325263736448, 2360.110438644704, 2355.549394780234, 2350.9883509157635, 2346.4273070512927, 2341.8662631868224, 2337.305219322352, 2306.9413640567836, 2276.577508791215, 2246.2136535256464, 2215.849798260078, 2185.4859429945095, 2167.4873486950587, 2149.488754395608, 2131.4901600961566, 2113.491565796706, 2095.492971497255, 2115.5436743475293, 2135.594377197804, 2155.6450800480784, 2175.695782898353, 2195.7464857486275, 2164.2718371737647, 2132.797188598902, 2101.3225400240394, 2069.8478914491766, 2038.3732428743137, 2069.7359185868822, 2101.0985942994507, 2132.4612700120197, 2163.823945724588, 2195.1866214371566, 2218.317959293441, 2241.449297149725, 2264.5806350060097, 2287.711972862294, 2310.8433107185783, 2308.3589796467204, 2305.8746485748625, 2303.390317503005, 2300.905986431147, 2298.421655359289, 2274.92948982336, 2251.4373242874312, 2227.9451587515023, 2204.4529932155733, 2180.9608276796444, 2188.4314115783463, 2195.901995477049, 2203.372579375751, 2210.843163274453, 2218.313747173155, 2215.8323724558395, 2213.3509977385243, 2210.8696230212086, 2208.3882483038933, 2205.9068735865776, 2187.049519561253, 2168.192165535929, 2149.334811510604, 2130.47745748528, 2111.6201034599553, 2096.60809311396, 2081.596082767964, 2066.584072421969, 2051.572062075973, 2036.5600517299777, 2019.40404655698, 2002.2480413839821, 1985.0920362109844, 1967.9360310379866, 1950.7800258649888, 1962.75202327849, 1974.724020691991, 1986.6960181054922, 1998.6680155189931, 2010.6400129324943, 2067.7426783059113, 2124.845343679329, 2181.948009052746, 2239.0506744261634, 2296.1533397995804, 2309.8380058196226, 2323.5226718396643, 2337.2073378597065, 2350.8920038797482, 2364.5766698997904, 2309.285669576478, 2253.9946692531657, 2198.7036689298534, 2143.412668606541, 2088.1216682832287, 2070.609501454906, 2053.097334626583, 2035.58516779826, 2018.0730009699373, 2000.5608341416144, 2029.9380840607862, 2059.3153339799583, 2088.69258389913, 2118.069833818302, 2147.447083737474, 2117.8523753637264, 2088.257666989979, 2058.6629586162317, 2029.0682502424843, 1999.473541868737, 2015.0595210151964, 2030.6455001616562, 2046.2314793081157, 2061.8174584545754, 2077.403437601035, 2076.7630938409316, 2076.122750080828, 2075.4824063207243, 2074.842062560621, 2074.2017188005175, 2045.5815469204658, 2016.961375040414, 1988.3412031603623, 1959.7210312803104, 1931.1008594002587, 1893.4407734602328, 1855.780687520207, 1818.120601580181, 1780.4605156401553, 1742.8004297001294, 1734.487053396783, 1726.1736770934367, 1717.8603007900906, 1709.5469244867443, 1701.233548183398, 1699.460193365058, 1697.6868385467183, 1695.9134837283787, 1694.1401289100388, 1692.366774091699, 1668.330096682529, 1644.2934192733592, 1620.2567418641893, 1596.2200644550194, 1572.1833870458495, 1587.4650483412645, 1602.7467096366795, 1618.0283709320947, 1633.3100322275097, 1648.5916935229247, 1637.3991908372989, 1626.206688151673, 1615.0141854660474, 1603.8216827804215, 1592.6291800947956, 1558.0162620853162, 1523.4033440758365, 1488.790426066357, 1454.1775080568773, 1419.5645900473978, 1394.4747977093248, 1369.3850053712515, 1344.2952130331785, 1319.2054206951052, 1294.1156283570322, 1272.354065521329, 1250.5925026856257, 1228.8309398499225, 1207.0693770142193, 1185.307814178516, 1183.5103660939978, 1181.7129180094796, 1179.9154699249611, 1178.118021840443, 1176.3205737559247, 1096.5885163803323, 1016.8564590047397, 937.1244016291473, 857.3923442535548, 777.6602868779623, 723.5942581901661, 669.5282295023699, 615.4622008145736, 561.3961721267774, 507.33014343898117, 556.447129095083, 605.5641147511849, 654.6811004072867, 703.7980860633887, 752.9150717194906, 788.5902312142082, 824.2653907089258, 859.9405502036434, 895.615709698361, 931.2908691930786, 941.2117822737707, 951.1326953544628, 961.0536084351551, 970.9745215158472, 980.8954345965393, 983.2392244702187, 985.5830143438981, 987.9268042175776, 990.270594091257, 992.6143839649363, 984.9029455684426, 977.1915071719491, 969.4800687754554, 961.7686303789618, 954.0571919824681, 985.4514727842213, 1016.8457535859744, 1048.2400343877275, 1079.6343151894807, 1111.028595991234, 1114.3257363921105, 1117.6228767929872, 1120.9200171938637, 1124.2171575947405, 1127.514297995617, 1108.9962015293886, 1090.4781050631602, 1071.9600085969319, 1053.4419121307035, 1034.9238156644751, 1003.9814340980276, 973.0390525315801, 942.0966709651326, 911.154289398685, 880.2119078322376, 860.3240503823472, 840.4361929324567, 820.5483354825664, 800.6604780326759, 780.7726205827855, 768.945358524507, 757.1180964662284, 745.2908344079499, 733.4635723496713, 721.6363102913928, 746.9726792622535, 772.3090482331143, 797.645417203975, 822.9817861748357, 848.3181551456964, 839.3863396311268, 830.4545241165572, 821.5227086019875, 812.5908930874178, 803.6590775728482, 801.4931698155634, 799.3272620582786, 797.1613543009937, 794.9954465437089, 792.8295387864241, 794.8465849077817, 796.8636310291392, 798.8806771504969, 800.8977232718545, 802.914769393212, 796.0899591205575, 789.265148847903, 782.4403385752485, 775.6155283025939, 768.7907180299394, 779.1116462269455, 789.4325744239516, 799.7535026209575, 810.0744308179636, 820.3953590149697, 815.5891564468061, 810.7829538786424, 805.9767513104788, 801.1705487423151, 796.3643461741515, 802.6779115567364, 808.9914769393212, 815.3050423219061, 821.6186077044908, 827.9321730870757, 796.9389557783682, 765.9457384696606, 734.952521160953, 703.9593038522454, 672.9660865435378, 628.519477889184, 584.0728692348303, 539.6262605804765, 495.1796519261227, 450.7330432717689, 451.49307227792536, 452.2531012840818, 453.0131302902382, 453.7731592963947, 454.53318830255114, 452.42986947229605, 450.3265506420409, 448.2232318117858, 446.11991298153066, 444.01659415127557, 465.78160140281466, 487.5466086543538, 509.3116159058929, 531.076623157432, 552.8416304089711, 565.307467368074, 577.7733043271769, 590.2391412862797, 602.7049782453827, 615.1708152044855, 612.7870670173703, 610.4033188302551, 608.0195706431398, 605.6358224560246, 603.2520742689094, 610.9768668420185, 618.7016594151276, 626.4264519882365, 634.1512445613456, 641.8760371344547, 620.6551000876759, 599.4341630408971, 578.2132259941183, 556.9922889473395, 535.7713519005607, 527.3942167105047, 519.0170815204485, 510.6399463303925, 502.26281114033645, 493.88567595028036, 495.33044168858567, 496.775207426891, 498.2199731651962, 499.66473890350153, 501.10950464180684, 503.8985541776261, 506.68760371344547, 509.47665324926476, 512.265702785084, 515.0547523209034, 507.8826104221464, 500.71046852338935, 493.53832662463236, 486.3661847258753, 479.1940428271183, 473.4246385444065, 467.65523426169466, 461.8858299789828, 456.116425696271, 450.34702141355916, 461.7456526055366, 473.144283797514, 484.54291498949146, 495.9415461814689, 507.3401773734463, 519.0561596361017, 530.772141898757, 542.4881241614124, 554.2041064240677, 565.9200886867231, 565.5614131513842, 565.2027376160452, 564.8440620807062, 564.4853865453672, 564.1267110100282, 560.9140399090254, 557.7013688080226, 554.4886977070197, 551.2760266060169, 548.0633555050141, 548.4236866211794, 548.7840177373446, 549.1443488535099, 549.5046799696751, 549.8650110858404, 555.5785099772563, 561.2920088686723, 567.0055077600882, 572.7190066515042, 578.4325055429201, 577.2559216552947, 576.0793377676695, 574.9027538800441, 573.7261699924188, 572.5495861047934, 554.1279608276474, 535.7063355505014, 517.2847102733554, 498.86308499620935, 480.44145971906335, 465.847313747157, 451.2531677752507, 436.65902180334433, 422.06487583143803, 407.4707298595317, 389.1236568735785, 370.77658388762535, 352.4295109016722, 334.082437915719, 315.73536492976586, 312.0451617701226, 308.35495861047934, 304.6647554508361, 300.9745522911928, 297.28434913154956, 298.1559142183946, 299.02747930523964, 299.8990443920847, 300.7706094789297, 301.6421745657748, 298.29462377586395, 294.9470729859531, 291.59952219604236, 288.25197140613153, 284.9044206162207, 281.06397855459863, 277.22353649297656, 273.3830944313545, 269.5426523697324, 265.70221030811035, 262.13198927729934, 258.56176824648827, 254.99154721567726, 251.42132618486622, 247.85110515405518, 243.36599463864965, 238.88088412324413, 234.39577360783863, 229.9106630924331, 225.4255525770276, 221.18299731932484, 216.94044206162206, 212.69788680391932, 208.45533154621654, 204.2127762885138, 210.61649865966243, 217.02022103081103, 223.42394340195966, 229.82766577310827, 236.2313881442569, 230.6082493298312, 224.98511051540552, 219.36197170097984, 213.73883288655415, 208.11569407212846], \"yaxis\": \"y\"}],\n",
" {\"legend\": {\"title\": {\"text\": \"dow\"}, \"tracegroupgap\": 0}, \"template\": {\"data\": {\"bar\": [{\"error_x\": {\"color\": \"#2a3f5f\"}, \"error_y\": {\"color\": \"#2a3f5f\"}, \"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"bar\"}], \"barpolar\": [{\"marker\": {\"line\": {\"color\": \"#E5ECF6\", \"width\": 0.5}}, \"type\": \"barpolar\"}], \"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\"}], \"choropleth\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"choropleth\"}], \"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\"]], \"type\": \"contour\"}], \"contourcarpet\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"contourcarpet\"}], \"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\"]], \"type\": \"heatmap\"}], \"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\"]], \"type\": \"heatmapgl\"}], \"histogram\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"histogram\"}], \"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\"]], \"type\": \"histogram2d\"}], \"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\"]], \"type\": \"histogram2dcontour\"}], \"mesh3d\": [{\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}, \"type\": \"mesh3d\"}], \"parcoords\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"parcoords\"}], \"pie\": [{\"automargin\": true, \"type\": \"pie\"}], \"scatter\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter\"}], \"scatter3d\": [{\"line\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatter3d\"}], \"scattercarpet\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattercarpet\"}], \"scattergeo\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergeo\"}], \"scattergl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattergl\"}], \"scattermapbox\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scattermapbox\"}], \"scatterpolar\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolar\"}], \"scatterpolargl\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterpolargl\"}], \"scatterternary\": [{\"marker\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"type\": \"scatterternary\"}], \"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\"]], \"type\": \"surface\"}], \"table\": [{\"cells\": {\"fill\": {\"color\": \"#EBF0F8\"}, \"line\": {\"color\": \"white\"}}, \"header\": {\"fill\": {\"color\": \"#C8D4E3\"}, \"line\": {\"color\": \"white\"}}, \"type\": \"table\"}]}, \"layout\": {\"annotationdefaults\": {\"arrowcolor\": \"#2a3f5f\", \"arrowhead\": 0, \"arrowwidth\": 1}, \"coloraxis\": {\"colorbar\": {\"outlinewidth\": 0, \"ticks\": \"\"}}, \"colorscale\": {\"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\"]], \"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\"]]}, \"colorway\": [\"#636efa\", \"#EF553B\", \"#00cc96\", \"#ab63fa\", \"#FFA15A\", \"#19d3f3\", \"#FF6692\", \"#B6E880\", \"#FF97FF\", \"#FECB52\"], \"font\": {\"color\": \"#2a3f5f\"}, \"geo\": {\"bgcolor\": \"white\", \"lakecolor\": \"white\", \"landcolor\": \"#E5ECF6\", \"showlakes\": true, \"showland\": true, \"subunitcolor\": \"white\"}, \"hoverlabel\": {\"align\": \"left\"}, \"hovermode\": \"closest\", \"mapbox\": {\"style\": \"light\"}, \"paper_bgcolor\": \"white\", \"plot_bgcolor\": \"#E5ECF6\", \"polar\": {\"angularaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"radialaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"scene\": {\"xaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"yaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}, \"zaxis\": {\"backgroundcolor\": \"#E5ECF6\", \"gridcolor\": \"white\", \"gridwidth\": 2, \"linecolor\": \"white\", \"showbackground\": true, \"ticks\": \"\", \"zerolinecolor\": \"white\"}}, \"shapedefaults\": {\"line\": {\"color\": \"#2a3f5f\"}}, \"ternary\": {\"aaxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"baxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}, \"bgcolor\": \"#E5ECF6\", \"caxis\": {\"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\"}}, \"title\": {\"x\": 0.05}, \"xaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}, \"yaxis\": {\"automargin\": true, \"gridcolor\": \"white\", \"linecolor\": \"white\", \"ticks\": \"\", \"title\": {\"standoff\": 15}, \"zerolinecolor\": \"white\", \"zerolinewidth\": 2}}}, \"title\": {\"text\": \"Gare Du Nord\"}, \"xaxis\": {\"anchor\": \"y\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"ts_offset\"}}, \"yaxis\": {\"anchor\": \"x\", \"domain\": [0.0, 1.0], \"title\": {\"text\": \"presence\"}}},\n",
" {\"responsive\": true}\n",
" ).then(function(){\n",
" \n",
"var gd = document.getElementById('d7632f73-cdae-4336-bca4-3dfcf9506a83');\n",
"var x = new MutationObserver(function (mutations, observer) {{\n",
" var display = window.getComputedStyle(gd).display;\n",
" if (!display || display === 'none') {{\n",
" console.log([gd, 'removed!']);\n",
" Plotly.purge(gd);\n",
" observer.disconnect();\n",
" }}\n",
"}});\n",
"\n",
"// Listen for the removal of the full notebook cells\n",
"var notebookContainer = gd.closest('#notebook-container');\n",
"if (notebookContainer) {{\n",
" x.observe(notebookContainer, {childList: true});\n",
"}}\n",
"\n",
"// Listen for the clearing of the current output cell\n",
"var outputEl = gd.closest('.output');\n",
"if (outputEl) {{\n",
" x.observe(outputEl, {childList: true});\n",
"}}\n",
"\n",
" })\n",
" };\n",
" });\n",
" </script>\n",
" </div>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"for_plot = result.set_index(['site', 'conf', 'zone'])\n",
"for_plot = for_plot[for_plot['dow'] == 6]\n",
"inner_d = for_plot.loc[('Gare-de-Paris-Saint-Lazare', '8940a531-3cd9-4163-b925-bb5f815a4a23', 'Gare-de-Paris-Saint-Lazare')]\n",
"#for index_value in set(for_plot.index):\n",
"# inner_d = for_plot.loc[index_value]\n",
"px.line(inner_d, x=\"ts_offset\", y=\"presence\", color=\"dow\", title=str('Gare Du Nord')).show()\n",
"\n",
"\n"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.7.6"
}
},
"nbformat": 4,
"nbformat_minor": 4
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment