{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Loop API Example on Hartmann6\n", "\n", "The loop API is the most lightweight way to do optimization in Ax. The user makes one call to `optimize`, which performs all of the optimization under the hood and returns the optimized parameters.\n", "\n", "For more customizability of the optimization procedure, consider the Service or Developer API." ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [ { "data": { "text/html": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-17 18:28:36] ipy_plotting: Injecting Plotly library into cell. Do not overwrite or delete cell.\n" ] }, { "data": { "text/html": [ " \n", " " ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "import numpy as np\n", "\n", "from ax.plot.contour import plot_contour\n", "from ax.plot.trace import optimization_trace_single_method\n", "from ax.service.managed_loop import optimize\n", "from ax.metrics.branin import branin\n", "from ax.utils.measurement.synthetic_functions import hartmann6\n", "from ax.utils.notebook.plotting import render, init_notebook_plotting\n", "\n", "init_notebook_plotting()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 1. Define evaluation function\n", "\n", "First, we define an evaluation function that is able to compute all the metrics needed for this experiment. This function needs to accept a set of parameter values and can also accept a weight. It should produce a dictionary of metric names to tuples of mean and standard error for those metrics." ] }, { "cell_type": "code", "execution_count": 2, "metadata": { "collapsed": true }, "outputs": [], "source": [ "def hartmann_evaluation_function(parameterization):\n", " x = np.array([parameterization.get(f\"x{i+1}\") for i in range(6)])\n", " # In our case, standard error is 0, since we are computing a synthetic function.\n", " return {\"hartmann6\": (hartmann6(x), 0.0), \"l2norm\": (np.sqrt((x ** 2).sum()), 0.0)}" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "If there is only one metric in the experiment – the objective – then evaluation function can return a single tuple of mean and SEM, in which case Ax will assume that evaluation corresponds to the objective. It can also return only the mean as a float, in which case Ax will treat SEM as unknown and use a model that can infer it. For more details on evaluation function, refer to the \"Trial Evaluation\" section in the docs." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 2. Run optimization\n", "The setup for the loop is fully compatible with JSON. The optimization algorithm is selected based on the properties of the problem search space." ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-17 18:28:36] ax.modelbridge.dispatch_utils: Using Bayesian Optimization generation strategy: GenerationStrategy(name='Sobol+GPEI', steps=[Sobol for 6 trials, GPEI for subsequent trials]). Iterations after 6 will take longer to generate due to model-fitting.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-17 18:28:36] ax.service.managed_loop: Started full optimization with 30 steps.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-17 18:28:36] ax.service.managed_loop: Running optimization trial 1...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-17 18:28:36] ax.service.managed_loop: Running optimization trial 2...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-17 18:28:36] ax.service.managed_loop: Running optimization trial 3...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-17 18:28:36] ax.service.managed_loop: Running optimization trial 4...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-17 18:28:36] ax.service.managed_loop: Running optimization trial 5...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-17 18:28:36] ax.service.managed_loop: Running optimization trial 6...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-17 18:28:36] ax.service.managed_loop: Running optimization trial 7...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-17 18:28:41] ax.service.managed_loop: Running optimization trial 8...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-17 18:28:46] ax.service.managed_loop: Running optimization trial 9...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-17 18:28:50] ax.service.managed_loop: Running optimization trial 10...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-17 18:28:54] ax.service.managed_loop: Running optimization trial 11...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-17 18:28:57] ax.service.managed_loop: Running optimization trial 12...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-17 18:29:00] ax.service.managed_loop: Running optimization trial 13...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-17 18:29:03] ax.service.managed_loop: Running optimization trial 14...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-17 18:29:05] ax.service.managed_loop: Running optimization trial 15...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-17 18:29:08] ax.service.managed_loop: Running optimization trial 16...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-17 18:29:12] ax.service.managed_loop: Running optimization trial 17...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-17 18:29:16] ax.service.managed_loop: Running optimization trial 18...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-17 18:29:20] ax.service.managed_loop: Running optimization trial 19...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-17 18:29:23] ax.service.managed_loop: Running optimization trial 20...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-17 18:29:26] ax.service.managed_loop: Running optimization trial 21...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-17 18:29:30] ax.service.managed_loop: Running optimization trial 22...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-17 18:29:34] ax.service.managed_loop: Running optimization trial 23...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-17 18:29:37] ax.service.managed_loop: Running optimization trial 24...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-17 18:29:40] ax.service.managed_loop: Running optimization trial 25...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-17 18:29:44] ax.service.managed_loop: Running optimization trial 26...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-17 18:29:47] ax.service.managed_loop: Running optimization trial 27...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-17 18:29:50] ax.service.managed_loop: Running optimization trial 28...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-17 18:29:54] ax.service.managed_loop: Running optimization trial 29...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-17 18:29:57] ax.service.managed_loop: Running optimization trial 30...\n" ] } ], "source": [ "best_parameters, values, experiment, model = optimize(\n", " parameters=[\n", " {\n", " \"name\": \"x1\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " \"value_type\": \"float\", # Optional, defaults to inference from type of \"bounds\".\n", " \"log_scale\": False, # Optional, defaults to False.\n", " },\n", " {\n", " \"name\": \"x2\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " {\n", " \"name\": \"x3\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " {\n", " \"name\": \"x4\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " {\n", " \"name\": \"x5\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " {\n", " \"name\": \"x6\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " ],\n", " experiment_name=\"test\",\n", " objective_name=\"hartmann6\",\n", " evaluation_function=hartmann_evaluation_function,\n", " minimize=True, # Optional, defaults to False.\n", " parameter_constraints=[\"x1 + x2 <= 20\"], # Optional.\n", " outcome_constraints=[\"l2norm <= 1.25\"], # Optional.\n", " total_trials=30, # Optional.\n", ")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "And we can introspect optimization results:" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'x1': 0.2149878756112262,\n", " 'x2': 0.18347267930028743,\n", " 'x3': 0.42621150753425596,\n", " 'x4': 0.2893253586413634,\n", " 'x5': 0.3012820696965888,\n", " 'x6': 0.6700314735226648}" ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "best_parameters" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'l2norm': 0.9407221025030439, 'hartmann6': -3.274359921544269}" ] }, "execution_count": 5, "metadata": {}, "output_type": "execute_result" } ], "source": [ "means, covariances = values\n", "means" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "For comparison, minimum of Hartmann6 is:" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "-3.32237" ] }, "execution_count": 6, "metadata": {}, "output_type": "execute_result" } ], "source": [ "hartmann6.fmin" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 3. Plot results\n", "Here we arbitrarily select \"x1\" and \"x2\" as the two parameters to plot for both metrics, \"hartmann6\" and \"l2norm\"." ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "linkText": "Export to plot.ly", "plotlyServerURL": "https://plot.ly", "showLink": false }, "data": [ { "autocolorscale": false, "autocontour": true, "colorbar": { "tickfont": { "size": 8 }, "ticksuffix": "", "x": 0.45, "y": 0.5 }, "colorscale": [ [ 0.0, "rgb(247,252,253)" ], [ 0.125, "rgb(229,245,249)" ], [ 0.25, "rgb(204,236,230)" ], [ 0.375, "rgb(153,216,201)" ], [ 0.5, "rgb(102,194,164)" ], [ 0.625, "rgb(65,174,118)" ], [ 0.75, "rgb(35,139,69)" ], [ 0.875, "rgb(0,109,44)" ], [ 1.0, "rgb(0,68,27)" ] ], "contours": { "coloring": "heatmap" }, "hoverinfo": "x+y+z", "ncontours": 25, "type": "contour", "x": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "xaxis": "x", "y": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "yaxis": "y", "z": [ [ -2.1640947870234255, -2.225938141946417, -2.284600388722625, -2.3393876603663637, -2.389588865829956, -2.4344936115929516, -2.4734140304810857, -2.5057097082742095, -2.530814182683377, -2.5482607535487034, -2.557704752080271, -2.558939232457302, -2.5519016171427675, -2.5366703560560744, -2.51345281889739, -2.4825674863653386, -2.4444241230822117, -2.3995048735199487, -2.348347781073334, -2.2915328994171014, -2.229670396292275, -2.1633898761098314, -2.0933303655607056, -2.0201307612927777, -1.9444208366195432, -1.866813053163642, -1.7878954242444343, -1.7082255851310608, -1.6283261074454518, -1.5486809988484036, -1.4697332743720137, -1.391883469438341, -1.3154889725221124, -1.2408640722231148, -1.1682806284833978, -1.0979692862216632, -1.0301211520092852, -0.9648898533401289, -0.9023938987009354, -0.8427192572962238, -0.785922080908775, -0.7320314968828587, -0.6810524098567121, -0.6329682596740902, -0.5877436929682154, -0.5453271155456112, -0.5056531014519265, -0.4686446422455375, -0.4342152264642589, -0.4022707445822691 ], [ -2.1988321313160153, -2.262129140600696, -2.322182899321003, -2.3782748860632457, -2.4296675747358454, -2.475623410280726, -2.515428101167007, -2.548417323581333, -2.574005087912008, -2.591711174275563, -2.601184433879823, -2.6022186893735064, -2.5947587716262084, -2.5788959966053504, -2.5548546536894303, -2.522972865040048, -2.4836816446832546, -2.437485113620628, -2.3849433254387185, -2.3266578242016758, -2.2632593086614703, -2.1953966202459645, -2.123726494900364, -2.04890386996551, -1.9715728294921049, -1.8923584170034637, -1.8118595456574889, -1.7306431464399996, -1.649239580406622, -1.5681392478601217, -1.4877902749684044, -1.4085971437452018, -1.330920140476488, -1.2550755153746556, -1.1813362618545695, -1.1099334328151909, -1.0410579139725704, -0.9748625734242954, -0.9114647054212432, -0.8509486870763745, -0.7933687704594821, -0.738751939119247, -0.6871007667970612, -0.6383962259773, -0.5926004040504513, -0.5496590945533826, -0.5095042397468164, -0.4720562084589617, -0.4372258995971745, -0.404916667042166 ], [ -2.229799682988359, -2.294368967755278, -2.3556378896757586, -2.4128659486257735, -2.465292031437267, -2.51215435852987, -2.5527151467504408, -2.5862889922309837, -2.612272994299532, -2.630175678029752, -2.6396411474420756, -2.6404649911214477, -2.6325995514747187, -2.616148191078604, -2.5913505179514935, -2.5585621752747514, -2.5182330672288997, -2.47088690273348, -2.4171034324665652, -2.357503472808645, -2.2927361075711628, -2.22346731531284, -2.1503694801660633, -2.074111573455643, -1.9953500683895662, -1.9147207887188027, -1.8328318952670655, -1.750258131727885, -1.667536343905772, -1.585162199035743, -1.5035879826548229, -1.4232213373024387, -1.3444248168773754, -1.2675161482395263, -1.1927691073520363, -1.120414926472832, -1.0506441518796286, -0.9836088710624918, -0.9194252273717357, -0.8581761410379255, -0.7999141592975327, -0.7446643649946236, -0.6924272817643098, -0.6431817237822524, -0.596887548191674, -0.5534882780035895, -0.5129135720584077, -0.475081526304993, -0.43990079712288255, -0.4072725427215196 ], [ -2.2567264481769604, -2.322368545190967, -2.3846587089775895, -2.4428376750305456, -2.4961241957128153, -2.543735826750477, -2.5849147955431513, -2.6189578781368867, -2.6452480925843163, -2.6632849299069963, -2.67270920010175, -2.6733188217801938, -2.6650732752882305, -2.648086720678966, -2.6226121399529383, -2.589020309632585, -2.5477774408162053, -2.4994242299462623, -2.444557596199603, -2.383815190739436, -2.3178621221901756, -2.247379208448531, -2.173052247627857, -2.0955620937870427, -2.0155755717053796, -1.9337373938653308, -1.8506632497738211, -1.766934165906067, -1.6830921383380546, -1.5996369604198337, -1.5170241226444479, -1.4356636497369193, -1.3559197491413013, -1.27811116212178, -1.2025121239575656, -1.129353848908605, -1.0588264588960423, -0.9910812746978848, -0.9262333878761699, -0.8643644328200395, -0.8055254822127722, -0.7497399958727027, -0.6970067615995383, -0.6473027764603634, -0.6005860270028174, -0.5567981365060244, -0.5158668561297974, -0.47770838446051767, -0.44222950640536407, -0.40932954768410434 ], [ -2.279374978047124, -2.3458747045792334, -2.408976948035663, -2.467907392301348, -2.5218686743860026, -2.5700618333713083, -2.6117131459525633, -2.6461052214164407, -2.6726099907465666, -2.690720023200631, -2.7000739341706703, -2.700472039123537, -2.6918800765574717, -2.674421345620222, -2.6483599810566085, -2.614079330943126, -2.572059199368393, -2.522854532908914, -2.4670767254848043, -2.4053776362519246, -2.338435842845252, -2.2669445219456517, -2.1916004944937644, -2.1130942200461638, -2.0321007414120786, -1.9492716983321225, -1.8652285412810656, -1.7805570180088055, -1.6958029228402165, -1.6114690285733102, -1.528013080181833, -1.4458467182362065, -1.3653352080736663, -1.2867978663926851, -1.2105090912791305, -1.136699910606373, -1.06555996726115, -0.9972398599667371, -0.9318537583347456, -0.8694822122387598, -0.8101750796425856, -0.7539545036312374, -0.700817877962745, -0.6507407501193048, -0.6036796207514028, -0.5595746079190633, -0.5183519532010648, -0.4799263543272394, -0.4442031154100632, -0.4110801111341762 ], [ -2.297546698314314, -2.3646759831598425, -2.428368650743539, -2.4878394635857095, -2.542279445088271, -2.5908777761118107, -2.632849295967837, -2.6674664555353638, -2.694093245359855, -2.712217327001351, -2.7214758913501877, -2.7216712502522, -2.7127740461474508, -2.694914684547605, -2.6683659950399012, -2.6335212042578893, -2.5908709051058096, -2.5409814533054815, -2.4844758842318018, -2.422017469591447, -2.3542955240685606, -2.2820129408270313, -2.2058750391644573, -2.1265795065485675, -2.04480740043451, -1.9612152812338524, -1.8764285661481408, -1.7910361498097414, -1.705586270110859, -1.6205835379740887, -1.536487014173362, -1.4537092057434493, -1.3726158611680246, -1.2935264572824812, -1.2167152838277233, -1.142413040030478, -1.0708088612587416, -1.0020526946018133, -0.936257942578152, -0.8735042959700027, -0.8138406809476666, -0.7572882522101476, -0.7038433722816193, -0.6534805265633197, -0.6061551334633426, -0.5618062182765489, -0.5203589280348724, -0.4817268720542227, -0.4458142792797881, -0.412517968793078 ], [ -2.3110864849920087, -2.378607617263913, -2.4426596859520213, -2.5024509610390404, -2.557165708312856, -2.605986296799555, -2.6481210210265056, -2.6828364909117965, -2.7094920741025983, -2.727572521799788, -2.736714163782865, -2.7367205685623373, -2.7275655539723656, -2.709384280402496, -2.6824555924946214, -2.647179761094877, -2.6040552559610677, -2.553656885070914, -2.4966163515680524, -2.4336053871628476, -2.365321157287646, -2.292473496281461, -2.215773596345131, -2.1359239280850773, -2.053609322274146, -1.9694892374231414, -1.8841912620640475, -1.7983058715162712, -1.7123824065646593, -1.6269261927162992, -1.542396688268827, -1.459206539576269, -1.3777214268830584, -1.2982605956487596, -1.2210979796666437, -1.1464638300247385, -1.0745467676946179, -1.0054961787921308, -0.9394248724191501, -0.8764119231454904, -0.8165056244823501, -0.7597264861952855, -0.7060702165233879, -0.6555106395877939, -0.6080025077560658, -0.5634841778776338, -0.5218801287027182, -0.48310330420164527, -0.4470572738180416, -0.4136382059240371 ], [ -2.3198862962383977, -2.3875555360379, -2.451730088379776, -2.5116163121003057, -2.5663967628252182, -2.6152522715507844, -2.6573897303229885, -2.6920744695392074, -2.718664748599046, -2.736644511383086, -2.7456497747179363, -2.745484491416993, -2.7361237153790703, -2.717704776616718, -2.690509639576181, -2.6549425993074935, -2.6115069238941926, -2.5607827553882867, -2.503407331282072, -2.4400577401134815, -2.371435982631986, -2.2982559615214795, -2.221232054402294, -2.141069041140967, -2.058453281449421, -1.9740451240337755, -1.8884725582042967, -1.8023261032225844, -1.7161548927122103, -1.630463873255054, -1.5457120110917435, -1.4623113918230237, -1.380627101347336, -1.3009777855377382, -1.2236367957754357, -1.1488338343588222, -1.0767570175013965, -1.0075552752935075, -0.9413410093612343, -0.8781929314596221, -0.8181590106578928, -0.7612594631900387, -0.707489727045634, -0.6568233723147121, -0.6092149075087054, -0.5646024509933267, -0.5229102448866227, -0.4840509960584165, -0.4479280351107686, -0.41443728941966085 ], [ -2.323887683721889, -2.391459160870475, -2.4555171631127735, -2.515270715763136, -2.5699057237119933, -2.6186067969020135, -2.660584657972005, -2.695108067651522, -2.7215378914288357, -2.739359589685021, -2.748209605771394, -2.7478915134632342, -2.7383796593127907, -2.7198108448464398, -2.6924670693449686, -2.6567534055681694, -2.6131746112113854, -2.562312832043616, -2.504807525240926, -2.441337890164256, -2.3726076465829546, -2.2993318334898527, -2.2222253047567646, -2.141992684235288, -2.0593196462266974, -1.9748654643891486, -1.889256806183368, -1.8030827460029624, -1.716890945075536, -1.6311849178045639, -1.5464222841078659, -1.4630138992781747, -1.3813237547885484, -1.3016695505550415, -1.22432384700361, -1.1495157112643366, -1.077432775369187, -1.0082236263167994, -0.942000449673675, -0.8788418512187136, -0.818795785676352, -0.7618825279105714, -0.708097629719699, -0.657414814011726, -0.609788767046539, -0.5651577980831821, -0.5234463437848691, -0.48456730187562, -0.44842418470012246, -0.4149130884966912 ], [ -2.323083030268653, -2.3903128265994815, -2.4540171354725073, -2.5134120745870288, -2.567691794623186, -2.616049856698338, -2.6577059617673298, -2.6919370291152833, -2.7181103964029134, -2.7357156426863547, -2.744390726480567, -2.7439384057921585, -2.734330586760332, -2.7157008868306973, -2.6883281393598217, -2.652614729643907, -2.609063342849565, -2.558254563815806, -2.500826569521679, -2.4374572975971565, -2.3688489998897992, -2.2957148964039176, -2.218767621711806, -2.138709218174046, -2.05622251634917, -1.9719638132578403, -1.8865567964507823, -1.800587667468769, -1.7146014042774187, -1.6290990825962908, -1.5445361607552153, -1.4613216258739836, -1.3798178999542952, -1.3003414096434125, -1.2231637295977116, -1.1485132144117292, -1.0765770374154024, -1.007503556867785, -0.941404932264163, -0.8783599166061684, -0.8184167551236323, -0.7615961271657103, -0.7078940755043748, -0.657284875620985, -0.6097238061339278, -0.5651497898956943, -0.5234878830791407, -0.4846515965562521, -0.44854503993048445, -0.4150648836915747 ], [ -2.317515402549131, -2.3841656746361535, -2.4472851438757783, -2.5061011704358336, -2.5598207332589165, -2.6076512010849586, -2.648826139678287, -2.6826352164221454, -2.708456150505829, -2.7257854883325017, -2.7342642000535125, -2.7336942555342523, -2.7240437776434643, -2.7054407619236374, -2.6781576959180717, -2.6425906828223766, -2.59923657297751, -2.5486706266393178, -2.491526086193425, -2.4284761600370293, -2.360218406660483, -2.287461278591085, -2.210912534844108, -2.1312692709328007, -2.0492093865981507, -1.9653843753681635, -1.8804133593048906, -1.794878305423712, -1.7093203554106104, -1.6242371882080677, -1.5400813242449654, -1.4572592746462492, -1.3761314388565453, -1.2970126577285288, -1.2201733338419394, -1.1458410349746626, -1.0742024997238377, -1.0054059666568924, -0.9395637508688957, -0.87675499519965, -0.8170285280797334, -0.7604057660946026, -0.7068836066362589, -0.6564372640202047, -0.6090230107050558, -0.5645807933261839, -0.5230367008093348, -0.48430526863987766, -0.448291609310167, -0.41489336401413257 ], [ -2.307276973998174, -2.373119938134055, -2.4354334414291836, -2.4934598689095404, -2.546423180718228, -2.5935489552401387, -2.6340890906523455, -2.6673502867893553, -2.6927244400389894, -2.70971803834684, -2.71797691160638, -2.717302761570935, -2.7076590857029297, -2.689166205109895, -2.6620872890148415, -2.62680860645399, -2.5838173500208037, -2.5336795969660537, -2.477019920845448, -2.414503291087401, -2.3468193457320146, -2.2746688531633157, -2.198752095816269, -2.1197589261777017, -2.038360301487321, -1.9552011605739064, -1.8708945459198512, -1.786016892590225, -1.701104408094056, -1.6166504616352912, -1.5331038945173372, -1.450868159597967, -1.3703011975182855, -1.2917159599145196, -1.2153814933601863, -1.1415245011751913, -1.0703313030454107, -1.0019501148684076, -0.9364935739692635, -0.8740414383976933, -0.8146433937779035, -0.7583219071850984, -0.7050750745543435, -0.6548794158174946, -0.6076925798909982, -0.5634559294085089, -0.5220969823979134, -0.4835316947271213, -0.4476665729661895, -0.41440061229007497 ], [ -2.292506061976971, -2.3573276455640486, -2.4186277977010913, -2.4756672837989293, -2.5276906917731425, -2.573945658336709, -2.61370633727785, -2.6463002862119827, -2.671137084784971, -2.6877360838841704, -2.6957500264320085, -2.6949812842001535, -2.6853884142390063, -2.6670825231240416, -2.6403148936653373, -2.6054586716981816, -2.5629877113567487, -2.5134551159465905, -2.4574730927513864, -2.395694897113355, -2.328799064448971, -2.2574758194352533, -2.1824154331513017, -2.104298289924523, -2.0237864645796813, -1.9415166591443607, -1.8580943861604209, -1.7740893076085653, -1.6900316463656018, -1.6064095867816996, -1.5236675779282765, -1.4422054508794924, -1.3623782613359734, -1.284496770675375, -1.2088284811896228, -1.1355991440451798, -1.0649946610670846, -0.9971633039639011, -0.9322181775042158, -0.8702398568576033, -0.8112791340869369, -0.7553598146513034, -0.7024815115627223, -0.6526223922157566, -0.60574184050401, -0.5617830043037568, -0.5206752054541817, -0.48233619579404863, -0.44667424850394144, -0.41359007890027644 ], [ -2.2733829228452174, -2.336985896267129, -2.397082255409976, -2.4529540430553327, -2.5038695729311207, -2.5491017761572614, -2.5879503553903582, -2.6197669714018166, -2.6439819439584884, -2.6601301677371816, -2.6678733708821185, -2.667015811626978, -2.657511269424936, -2.6394606707442865, -2.6131014073141845, -2.5787906894568176, -2.536985714202188, -2.4882230777075045, -2.4330991048905464, -2.37225199506384, -2.3063461042779476, -2.236058343599046, -2.162066517837533, -2.085039390679433, -2.0056282809346793, -1.9244600316910254, -1.8421312282916789, -1.7592035640003445, -1.676200263783273, -1.5936034803810708, -1.5118525769323776, -1.4313432099098455, -1.3524271265001642, -1.2754125920092965, -1.200565364994985, -1.1281101401669522, -1.0582323814714925, -0.9910804703143251, -0.9267680968812875, -0.8653768263050904, -0.806958776184009, -0.7515393476889292, -0.6991199590342818, -0.6496807371543019, -0.603183130696626, -0.5595724146054142, -0.5187800633570212, -0.48072597613931656, -0.4453205428127407, -0.4124665442993172 ], [ -2.2501245411006563, -2.312330983282422, -2.3710525586897164, -2.425595014572494, -2.4752529255054725, -2.519327116524183, -2.557145459056465, -2.5880863078181533, -2.611603215628543, -2.6272489076765337, -2.6346960142166465, -2.633752015696674, -2.6243664541515157, -2.606629675067733, -2.580763823305621, -2.5471079943077704, -2.5060999583324284, -2.4582567090221943, -2.404155503809378, -2.3444163879284448, -2.279686640740193, -2.210627223821289, -2.137901123446988, -2.062163411034282, -1.9840528411028422, -1.90418482931128, -1.8231456806488595, -1.741487959544229, -1.6597269069827547, -1.5783378162594304, -1.4977542815644322, -1.4183672346527265, -1.3405246858353383, -1.2645320869577914, -1.1906532358683313, -1.1191116439550803, -1.0500922905864403, -0.9837436908435193, -0.9201802060142442, -0.8594845301533556, -0.801710290727346, -0.7468847069437758, -0.69501125565979, -0.6460723015309411, -0.6000316550136944, -0.5568370286951416, -0.5164223689540839, -0.4787100459801361, -0.44361289057402065, -0.4110360708634264 ], [ -2.222978715830765, -2.2836317275454223, -2.3408286887256615, -2.39390101125662, -2.442171509256331, -2.4849708703318214, -2.521657077675607, -2.5516370920660405, -2.574389572385745, -2.5894868726662867, -2.5966141591670375, -2.5955834485074254, -2.5863408406661286, -2.5689661940989708, -2.543665702005595, -2.510758869923966, -2.470661939417715, -2.4238697808703344, -2.3709378598338535, -2.312465321106714, -2.2490797302553682, -2.1814236528531685, -2.110143041491881, -2.0358773034012585, -1.959250893804879, -1.8808662868865502, -1.8012981946754554, -1.7210889222417807, -1.640744760759812, -1.560733327959391, -1.4814817697582785, -1.4033757391981279, -1.3267590704542522, -1.2519340672920067, -1.1791623271090377, -1.1086660236643833, -1.0406295738021978, -0.9752016160559589, -0.9124972321512906, -0.8526003462751474, -0.7955662416306462, -0.7414241392185981, -0.6901797898439197, -0.6418180368201789, -0.5963053134903404, -0.5535920462480384, -0.513614940016808, -0.4762991289588665, -0.44156018042612266, -0.40930594477252513 ], [ -2.192217777386126, -2.2511824255045814, -2.3067269921743856, -2.358210060756001, -2.4049841303282373, -2.4464111187538427, -2.481880417776461, -2.5108288496631626, -2.5327614336660025, -2.5472714314600413, -2.5540578265201606, -2.552938360286921, -2.543856622188533, -2.5268824657915494, -2.502206011656114, -2.4701263917561063, -2.4310369235196685, -2.3854084826097353, -2.333772569309395, -2.27670512204409, -2.214811692276013, -2.1487142525379235, -2.079039687359872, -2.006409896998628, -1.9314333938258976, -1.8546982608154599, -1.7767663490503833, -1.6981686035862555, -1.6194014181631702, -1.5409239272497837, -1.4631561489915272, -1.3864778958122228, -1.3112283716252868, -1.2377063764656602, -1.1661710411782003, -1.0968430167544967, -1.0299060451245607, -0.9655088408228292, -0.9037672161150478, -0.84476638601462, -0.7885633941881646, -0.7351896060091851, -0.6846532208413583, -0.6369417618280815, -0.5920245078127178, -0.5498548382951136, -0.5103724683497064, -0.4735055560359198, -0.43917266991331494, -0.4072846087695803 ], [ -2.1581322571174173, -2.215295796396565, -2.2690823643519846, -2.318878791836003, -2.36406821114803, -2.404044585742386, -2.4382294234656063, -2.4660900641980517, -2.487158569209691, -2.501049887634336, -2.5074777308565257, -2.506266566351148, -2.497358440559963, -2.4808139540378193, -2.4568075077362965, -2.425617690627246, -2.3876141746821475, -2.34324262908976, -2.293009007889231, -2.2374642351297624, -2.177189945520951, -2.112785626806297, -2.044857288414135, -1.9740076461709055, -1.900827743982564, -1.8258899064854535, -1.7497419123041484, -1.6729022827670543, -1.595856588483888, -1.5190546828762996, -1.4429087767232966, -1.3677922712665327, -1.294039269953997, -1.2219446909638823, -1.151764904575301, -1.0837188214582465, -1.0179893602080932, -0.9547252251032894, -0.8940429282511335, -0.8360289941035565, -0.7807422888012103, -0.7282164218977829, -0.6784621736093848, -0.6314699066590423, -0.5872119278492562, -0.5456447705003433, -0.5067113746643495, -0.47034314742244443, -0.4364618904932398, -0.4049815867593547 ], [ -2.121024790060178, -2.176296256577353, -2.228240869429684, -2.2762743825499143, -2.3198110588444, -2.358277232097495, -2.391126718629747, -2.417857512316721, -2.4380288995884625, -2.451277852245366, -2.457333369183278, -2.456027430972168, -2.4473014702538616, -2.4312077453711405, -2.4079056397186447, -2.377653530420541, -2.3407973142839458, -2.2977568590239934, -2.2490115777655784, -2.1950860912625596, -2.1365366494391425, -2.0739387116792036, -2.0078758745672367, -1.938930194493263, -1.8676738698715025, -1.794662206481618, -1.7204277734579259, -1.6454756546613016, -1.5702797029422892, -1.4952797090494074, -1.4208794008924848, -1.3474451920650385, -1.275305601058602, -1.2047512647290217, -1.1360354715578616, -1.069375142302939, -1.0049521879240357, -0.942915177352047, -0.8833812508582269, -0.82643821855226, -0.7721467879083863, -0.7205428691419711, -0.6716399126273032, -0.6254312382122647, -0.5818923220738723, -0.5409830124972059, -0.5026496514910319, -0.4668270843454496, -0.4334405439945628, -0.4024074013057668 ], [ -2.0812044669908882, -2.1345137646905394, -2.1845530705835627, -2.2307673739065654, -2.272602168013892, -2.3095160603213998, -2.340994934960809, -2.366567145566912, -2.385818974851236, -2.3984093788600878, -2.404082893642914, -2.4026795847562967, -2.394141113031252, -2.3785123724685624, -2.3559386606477726, -2.326658849808324, -2.2909954145346303, -2.249342363855687, -2.2021521172402028, -2.1499222090704313, -2.093182481046757, -2.032483193105091, -1.9683842915173477, -1.9014459328037487, -1.8322202713096394, -1.7612444659360353, -1.689034835158828, -1.616082078665007, -1.5428474812820794, -1.4697600158423154, -1.397214263799448, -1.3255690747405233, -1.2551468880818208, -1.186233642211786, -1.1190791982746338, -1.0538982078274064, -0.990871355900158, -0.9301469136703046, -0.871842538126724, -0.8160472598037766, -0.7628236039161247, -0.712209794972692, -0.6642220000946797, -0.618856571674907, -0.5760922555394892, -0.5358923362542121, -0.498206696513106, -0.4629737725369123, -0.43012239200257585, -0.39957348516057656 ], [ -2.0389817817657176, -2.0902783918423564, -2.138368230169368, -2.1827255120704816, -2.2228267206402568, -2.258162290029518, -2.2882495811325434, -2.3126466712480287, -2.3309662853357604, -2.3428890261574553, -2.348174956938384, -2.346672600091188, -2.338324572395289, -2.323169379557765, -2.3013392932160786, -2.2730546456429668, -2.2386152094608907, -2.198389518530059, -2.1528030181184956, -2.1023258383909558, -2.0474608188449124, -1.9887322253190636, -1.9266754327985949, -1.8618277146957494, -1.79472018584118, -1.7258708866601584, -1.6557789612811287, -1.584919864201816, -1.5137415219641412, -1.4426613735045004, -1.3720642126798444, -1.302300757429721, -1.233686871425239, -1.166503365627709, -1.1009963088998684, -1.0373777787432368, -0.9758269854711691, -0.9164917057598297, -0.8594899646218243, -0.8049119084578875, -0.7528218159537139, -0.7032601981536395, -0.6562459439675639, -0.6117784725327122, -0.5698398591190799, -0.5303969064993272, -0.49340313876936825, -0.4588006993969218, -0.4265221397048766, -0.3964920880058387 ], [ -1.9946642533167276, -2.0439156896954698, -2.0900294418692877, -2.132508665146877, -2.1708603084906355, -2.2046059046118054, -2.2332934273638774, -2.2565097815734796, -2.273893335013457, -2.2851457703995948, -2.2900424597047437, -2.288440577759473, -2.2802843003479802, -2.265606672198482, -2.2445280478409395, -2.217251341656013, -2.184054604028618, -2.145281617470128, -2.1013312624745035, -2.052646353660057, -1.9997025287760575, -1.942997626655681, -1.8830418471380304, -1.8203488652567712, -1.755427980508272, -1.6887773185483035, -1.6208780619664087, -1.5521896625801288, -1.4831459743907396, -1.414152239711006, -1.3455828581521956, -1.2777798673892886, -1.2110520649410397, -1.1456747011246953, -1.0818896746806017, -1.0199061642607892, -0.9599016310632801, -0.9020231304143156, -0.8463888730935146, -0.7930899806780491, -0.7421923831339952, -0.6937388112519249, -0.6477508412237809, -0.6042309535786734, -0.5631645737121433, -0.5245220662312489, -0.488260660179324, -0.4543262867983089, -0.4226553157523263, -0.3931761796173059 ], [ -1.9485527460821437, -1.99574286456816, -2.039869682327579, -2.0804647765650515, -2.1170648100704277, -2.149221468125538, -2.176512270240521, -2.1985518639732375, -2.215003284008522, -2.2255885581428205, -2.230097987460116, -2.228397445444392, -2.2204331462072915, -2.2062335236029216, -2.1859081156784423, -2.159643618150087, -2.1276975056036442, -2.0903897796045494, -2.04809347105397, -2.00122450652367, -1.950231468652399, -1.8955856686888155, -1.8377718311444546, -1.7772795840638052, -1.7145958623752586, -1.6501982678912595, -1.5845493853109727, -1.5180920248218746, -1.451245344235316, -1.3844017933508403, -1.3179248176961211, -1.2521472560943778, -1.1873703655248478, -1.123863406810596, -1.061863725448979, -1.0015772632393447, -0.9431794382032539, -0.8868163326265684, -0.8326061318805026, -0.7806407599904954, -0.7309876616869604, -0.6836916848297754, -0.6387770215674611, -0.5962491712670741, -0.556096893020462, -0.5182941202811473, -0.48280181480641726, -0.44956974147858975, -0.4185381496813807, -0.3896393506574247 ], [ -1.9009384708961454, -1.9460657196496913, -1.9882087203231629, -2.0269267651941174, -2.061785301261109, -2.0923650587293725, -2.1182718913236833, -2.1391469756383588, -2.1546769179811167, -2.164603239261235, -2.1687306699764624, -2.166933706096891, -2.1591609637833353, -2.145437024529275, -2.1258616641139683, -2.100606576347132, -2.0699098983236164, -2.034068986266761, -1.9934319635025364, -1.9483885657293283, -1.8993607583496406, -1.8467935175123271, -1.7911460714309109, -1.7328838072153085, -1.6724709701468747, -1.610364220609772, -1.5470070684133481, -1.4828251725552402, -1.4182224734424245, -1.3535781112279588, -1.289244075803885, -1.225543529333398, -1.1627697397925287, -1.1011855630590448, -1.0410234111748646, -0.9824856452681351, -0.9257453331187439, -0.8709473134220856, -0.818209511408991, -0.7676244535797501, -0.7192609328573729, -0.6731657793943888, -0.629365696494883, -0.5878691255404893, -0.548668108331829, -0.5117401197678202, -0.47704984818773344, -0.44455090490589977, -0.4141874484067267, -0.3858957122843434 ], [ -1.8521006203026456, -1.8951762988763543, -1.9353507936443481, -1.9722102565183612, -2.0053478564787257, -2.034372147454139, -2.0589160110812323, -2.078645858864713, -2.09327069982327, -2.1025506201169986, -2.106304194390292, -2.104414367533715, -2.096832417942205, -2.0835797372828564, -2.064747323690714, -2.0404930615139634, -2.0110370232554864, -1.976655153725015, -1.9376717681175393, -1.8944513128059222, -1.8473898088485814, -1.7969063384559014, -1.7434348598813905, -1.6874165596876436, -1.6292928819881178, -1.5694993166038107, -1.508459983210694, -1.4465830154726496, -1.3842567258243197, -1.3218465157389638, -1.2596924859562928, -1.1981076946347118, -1.1373770075405365, -1.0777564823772106, -1.019473228660026, -0.9627256848261682, -0.9076842553403984, -0.8544922522922233, -0.8032670883025346, -0.7541016704011891, -0.7070659478360233, -0.6622085704524916, -0.6195586182579693, -0.5791273669572277, -0.5409100585197761, -0.5048876501142749, -0.4710285189294221, -0.4392901044123063, -0.40962047322744666, -0.381959795720616 ], [ -1.802304575924844, -1.8433511514748124, -1.8815829522784597, -1.9166120218751572, -1.9480580952371467, -1.975556255370408, -1.998765050511369, -2.0173747908221626, -2.0311156812783038, -2.039765401993955, -2.0431557290725313, -2.0411778075606866, -2.033785748471896, -2.020998322404836, -2.002898652844397, -1.979631955341539, -1.9514015035507508, -1.9184631106199463, -1.8811184823541356, -1.8397078234892335, -1.7946020650971772, -1.7461950397436934, -1.694895873500542, -1.6411218011192514, -1.585291550651934, -1.527819391374654, -1.4691098960559463, -1.4095534354584036, -1.3495223983754292, -1.2893681129234904, -1.229418432643659, -1.169975942827568, -1.1113167372736403, -1.053689712593121, -0.9973163256556058, -0.9423907594118973, -0.8890804429086572, -0.8375268726508235, -0.7878466844571934, -0.7401329275014958, -0.6944564952511765, -0.6508676714245367, -0.6093977527944934, -0.5700607145792083, -0.5328548881812367, -0.49776462507410346, -0.4647619246004491, -0.43380800726386815, -0.4048548187009682, -0.37784645286281693 ], [ -1.7518006182369994, -1.7908501318019798, -1.8271739660243942, -1.860409007032363, -1.890200338785181, -1.9162082379507934, -1.9381155345537386, -1.9556350886437617, -1.9685170839416728, -1.9765558048544751, -1.9795955513568921, -1.977535363803376, -1.970332280343615, -1.9580029316870824, -1.9406233838149793, -1.9183272558867703, -1.891302252381346, -1.8597853408059017, -1.8240568688588288, -1.7844339437893513, -1.7412633940947846, -1.6949146063631777, -1.6457724867956203, -1.5942307463512682, -1.5406856575116996, -1.4855303840522467, -1.4291499454311059, -1.3719168452395853, -1.3141873682386165, -1.2562985318861482, -1.1985656647747471, -1.1412805749312231, -1.0847102645233524, -1.0290961434187338, -0.974653691684711, -0.9215725201035679, -0.8700167778206671, -0.820125857146548, -0.7720153471506824, -0.725778189900357, -0.6814859959125934, -0.6391904785050622, -0.598924970159922, -0.5607059876575358, -0.5245348165019939, -0.4903990889573029, -0.4582743337589641, -0.4281254791878861, -0.3999082946285546, -0.3735707589346551 ], [ -1.7008230681708536, -1.7379156513951663, -1.7723737007887297, -1.8038578419637301, -1.8320372568784036, -1.8565960657609188, -1.87723999651964, -1.8937031202263306, -1.9057543922249107, -1.9132037122149035, -1.9159072092835103, -1.9137714742537162, -1.9067565043040682, -1.8948771921857293, -1.8782032786489014, -1.8568577821550578, -1.8310140127795649, -1.8008913560762465, -1.7667500691799247, -1.7288853616052209, -1.687621037730091, -1.6433029611518284, -1.5962925693106218, -1.5469606267006928, -1.495681362467255, -1.4428270975261348, -1.388763430196614, -1.3338450189315292, -1.2784119762473867, -1.2227868689443073, -1.1672723053931437, -1.1121490802093397, -1.0576748392379818, -1.004083222776968, -0.9515834418324657, -0.9003602405326233, -0.8505741973225971, -0.8023623180042613, -0.755838874900949, -0.7110964482868896, -0.6682071286083993, -0.627223840835273, -0.588181755417746, -0.5510997536911235, -0.5159819190737491, -0.48281902895865936, -0.4515900257235066, -0.422263448707644, -0.3947988122695951, -0.36914791809377867 ], [ -1.6495897931697998, -1.6847723063257618, -1.717412877410235, -1.747194736955976, -1.7738099018401958, -1.7969649914841663, -1.8163872672054424, -1.8318306987527846, -1.8430818311592059, -1.8499652052602833, -1.8523480810806554, -1.8501442283943093, -1.8433165847419266, -1.8318786367951005, -1.8158944516747684, -1.7954773632872403, -1.7707873959650409, -1.7420275749089342, -1.7094393232898046, -1.6732971756930146, -1.6339030466243378, -1.591580283705003, -1.5466677124556392, -1.4995138483331818, -1.450471416712397, -1.3998922865934547, -1.3481228915672672, -1.2955001834407511, -1.2423481404685526, -1.1889748332844619, -1.1356700369427624, -1.082703366373761, -1.030322904413274, -0.9787542858196371, -0.9282001968690609, -0.8788402478389233, -0.830831174650029, -0.7843073259127175, -0.7393813924256751, -0.6961453376640607, -0.6546714898396917, -0.6150137586090136, -0.577208942341978, -0.5412780949486469, -0.5072279244995888, -0.47505219918542485, -0.4447331394618135, -0.41624277845114044, -0.3895442757624945, -0.3645931727999472 ], [ -1.5983020158215884, -1.631626811037631, -1.6625031377192416, -1.6906356839128076, -1.7157380436527994, -1.7375380125960287, -1.755783054168363, -1.7702457629811328, -1.780729127833017, -1.787071381742184, -1.7891502245930178, -1.7868862177636962, -1.7802451806053694, -1.7692394647821694, -1.753928040743044, -1.7344153953523058, -1.7108493040976867, -1.6834175984884268, -1.6523440937246758, -1.617883870159642, -1.580318113736998, -1.5399487170051966, -1.4970928266112797, -1.452077499220458, -1.4052345994210087, -1.35689604360722, -1.3073894655010438, -1.2570343534103614, -1.206138687310145, -1.1549960855790717, -1.103883456567496, -1.0530591387425454, -1.0027615045046132, -0.9532079964452455, -0.9045945604130889, -0.8570954369254978, -0.8108632709235238, -0.7660294993884087, -0.7227049767310192, -0.6809807989773422, -0.6409292894719452, -0.6026051109896771, -0.5660464716782974, -0.5312763950520714, -0.4983040272289958, -0.4671259576658102, -0.43772753272194365, -0.41008414440730623, -0.3841624795830003, -0.3599217176423479 ], [ -1.5471443698142706, -1.5786681785382497, -1.607837353365163, -1.6343768946754051, -1.658020734808622, -1.6785165558782245, -1.6956307352133582, -1.7091532654048867, -1.718902476606438, -1.7247293776369137, -1.7265214321590272, -1.7242055986980593, -1.7177504892169873, -1.7071675394368448, -1.6925111323327808, -1.6738776699143005, -1.6514036422307088, -1.6252627911932251, -1.595662505812566, -1.5628396119335022, -1.5270557325185108, -1.4885923947835664, -1.4477460501497323, -1.4048231549117554, -1.3601354367600003, -1.3139954475454134, -1.2667124781092123, -1.2185888881146976, -1.169916883514707, -1.1209757569626433, -1.072029592169443, -1.0233254217422927, -0.9750918191135969, -0.927537898441796, -0.8808526915049805, -0.8352048673138864, -0.7907427581810503, -0.7475946550792478, -0.7058693351198926, -0.6656567847245243, -0.6270290834157675, -0.5900414149972713, -0.5547331751192732, -0.5211291467367076, -0.4892407176714886, -0.4590671173052505, -0.4305966522801339, -0.40380792390735487, -0.37867101271984716, -0.35514861821059407 ], [ -1.4962851548472653, -1.526068095298185, -1.5535901230217304, -1.57859541977323, -1.6008370466489381, -1.6200813242182288, -1.636112305505079, -1.6487362067287012, -1.6577856454456286, -1.6631235275105856, -1.6646464250856248, -1.6622872991849773, -1.6560174423930796, -1.6458475496236031, -1.6318278649232265, -1.6140473970059088, -1.592632241334938, -1.5677430879649326, -1.5395720284161116, -1.5083387991087251, -1.4742866122686196, -1.4376777280401907, -1.3987889152229764, -1.3579069346888135, -1.3153241614880984, -1.2713344411556071, -1.2262292546571647, -1.1802942461900008, -1.1338061495909815, -1.0870301329314591, -1.0402175671757825, -0.9936042135175398, -0.9474088150141933, -0.9018320711784269, -0.8570559689958083, -0.8132434401696295, -0.7705383120185956, -0.7290655181665231, -0.688931534791769, -0.650225008593196, -0.6130175436469196, -0.5773646158521459, -0.5433065855893806, -0.5108697814407193, -0.48006763026014254, -0.4509018114511101, -0.4233634159352073, -0.39743409291562104, -0.3730871700977094, -0.3502887354795783 ], [ -1.4458767487901065, -1.4739814470714818, -1.499918412576625, -1.5234499010654472, -1.5443469298993502, -1.562393257938025, -1.5773894302229716, -1.5891567682288124, -1.5975411744124166, -1.602416613767884, -1.603688136620851, -1.6012943170050586, -1.5952089999252732, -1.5854422779284658, -1.5720406509496776, -1.5550863607427035, -1.5346959291525473, -1.5110179647355553, -1.4842303318819488, -1.45453679854857, -1.422163291915338, -1.3873538957492157, -1.3503667199048173, -1.3114697627338228, -1.2709368730284785, -1.2290439013011871, -1.1860651123075554, -1.1422699130282932, -1.0979199337497247, -1.0532664849910023, -1.0085484001084488, -0.9639902625400096, -0.9198010077716905, -0.8761728830644007, -0.8332807425858668, -0.7912816516459219, -0.7503147710423841, -0.7105014909066794, -0.6719457827324629, -0.6347347383311479, -0.598939265155763, -0.5646149086513539, -0.531802773921564, -0.5005305209487791, -0.4708134097825547, -0.44265537443739666, -0.4160501066453246, -0.3909821330277561, -0.36742787163114565, -0.34535665606650356 ], [ -1.3960561415409318, -1.422546958876782, -1.4469623007369457, -1.4690814202641154, -1.488692161247563, -1.5055945725417799, -1.51960456475823, -1.5305575040333768, -1.5383116281779152, -1.5427511661699305, -1.5437890439282145, -1.5413690683527244, -1.5354674978962675, -1.5260939308402524, -1.5132914706014857, -1.497136158730105, -1.477735698256252, -1.4552275200938847, -1.4297762709662072, -1.401570821016394, -1.3708209019219755, -1.3377534917742724, -1.3026090617744601, -1.2656377930210976, -1.2270958607048676, -1.1872418693357956, -1.1463335075549286, -1.1046244757509052, -1.0623617249707409, -1.0197830320664836, -0.9771149240039145, -0.9345709539301856, -0.8923503229747831, -0.8506368347668524, -0.8095981641679052, -0.7693854175883321, -0.7301329593218935, -0.6919584764384059, -0.6549632537762038, -0.6192326303377429, -0.5848366087924128, -0.5518305907164274, -0.5202562115496645, -0.4901422509280786, -0.4615055959738865, -0.4343522372141946, -0.40867827898520237, -0.3844709483992106, -0.36170958915490425, -0.3403666286110447 ], [ -1.346945560568814, -1.3718879185261215, -1.3948457991710987, -1.415614412478415, -1.4339973453347303, -1.4498098426065733, -1.4628821125416742, -1.4730625636804624, -1.480220872984224, -1.484250781820721, -1.485072518679845, -1.482634755576374, -1.476916019106556, -1.4679254965503683, -1.4557032011363187, -1.440319486971545, -1.4218739311996615, -1.4004936266022543, -1.3763309502082184, -1.3495608910397832, -1.3203780320078946, -1.2889932869063547, -1.255630493759913, -1.2205229612199004, -1.1839100563179707, -1.1460339108371094, -1.1071363109537926, -1.0674558216240855, -1.0272251842099962, -0.9866690136420798, -0.9460018103651673, -0.905426292622923, -0.865132046384689, -0.8252944833906813, -0.7860740923181534, -0.7476159638432502, -0.7100495672678058, -0.6734887542674544, -0.6380319640707666, -0.6037626038773565, -0.5707495784529011, -0.539047943494608, -0.5086996584452703, -0.47973441585645094, -0.4521705260801536, -0.4260158379273069, -0.4012686779044752, -0.3779187926660412, -0.3559482813472661, -0.3353325064287638 ], [ -1.2986531629942668, -1.322112958384372, -1.343677721962112, -1.3631576198627988, -1.3803709477000614, -1.395147107880708, -1.407329597074281, -1.416778921925874, -1.423375355239113, -1.4270214427598673, -1.4276441730444906, -1.4251967301064177, -1.4196597606220127, -1.4110421040046301, -1.399380953723612, -1.3847414405417635, -1.3672156512925437, -1.3469211187523182, -1.3239988375415772, -1.2986108765780988, -1.2709376696032324, -1.2411750713991268, -1.209531268659235, -1.1762236315955343, -1.1414755860464667, -1.1055135769965712, -1.0685641839472015, -1.0308514373212154, -0.9925943737412243, -0.9540048571285686, -0.9152856825099043, -0.8766289704253714, -0.8382148520323269, -0.8002104384233029, -0.7627690622995196, -0.726029775894383, -0.6901170858311216, -0.6551409033240259, -0.621196686683809, -0.5883657523591059, -0.5567157306356032, -0.5263011425230688, -0.4971640751985906, -0.469334934555504, -0.442833254853479, -0.4176685471040589, -0.39384116959281235, -0.37134320577605195, -0.3501593366465283, -0.3302676964956046 ], [ -1.251273773293574, -1.273316874558819, -1.293552583891675, -1.3118050653678333, -1.3279063392577255, -1.3416989827819459, -1.3530388299286054, -1.3617975980385362, -1.3678653642802858, -1.371152813771484, -1.3715931834833588, -1.3691438324871361, -1.3637873795526818, -1.355532363218595, -1.3444133964847147, -1.3304908071828234, -1.3138497745930846, -1.2945989916592016, -1.272868898955266, -1.2488095503456051, -1.2225881803492336, -1.1943865492486019, -1.1643981440098092, -1.132825311464173, -1.0998763955188815, -1.0657629431293132, -1.0306970351164284, -0.9948887883577382, -0.9585440660290049, -0.9218624229219365, -0.8850353037798021, -0.8482445043283336, -0.811660897384957, -0.775443420172117, -0.7397383137499476, -0.7046786012831698, -0.670383788604267, -0.6369597681506713, -0.6044989057480847, -0.5730802887949715, -0.5427701140828463, -0.5136221936751242, -0.4856785578797811, -0.45897013530762387, -0.43351749123569006, -0.4093316069243931, -0.38641468410676505, -0.3647609605222455, -0.34435752405720454, -0.32518511473792255 ], [ -1.204889649350977, -1.2255814665426747, -1.244551511036706, -1.2616370306487397, -1.276682836998443, -1.2895437546354431, -1.3000870606603718, -1.3081948510209036, -1.3137662660937788, -1.3167195073465496, -1.3169935792139615, -1.3145496960396887, -1.3093723029892965, -1.3014696719203454, -1.2908740476973233, -1.277641336515933, -1.261850344436272, -1.2436015904381, -1.223015732879924, -1.200231660407077, -1.175404307501294, -1.1487022606744413, -1.1203052237557913, -1.0904014100359625, -1.0591849256393235, -1.0268532029492952, -0.9936045358089601, -0.9596357601491717, -0.925140115190461, -0.890305311866682, -0.8553118269773388, -0.8203314340429048, -0.7855259750789935, -0.7510463716132765, -0.7170318682779668, -0.6836094982136955, -0.6508937562775199, -0.6189864636027018, -0.5879768053388754, -0.5579415223318651, -0.528945237004915, -0.5010408936963797, -0.47427029411849286, -0.4486647093529068, -0.42424555082243387, -0.40102508391119507, -0.3790071692876098, -0.3581880184637023, -0.3385569516533158, -0.32009714752971963 ], [ -1.1595712626914307, -1.1789763835595644, -1.196743150458802, -1.2127210255271474, -1.2267667289651725, -1.238746459347278, -1.248538097921923, -1.2560333405480637, -1.261139698150349, -1.2637823061665112, -1.2639054857189762, -1.2614740043261556, -1.256473991829776, -1.2489134775854072, -1.2388225273477271, -1.2262529719935458, -1.2112777344422923, -1.1939897749794273, -1.174500687825581, -1.1529389925060003, -1.1294481718314595, -1.1041845138024424, -1.0773148174207776, -1.0490140223832696, -1.0194628202464324, -0.988845300317551, -0.9573466777250674, -0.9251511443379585, -0.8924398758948378, -0.8593892212631203, -0.8261690924981894, -0.7929415675561888, -0.7598597113031116, -0.727066614964295, -0.6946946494276192, -0.6628649238628801, -0.6316869379325836, -0.6012584134057495, -0.5716652891934617, -0.5429818626391623, -0.515271059252306, -0.488584812900027, -0.4629645387007817, -0.43844168142882256, -0.41503832307518196, -0.39276783426015527, -0.37163555539836324, -0.35163949483048995, -0.3327710325105804, -0.315015619235526 ], [ -1.1153780813679428, -1.1335599665619802, -1.1501845685075844, -1.165112739150476, -1.178212274291181, -1.1893599259294048, -1.1984433937685854, -1.2053632461071806, -1.2100347182170879, -1.2123893362002598, -1.21237631646278, -1.2099636954643258, -1.205139151237461, -1.1979104870968658, -1.1883057585635215, -1.1763730362549802, -1.1621798096702491, -1.145812048715095, -1.1273729507816064, -1.1069814106167963, -1.0847702576329172, -1.0608843104494556, -1.0354783012186095, -1.0087147227538038, -0.9807616498751007, -0.9517905830332165, -0.921974357557922, -0.8914851561991152, -0.8604926563757359, -0.8291623370650707, -0.7976539638432394, -0.7661202644582574, -0.7347058016495724, -0.7035460448374429, -0.6727666378611514, -0.6424828561745315, -0.6127992438118488, -0.5838094179924567, -0.555596027400747, -0.5282308489088978, -0.5017750067478937, -0.47627929781758116, -0.4517846068985436, -0.42832239592696264, -0.4059152521607856, -0.38457748094556554, -0.36431572983019933, -0.34512963193940327, -0.3270124577379814, -0.30995176558515736 ], [ -1.0723593462139613, -1.0893800771035442, -1.1049221295316238, -1.1188569652542277, -1.131062671323738, -1.1414257834952926, -1.1498430853230972, -1.1562233389721572, -1.1604889021501301, -1.1625771856710507, -1.1624419081848032, -1.160054108620746, -1.1554028828499434, -1.148495818769055, -1.1393591131145109, -1.1280373633673904, -1.1145930385638765, -1.0991056430995294, -1.0816705971415728, -1.0623978655414297, -1.0414103737797828, -1.0188422542262157, -0.9948369687491887, -0.9695453545072431, -0.943123638744191, -0.9157314658489265, -0.8875299761273977, -0.858679971001124, -0.8293401940172325, -0.7996657514304464, -0.7698066904576342, -0.7399067478234946, -0.7101022760765119, -0.6805213504746961, -0.6512830550977902, -0.6224969432767282, -0.5942626644559412, -0.5666697472092803, -0.5397975262904, -0.5137152002750658, -0.48848200550150445, -0.46414749158373647, -0.4407518837104083, -0.418326517193206, -0.39689433024353393, -0.3764704016816489, -0.3570625211727092, -0.3386717805943895, -0.3212931762309226, -0.3049162126234568 ], [ -1.030554833057205, -1.0464749061981453, -1.060992348673734, -1.0739884957891244, -1.0853509886799335, -1.094975426131601, -1.1027669897148378, -1.1086420033744897, -1.1125293873879265, -1.1143719668697174, -1.1141275968859552, -1.1117700698082564, -1.1072897757334221, -1.1006940934500338, -1.092007497268673, -1.0812713736696542, -1.0685435507156458, -1.0538975520465, -1.037421595553402, -1.019217364098854, -0.9993985815760417, -0.978089431958134, -0.9554228616672548, -0.9315388066018181, -0.9065823846054257, -0.8807020922308855, -0.8540480415865529, -0.8267702691207047, -0.7990171436730911, -0.770933896261267, -0.7426612891014452, -0.7143344364846058, -0.6860817854932808, -0.6580242602689264, -0.6302745697048944, -0.6029366750943594, -0.5761054114288318, -0.5498662537227803, -0.5242952179177254, -0.49945888456797216, -0.4754145325938992, -0.4522103698649027, -0.42988584719828205, -0.4084720424847732, -0.3879921020298751, -0.3684617267866188, -0.3498896919062844, -0.3322783889083831, -0.3156243807320269, -0.2999189609449122 ], [ -0.9899955950788338, -1.0048737578581688, -1.0184227139828848, -1.0305329786990725, -1.0411010555658275, -1.0500309324961472, -1.0572355496195511, -1.0626382046114395, -1.0661738602281714, -1.0677903191526505, -1.0674492330034457, -1.0651269155295426, -1.0608149345511375, -1.0545204629715206, -1.0462663759425928, -1.0360910887036732, -1.0240481373646126, -1.0102055125747524, -0.9946447632203637, -0.9774598936761131, -0.958756083413507, -0.9386482617425337, -0.9172595730233417, -0.8947197688219585, -0.8711635632681782, -0.8467289864460303, -0.8215557681971207, -0.7957837814619674, -0.7695515704528868, -0.7429949847627113, -0.7162459361700433, -0.6894312905774456, -0.6626719033583623, -0.6360818025038586, -0.6097675204319444, -0.5838275722050073, -0.5583520752241866, -0.5334225032423692, -0.5091115657555567, -0.4854832024750311, -0.4625926816242716, -0.44048679020937676, -0.41920410414260134, -0.39877532611405275, -0.37922367936595514, -0.36056534598539614, -0.34280993895615586, -0.325960997960278, -0.31001649976083545, -0.29496937489770225 ], [ -0.9507046808330654, -0.9645978033169134, -0.9772324743597544, -0.9885077368830846, -0.9983283088977438, -1.0066059381599848, -1.0132607278556696, -1.0182224029339508, -1.0214314860534215, -1.022840352538104, -1.0224141353522078, -1.0201314539175663, -1.0159849445670224, -1.0099815754291828, -1.002142734378737, -0.992504085103601, -0.9811151930329559, -0.9680389295120501, -0.9533506688791638, -0.9371372987021753, -0.919496068124417, -0.900533302873955, -0.8803630179064145, -0.8591054598535905, -0.8368856114840314, -0.8138316893513994, -0.7900736638610429, -0.7657418283002648, -0.7409654401429366, -0.7158714543403273, -0.6905833645244082, -0.6652201642316062, -0.6398954365365397, -0.6147165769721243, -0.5897841513846043, -0.5651913874852454, -0.5410237963495887, -0.5173589179964944, -0.49426618345300977, -0.4718068843678487, -0.4500342402542419, -0.4289935527959132, -0.40872243630565364, -0.38925111335006224, -0.37060276470951026, -0.3527939231936965, -0.33583490134397165, -0.3197302436900349, -0.30447919495839004, -0.29007617642459893 ], [ -0.9126978245560621, -0.9256608030291658, -0.9374333909088537, -0.9479225463930905, -0.957040595742552, -0.96470645964977, -0.9708468503965934, -0.9753974129300139, -0.978303782522354, -0.9795225321564682, -0.9790219842565232, -0.9767828638844291, -0.9727987739982729, -0.9670764777163335, -0.9596359775846028, -0.9505103873927487, -0.9397455978717157, -0.9273997433653919, -0.9135424820311612, -0.8982541070413179, -0.881624510423119, -0.8637520244326471, -0.8447421676141117, -0.8247063239172272, -0.803760383459271, -0.7820233728003798, -0.759616101067556, -0.7366598460561244, -0.7132751017132928, -0.6895804053261159, -0.6656912594451561, -0.6417191602159886, -0.6177707404788777, -0.5939470328345817, -0.5703428549344627, -0.5470463165954058, -0.5241384459992704, -0.5016929302355595, -0.47977596378996523, -0.4584461972665834, -0.43775477764327486, -0.41774547067774237, -0.39845485567907035, -0.3799125827079599, -0.36214168233586186, -0.3451589183476882, -0.3289751741818012, -0.31359586443471477, -0.29902136338626817, -0.2852474431972498 ], [ -0.8759841063212758, -0.8880697944447158, -0.8990304501365677, -0.9087803727476794, -0.9172389303832243, -0.9243316698983375, -0.9299913978748823, -0.934159208807151, -0.936785436410719, -0.9378305044641779, -0.9372656549463342, -0.935073533451743, -0.9312486149144087, -0.9257974564535987, -0.91873876853803, -0.9101033004679099, -0.8999335411878461, -0.8882832414441617, -0.8752167680628344, -0.8608083054410888, -0.8451409230396788, -0.8283055305979151, -0.8103997448835661, -0.7915266929973287, -0.7717937775914965, -0.751311428887667, -0.7301918671810168, -0.708547897711522, -0.6864917574949811, -0.6641340310718098, -0.6415826492796464, -0.6189419822074427, -0.5963120345508506, -0.5737877487511349, -0.5514584186356437, -0.529407213841889, -0.5077108131382715, -0.48643914287652357, -0.4656552152347049, -0.44541505963577066, -0.42576773974603643, -0.4067554477551538, -0.38841366719368087, -0.370771395330995, -0.3538514161889459, -0.33767061537682275, -0.3222403282726387, -0.30756671351679565, -0.2936511443202643, -0.28049061069560377 ], [ -0.8405665803695294, -0.8518257442903036, -0.8620225381413498, -0.8710780649119789, -0.8789182059485068, -0.8854746254077828, -0.8906857462185922, -0.894497676513684, -0.8968650652996213, -0.8977518666307666, -0.8971319927881259, -0.8949898389349772, -0.8913206643954169, -0.8861308189991014, -0.8794378067423159, -0.8712701831798966, -0.8616672873120433, -0.8506788130767775, -0.8383642297145384, -0.8247920640621975, -0.8100390611061369, -0.7941892417623915, -0.7773328787748935, -0.7595654127950249, -0.740986331128785, -0.7216980313521995, -0.7018046910699842, -0.6814111636185745, -0.6606219175982917, -0.6395400358724765, -0.6182662872051501, -0.5968982811285402, -0.5755297140327151, -0.5542497119325769, -0.5331422729623385, -0.5122858104244978, -0.49175279522084914, -0.4716094947405547, -0.45191580379114793, -0.4327251619341519, -0.41408455062598826, -0.3960345628539621, -0.3786095374812317, -0.3618377502533341, -0.3457416533494777, -0.3303381554595437, -0.3156389346089379, -0.30165077631177417, -0.2883759300855415, -0.27581247788429875 ], [ -0.806442870579884, -0.8169241647031903, -0.8264030755158344, -0.8348070070322391, -0.842067861048645, -0.8481229458990022, -0.8529158574979857, -0.8563973140502826, -0.8585259256997082, -0.859268880884577, -0.8586025322879782, -0.8565128670228426, -0.8529958480394633, -0.8480576166209364, -0.8417145491422391, -0.8339931648854171, -0.8249298854811904, -0.8145706503300173, -0.8029703959849179, -0.7901924108072559, -0.7763075791046229, -0.7613935313256575, -0.7455337186478121, -0.7288164314144654, -0.7113337813535321, -0.6931806673678902, -0.6744537439821394, -0.6552504103333938, -0.6356678359922672, -0.6158020379879394, -0.5957470212833664, -0.5755939926936815, -0.5554306559474682, -0.535340593330079, -0.5154027371833543, -0.49569093251626284, -0.4762735901455135, -0.4572134281589024, -0.4385672980950841, -0.42038609106715663, -0.402714718124106, -0.3855921584361275, -0.3690515683949156, -0.3531204444222735, -0.33782083215988234, -0.3231695747506511, -0.309178593093965, -0.2958551912431795, -0.28320238049162616, -0.2712192161418905 ], [ -0.7736057325716181, -0.7833556930538695, -0.7921606131430505, -0.7999537284424248, -0.8066725022547632, -0.8122594475851005, -0.816662922396433, -0.8198378816330939, -0.8217465694888274, -0.8223591358758574, -0.8216541620691247, -0.8196190820553099, -0.8162504881794304, -0.8115543121963469, -0.8055458757165113, -0.7982498071805989, -0.7896998257830906, -0.7799383960600594, -0.7690162600284896, -0.7569918566881273, -0.7439306412624187, -0.729904318672175, -0.7149900073420692, -0.6992693504990832, -0.6828275926259813, -0.6657526387002828, -0.6481341133199943, -0.6300624358498623, -0.6116279263872499, -0.5929199557225875, -0.5740261506365705, -0.5550316639137507, -0.5360185164333231, -0.5170650166889605, -0.4982452611475823, -0.47962871702828624, -0.46127988740424364, -0.44325805702879095, -0.4256171159795079, -0.4084054571104001, -0.3916659424038109, -0.3754359326170653, -0.35974737411462065, -0.3446269364519525, -0.33009619411715563, -0.3161718458221279, -0.3028659648488983, -0.2901862741785255, -0.27813644044097985, -0.2667163811061277 ], [ -0.7420435823564613, -0.7511066356951639, -0.7592793894374725, -0.7665004727976708, -0.7727124835662186, -0.777862731484199, -0.7819039559694171, -0.7847950035965314, -0.7865014507475953, -0.7869961573084023, -0.7862597382081841, -0.7842809409816603, -0.7810569193468041, -0.776593394990595, -0.7709047022678902, -0.7640137132565519, -0.7559516434726077, -0.746757741422708, -0.7364788679449634, -0.725168973858759, -0.7128884867131979, -0.699703619317255, -0.6856856141937611, -0.6709099390920006, -0.6554554492083717, -0.6394035318124631, -0.6228372485885305, -0.6058404902243619, -0.5884971566701764, -0.5708903751133574, -0.5531017661391322, -0.5352107668412038, -0.5172940178728116, -0.49942481964813634, -0.4816726611664792, -0.4641028232815416, -0.4467760567091523, -0.4297483336858279, -0.4130706709753018, -0.39678902088150036, -0.38094422606850675, -0.365572033309413, -0.35070316078046293, -0.3363634131747997, -0.3225738387183894, -0.3093509221148205, -0.29670680750925627, -0.28464954572809464, -0.2731833603029874, -0.2623089271089123 ] ], "zauto": true, "zmax": 2.748209605771394, "zmin": -2.748209605771394 }, { "autocolorscale": false, "autocontour": true, "colorbar": { "tickfont": { "size": 8 }, "ticksuffix": "", "x": 1, "y": 0.5 }, "colorscale": [ [ 0.0, "rgb(255,247,251)" ], [ 0.14285714285714285, "rgb(236,231,242)" ], [ 0.2857142857142857, "rgb(208,209,230)" ], [ 0.42857142857142855, "rgb(166,189,219)" ], [ 0.5714285714285714, "rgb(116,169,207)" ], [ 0.7142857142857143, "rgb(54,144,192)" ], [ 0.8571428571428571, "rgb(5,112,176)" ], [ 1.0, "rgb(3,78,123)" ] ], "contours": { "coloring": "heatmap" }, "hoverinfo": "x+y+z", "ncontours": 25, "type": "contour", "x": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "xaxis": "x2", "y": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "yaxis": "y2", "z": [ [ 0.2520032412332681, 0.2327428967527754, 0.21410594178813913, 0.19626905494878227, 0.17944248020225156, 0.16387860665873255, 0.14987651508709843, 0.13777578685586464, 0.1279302445207311, 0.12065407609949501, 0.11614563583845734, 0.11441808579508855, 0.11528034474730654, 0.1183891437471425, 0.12334538350268325, 0.12978425790237683, 0.13742648752270337, 0.14608830137264764, 0.15566426318929225, 0.16609870063263807, 0.17735709552615814, 0.1894038579887891, 0.20218899943292482, 0.21564345888974149, 0.22968115966736943, 0.24420517810096679, 0.2591154777083072, 0.27431620290030656, 0.2897212531449251, 0.30525756560842615, 0.32086610424943746, 0.33650093861574654, 0.3521269962762322, 0.36771711796769807, 0.3832489776510582, 0.3987022973983513, 0.41405663095315764, 0.42928984149939386, 0.44437727839779784, 0.4592915730965826, 0.47400292612281475, 0.4884797394785717, 0.5026894537585922, 0.5165994684286193, 0.5301780496631809, 0.5433951574691078, 0.5562231489571455, 0.5686373356560758, 0.5806163890135837, 0.5921425998304898 ], [ 0.24841163283808393, 0.22917370782443527, 0.21057739386826832, 0.19279424289939948, 0.1760279098963453, 0.16052332612092374, 0.1465722081967516, 0.1345081601768892, 0.12468180277228813, 0.11740780547329113, 0.11288835972119309, 0.11114215618827877, 0.11198357103901949, 0.1150743023276579, 0.12002042086872744, 0.12646286821479213, 0.13412804065187064, 0.1428365490819864, 0.15248499776266675, 0.16301697164975296, 0.17439464888397566, 0.18657728652342337, 0.19950882534617537, 0.21311411190125013, 0.2273016413609245, 0.2419701351645343, 0.25701642570626365, 0.2723427086823238, 0.28786196106554673, 0.3035010174706385, 0.31920134697167984, 0.3349179383490264, 0.35061688842547645, 0.36627232496260625, 0.3818632246185718, 0.3973705526455059, 0.412774994567174, 0.42805540181014406, 0.4431879525863827, 0.45814594486969507, 0.47290009015071527, 0.48741915931424684, 0.5016708373326358, 0.5156226630392032, 0.529242956695769, 0.5425016658766262, 0.5553710857574495, 0.5678264312840727, 0.5798462552164735, 0.5914127178359863 ], [ 0.2460657827816145, 0.22691689431714288, 0.2084283660888861, 0.19076552893304324, 0.17412360913947744, 0.15873720398877442, 0.14488652345579273, 0.13289386287147661, 0.12310095542126324, 0.11581895831433947, 0.11125456577602799, 0.10943936713710042, 0.1102059787742452, 0.1132346166816557, 0.1181459620269321, 0.12458982296097304, 0.1322957178840177, 0.1410824724913358, 0.15084113905667793, 0.16150726956096076, 0.1730338661225611, 0.18537110682660296, 0.19845492491225356, 0.21220383140473223, 0.22652187562903173, 0.24130513314977045, 0.25644930955332557, 0.27185663391652864, 0.28744092405229044, 0.30313036410688543, 0.3188680534603799, 0.3346107314145316, 0.3503262588790947, 0.3659904728571256, 0.3815839607969385, 0.39708917199933574, 0.4124881306755644, 0.4277608698398709, 0.4428845862150057, 0.457833432560294, 0.4725788157348126, 0.48709005124387783, 0.5013352301051487, 0.5152821732734811, 0.52889937528144, 0.5421568666478294, 0.5550269503383448, 0.5674847891490494, 0.5795088376033366, 0.5910811239220348 ], [ 0.24493133946225373, 0.22592330966483962, 0.20759187222801617, 0.1900948642724565, 0.1736172518564028, 0.1583807604263409, 0.14465083292057906, 0.1327348022797688, 0.12296245071133799, 0.1156407744483492, 0.11098489961507432, 0.10904869532798565, 0.10969572839642, 0.11263620453578352, 0.11751161322628768, 0.12398036102888443, 0.13176973915060078, 0.14068875122630475, 0.15061437890469737, 0.16146669761264817, 0.1731840275521359, 0.18570417089410457, 0.19895379947099673, 0.2128454486778702, 0.22728016627055828, 0.24215340579234906, 0.25736194229263293, 0.2728101239192441, 0.2884144200757939, 0.3041058321847601, 0.3198302150482173, 0.33554688323811926, 0.35122604835763843, 0.366845671185985, 0.3823882519221822, 0.39783796071292216, 0.4131783656812569, 0.4283908756965053, 0.44345389926499984, 0.45834263841994694, 0.4730293883975958, 0.48748419566540574, 0.5016757310952611, 0.5155722537000245, 0.5291425662084255, 0.5423568913298249, 0.5551876231791095, 0.5676099299518039, 0.5796022007784113, 0.5911463418120713 ], [ 0.24495943670446574, 0.22612865377761143, 0.20798546558748657, 0.1906789995806398, 0.17438247246162922, 0.15930297590341141, 0.14568931059168344, 0.13383231898119374, 0.12404954277622846, 0.11664603690780972, 0.11185121307451944, 0.10975059140319653, 0.11024931484919694, 0.11309574593284186, 0.11795501024708323, 0.12449121506789268, 0.13242251656283888, 0.14153955675062463, 0.15169705742686304, 0.16279301165206891, 0.1747465689728934, 0.18748079567413276, 0.20091255369718497, 0.21494919157998388, 0.22949038345417128, 0.24443299160978169, 0.2596769606004382, 0.27513070409153495, 0.29071501178263265, 0.30636504691379757, 0.3220304483558756, 0.3376738604646971, 0.3532683836596206, 0.36879448481276456, 0.38423685803531893, 0.3995816181654589, 0.41481407507421547, 0.4299172046395009, 0.4448708209181967, 0.45965137344184415, 0.47423224552313215, 0.48858441025112326, 0.502677303701061, 0.5164797921720959, 0.5299611350564182, 0.5430918717987797, 0.5558445866261047, 0.5681945262019169, 0.5801200622266304, 0.591603003256367 ], [ 0.2460919604804376, 0.22746073836505507, 0.20952109923702547, 0.19241264377547299, 0.17629610359808603, 0.16136338359844482, 0.1478464904626793, 0.13602040557535386, 0.12619235906576465, 0.11866919481877347, 0.11370031388984979, 0.11140998676070074, 0.11175180017453024, 0.11451660428858232, 0.11939325093408008, 0.12604742474390818, 0.13418136891338242, 0.14355991878156518, 0.15400895836377673, 0.16539950090058975, 0.17762851485853198, 0.1906030278892895, 0.2042301292588016, 0.21841294097939554, 0.23305126352935582, 0.24804509647011463, 0.2632992831187112, 0.27872788348743427, 0.2942573577036275, 0.3098281205911136, 0.32539443288381714, 0.34092288742543786, 0.3563899185955909, 0.37177881957258047, 0.38707671845046604, 0.4022718713396514, 0.4173515095618276, 0.4323003554015232, 0.4470998154049652, 0.46172778221631283, 0.47615892815091876, 0.49036535333475834, 0.5043174523188645, 0.5179848785575146, 0.5313375094089426, 0.5443463400722172, 0.5569842594142969, 0.5692266817861277, 0.581052025717147, 0.5924420427150461 ], [ 0.24826679105832294, 0.22984636145403947, 0.21211397442221608, 0.19519960660797006, 0.17925184503222852, 0.1644483116701326, 0.15100582790671618, 0.139185936051054, 0.12928875099989032, 0.12162656728327577, 0.11647235932170669, 0.11399212037250335, 0.11418982039191788, 0.11689917971598639, 0.12183107082567143, 0.12864903103692985, 0.13703453067720275, 0.14672178218047438, 0.1575039373357505, 0.16922242864741294, 0.18175070614996072, 0.1949794451637376, 0.20880637492743262, 0.2231312588055012, 0.23785513133204653, 0.25288231769730457, 0.26812371679833114, 0.2835000858479042, 0.29894445688294036, 0.3144032308953581, 0.3298358616235692, 0.3452133171152405, 0.36051567671265883, 0.37572928783320886, 0.39084388902148437, 0.4058500295677927, 0.42073700968297195, 0.43549145366281844, 0.450096530031711, 0.46453175802835206, 0.47877329260845003, 0.4927945586163633, 0.5065671038625758, 0.5200615541676319, 0.533248574806938, 0.5460997671057642, 0.5585884525252163, 0.5706903172066655, 0.5823839065433782, 0.5936509717179206 ], [ 0.2514223070899962, 0.23321679800489434, 0.21568903789986033, 0.1989601889223637, 0.18316822475787134, 0.16847881145574226, 0.15509667279295514, 0.14327350105510672, 0.1333057580405684, 0.12551350880222145, 0.12019346863451598, 0.11755117229296026, 0.11763747418176133, 0.12032559471186563, 0.1253458651627995, 0.13235777709877616, 0.1410205469385286, 0.1510366928650453, 0.16216605248952284, 0.17422037562566703, 0.18704985657607448, 0.2005292940700661, 0.21454762148063858, 0.22900182159983318, 0.2437947219423244, 0.25883550152615636, 0.27404160601313043, 0.2893409357486355, 0.30467348531129046, 0.3199919689109494, 0.33526129384464143, 0.3504570016668938, 0.36556296370763025, 0.3805686929418364, 0.3954666312076014, 0.4102497113576457, 0.4249094030238751, 0.4394343511919709, 0.45380962635136324, 0.46801653451622655, 0.48203288931358657, 0.4958336258460603, 0.5093916330725129, 0.5226786924080007, 0.5356664294421917, 0.5483272082672759, 0.5606349203052249, 0.5725656394488505, 0.5840981316216669, 0.5952142191977615 ], [ 0.2555006696505144, 0.2375113313543019, 0.22018449969484527, 0.20363423511488654, 0.18799048902227872, 0.17341041120015602, 0.1600906660098447, 0.14827711508434807, 0.13826545251648736, 0.1303837523406654, 0.12494882004922904, 0.12219843487846078, 0.12222178635718405, 0.12492508070117499, 0.13005545864642717, 0.1372691173303673, 0.1462055913859789, 0.15653873956871192, 0.167997852010967, 0.18036721305471298, 0.19347536736226437, 0.20718227190818853, 0.22136862368494134, 0.23592883459155198, 0.2507675141894185, 0.2657985740472838, 0.2809458534038724, 0.2961442554525155, 0.31134062747988417, 0.32649391774784114, 0.34157443117908426, 0.3565622422263441, 0.3714449844933083, 0.3862153178113074, 0.4008683833605201, 0.41539951380236967, 0.42980238976630836, 0.44406774708225766, 0.4581826574490648, 0.47213033963994694, 0.4858904138976789, 0.4994394890501402, 0.5127519669702498, 0.525800957529476, 0.5385592140428699, 0.5510000198574634, 0.563097977733827, 0.5748296727200541, 0.5861741950721774, 0.5971135219996624 ], [ 0.26044969173972604, 0.24267871203986854, 0.22555244744363187, 0.2091802845524606, 0.19368746381056143, 0.17922665906714574, 0.1659907963162128, 0.15422362176203042, 0.14422176126295724, 0.13631925425516256, 0.1308459926721033, 0.1280607233841055, 0.12807878700336311, 0.13083083887337849, 0.1360785927938856, 0.14347828818341635, 0.15265599839261812, 0.16326351808343287, 0.17500515735660144, 0.1876418136449487, 0.20098301412615582, 0.21487530125398802, 0.22919165331906916, 0.24382380729224934, 0.25867767985031964, 0.27367126721005397, 0.2887341208255908, 0.30380751678532836, 0.31884461717038476, 0.33381016821028137, 0.34867953022095965, 0.36343704698276685, 0.3780739141458805, 0.3925857897389282, 0.4069704099160374, 0.4212254434930471, 0.435346757676461, 0.44932719290410994, 0.4631558721454701, 0.4768180098899543, 0.49029514382563677, 0.503565688882544, 0.5166057067048596, 0.5293897897723966, 0.5418919738260454, 0.5540866108283445, 0.565949154122874, 0.5774568254762201, 0.5885891489807868, 0.5993283488231805 ], [ 0.26622335821965304, 0.24867680387568153, 0.23175713950731072, 0.21557190019647035, 0.2002451819380158, 0.1859292206536188, 0.17281712183402625, 0.1611532918937338, 0.15123545369343924, 0.14339954511172076, 0.13797932641152238, 0.1352412264172697, 0.1353131170155047, 0.1381410292692685, 0.14349961823705082, 0.15105017815717262, 0.16041381562771234, 0.17122912250897196, 0.18318283390199058, 0.19601780321065532, 0.20952790698599172, 0.22354802376216426, 0.2379439650120249, 0.252604533175964, 0.26743620597798046, 0.2823600842827018, 0.2973103978399724, 0.31223382224066387, 0.32708898224473437, 0.34184571256401564, 0.35648385822708945, 0.3709915836390536, 0.3853632989719986, 0.3995973949539006, 0.41369400434398307, 0.4276529906006286, 0.44147231623684446, 0.45514688080613264, 0.4686678550767599, 0.4820224836997766, 0.495194289184515, 0.5081635869265709, 0.5209082130512936, 0.5334043707956833, 0.5456275132058385, 0.5575531963633574, 0.5691578551063315, 0.5804194700719889, 0.5913181095048948, 0.6018363410106559 ], [ 0.2727812408625523, 0.2554708962987847, 0.2387717975398821, 0.22279246725883778, 0.20765918907547032, 0.19352722332155822, 0.18059279023647012, 0.169102357662876, 0.15935332302156982, 0.1516780503954696, 0.1464042343571933, 0.14379294283714375, 0.14397186141018137, 0.14689422545090025, 0.15234653692390018, 0.16000050338574942, 0.1694812189401844, 0.1804235823195407, 0.19250487314315717, 0.20545588012567575, 0.21905867755671457, 0.2331385438979769, 0.24755483972800182, 0.26219321663258593, 0.27695991808965925, 0.2917780539367103, 0.3065853400619452, 0.32133269872262726, 0.3359831824199828, 0.3505108319339806, 0.3648992515245396, 0.3791398443291644, 0.39322977561026884, 0.40716980983442663, 0.42096219896924586, 0.4346087909483929, 0.4481094906788979, 0.46146115442096347, 0.47465694389889673, 0.4876861182876578, 0.5005342058624286, 0.5131834747386881, 0.5256136131553334, 0.5378025317698634, 0.5497272102280196, 0.5613645245760026, 0.5726920080924767, 0.5836885137217994, 0.5943347601238379, 0.6046137547086453 ], [ 0.2800871404475931, 0.26303122757987984, 0.24657472253012125, 0.23082963350451366, 0.21592710988222688, 0.20202788674737354, 0.18933288678266738, 0.178090515880734, 0.16859509084818347, 0.16116936585344935, 0.15612579837794321, 0.15370918552236723, 0.15403697037325573, 0.15706329308583006, 0.16258575149323876, 0.17029099234599754, 0.17981592114575687, 0.1908004514015014, 0.20292020834605848, 0.2158999402520552, 0.22951400081349702, 0.24358042215786668, 0.2579531000188659, 0.2725145325444183, 0.2871700783354524, 0.3018438373927084, 0.31647583810630214, 0.3310200704435684, 0.34544292380661956, 0.3597216905341047, 0.3738429310724132, 0.38780062953832506, 0.4015941764389269, 0.41522628706371645, 0.428700996943028, 0.44202187422160844, 0.45519056176167283, 0.4682057200483096, 0.4810623958530905, 0.49375179937904856, 0.5062614396434324, 0.5185755465923584, 0.5306756988595955, 0.5425415764555002, 0.5541517653889122, 0.5654845534733732, 0.5765186708230136, 0.5872339428258232, 0.59761183634546, 0.6076358907839766 ], [ 0.2881072986631698, 0.2713302174083804, 0.25514541124751805, 0.23967025363050848, 0.22504250326705885, 0.21142957867855092, 0.1990372517865504, 0.18811437220920604, 0.17894859116461556, 0.1718473278497831, 0.16710051036012236, 0.1649289767887282, 0.16543332192782667, 0.16856449298227008, 0.1741305928307758, 0.18183625164463246, 0.19133595069885362, 0.20228157735912186, 0.2143538222342798, 0.22727695946932142, 0.24082167307573102, 0.2548013057881873, 0.26906557274711057, 0.2834941239677964, 0.29799105388533675, 0.31248064805694475, 0.32690422636528477, 0.3412177638250069, 0.3553899461346198, 0.3694003787564707, 0.3832377683340262, 0.3968980012359485, 0.4103821346679063, 0.42369437915842395, 0.43684018329414837, 0.44982453463670447, 0.46265057133176085, 0.47531856560990093, 0.4878253018395822, 0.500163835277959, 0.5123235881891635, 0.5242907201352957, 0.5360486994146553, 0.5475790016714446, 0.558861867569189, 0.5698770617359278, 0.5806045877227837, 0.5910253266484694, 0.6011215792289761, 0.6108775012219614 ], [ 0.29680848478974053, 0.28033980311567847, 0.26446114338879806, 0.24929634490023744, 0.2349904733753205, 0.2217175906167036, 0.20968718714011517, 0.19914608086504237, 0.1903714543035369, 0.18365068666036213, 0.1792463284343968, 0.1773510032548802, 0.17804518747555956, 0.1812745464453513, 0.18685715717724052, 0.19451711478129766, 0.20392997189886133, 0.21476444057654734, 0.22671150088075126, 0.23949969695034898, 0.25289980333581236, 0.26672308341337403, 0.2808165943899897, 0.2950577561556647, 0.3093493374176189, 0.3236152888586217, 0.33779743381443683, 0.35185282736084056, 0.36575153735298443, 0.3794746274564572, 0.39301219064938614, 0.4063613625155517, 0.4195243169514329, 0.43250630079433844, 0.44531379336015153, 0.4579528825420041, 0.47042793547745665, 0.48274061548469266, 0.4948892650906486, 0.5068686437488952, 0.5186699828141018, 0.5302813020713685, 0.5416879223459656, 0.5528731067554313, 0.5638187674350992, 0.5745061831129097, 0.5849166837966999, 0.5950322704207802, 0.6048361483461019, 0.6143131633216169 ], [ 0.30615620148196926, 0.29002915488933395, 0.2744943105529831, 0.2596822573163744, 0.24574506868105908, 0.23286233978221813, 0.22124521467834107, 0.21113552203994154, 0.20279651314673397, 0.1964922540969561, 0.19245553702082016, 0.1908495044342208, 0.19173391115493152, 0.19504859531926252, 0.2006211159476949, 0.2081952435844751, 0.21746912805459828, 0.22813115903413717, 0.23988624761640087, 0.2524709354162308, 0.2656593457621814, 0.2792631509394343, 0.2931283913748329, 0.3071311208904039, 0.3211730152047014, 0.3351774617887028, 0.3490862606854206, 0.3628568594124528, 0.37645996443289953, 0.38987736988382843, 0.40309988551154563, 0.41612530390648134, 0.4289564039153906, 0.44159903109925447, 0.4540603217636864, 0.4663471437289942, 0.4784648174985958, 0.4904161607983846, 0.502200873267201, 0.5138152516008023, 0.5252522026979457, 0.5365015057812694, 0.547550264993032, 0.5583834912727605, 0.5689847552475731, 0.5793368598242585, 0.5894224905184452, 0.5992248118267955, 0.6087279879984243, 0.6179176156079992 ], [ 0.31611318735081134, 0.30036293665556324, 0.28521059966300316, 0.27079305015964006, 0.2572682438047707, 0.24481942515552446, 0.23365680960376087, 0.22401427359896378, 0.2161384054562114, 0.21026821172420931, 0.2066064514536767, 0.20528774289009652, 0.20635233653370472, 0.20973472515197672, 0.21527151447234044, 0.2227255145670514, 0.23181755317267136, 0.242256930758748, 0.25376470017614594, 0.2660880816212979, 0.2790071770580491, 0.29233628167058223, 0.3059220415577711, 0.3196401501069646, 0.3333916482067655, 0.34709938636145116, 0.3607048628684384, 0.3741654517609334, 0.38745194040383885, 0.40054627389354897, 0.41343942252804966, 0.42612932715868707, 0.43861891898560273, 0.4509142446570938, 0.4630227486598724, 0.4749517713777726, 0.486707314437158, 0.4982931086283822, 0.5097099982187623, 0.5209556331401494, 0.5320244407987591, 0.5429078343793963, 0.5535946055174509, 0.5640714460347099, 0.5743235452557229, 0.5843352149875122, 0.5940905021772882, 0.6035737582800978, 0.6127701434263698, 0.6216660518260864 ], [ 0.3266383296703113, 0.3113001894779108, 0.296568031241614, 0.28258394426263206, 0.2695100537855263, 0.2575309315146398, 0.24685316059827375, 0.23770006076080766, 0.23029974012929688, 0.22486577472060518, 0.2215721781975145, 0.220527419661493, 0.22175450974135558, 0.22518366258087116, 0.2306601723391814, 0.23796479732484502, 0.24684021269213147, 0.2570167039557003, 0.26823252477402015, 0.28024730464172243, 0.29284909290859706, 0.30585664848563443, 0.3191187091155348, 0.33251164613115275, 0.34593646196184236, 0.35931568854093887, 0.37259045266164337, 0.3857177896812869, 0.398668188903677, 0.411423317393558, 0.4239738711517361, 0.43631752499121734, 0.44845698111929266, 0.4603981417336981, 0.4721484472967988, 0.4837154274589048, 0.495105506491274, 0.5063230920233541, 0.5173699582224579, 0.5282449157533845, 0.5389437438234352, 0.5494593463795754, 0.5597820861096796, 0.5699002464386955, 0.5798005726493736, 0.5894688476238508, 0.5988904643591293, 0.6080509652524926, 0.6169365262442501, 0.6255343715377358 ], [ 0.33768604151402554, 0.32279384306931846, 0.308516778677703, 0.29500066125427676, 0.28240974291927545, 0.2709274736684644, 0.2607542913499313, 0.2521009293892626, 0.24517611759651955, 0.240168717139481, 0.23722628697164438, 0.23643425936316434, 0.23780112600306774, 0.24125414696870834, 0.2466470279908525, 0.25377721442946555, 0.2624079178901242, 0.2722897473864216, 0.2831783762090998, 0.29484679097762123, 0.30709234020073495, 0.3197396768338722, 0.33264090140184427, 0.34567404445988503, 0.35874072089632314, 0.3717634856559648, 0.3846831812192574, 0.39745640436590507, 0.4100531243793405, 0.42245444064626503, 0.43465045775469663, 0.4466382659896418, 0.4584200328985005, 0.4700012289532109, 0.4813890220624265, 0.4925908794299214, 0.5036134109776172, 0.5144614778480915, 0.5251375748647147, 0.5356414799720263, 0.5459701490110038, 0.5561178224679123, 0.5660763030599887, 0.5758353594325427, 0.5853832114927171, 0.5947070562556708, 0.6037935986042714, 0.6126295581245615, 0.6212021303464685, 0.6294993876392418 ], [ 0.34920610563888904, 0.3347908059936003, 0.3209996477531159, 0.30798044154048365, 0.295897427764454, 0.28493060754184807, 0.2752721543396504, 0.26711884031307775, 0.2606599228619289, 0.25606102258328495, 0.25344606080523036, 0.252880783481384, 0.2543619440645845, 0.25781521323128614, 0.2631025000104469, 0.27003667951001353, 0.2784000058828627, 0.2879623448661889, 0.29849644995853175, 0.30978901896049815, 0.32164752597810103, 0.33390355197195953, 0.3464135809978433, 0.35905816671068685, 0.3717401749738728, 0.3843825860055985, 0.3969261496444222, 0.4093270488884007, 0.4215546389028429, 0.4335892817965003, 0.44542027987011146, 0.45704391051152427, 0.4684615750230954, 0.47967808431411013, 0.4907001119031225, 0.5015348466632061, 0.5121888737400963, 0.5226673030277883, 0.5329731522939088, 0.5431069786048004, 0.5530667390588402, 0.5628478514991337, 0.5724434187529136, 0.5818445763443763, 0.5910409233542442, 0.600020998601894, 0.608772768861253, 0.6172841016012062, 0.6255432010396532, 0.6335389925241989 ], [ 0.3611439444959123, 0.3472325451895899, 0.33395306915180417, 0.32145353485356937, 0.3098961239831868, 0.2994553525625385, 0.2903135045665178, 0.2826526482110492, 0.2766431053248617, 0.27242918721234677, 0.27011416450351916, 0.2697473612707426, 0.27131639697448157, 0.2747466262054812, 0.2799079982224128, 0.2866276505569033, 0.2947053823956144, 0.3039290732691458, 0.31408788299685014, 0.32498215685555143, 0.33642990580504245, 0.3482703239311951, 0.3603650488681153, 0.37259787332972144, 0.3848734948673234, 0.3971157327792278, 0.40926549453491673, 0.4212786598709403, 0.4331239728121398, 0.44478098583466863, 0.4562380784985286, 0.4674905668915606, 0.4785389227688647, 0.4893871265042541, 0.5000411818500118, 0.5105078207607913, 0.520793422467695, 0.5309031630778712, 0.5408404014790243, 0.5506062958369835, 0.5601996340431756, 0.5696168523527368, 0.5788522099633647, 0.5878980837530972, 0.5967453467329183, 0.6053837955741317, 0.6138025962506664, 0.6219907217368001, 0.6299373611948986, 0.6376322856434459 ], [ 0.37344124409022, 0.36005604063773566, 0.3473084468963877, 0.3353449722568209, 0.32432391553723583, 0.31441265560022774, 0.3057824738211204, 0.29860054005270303, 0.29301922440869393, 0.2891636740980973, 0.28711942691468645, 0.28692237820885624, 0.2885533207353204, 0.29193840500622104, 0.2969554766167124, 0.3034448869955275, 0.311222571417313, 0.3200931464996028, 0.32986133063136264, 0.3403407800289166, 0.35136014580246905, 0.36276663421640293, 0.3744275788267156, 0.38623057288506346, 0.3980826435628847, 0.409908840709829, 0.42165050247159974, 0.4332633682128129, 0.4447156423423951, 0.45598606974343675, 0.4670620599157628, 0.4779378868456022, 0.488612989427625, 0.49909039831746665, 0.5093753159936095, 0.5194738755086967, 0.5293920990997957, 0.539135070682991, 0.5487063271295167, 0.5581074632938063, 0.567337936259406, 0.5763950462168649, 0.5852740654917455, 0.5939684838304026, 0.6024703371085498, 0.6107705878632145, 0.6188595289981428, 0.6267271861349759, 0.6343636988417489, 0.64175966589503 ], [ 0.38603684049766696, 0.3731949911405138, 0.3609937104155643, 0.3495764525823546, 0.339096109257543, 0.3297116849792696, 0.32158282012482103, 0.31486202847911254, 0.30968499333666627, 0.3061598798439065, 0.3043571994824661, 0.3043020540192435, 0.3059703751643871, 0.30929003110148023, 0.31414661617079276, 0.3203927630749844, 0.3278592587079731, 0.3363662245771414, 0.34573302147736884, 0.3557861161159235, 0.3663646871773082, 0.3773241303847107, 0.3885378245915572, 0.39989758006119985, 0.4113131598925796, 0.42271119358369696, 0.4340337205262454, 0.4452365288868923, 0.45628739939973006, 0.46716432509820033, 0.4778537545167923, 0.48834889350401806, 0.49864809539520366, 0.5087533672690877, 0.5186690185853536, 0.5284004758936733, 0.5379532826994085, 0.5473322969493771, 0.5565410905174942, 0.5655815463940237, 0.5744536409601606, 0.5831553915945693, 0.5916829445078275, 0.6000307744429362, 0.6081919667423653, 0.6161585530601383, 0.6239218743283923, 0.6314729480285926, 0.638802820913312, 0.645902892661763 ], [ 0.3988677715594716, 0.38658115079068517, 0.3749349344560811, 0.3640682065648597, 0.354127258267124, 0.3452618833816093, 0.33761984939946654, 0.3313395781837004, 0.32654147724785426, 0.32331883107028947, 0.321729548655396, 0.32179019208826926, 0.32347345704511654, 0.32670965771962895, 0.3313919691639241, 0.3373844717075185, 0.3445316477398539, 0.352667971782621, 0.36162652568151393, 0.3712459981430914, 0.3813758393766509, 0.3918796475810586, 0.4026370409606069, 0.4135443363769338, 0.42451434963072415, 0.43547558737337055, 0.44637104241516556, 0.45715674835450537, 0.4678002036209841, 0.4782787414391949, 0.4885778999705642, 0.4986898335332901, 0.5086117984114934, 0.5183447425953774, 0.5278920256393349, 0.5372582911915896, 0.5464485098719322, 0.5554672039246217, 0.5643178577977493, 0.5730025111276713, 0.5815215232625872, 0.5898734921083801, 0.5980553052208145, 0.6060622979790458, 0.6138884924084244, 0.6215268906340287, 0.6289697987582795, 0.6362091598050397, 0.6432368778754763, 0.650045119457913 ], [ 0.4118704008259838, 0.40014568972639775, 0.38905791550935437, 0.3787407352304756, 0.36933297434710277, 0.36097473826724896, 0.35380201595543326, 0.3479399193598913, 0.3434950362225658, 0.3405477211911443, 0.3391453982453221, 0.33929797663543104, 0.34097622621298385, 0.3441134540891735, 0.3486102176192889, 0.35434128968629547, 0.3611638087408152, 0.36892554118195997, 0.377472397265752, 0.3866546604687628, 0.3963317061470344, 0.4063752307781488, 0.4166711656687875, 0.42712051810411017, 0.43763939215497727, 0.44815841577252974, 0.4586217603074443, 0.4689858963253046, 0.47921819271143884, 0.4892954374014252, 0.4992023377352817, 0.5089300450269897, 0.5184747394712906, 0.5278363059494947, 0.5370171269336215, 0.5460210143047106, 0.5548522968196044, 0.5635150739992495, 0.5720126405754428, 0.5803470787722769, 0.5885190091639712, 0.5965274851683863, 0.6043700118152283, 0.6120426665126243, 0.6195402981895141, 0.6268567813172476, 0.6339853026932678, 0.6409186612092432, 0.6476495638038243, 0.654170904105573 ], [ 0.4249815332388607, 0.4138204933057051, 0.4032896215617168, 0.39351635204289764, 0.3846314814725848, 0.37676525175751974, 0.3700422142616361, 0.36457508433982866, 0.36045806035685646, 0.3577603322719351, 0.35652065585352205, 0.356743841005175, 0.35839976452454275, 0.36142511184338544, 0.3657275899779585, 0.3711919693703404, 0.37768710467230654, 0.3850730807453898, 0.39320778759494873, 0.4019524673920935, 0.41117602080344656, 0.4207580572488062, 0.43059080426688484, 0.4405800581431191, 0.45064537657275977, 0.4607197023053832, 0.47074857975082646, 0.4806890952375337, 0.49050864245151704, 0.5001835905836498, 0.5096979146036658, 0.5190418342260956, 0.528210499248706, 0.5372027525801127, 0.5460199971341022, 0.5546651878860677, 0.5631419651870518, 0.571453939717928, 0.5796041333529495, 0.587594574007709, 0.5954260366873145, 0.6030979178387321, 0.6106082260799793, 0.6179536696358258, 0.6251298194215734, 0.6321313266180776, 0.6389521746027994, 0.6455859470052786, 0.6520260961718249, 0.6582661991865375 ], [ 0.43813945896112483, 0.4275393369610146, 0.41755945994363103, 0.4083204880301313, 0.39994488951669094, 0.39255311028619266, 0.38625877980666007, 0.3811631938850279, 0.3773495207242719, 0.3748773535729199, 0.373778318314209, 0.37405338743117883, 0.3756723407764558, 0.3785754891944931, 0.38267742332199234, 0.3878722617696336, 0.394039717973378, 0.4010513007141991, 0.40877607953137357, 0.4170856271500541, 0.4258579406440548, 0.4349803022402654, 0.4443511518238999, 0.45388110600462206, 0.46349328255501154, 0.4731230868049252, 0.4827175998100864, 0.49223468558930134, 0.5016419120810582, 0.510915360706923, 0.5200383836381769, 0.5290003559297756, 0.5377954608530328, 0.546421540032403, 0.554879034420057, 0.5631700369764907, 0.5712974726965099, 0.5792644161422535, 0.5870735509746281, 0.5947267703374942, 0.6022249116581131, 0.6095676148042923, 0.6167532888517131, 0.6237791701384698, 0.630641452881661, 0.6373354733594283, 0.6438559293891487, 0.6501971183653528, 0.6563531792346711, 0.6623183262513096 ], [ 0.45128488011346946, 0.4412388965085707, 0.4318003330188833, 0.4230827437474524, 0.4152001879732813, 0.4082635681814939, 0.40237622189250377, 0.3976290161528881, 0.3940953505338689, 0.39182659591419916, 0.390848538004616, 0.39115932532511305, 0.3927292398304798, 0.39550235009783113, 0.39939983496519915, 0.4043245472559297, 0.4101662695459585, 0.4168071085593956, 0.42412656052640807, 0.4320059170871341, 0.440331829269455, 0.4489989757332712, 0.45791187577424763, 0.4669859451994418, 0.4761479197448297, 0.4853357750267231, 0.4944982628666137, 0.5035941682336396, 0.5125913738394852, 0.5214658034166888, 0.5302003011875585, 0.538783494221452, 0.5472086759109926, 0.5554727420325014, 0.5635752051173648, 0.5715173075893311, 0.5793012489474506, 0.5869295370340475, 0.5944044681459366, 0.6017277355854109, 0.6089001614408692, 0.6159215421854086, 0.6227905952998026, 0.6295049917084594, 0.636061457420993, 0.6424559273690352, 0.6486837349145221, 0.6547398217248748, 0.6606189544748514, 0.6663159369493112 ], [ 0.4643616926031185, 0.45485957342750144, 0.4459494718189271, 0.4377376907179232, 0.4303299745250296, 0.42382806897108044, 0.41832571530029966, 0.4139043212936203, 0.4106286689387975, 0.40854309968386165, 0.4076686323302111, 0.40800139707740307, 0.4095126160382018, 0.4121501552418592, 0.4158414627888898, 0.42049754074972945, 0.4260175075093867, 0.43229330078572364, 0.43921413465451115, 0.44667042835324816, 0.4545570404658965, 0.46277574626402734, 0.47123697575646073, 0.47986088205225214, 0.4885778369799633, 0.4973284595474518, 0.5060632792810965, 0.5147421263150304, 0.5233333273724969, 0.5318127740556591, 0.54016291847104, 0.5483717416195888, 0.556431732079483, 0.5643389059333067, 0.5720918931856306, 0.5796911106791581, 0.58713803646719, 0.594434595606452, 0.601582662405741, 0.6085836794183012, 0.6154383890772649, 0.6221466700385619, 0.6287074671850026, 0.6351188019771243, 0.6413778484614661, 0.6474810597456302, 0.653424330040408, 0.6592031783242409, 0.6648129411479449, 0.6702489639017593 ], [ 0.477317610249147, 0.4683461304763367, 0.4599490529777097, 0.45222543808016824, 0.44527294297055686, 0.43918463404496905, 0.4340453804132792, 0.42992805569119086, 0.4268898614129137, 0.42496913777179873, 0.4241830247631357, 0.42452626851528963, 0.425971339916532, 0.42846986947077575, 0.43195523871838487, 0.4363460394026988, 0.4415500403067167, 0.44746829434218005, 0.4539990647155105, 0.4610413286078452, 0.4684977077131447, 0.4762767594123506, 0.4842946296765997, 0.49247611526338736, 0.5007552096808742, 0.509075218724525, 0.5173885319011616, 0.5256561300935094, 0.5338469007490158, 0.5419368219711476, 0.5499080674605282, 0.5577480758798801, 0.5654486210002844, 0.5730049127544634, 0.5804147537957881, 0.5876777710652501, 0.5947947370015353, 0.6017669902933829, 0.6085959614726095, 0.6152828042664761, 0.6218281296059023, 0.6282318356729146, 0.6344930245024272, 0.6406099935261145, 0.6465802891027421, 0.6524008085064397, 0.658067936977159, 0.6635777071709562, 0.6689259695510043, 0.6741085637918954 ], [ 0.4901046303141972, 0.48164814471856504, 0.47374661472455676, 0.4664919882973862, 0.45997416034046823, 0.4542780510071634, 0.4494803824179372, 0.44564636072111286, 0.4428265328146425, 0.4410541193007724, 0.44034311306171037, 0.44068737057262913, 0.44206081752185566, 0.4444187604759407, 0.44770016836213694, 0.45183068678132954, 0.4567260915668723, 0.4622958801164425, 0.4684467327003925, 0.475085636688084, 0.482122538095155, 0.48947245332381195, 0.49705703062449147, 0.5048055919006342, 0.5126557111841227, 0.520553398936099, 0.5284529646960459, 0.5363166278571062, 0.544113940233972, 0.5518210765821172, 0.559420041558863, 0.5668978344324614, 0.5742456063725867, 0.5814578393694909, 0.5885315705832666, 0.5954656810494886, 0.6022602630292815, 0.60891607582427, 0.6154340955860899, 0.621815160603263, 0.6280597098515203, 0.6341676093661038, 0.6401380583443992, 0.6459695648919762, 0.6516599800208058, 0.6572065778852701, 0.6626061702473767, 0.6678552437108346, 0.672950109244745, 0.6778870548111214 ], [ 0.5026793482440687, 0.49472029288613795, 0.48729529396000426, 0.48048940993929706, 0.4743851650077326, 0.46905989432808454, 0.4645828797752156, 0.4610124609769507, 0.45839335093804073, 0.45675440397301553, 0.45610706661889094, 0.45644468701990587, 0.4577427714763291, 0.45996017334887473, 0.46304109884731215, 0.46691773496402533, 0.4715132593535588, 0.4767449838411274, 0.4825274075659257, 0.48877500210433616, 0.49540460714863443, 0.5023373708421114, 0.5095002164361603, 0.5168268529830864, 0.5242583718011019, 0.5317434839128867, 0.5392384589597033, 0.5467068257650786, 0.5541188909728285, 0.5614511266920093, 0.5686854719749581, 0.575808586891961, 0.5828110922548051, 0.5896868227601992, 0.5964321164286993, 0.6030451586176242, 0.609525394511024, 0.6158730197989044, 0.622088555263963, 0.6281725072528148, 0.634125112604999, 0.6399461636416179, 0.6456349063628491, 0.6511900031324285, 0.6566095498671565, 0.6618911370931265, 0.6670319441350732, 0.672028856099362, 0.6768785941025841, 0.6815778502837578 ], [ 0.5150031351777512, 0.5075224886306632, 0.5005539094588062, 0.4941758567710433, 0.48846391720778504, 0.483488409491114, 0.4793118505743046, 0.4759864461116886, 0.4735517990736185, 0.4720330395143669, 0.4714395595246141, 0.47176448942615995, 0.4729849800991939, 0.4750632736173681, 0.47794846474170993, 0.4815787929852664, 0.48588426810031354, 0.4907894237623486, 0.49621601160208434, 0.5020854830674327, 0.5083211508650969, 0.5148499667460948, 0.5216038922325499, 0.5285208702868265, 0.5355454280003399, 0.542628953868793, 0.5497296997446142, 0.556812559000724, 0.56384867055002, 0.5708148945460478, 0.5776932008478793, 0.5844700063049789, 0.591135491955909, 0.5976829264871689, 0.6041080177959903, 0.6104083102201561, 0.6165826409087287, 0.6226306648989647, 0.6285524547569358, 0.634348177182157, 0.6400178458398412, 0.6455611469450175, 0.6509773318505445, 0.6562651691367501, 0.6614229474882832, 0.6664485199677945, 0.67133938012111, 0.6760927606149278, 0.6807057457380793, 0.6851753900034453 ], [ 0.5270421951044189, 0.5200198933101099, 0.5134869168928049, 0.5075154615928703, 0.5021746314578758, 0.49752828932757476, 0.49363282301560824, 0.4905349688874318, 0.4882698558681906, 0.4868594360338387, 0.48631144883297, 0.4866190248098442, 0.4877609764363016, 0.48970275736500535, 0.4923980080966005, 0.4957905558904651, 0.4998167066240298, 0.504407658477643, 0.5094918795593758, 0.5149973184881071, 0.520853351806931, 0.5269924085739603, 0.5333512457547905, 0.539871875233525, 0.546502163276202, 0.5531961363696813, 0.5599140345671669, 0.5666221561691599, 0.5732925371153474, 0.5799025060142461, 0.5864341521695626, 0.5928737398730974, 0.5992110979887514, 0.605439009643969, 0.611552622757502, 0.617548898191093, 0.6234261085242829, 0.6291833968276033, 0.6348204013785402, 0.640336949073827, 0.6457328174008952, 0.6510075623041719, 0.6561604071756878, 0.6611901865555019, 0.6660953369656875, 0.670873926616868, 0.6755237154894859, 0.6800422374529111, 0.6844268965785574, 0.6886750705534472 ], [ 0.5387675199559999, 0.5321828222248276, 0.5260642604105924, 0.520478131223074, 0.5154875175520647, 0.511150368148591, 0.5075175334517967, 0.5046308799566669, 0.5025216197769371, 0.5012089913424721, 0.5006994089642871, 0.5009861639672277, 0.5020497124094208, 0.5038585311047503, 0.5063704730520249, 0.5095345130761022, 0.5132927497036253, 0.5175825218656575, 0.5223385074723977, 0.5274946913546311, 0.5329861175041307, 0.5387503700814034, 0.5447287553955653, 0.550867180481967, 0.5571167418541136, 0.5634340504131956, 0.569781325987498, 0.5761262985145265, 0.5824419535090518, 0.5887061581157607, 0.5949012014743743, 0.6010132798718579, 0.6070319535810176, 0.612949598604464, 0.618760872876774, 0.6244622128866413, 0.6300513732002601, 0.6355270180270672, 0.6408883708061638, 0.646134924852443, 0.6512662154391257, 0.6562816513621468, 0.6611804020793791, 0.6659613349783704, 0.6706229962164116, 0.6751636278920311, 0.6795812140230105, 0.683873547880443, 0.6880383136055889, 0.6920731756521322 ], [ 0.5501547609533702, 0.5439865672463778, 0.538261143565656, 0.5330392662747022, 0.5283784535841092, 0.5243312559720686, 0.5209435324191696, 0.5182528175396571, 0.5162868938867535, 0.515062680688339, 0.5145855335006472, 0.5148490196399499, 0.5158351952131075, 0.5175153665685815, 0.5198512783354131, 0.5227966376568104, 0.5262988637241482, 0.530300944780308, 0.5347432904436217, 0.5395654827099425, 0.5447078505817037, 0.5501128171733594, 0.5557259912111535, 0.5614969949224199, 0.5673800362603441, 0.5733342449598904, 0.5793237993954801, 0.5853178752713022, 0.5912904485977439, 0.5972199849358056, 0.6030890451542442, 0.6088838354238352, 0.6145937262122189, 0.6202107618666001, 0.6257291791206874, 0.6311449496226013, 0.636455358408156, 0.6416586271840587, 0.646753588381746, 0.6517394132417879, 0.6566153947400684, 0.6613807840177239, 0.6660346771678205, 0.6705759477919645, 0.6750032196831105, 0.6793148733131535, 0.6835090794849122, 0.6875838535120848, 0.6915371235703498, 0.6953668073629938 ], [ 0.5611840336191118, 0.555411155053133, 0.5500577399113689, 0.545179426348641, 0.5408286111407976, 0.5370529318583686, 0.5338937561154404, 0.5313847677091329, 0.5295507450827525, 0.5284066232472522, 0.5279569151950706, 0.5281955438837129, 0.5291061038685408, 0.5306625368586514, 0.5328301726611884, 0.5355670605322457, 0.5388254989141418, 0.5425536651482356, 0.5466972504217078, 0.5512010169287933, 0.5560102112087683, 0.5610717869490527, 0.566335409690642, 0.5717542330125774, 0.5772854498354435, 0.5828906330831514, 0.5885358871934749, 0.5941918362985174, 0.5998334768726633, 0.6054399228487434, 0.6109940701512712, 0.616482205708264, 0.6218935835958866, 0.6272199882655647, 0.6324553019526347, 0.6375950904702933, 0.6426362187238678, 0.6475765044941951, 0.6524144163846775, 0.6571488193523195, 0.66177876899504, 0.6663033537885148, 0.6707215827913816, 0.6750323149927971, 0.6792342254729196, 0.6833258028819167, 0.6873053723992908, 0.6911711382824259, 0.6949212403109127, 0.6985538188341758 ], [ 0.5718396723887771, 0.5664410580560612, 0.5614388609062426, 0.5568839582238384, 0.5528240496218565, 0.5493023122665764, 0.5463560779583732, 0.5440156085875046, 0.5423030496101118, 0.5412316362940932, 0.5408052140953077, 0.5410181135556563, 0.541855393847831, 0.5432934408213206, 0.5453008788090495, 0.5478397338684117, 0.5508667719141631, 0.554334929375014, 0.5581947562265359, 0.5623958000802861, 0.5668878733562909, 0.5716221611822812, 0.5765521435300607, 0.5816343196775515, 0.5868287354022349, 0.5920993229255266, 0.5974140705137382, 0.6027450430531475, 0.6080682772552504, 0.6133635758580741, 0.618614224690694, 0.6238066551188264, 0.6289300724731325, 0.6339760687908794, 0.6389382357293456, 0.6438117909456189, 0.6485932286629771, 0.6532800026224704, 0.6578702472035894, 0.6623625402387788, 0.666755708987782, 0.67104867891851, 0.6752403633935055, 0.6793295911071208, 0.6833150671687773, 0.6871953630800044, 0.6909689304927871, 0.6946341335385126, 0.6981892946460333, 0.7016327490834766 ], [ 0.5821099489675292, 0.5770648728208082, 0.5723935961129654, 0.5681426017373152, 0.5643552937011844, 0.5610708075134384, 0.5583228522723501, 0.5561386494987846, 0.5545380351809572, 0.5535327864423398, 0.5531262225019695, 0.5533131120033119, 0.5540798971862421, 0.5554052223355798, 0.5572607322893832, 0.5596120890942449, 0.5624201429922704, 0.5656421886595706, 0.5692332388064132, 0.5731472538650003, 0.5773382769724095, 0.5817614360664746, 0.5863737880391683, 0.5911349922522565, 0.5960078114461045, 0.6009584467089559, 0.6059567196052933, 0.610976118915911, 0.6159937319910013, 0.6209900817937775, 0.6259488906505144, 0.630856790823638, 0.6357030005372287, 0.6404789822056187, 0.6451780974953689, 0.6497952716012179, 0.6543266768236932, 0.6587694432680082, 0.6631214022976849, 0.6673808663213678, 0.6715464466109987, 0.675616909180745, 0.6795910673282385, 0.6834677082728609, 0.687245550429693, 0.6909232272309903, 0.6944992930376069, 0.6979722465489838, 0.7013405671927476, 0.7046027602187948 ], [ 0.5919867666842035, 0.587274978538055, 0.5829149381641607, 0.5789490854071089, 0.5754169053080553, 0.5723538769005456, 0.5697904598365736, 0.5677511740538581, 0.566253827976662, 0.5653089458005938, 0.5649194341943766, 0.5650805140001675, 0.5657799247122665, 0.5669983906709652, 0.5687103202119274, 0.5708846944448783, 0.5734860923395937, 0.5764757940722713, 0.5798129050537918, 0.5834554479901254, 0.587361378547922, 0.5914894903745229, 0.5958001860666973, 0.6002561011325026, 0.6048225772857264, 0.60946798910801, 0.6141639340407424, 0.6188852998659458, 0.623610226476382, 0.6283199800623285, 0.6329987581177348, 0.6376334431391538, 0.6422133217728804, 0.6467297846368214, 0.651176020245659, 0.6555467145115869, 0.6598377652659602, 0.6640460192198032, 0.6681690368117479, 0.6722048885301646, 0.6761519845843345, 0.6800089382726505, 0.6837744620814443, 0.6874472944647934, 0.691026154412847, 0.6945097203133086, 0.6978966292378429, 0.7011854926241389, 0.7043749243500219, 0.7074635773784993 ], [ 0.6014653412222765, 0.5970671859693201, 0.5929994026806583, 0.5893007215037022, 0.5860070591960591, 0.5831505908801906, 0.5807588630007041, 0.5788539943099048, 0.5774520112502305, 0.5765623594328684, 0.5761876240715915, 0.5763234798622014, 0.576958876095356, 0.5780764473286603, 0.5796531254238784, 0.5816609167181064, 0.5840677996808631, 0.5868386941920768, 0.5899364535492673, 0.593322833956077, 0.5969594026870866, 0.6008083543307879, 0.6048332134615312, 0.6089994109051362, 0.6132747287835753, 0.6176296163346588, 0.6220373839055122, 0.6264742864921322, 0.6309195108411628, 0.6353550816152234, 0.6397657026499647, 0.6441385491003092, 0.6484630254684958, 0.6527305032854077, 0.6569340507101501, 0.6610681646272416, 0.6651285140422797, 0.6691117017759468, 0.6730150496912798, 0.676836411009346, 0.6805740117152683, 0.6842263216634275, 0.6877919547838057, 0.6912695967883646, 0.6946579579862825, 0.6979557482400588, 0.7011616707231395, 0.7042744309584488, 0.7072927576047898, 0.7102154315887612 ], [ 0.6105438763397353, 0.6064403853587881, 0.602646651297977, 0.5991980082297689, 0.5961271291765106, 0.5934632067454437, 0.5912311763242643, 0.5894510215393611, 0.5881372007662211, 0.5872982291701261, 0.5869364431372983, 0.587047963581667, 0.5876228624409288, 0.5886455239468819, 0.5900951802969081, 0.5919465913713472, 0.5941708310364378, 0.5967361388256558, 0.5996087954356201, 0.6027539831402009, 0.6061365972668865, 0.6097219814940628, 0.6134765671043195, 0.6173684037470857, 0.6213675761596182, 0.6254465072874967, 0.6295801531263614, 0.6337460983147157, 0.6379245640887392, 0.6420983417793119, 0.6462526657386084, 0.6503750395888758, 0.6544550291427821, 0.6584840343907324, 0.6624550517043583, 0.6663624359665062, 0.6702016707892416, 0.6739691533914836, 0.677661999134407, 0.6812778692038666, 0.6848148235249659, 0.6882711997268197, 0.6916455178704809, 0.6949364097268044, 0.6981425706528507, 0.7012627315664692, 0.7042956481528306, 0.7072401042412196, 0.7100949262472784, 0.7128590056631605 ], [ 0.619223241575563, 0.6153962000808627, 0.6118591241897458, 0.6086442449144756, 0.6057812904009369, 0.6032967627320976, 0.6012132572071018, 0.5995488577629012, 0.5983166410336592, 0.5975243176261759, 0.5971740326437772, 0.5972623387817818, 0.5977803452174373, 0.5987140350050073, 0.6000447338039037, 0.6017497044615824, 0.603802835961341, 0.606175391927923, 0.6088367833163778, 0.6117553318371864, 0.6148989946064437, 0.6182360258375681, 0.6217355574656237, 0.625368086827254, 0.6291058654291913, 0.6329231880837816, 0.6367965860655702, 0.6407049313629694, 0.6446294615712742, 0.6485537365692132, 0.6524635389501289, 0.6563467303660908, 0.6601930756151345, 0.6639940455768782, 0.6677426090853021, 0.6714330226110943, 0.6750606252874521, 0.6786216454184616, 0.6821130232138747, 0.6855322531447996, 0.6888772480503215, 0.6921462259764654, 0.6953376197200781, 0.6984500081975488, 0.7014820680709919, 0.704432543544606, 0.7073002318868543, 0.7100839820294902, 0.7127827035270682, 0.7153953832116526 ], [ 0.6275066575014916, 0.6239386512929551, 0.6206416869635406, 0.6176451646449488, 0.6149761416563924, 0.6126586940808799, 0.61071331972558, 0.6091564110295623, 0.6079998251859576, 0.6072505752286318, 0.6069106602200853, 0.6069770453585991, 0.6074417944210695, 0.6082923482492805, 0.6095119347920008, 0.6110800892816142, 0.6129732580264744, 0.6151654563711471, 0.6176289506842246, 0.6203349356015925, 0.623254180819165, 0.6263576260170208, 0.6296169074950949, 0.6330048053276003, 0.6364956048944918, 0.6400653712205333, 0.6436921384499608, 0.6473560199089188, 0.6510392465401091, 0.654726143073491, 0.6584030522001986, 0.662058217340077, 0.6656816344391864, 0.6692648827023987, 0.672800943350424, 0.6762840144727358, 0.6797093289000734, 0.683072980804479, 0.6863717655040803, 0.6896030357488514, 0.6927645766293139, 0.6958545002125801, 0.698871160092108, 0.701813085255045, 0.7046789320333521, 0.7074674524148206, 0.7101774766444854, 0.7128079078374091, 0.715357726237629, 0.7178260007792842 ], [ 0.6353993928196405, 0.6320738375761148, 0.6290012955253899, 0.6262085875169727, 0.6237203504564223, 0.6215584734969469, 0.6197415738468142, 0.6182845364452771, 0.6171981404291141, 0.6164887921816101, 0.6161583799484227, 0.6162042588470541, 0.6166193680912745, 0.6173924750153039, 0.6185085336644919, 0.6199491399135459, 0.6216930607417303, 0.6237168127136546, 0.6259952639569589, 0.6285022348754199, 0.6312110752174863, 0.6340951985683678, 0.6371285594430875, 0.6402860625358392, 0.6435438979878553, 0.646879800506593, 0.6502732336215151, 0.6537055031927327, 0.6571598064622524, 0.6606212244689542, 0.6640766665884511, 0.6675147763801407, 0.6709258079076722, 0.6743014813298565, 0.6776348259163986, 0.6809200178006023, 0.6841522188047943, 0.6873274216214103, 0.6904423055530763, 0.6934941059509834, 0.6964804994776184, 0.6993995063860393, 0.7022494101752589, 0.7050286942655495, 0.70773599474793, 0.7103700678022321, 0.7129297700460705, 0.7154140498661633, 0.7178219476831658, 0.7201526030980206 ], [ 0.642908476524171, 0.6398096324569987, 0.6369466814406695, 0.6343440966603271, 0.6320243227387767, 0.6300072775306803, 0.6283098913346473, 0.6269457041376965, 0.6259245402002267, 0.6252522765221306, 0.6249307176165848, 0.6249575838303237, 0.6253266145938007, 0.6260277819538035, 0.627047604051069, 0.6283695433299871, 0.6299744705790329, 0.6318411736299981, 0.6339468887638671, 0.6362678335029224, 0.638779721311402, 0.6414582414969465, 0.6442794909807962, 0.6472203482669104, 0.6502587836047915, 0.6533741027778162, 0.6565471249927254, 0.6597602978938321, 0.6629977547308278, 0.6662453201700946, 0.6694904721873219, 0.6727222679665645, 0.6759312418221589, 0.6791092829240878, 0.6822495001128813, 0.6853460804016235, 0.6883941469391154, 0.6913896213025533, 0.694329094046285, 0.6972097064950216, 0.7000290458685305, 0.7027850549874005, 0.7054759570569454, 0.7081001953737832, 0.7106563872565208, 0.7131432910723657, 0.715559784914563, 0.7179048552762207, 0.7201775939557229, 0.7223772014061288 ], [ 0.6500424274265859, 0.6471554017937691, 0.6444880594360572, 0.6420627383531784, 0.6398998981890796, 0.6380176796609033, 0.6364314989613753, 0.635153694679005, 0.634193243535341, 0.633555558803846, 0.6332423817557346, 0.6332517721011371, 0.6335781984881819, 0.6342127250820793, 0.6351432854834959, 0.6363550311395033, 0.6378307382532417, 0.6395512552028135, 0.6414959717051767, 0.6436432913575958, 0.6459710906080194, 0.6484571494281781, 0.6510795417338499, 0.6538169766569104, 0.6566490848860644, 0.6595566472600579, 0.6625217654698446, 0.6655279770059905, 0.6685603183223965, 0.6716053415635542, 0.674651091136262, 0.6776870469349198, 0.6807040412019022, 0.6836941558771505, 0.6866506069219022, 0.6895676215463761, 0.6924403135829762, 0.6952645614727463, 0.6980368925159393, 0.7007543762143088, 0.7034145287343321, 0.7060152297725023, 0.7085546524260563, 0.7110312060796664, 0.7134434918201092, 0.7157902694912612, 0.7180704352011751, 0.7202830078875921, 0.7224271234311591, 0.7245020347672828 ], [ 0.6568110025746585, 0.6541217422556843, 0.6516368579652396, 0.6493767468580114, 0.6473600715709814, 0.6456033702638038, 0.6441206990752625, 0.6429233219494149, 0.6420194616222619, 0.6414141234263343, 0.6411090005604155, 0.6411024657731308, 0.6413896502892417, 0.6419626065831252, 0.6428105476054505, 0.6439201516016659, 0.6452759189701134, 0.6468605658545701, 0.6486554384155543, 0.6506409319475556, 0.6527969000951258, 0.6551030412008209, 0.6575392510901704, 0.660085934153071, 0.6627242672200265, 0.6654364132864152, 0.6682056844764498, 0.6710166556683853, 0.6738552318694448, 0.6767086737116124, 0.6795655863429473, 0.682415877537862, 0.685250691081478, 0.6880623214426425, 0.6908441154857284, 0.6935903665311413, 0.6962962055048636, 0.6989574932610124, 0.7015707174569427, 0.7041328966416449, 0.7066414935140085, 0.7090943386418651, 0.7114895653244957, 0.7138255557445287, 0.7161008980991798, 0.718314354030599, 0.7204648353914905, 0.7225513891827047, 0.7245731893784867, 0.7265295343047213 ], [ 0.6632249654578161, 0.6607202415107712, 0.658405473177434, 0.6562992940649098, 0.6544187399341274, 0.6527789031752882, 0.6513926171253237, 0.6502701829937722, 0.6494191510937942, 0.6488441662113134, 0.6485468843700546, 0.6485259651201908, 0.6487771400104667, 0.6492933543537017, 0.6500649760292636, 0.6510800621301542, 0.6523246719569806, 0.6537832133214715, 0.6554388084077325, 0.6572736655346972, 0.659269443987417, 0.6614076005076495, 0.6636697078956918, 0.6660377383051733, 0.6684943060469072, 0.6710228669131227, 0.6736078730732101, 0.676234884391707, 0.6788906385247095, 0.681563083336101, 0.684241376036987, 0.6869158540054755, 0.689577982516871, 0.6922202846420634, 0.6948362583941579, 0.697420285861251, 0.6999675385970018, 0.7024738829882421, 0.7049357887150365, 0.707350242794192, 0.709714671078895, 0.7120268684971528, 0.7142849387678754, 0.7164872438491318, 0.718632362957583, 0.7207190606565113, 0.7227462632438076, 0.7247130424791534, 0.7266186055670879, 0.7284622902533042 ], [ 0.669295874370891, 0.6669632602392291, 0.6648070461616352, 0.6628442635952785, 0.6610904751708698, 0.659559468182042, 0.658262975393373, 0.6572104340857896, 0.6564087932852309, 0.6558623774960025, 0.6555728130565212, 0.6555390205819178, 0.6557572740323663, 0.6562213239548649, 0.6569225796043803, 0.6578503421576697, 0.6589920792539311, 0.6603337297440515, 0.6618600268583509, 0.6635548280057709, 0.6654014400361898, 0.6673829299320171, 0.6694824124183162, 0.6716833077547584, 0.673969564862009, 0.6763258468177699, 0.6787376775323015, 0.6811915500027862, 0.6836749978986231, 0.6861766333169236, 0.6886861543606334, 0.6911943267384267, 0.6936929438851204, 0.6961747701815894, 0.6986334717463618, 0.701063539011884, 0.7034602049215902, 0.7058193621228376, 0.7081374820164479, 0.7104115379840181, 0.7126389345736343, 0.7148174439037922, 0.7169451500608226, 0.7190204018296998, 0.7210417737207526, 0.7230080349408635, 0.7249181257093604, 0.7267711401351523, 0.7285663147495435, 0.7303030217233195 ] ] }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "text": [ "0_0", "10_0", "11_0", "12_0", "13_0", "14_0", "15_0", "16_0", "17_0", "18_0", "19_0", "1_0", "20_0", "21_0", "22_0", "23_0", "24_0", "25_0", "26_0", "27_0", "28_0", "2_0", "3_0", "4_0", "5_0", "6_0", "7_0", "8_0", "9_0" ], "type": "scatter", "x": [ 0.5529431300237775, 0.44604827055228274, 0.37206524187290146, 0.2782976511137368, 0.24851023590403679, 0.20354947324851444, 0.22565778818622476, 0.22010702729861042, 0.18298285666651828, 0.18759569052295105, 0.20085305374230503, 0.5573534676805139, 0.1746989242727735, 0.2183196599824182, 0.19460491518089892, 0.10780921745863452, 0.238226229554346, 0.22958363949576532, 0.2149878756112262, 0.2071056563068481, 0.1900202689751575, 0.6469740755856037, 0.19015133660286665, 0.2661866070702672, 0.6136723076924682, 0.5611736382528144, 0.5587024890104212, 0.5705690094297238, 0.6074079073581495 ], "xaxis": "x", "y": [ 0.48189620301127434, 5.221908291933976e-17, 3.735128684771118e-16, 7.3056166976985395e-16, 1.1241013123025867e-12, 1.7863615670411743e-16, 1.6973836005964025e-16, 1.1595431540166796e-16, 1.0432828861936297e-16, 4.456800737861779e-16, 8.984453199534577e-17, 0.0829297685995698, 2.1592734771830426e-16, 6.542767026506807e-15, 0.07742625692514603, 0.1155327867464277, 0.1274855256789842, 0.15223882120817736, 0.18347267930028743, 0.22678575325311892, 0.228572371771065, 0.31394914351403713, 0.6906632911413908, 0.9170842356979847, 0.12633905187249184, 0.20603143492610027, 0.02425943510663835, 0.0, 0.0 ], "yaxis": "y" }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "showlegend": false, "text": [ "0_0", "10_0", "11_0", "12_0", "13_0", "14_0", "15_0", "16_0", "17_0", "18_0", "19_0", "1_0", "20_0", "21_0", "22_0", "23_0", "24_0", "25_0", "26_0", "27_0", "28_0", "2_0", "3_0", "4_0", "5_0", "6_0", "7_0", "8_0", "9_0" ], "type": "scatter", "x": [ 0.5529431300237775, 0.44604827055228274, 0.37206524187290146, 0.2782976511137368, 0.24851023590403679, 0.20354947324851444, 0.22565778818622476, 0.22010702729861042, 0.18298285666651828, 0.18759569052295105, 0.20085305374230503, 0.5573534676805139, 0.1746989242727735, 0.2183196599824182, 0.19460491518089892, 0.10780921745863452, 0.238226229554346, 0.22958363949576532, 0.2149878756112262, 0.2071056563068481, 0.1900202689751575, 0.6469740755856037, 0.19015133660286665, 0.2661866070702672, 0.6136723076924682, 0.5611736382528144, 0.5587024890104212, 0.5705690094297238, 0.6074079073581495 ], "xaxis": "x2", "y": [ 0.48189620301127434, 5.221908291933976e-17, 3.735128684771118e-16, 7.3056166976985395e-16, 1.1241013123025867e-12, 1.7863615670411743e-16, 1.6973836005964025e-16, 1.1595431540166796e-16, 1.0432828861936297e-16, 4.456800737861779e-16, 8.984453199534577e-17, 0.0829297685995698, 2.1592734771830426e-16, 6.542767026506807e-15, 0.07742625692514603, 0.1155327867464277, 0.1274855256789842, 0.15223882120817736, 0.18347267930028743, 0.22678575325311892, 0.228572371771065, 0.31394914351403713, 0.6906632911413908, 0.9170842356979847, 0.12633905187249184, 0.20603143492610027, 0.02425943510663835, 0.0, 0.0 ], "yaxis": "y2" } ], "layout": { "annotations": [ { "font": { "size": 14 }, "showarrow": false, "text": "Mean", "x": 0.25, "xanchor": "center", "xref": "paper", "y": 1, "yanchor": "bottom", "yref": "paper" }, { "font": { "size": 14 }, "showarrow": false, "text": "Standard Error", "x": 0.8, "xanchor": "center", "xref": "paper", "y": 1, "yanchor": "bottom", "yref": "paper" } ], "autosize": false, "height": 450, "hovermode": "closest", "legend": { "orientation": "h", "x": 0, "y": -0.25 }, "margin": { "b": 100, "l": 35, "pad": 0, "r": 35, "t": 35 }, "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 } } }, "width": 950, "xaxis": { "anchor": "y", "autorange": false, "domain": [ 0.05, 0.45 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x1" }, "type": "linear" }, "xaxis2": { "anchor": "y2", "autorange": false, "domain": [ 0.6, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x1" }, "type": "linear" }, "yaxis": { "anchor": "x", "autorange": false, "domain": [ 0, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x2" }, "type": "linear" }, "yaxis2": { "anchor": "x2", "autorange": false, "domain": [ 0, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "type": "linear" } } }, "text/html": [ "