{ "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 05-14 21:18:29] 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 05-14 21:18:29] 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 05-14 21:18:29] ax.service.managed_loop: Started full optimization with 30 steps.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 05-14 21:18:29] ax.service.managed_loop: Running optimization trial 1...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 05-14 21:18:29] ax.service.managed_loop: Running optimization trial 2...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 05-14 21:18:29] ax.service.managed_loop: Running optimization trial 3...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 05-14 21:18:29] ax.service.managed_loop: Running optimization trial 4...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 05-14 21:18:29] ax.service.managed_loop: Running optimization trial 5...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 05-14 21:18:29] ax.service.managed_loop: Running optimization trial 6...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 05-14 21:18:29] ax.service.managed_loop: Running optimization trial 7...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 05-14 21:18:34] ax.service.managed_loop: Running optimization trial 8...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 05-14 21:18:38] ax.service.managed_loop: Running optimization trial 9...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 05-14 21:18:41] ax.service.managed_loop: Running optimization trial 10...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 05-14 21:18:45] ax.service.managed_loop: Running optimization trial 11...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 05-14 21:18:48] ax.service.managed_loop: Running optimization trial 12...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 05-14 21:18:51] ax.service.managed_loop: Running optimization trial 13...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 05-14 21:18:55] ax.service.managed_loop: Running optimization trial 14...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 05-14 21:18:58] ax.service.managed_loop: Running optimization trial 15...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 05-14 21:19:01] ax.service.managed_loop: Running optimization trial 16...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 05-14 21:19:04] ax.service.managed_loop: Running optimization trial 17...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 05-14 21:19:07] ax.service.managed_loop: Running optimization trial 18...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 05-14 21:19:10] ax.service.managed_loop: Running optimization trial 19...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 05-14 21:19:14] ax.service.managed_loop: Running optimization trial 20...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 05-14 21:19:17] ax.service.managed_loop: Running optimization trial 21...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 05-14 21:19:20] ax.service.managed_loop: Running optimization trial 22...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 05-14 21:19:23] ax.service.managed_loop: Running optimization trial 23...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 05-14 21:19:26] ax.service.managed_loop: Running optimization trial 24...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 05-14 21:19:29] ax.service.managed_loop: Running optimization trial 25...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 05-14 21:19:31] ax.service.managed_loop: Running optimization trial 26...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 05-14 21:19:34] ax.service.managed_loop: Running optimization trial 27...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 05-14 21:19:37] ax.service.managed_loop: Running optimization trial 28...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 05-14 21:19:40] ax.service.managed_loop: Running optimization trial 29...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 05-14 21:19:41] 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.21134335953178837,\n", " 'x2': 0.15774301412300856,\n", " 'x3': 0.4768948317845676,\n", " 'x4': 0.27901462844224617,\n", " 'x5': 0.3120886395661859,\n", " 'x6': 0.6663345408614724}" ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "best_parameters" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'hartmann6': -3.318167378640171, 'l2norm': 0.9572033066650033}" ] }, "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.441780366037762, -2.507162741921352, -2.568687195027572, -2.625728545550768, -2.6776823245417245, -2.7239802917699025, -2.764104812373446, -2.7976021612505786, -2.8240953271906655, -2.843296397627499, -2.855017405102821, -2.8591777149203157, -2.8558063098482718, -2.8450383732870486, -2.8271067062733097, -2.8023292860489004, -2.7710945645511083, -2.7338460036260592, -2.6910670192808124, -2.643267117771256, -2.590969655091383, -2.5347013840335886, -2.4749837745436785, -2.412325988513039, -2.347219338689325, -2.280133044232346, -2.211511098359797, -2.14177007688751, -2.071297734289522, -2.0004522527398163, -1.9295620276414924, -1.8589258895682317, -1.7888136770617544, -1.7194670873606017, -1.6511007430342057, -1.5839034218647514, -1.5180394053688155, -1.4536499082772671, -1.390854557265743, -1.3297528923954394, -1.2704258692051762, -1.2129373432896902, -1.1573355225872337, -1.1036543755478272, -1.0519149859158612, -1.0021268470828222, -0.9542890908856754, -0.9083916473759013, -0.8644163334925945, -0.8223378697650403 ], [ -2.479631773927292, -2.5469525110289304, -2.610314789355253, -2.669054261435826, -2.722527944022682, -2.7701318531511667, -2.8113168979236467, -2.8456031208350607, -2.8725933925656664, -2.8919870780137185, -2.903592274888849, -2.9073339933985904, -2.903256170623422, -2.8915169394896125, -2.872378028616027, -2.846190042830292, -2.8133756058364634, -2.774412106288051, -2.7298153176797904, -2.6801246633166067, -2.625890485795898, -2.5676633928263346, -2.505985577352645, -2.4413839211572648, -2.3743646578575146, -2.305409370314256, -2.2349721131686056, -2.16347747388075, -2.0913194098666676, -2.018860722387578, -1.946433048569978, -1.8743372709883364, -1.8028442597101195, -1.7321958748485302, -1.6626061688100784, -1.5942627368757278, -1.5273281727937782, -1.4619415929317636, -1.398220198426231, -1.3362608498492012, -1.2761416333027955, -1.217923400665977, -1.1616512700294017, -1.1073560752348741, -1.0550557559367197, -1.0047566817693658, -0.9564549060743062, -0.9101373462437734, -0.865782889103552, -0.8233634209102336 ], [ -2.51346325555711, -2.5826026807327525, -2.647691857557284, -2.7080267118502914, -2.762924996716617, -2.8117464561374015, -2.8539104638601063, -2.888911110697845, -2.9163316258279717, -2.9358594039888857, -2.9472998255792096, -2.9505852317373695, -2.945776450977009, -2.933056435857166, -2.9127173417643983, -2.8851433154832575, -2.8507913908182574, -2.8101724683517553, -2.7638337128655825, -2.7123430868384673, -2.6562762738291386, -2.5962059505659307, -2.532693208854156, -2.4662808632354385, -2.3974883694992744, -2.326808096118092, -2.254702719279092, -2.1816035435538788, -2.1079095800547205, -2.0339872404101573, -1.9601705276169974, -1.886761623980077, -1.8140317923665703, -1.742222520369022, -1.6715468481501157, -1.602190830132821, -1.5343150886320847, -1.468056424269197, -1.403529453778592, -1.3408282507802225, -1.2800279693796401, -1.2211864341780836, -1.1643456835066797, -1.1095334555090073, -1.0567646091356435, -1.0060424742265555, -0.9573601266778111, -0.9107015862480294, -0.8660429358855646, -0.8233533625716594 ], [ -2.5428415631683015, -2.613647616534845, -2.68032171676271, -2.7421203052874947, -2.7983217876852637, -2.8482496516293914, -2.891292168766425, -2.9269182815586197, -2.954692542089318, -2.974291558703216, -2.9855195202206204, -2.988317848345581, -2.9827659600825003, -2.969072977882683, -2.947562252197909, -2.9186515302824114, -2.8828316006690287, -2.840645604226645, -2.7926703642136, -2.7395003571067056, -2.6817344422842626, -2.619965181934627, -2.554770452615625, -2.4867070147876578, -2.416305720723873, -2.344068076222051, -2.270463912160469, -2.195929960825565, -2.12086916620431, -2.0456505864136783, -1.9706097704613799, -1.896049511274581, -1.8222408931424707, -1.7494245650647953, -1.6778121825552992, -1.6075879696746491, -1.5389103608288826, -1.4719136884505213, -1.4067098883030513, -1.3433901989846762, -1.2820268363879328, -1.2226746274985605, -1.1653725910706354, -1.1101454554575212, -1.0570051062595898, -1.0059519585109684, -0.9569762499028511, -0.9100592530593898, -0.8651744061694011, -0.8222883623572583 ], [ -2.5673476114218476, -2.639633220840889, -2.7077162631310516, -2.770815082307684, -2.8281696584786173, -2.879067985371379, -2.9228682063471214, -2.9590154529024426, -2.9870571953999816, -3.0066610618289547, -3.0176319305969606, -3.019921968947007, -3.0136303681983883, -2.998992941139933, -2.9763639815649565, -2.9461938081626298, -2.909005257641189, -2.8653714992799193, -2.815896493960911, -2.7611985830397314, -2.7018971680268775, -2.6386021798025494, -2.571905943505163, -2.5023770440004576, -2.4305558360938786, -2.356951295392928, -2.2820389566229253, -2.2062597310106424, -2.1300194318113244, -2.053688867611328, -1.9776043877181169, -1.9020687838595058, -1.8273524685408589, -1.7536948635661542, -1.681305943059957, -1.6103678843310703, -1.5410367874775974, -1.4734444310382933, -1.407700036469509, -1.343892018937264, -1.2820897059914866, -1.22234500923016, -1.1646940371433585, -1.1091586400088462, -1.0557478800410354, -1.004459422010799, -0.9552808412888993, -0.9081908477475764, -0.8631604252086864, -0.8201538871747689 ], [ -2.5865890318958145, -2.660130670100208, -2.7294106489993837, -2.7936120800834967, -2.8519388645181714, -2.9036453455021123, -2.9480611407175146, -2.9846094226867823, -3.0128229595494425, -3.0323629805019423, -3.0430372163825563, -3.044809915145737, -3.0378004091059383, -3.022270588960314, -2.998604166078056, -2.967281736569953, -2.928855334534091, -2.8839249868332577, -2.8331185185876775, -2.777074930870441, -2.716431147151863, -2.6518117005044477, -2.583820883719919, -2.513036917342574, -2.44000775298753, -2.3652481952135926, -2.2892380841406856, -2.212421330029849, -2.1352056305117815, -2.0579627325008465, -1.9810291256796975, -1.9047070742202832, -1.8292659092842543, -1.7549435177229329, -1.681947972961033, -1.6104592628162075, -1.5406310763643827, -1.4725926182001472, -1.4064504237793893, -1.3422901541316854, -1.2801783522169219, -1.220164146668755, -1.1622808916885548, -1.1065477344847592, -1.0529711039387222, -1.0015461161559327, -0.9522578942621538, -0.9050828012544778, -0.8599895859413633, -0.816940443026497 ], [ -2.6002135729395, -2.674751712542273, -2.7449802950198507, -2.810051729297489, -2.8691379524524243, -2.9214630195435447, -2.966330639618344, -3.0031445790155002, -3.0314260568115685, -3.050833067341551, -3.061178364311009, -3.0624390213252903, -3.0547538226231667, -3.0384087855470563, -3.0138140888069893, -2.98147697209078, -2.941974672323293, -2.8959300022245706, -2.8439907167280745, -2.7868128188357444, -2.7250474477023277, -2.659330811381146, -2.5902766189379576, -2.5184705299900054, -2.4444662212058392, -2.368782746062616, -2.2919029287433164, -2.2142725847547213, -2.1363004013686906, -2.0583583425820575, -1.9807824680038006, -1.90387407458025, -1.8279010856342472, -1.7530996242788062, -1.679675718575587, -1.6078070943639744, -1.5376450188723814, -1.4693161643242365, -1.4029244659785114, -1.3385529535574006, -1.276265538930156, -1.216108746333342, -1.1581133743813705, -1.1022960817135763, -1.0486608903750092, -0.9972006029759295, -0.9478981313472248, -0.9007277358333274, -0.8556561755632306, -0.8126437710367738 ], [ -2.6079220059622332, -2.683164154481433, -2.7540590143229133, -2.819734439251902, -2.879336384470095, -2.932063832816608, -2.9771988261928795, -3.014129444441836, -3.0423690292265784, -3.061575515181046, -3.0715684891975408, -3.0723378329651867, -3.0640399488178165, -3.046981645681574, -3.0215952002549242, -2.988409584010967, -2.9480222058883365, -2.901073823064879, -2.848227658075416, -2.7901527257840204, -2.7275108887958135, -2.660947020559446, -2.5910816828048793, -2.5185058109674583, -2.4437769966389253, -2.3674170402438666, -2.289910515280797, -2.2117041386368643, -2.1332067824337884, -2.0547899943982704, -1.9767889182188407, -1.8995035245589855, -1.8232000786823659, -1.7481127829897907, -1.674445542878724, -1.602373812733351, -1.5320464859140221, -1.4635877986186534, -1.3970992226393406, -1.3326613264911051, -1.2703355882578453, -1.210166146873926, -1.152181481500993, -1.096396011224018, -1.042811609517273, -0.991419029855527, -0.9421992404962818, -0.8951246678624081, -0.8501603491327037, -0.8072649956242652 ], [ -2.609478994189222, -2.6851056484668545, -2.7563561189883696, -2.8223412079984067, -2.882188558511263, -2.9350791719820153, -2.980279535035304, -3.017167119285235, -3.0452514101516535, -3.0641930943518103, -3.073819773682845, -3.0741332738216522, -3.0653046860767494, -3.0476570252015636, -3.021639062573891, -2.987795521924329, -2.946738125921343, -2.899120151445326, -2.8456154508806466, -2.78690184409378, -2.72364832082549, -2.656505382055205, -2.58609789896309, -2.513019969729065, -2.4378313580208646, -2.3610551853350144, -2.2831766193520164, -2.204642354307313, -2.125860720435991, -2.047202290959927, -1.9690008793547353, -1.8915548386401115, -1.8151285895475306, -1.7399543166200064, -1.6662337812981738, -1.594140209359248, -1.5238202170715174, -1.455395746382239, -1.3889659845708087, -1.3246092482236522, -1.2623848152332218, -1.20233469187699, -1.144485304957156, -1.088849111530456, -1.0354261209690323, -0.9842053260024983, -0.935166041026958, -0.8882791473536862, -0.8435082462327526, -0.8008107214460187 ], [ -2.604720813578056, -2.6803940471264833, -2.7516700062877404, -2.8176508697926828, -2.8774548729856626, -2.930253595321534, -2.9753055645893745, -3.0119837872311033, -3.0397982318917456, -3.058414813718217, -3.067669665021141, -3.067574882023159, -3.0583124129328607, -3.040215957498508, -3.013744308983302, -2.9794512427445463, -2.9379563985275445, -2.889919782946386, -2.836020815985214, -2.7769417946923687, -2.7133551897985457, -2.6459140885140426, -2.575245153727849, -2.501943575887272, -2.4265695999215766, -2.3496462990996596, -2.2716583382223883, -2.1930515225531892, -2.114232969957683, -2.035571775089313, -1.957400058674752, -1.88001431391582, -1.803676977105751, -1.7286181617412972, -1.6550375054052708, -1.5831060870043865, -1.5129683789472648, -1.444744204806595, -1.378530678128274, -1.3144041024788338, -1.2524218166707293, -1.192623972459078, -1.1350352349271842, -1.0796663983224248, -1.0265159123108214, -0.9755713155198702, -0.9268105748652262, -0.8802033305334611, -0.8357120476433189, -0.7932930765540691 ], [ -2.593559835333017, -2.668933594182622, -2.7398965561884867, -2.8055510647297233, -2.8650154054568198, -2.9174610265935423, -2.962146850439308, -2.998448112616601, -3.025879791012431, -3.0441152714357176, -3.0529992063159312, -3.052551688394847, -3.0429611441990523, -3.0245659815046704, -2.997828178703532, -2.9633035851909657, -2.921613162477948, -2.873417723934145, -2.819397112951598, -2.7602337312866454, -2.696599865820062, -2.62914814746009, -2.558504523284722, -2.4852632231148712, -2.4099833045440655, -2.3331864483651708, -2.255355746135888, -2.176935275383997, -2.0983302990039348, -2.019907956851349, -1.9419983418869757, -1.8648958723225373, -1.7888608864336677, -1.714121399006798, -1.6408749684828576, -1.5692906322578395, -1.4995108746726222, -1.4316535982415923, -1.3658140738359625, -1.3020668500022161, -1.240467605472152, -1.181054932295067, -1.1238520399601897, -1.0688683734299507, -1.0161011402149611, -0.9655367435228919, -0.9171521201361965, -0.870915983044412, -0.8267899699992192, -0.7847297000975126 ], [ -2.5759865417585046, -2.650717384098743, -2.7210321946159137, -2.7860420344461128, -2.844874503221931, -2.8967101247337785, -2.940816558698617, -2.976577951306595, -3.003518726835028, -3.021321744239435, -3.029839819291274, -3.029098486644121, -3.0192881842401, -3.000746146445386, -2.973930889804134, -2.9393935565005176, -2.8977499898376475, -2.8496559898941407, -2.795786737230775, -2.736820391677563, -2.673425397001902, -2.606250879487491, -2.535919551731392, -2.4630226173005356, -2.3881162657653343, -2.311719430959314, -2.234312553022982, -2.15633713777164, -2.078195947848178, -2.000253691738265, -1.9228381013428884, -1.8462413081993096, -1.770721443930748, -1.6965044030516843, -1.6237857165574845, -1.5527324932958706, -1.483485393327789, -1.416160603614567, -1.3508517916213223, -1.2876320169597537, -1.2265555851221426, -1.167659830771156, -1.1109668210166654, -1.056484971683295, -1.0042105717953422, -0.954129213414826, -0.9062171255940077, -0.8604424125737853, -0.8167661974985858, -0.77514367385047 ], [ -2.552069770031273, -2.625826846142642, -2.695172407725948, -2.75923406087322, -2.817157161175433, -2.8681397394648998, -2.9114658697875773, -2.9465347578828527, -2.9728843064587633, -2.990208539144782, -2.9983678890209413, -2.9973908200722623, -2.987465657800386, -2.9689231643272853, -2.942212418181748, -2.907873688527173, -2.866511741688308, -2.818771875931974, -2.765319725542402, -2.7068249685763073, -2.64394858811474, -2.5773331583155814, -2.5075956157776753, -2.4353220371413276, -2.3610640233243205, -2.285336366323085, -2.208615738400271, -2.1313401948528847, -2.053909322008858, -1.976684893796781, -1.8999919251631148, -1.8241200303907608, -1.7493250102411055, -1.6758306047287774, -1.6038303589321905, -1.5334895580543038, -1.4649471953556508, -1.398317942868843, -1.3336941001827947, -1.2711475012154334, -1.2107313628983936, -1.152482063167488, -1.0964208386625252, -1.042555395144146, -0.9908814258804828, -0.9413840351807108, -0.8940390658872313, -0.8488143310131719, -0.8056707508527317, -0.7645633978222446 ], [ -2.521955119840227, -2.5944285314798, -2.6625064804054257, -2.7253399065943644, -2.782099135317712, -2.8320068903108857, -2.8743702039502548, -2.908608567963829, -2.9342767415445667, -2.9510812361829393, -2.9588894959044607, -2.957730693517211, -2.9477875648280065, -2.9293800041484044, -2.902942665489004, -2.8689996921012777, -2.828139551862686, -2.7809920865344457, -2.7282088503164075, -2.6704470041817308, -2.6083565532329436, -2.542570502420112, -2.473697457303042, -2.4023162277107164, -2.3289720526445272, -2.2541741292608917, -2.1783941868016283, -2.102065894920483, -2.025584935209718, -1.9493095962070806, -1.8735617772886275, -1.7986283069985842, -1.72476249764307, -1.6521858712519328, -1.5810900029510888, -1.5116384368927376, -1.4439686375402694, -1.3781939455881442, -1.314405513332705, -1.252674199064373, -1.1930524041524107, -1.1355758400387788, -1.0802652154235675, -1.027127836571398, -0.9761591159449468, -0.9273439863181303, -0.8806582191722239, -0.8360696475636149, -0.7935392947984694, -0.7530224111840214 ], [ -2.4858610220602544, -2.5567681244102793, -2.62330900796022, -2.68466355306194, -2.74003285613065, -2.7886700418885035, -2.829910264897958, -2.8631973945791964, -2.8881056433962726, -2.9043549573015386, -2.9118192234283216, -2.9105265438464523, -2.9006513802655975, -2.8824993990664054, -2.8564869674942477, -2.8231179122081667, -2.7829600772988856, -2.7366235803050607, -2.684741844690387, -2.627955790143238, -2.5669011054695017, -2.502198293568658, -2.4344450939643374, -2.3642108886469018, -2.2920327355483208, -2.2184127246423837, -2.143816401723137, -2.0686720492676316, -1.9933706511449991, -1.918266398656092, -1.8436776204153476, -1.7698880389489235, -1.6971482735041488, -1.6256775222151814, -1.5556653680625296, -1.4872736624811136, -1.4206384483874088, -1.3558718910993948, -1.2930641913373417, -1.2322854593909107, -1.173587533751866, -1.117005731145305, -1.0625605180271227, -1.0102590963144766, -0.9600968984332237, -0.9120589887419581, -0.866121370065883, -0.8222521954743609, -0.7804128865949924, -0.7405591606983493 ], [ -2.444072251412943, -2.513161822465989, -2.5779288227396098, -2.6375864735925205, -2.6913710190608744, -2.7385701854493605, -2.7785509891058062, -2.810784596139865, -2.8348664798099117, -2.8505306253879157, -2.8576568965996154, -2.8562710386744974, -2.846537361408123, -2.8287449607509387, -2.8032891632670545, -2.7706503668808526, -2.731372420175375, -2.6860422240216235, -2.635271604944527, -2.579681926893421, -2.519891489291131, -2.4565055141564884, -2.3901084130269723, -2.321257995865728, -2.250481299987518, -2.1782717521126216, -2.105087416937237, -2.031350124272282, -1.9574453010995347, -1.8837223641487109, -1.8104955530717883, -1.7380451045892766, -1.6666186847851574, -1.5964330106603737, -1.5276756036552994, -1.4605066275637277, -1.3950607714381547, -1.331449145014991, -1.269761160089017, -1.2100663763172808, -1.1524162942692926, -1.0968460822725845, -1.0433762268142486, -0.9920140990197666, -0.9427554320938909, -0.895585706621266, -0.8504814423256197, -0.8074113963091398, -0.7663376689684465, -0.7272167197380968 ], [ -2.396931247920036, -2.463985699551481, -2.5267762379043566, -2.5845526742674894, -2.636589450275145, -2.6822116987737004, -2.720820719564692, -2.7519168144931667, -2.7751178123930775, -2.790172057748891, -2.796965051724579, -2.7955193692801785, -2.785988023335794, -2.7686421046269336, -2.743854142345924, -2.7120789941907337, -2.6738340681599375, -2.6296803532902593, -2.5802052542588014, -2.526007749187407, -2.467686018571536, -2.405827451576119, -2.341000805530179, -2.273750241994951, -2.204590957328887, -2.134006144695359, -2.062445053806266, -1.9903219464399609, -1.918015775967331, -1.8458704461131206, -1.7741955275292094, -1.7032673306054122, -1.6333302496700886, -1.5645983077858485, -1.4972568431526818, -1.4314642880761008, -1.3673539998630235, -1.305036110143142, -1.2445993651936793, -1.1861129350469564, -1.129628173622339, -1.0751803159576863, -1.0227901019097778, -0.9724653185191217, -0.9242022556511968, -0.8779870715804718, -0.83379706691821, -0.7916018667343154, -0.7513645119195338, -0.7130424618060713 ], [ -2.344828012137926, -2.409663958650568, -2.4703096331160967, -2.526053636412727, -2.5762104917884985, -2.6201443392367856, -2.6572920581221395, -2.6871840114737715, -2.7094608852932813, -2.7238854786682523, -2.7303487151021004, -2.728869592915693, -2.7195892972745557, -2.7027602345554893, -2.6787312209123275, -2.6479303326154864, -2.6108469343250973, -2.5680141723573753, -2.5199928570161187, -2.467357276570217, -2.4106831649217346, -2.3505378170242013, -2.287472207146116, -2.2220148951458283, -2.1546674823014924, -2.0859013820994488, -2.016155689495214, -1.94583595621335, -1.8753137048949433, -1.8049265388798275, -1.7349787260406853, -1.6657421540368134, -1.5974575706865135, -1.5303360371051653, -1.4645605331171905, -1.4002876645259765, -1.3376494303924096, -1.2767550157708882, -1.2176925815846178, -1.1605310286591153, -1.1053217175116181, -1.0521001294255985, -1.0008874577158273, -0.9516921209825577, -0.9045111926248603, -0.8593317429833218, -0.8161320922532238, -0.7748829737897818, -0.7355486086482232, -0.6980876931943474 ], [ -2.2881894328485886, -2.350656988279662, -2.409022306601351, -2.4626140592100834, -2.510787756070405, -2.5529471615664883, -2.5885651281865187, -2.61720228243494, -2.638522205464051, -2.65230207579822, -2.658438126903277, -2.6569456958411926, -2.6479540905486174, -2.631696948850205, -2.60849913253266, -2.578761415587485, -2.5429442440495116, -2.5015516843224295, -2.4551164050286283, -2.4041862348814944, -2.3493125681257068, -2.2910406813572166, -2.229901886314494, -2.166407362490622, -2.101043475737785, -2.034268379684041, -1.9665097041984925, -1.8981631512833221, -1.8295918385280086, -1.7611262506284948, -1.6930646788370773, -1.6256740458127386, -1.5591910289267787, -1.4938234086600406, -1.4297515804517735, -1.3671301784312972, -1.3060897680947408, -1.246738572384956, -1.1891642019734856, -1.133435365985871, -1.0796035440876008, -1.0277046048658338, -0.9777603588927615, -0.9297800378136767, -0.8837616933285308, -0.8396935120817359, -0.7975550442851873, -0.7573183454127626, -0.7189490315546183, -0.6824072500370038 ], [ -2.227468787345408, -2.2874499573965696, -2.343430279101748, -2.394778999502831, -2.440892730741791, -2.4812147126645994, -2.5152534779784346, -2.5425995773909023, -2.5629391809778115, -2.5760636447062675, -2.581874473423251, -2.58038349297681, -2.5717084388712825, -2.556064540971035, -2.5337529824897205, -2.5051472864023197, -2.470678707703933, -2.4308215985018373, -2.3860795098087717, -2.3369725556654743, -2.2840263396146048, -2.2277625592078305, -2.16869127087368, -2.107304711852327, -2.0440725285203563, -1.9794382404612387, -1.9138167675742812, -1.8475928560762267, -1.7811202533661468, -1.7147214981104075, -1.6486882085793506, -1.5832817681266669, -1.518734321204109, -1.4552500062466462, -1.3930063631392335, -1.3321558628831416, -1.2728275156579396, -1.2151285208830198, -1.1591459292689286, -1.1049482923537248, -1.0525872797620026, -1.0020992485077667, -0.9535067521742553, -0.9068199808162687, -0.8620381250058229, -0.8191506596313918, -0.7781385449100224, -0.7389753436187569, -0.7016282548323045, -0.6660590654982934 ], [ -2.163135947940295, -2.2205424398398512, -2.2740614651245075, -2.3231027185938538, -2.367103416362484, -2.4055455529123893, -2.4379725506553855, -2.4640041594816826, -2.4833485878604833, -2.4958110738321637, -2.501298399611322, -2.4998191862423655, -2.4914801446172428, -2.476478771673272, -2.4550932269442574, -2.427670270961955, -2.3946121774343885, -2.356363455144377, -2.3133980640529916, -2.266207623297803, -2.2152909229364615, -2.161144890927134, -2.1042570432769474, -2.0450993595101834, -1.9841234725438264, -1.9217570342789179, -1.858401108317217, -1.7944284429608848, -1.730182486331517, -1.6659770177389872, -1.6020962831597898, -1.538795536497885, -1.47630190142997, -1.4148154806861142, -1.354510650435853, -1.2955374870233365, -1.2380232816913084, -1.1820741062530566, -1.1277763990301537, -1.0751985458856448, -1.0243924359514027, -0.9753949757690819, -0.9282295491170074, -0.8829074128490313, -0.839429021687313, -0.797785277138261, -0.7579586975856119, -0.7199245081943546, -0.6836516505704042, -0.6491037131932875 ], [ -2.0956686164436675, -2.150439329890612, -2.201446391835131, -2.2481393173128383, -2.2899949685149266, -2.3265329647141644, -2.3573304838380524, -2.382035488669816, -2.4003775094871687, -2.4121753023011845, -2.417340951784616, -2.4158802723060084, -2.4078896498224216, -2.393549730616546, -2.3731165692750693, -2.346910973715357, -2.315306819141379, -2.278719052656504, -2.2375919977144454, -2.1923884215831837, -2.1435796770880358, -2.0916370924605223, -2.03702467144404, -1.9801930832675059, -1.9215748667208123, -1.8615807396525426, -1.8005968892878625, -1.7389831147552919, -1.6770716969453412, -1.615166879156762, -1.5535448526885791, -1.4924541531247832, -1.4321163845964504, -1.3727272002515494, -1.3144574772319395, -1.257454633537697, -1.201844042239359, -1.147730505625412, -1.0951997581210071, -1.0443199722695968, -0.9951432468177626, -0.9477070600658732, -0.9020356752147165, -0.8581414875153761, -0.8160263056720676, -0.7756825622045522, -0.7370944493905869, -0.700238979018704, -0.6650869655210021, -0.6316039331557393 ], [ -2.0255447307857954, -2.0776431290761295, -2.1261104705535887, -2.1704350814462288, -2.2101321807992123, -2.244757603692342, -2.273920924674483, -2.297297166030844, -2.3146363554449834, -2.325770351754537, -2.330616566267048, -2.32917844668383, -2.321542834910918, -2.3078745319325873, -2.288408577609912, -2.263440862476851, -2.233317724989151, -2.1984251564772066, -2.1591781529706275, -2.116010639282316, -2.0693662672760675, -2.0196902737474978, -1.9674224842834114, -1.9129914723588843, -1.856809827840451, -1.7992704533466646, -1.7407437867510422, -1.6815758395325284, -1.6220869401600244, -1.5625710763920069, -1.5032957381353833, -1.4445021718126005, -1.386405967006598, -1.329197905838241, -1.2730450146951275, -1.2180917663739597, -1.1644613883409374, -1.1122572396447188, -1.0615642250710393, -1.012450220461604, -0.9649674877956413, -0.9191540627158881, -0.8750351007332595, -0.8326241714211828, -0.7919244925638289, -0.7529300984955449, -0.7156269388048668, -0.6799939052091093, -0.6460037857705017, -0.6136241467506554 ], [ -1.9532360572207617, -2.002647558021208, -2.0485677109075455, -2.090522362805486, -2.128063571780358, -2.1607817998594725, -2.188317522491143, -2.2103715689496486, -2.2267135735769386, -2.237188044340319, -2.2417177280918423, -2.240304151774186, -2.2330254235126423, -2.220031564347005, -2.2015377899634387, -2.1778162577454836, -2.1491868319996925, -2.1160074029688314, -2.0786642346127744, -2.037562727810449, -1.9931188857499424, -1.9457516703521203, -1.8958763519279531, -1.843898883822373, -1.7902112808435269, -1.7351879436492639, -1.6791828484540077, -1.6225275094611487, -1.5655296174433828, -1.508472259411234, -1.4516136293491262, -1.3951871470784636, -1.3394019103689732, -1.2844434137526979, -1.2304744756419062, -1.1776363230439069, -1.126049790261458, -1.0758165944073654, -1.027020656342379, -0.9797294407899839, -0.9339952939313096, -0.8898567607856323, -0.8473398681851421, -0.8064593622041558, -0.7672198915459243, -0.7296171306668349, -0.6936388383624899, -0.6592658491901149, -0.6264729964855358, -0.5952299668813414 ], [ -1.8792028965560164, -1.9259323708555545, -1.9693157043606955, -2.008914774456396, -2.0443168110862002, -2.075145207509101, -2.1010697697749023, -2.121815829463435, -2.137171698819532, -2.146994051448822, -2.151210954136062, -2.1498224407409574, -2.1428986895079705, -2.13057602189252, -2.113051067597123, -2.090573525167415, -2.063437985244288, -2.0319752766338066, -1.9965437519336606, -1.9575208612538606, -1.915295282082034, -1.8702597915503625, -1.8228049923854777, -1.7733139405385272, -1.722157672886366, -1.6696915972957653, -1.6162526832453126, -1.5621573769645933, -1.507700158412304, -1.453152656286561, -1.398763239888916, -1.3447570116654153, -1.2913361305913749, -1.238680403518886, -1.1869480886704225, -1.1362768623210948, -1.0867849061765185, -1.0385720789238175, -0.9917211408676452, -0.9462990054570344, -0.9023579958807579, -0.8599370887870423, -0.8190631306031626, -0.779752014928889, -0.7420098120897398, -0.7058338441975953, -0.6712137010091905, -0.6381321935285074, -0.6065662436959094, -0.5764877096720311 ], [ -1.8038897866345929, -1.8479592139272722, -1.8888316807600523, -1.9261034697186146, -1.9593952255550129, -1.9883615220888031, -2.012699893490083, -2.0321588478608787, -2.0465444272183007, -2.0557249637365897, -2.0596337989222206, -2.0582698682802065, -2.0516961947858414, -2.0400364653405556, -2.0234699720577956, -2.0022252749689335, -1.9765729799601115, -1.9468180264148889, -1.913291848863761, -1.8763447246769278, -1.8363385552293783, -1.7936402599795993, -1.7486158985528681, -1.7016255798134003, -1.6530191713500757, -1.6031327882575355, -1.5522860157855938, -1.5007798048775358, -1.4488949710853232, -1.3968912241282858, -1.3450066559421439, -1.2934576182030555, -1.2424389250388228, -1.1921243222395748, -1.1426671702429207, -1.094201294148367, -1.0468419597927106, -1.0006869403556244, -0.9558176429950171, -0.9123002696010747, -0.8701869899042618, -0.8295171088865618, -0.7903182137478475, -0.7526072885964452, -0.716391787591816, -0.6816706594959892, -0.648435318516857, -0.6166705579772109, -0.586355404744096, -0.5574639135291226 ], [ -1.7277220669779165, -1.7691683649885777, -1.807569447626218, -1.8425542925015086, -1.8737751556103543, -1.9009160216015784, -1.9237005460331689, -1.9418990864854229, -1.955334459186778, -1.9638861288473979, -1.9674926349657933, -1.9661521687074504, -1.9599213297436269, -1.948912200911033, -1.9332879697788086, -1.9132573921032354, -1.8890684282805181, -1.8610013901147529, -1.8293619152570297, -1.7944740470342977, -1.7566736457384164, -1.7163023011583567, -1.6737018612647692, -1.629209642727183, -1.583154347755421, -1.535852679449459, -1.4876066241346115, -1.4387013530798027, -1.3894036862466457, -1.3399610559321535, -1.2906009070815587, -1.2415304725738354, -1.1929368650440009, -1.1449874311280204, -1.097830318898592, -1.0515952143495555, -1.0063942078428765, -0.9623227562972201, -0.9194607114774347, -0.8778733889861139, -0.8376126564386106, -0.7987180228164847, -0.7612177141487386, -0.7251297234793452, -0.6904628255631398, -0.65721754890952, -0.62538709968879, -0.5949582336493495, -0.5659120735900045, -0.5382248711103417 ], [ -1.6511031759557764, -1.6899762035834733, -1.7259570467790073, -1.7587056213197676, -1.7879039757721222, -1.8132637413343016, -1.834533102111208, -1.8515029493906603, -1.8640119183802089, -1.871950065083221, -1.875261019021487, -1.873942537246247, -1.8680454786119716, -1.857671306438907, -1.8429683045614602, -1.8241267496563909, -1.8013733173230966, -1.7749650095258727, -1.7451828788852102, -1.7123257956674423, -1.6767044622300629, -1.6386358332534567, -1.598438053550801, -1.5564259824276823, -1.512907336802301, -1.4681794556304486, -1.4225266656531435, -1.3762182124969249, -1.3295067107627254, -1.2826270608697778, -1.2357957780393742, -1.1892106789852521, -1.1430508738516598, -1.0974770140907049, -1.0526317508283929, -1.0086403624854454, -0.9656115147486248, -0.9236381202593444, -0.8827982694882841, -0.8431562081265009, -0.8047633399058465, -0.7676592370441022, -0.7318726434889165, -0.6974224588116353, -0.6643186929886538, -0.6325633844172167, -0.6021514753604567, -0.5730716406217244, -0.5453070666281536, -0.5188361792772824 ], [ -1.5744125675851315, -1.6107732889098396, -1.6443949970707799, -1.6749667715386103, -1.7021986424466142, -1.725828145679445, -1.745626427029198, -1.761403615296594, -1.7730132152758498, -1.7803553212495513, -1.7833785152351764, -1.782080386350285, -1.7765066827992149, -1.7667491805798523, -1.7529424173499315, -1.7352594904931846, -1.7139071510463457, -1.689120437899505, -1.661157090499107, -1.6302919565411416, -1.5968115786464736, -1.5610091058716766, -1.523179636643995, -1.483616062749161, -1.4426054515529896, -1.400425976809591, -1.3573443874446158, -1.3136139882687123, -1.2694730959983482, -1.2251439274215692, -1.1808318732109992, -1.1367251099888942, -1.0929945041271085, -1.0497937628743164, -1.0072597913155277, -0.9655132170557055, -0.9246590481379202, -0.8847874333818901, -0.8459744979382613, -0.8082832303160636, -0.7717644004021229, -0.7364574910194275, -0.7023916283511766, -0.6695864990814291, -0.6380532443738574, -0.6077953228338719, -0.5788093363867135, -0.5510858145674236, -0.5246099540731135, -0.4993623115883017 ], [ -1.4980041567620432, -1.5319229501006826, -1.5632550272863124, -1.5917168616514008, -1.617044678486303, -1.6390002112265556, -1.6573760352121392, -1.6720002463734414, -1.6827402801346436, -1.6895057077561038, -1.6922498991579327, -1.6909704988725922, -1.6857087215765936, -1.6765475322282994, -1.663608829286522, -1.6470497933818409, -1.627058594100181, -1.6038496617919873, -1.5776587295256461, -1.5487378347594225, -1.5173504448102184, -1.4837668390263867, -1.4482598476299637, -1.4111010155295154, -1.3725572310503749, -1.3328878355848863, -1.2923422109915734, -1.2511578270156374, -1.2095587205982934, -1.1677543720747696, -1.125938939273492, -1.084290808799666, -1.042972423760129, -1.0021303483957706, -0.9618955321517324, -0.9223837383333979, -0.8836961054386243, -0.8459198123499225, -0.8091288216888579, -0.7733846786887058, -0.7387373458680053, -0.7052260565455086, -0.6728801728001592, -0.6417200358338271, -0.6117577988331584, -0.5829982343502904, -0.5554395099350824, -0.5290739272622063, -0.5038886213144202, -0.47986621732226786 ], [ -1.4222052228022477, -1.4537603197243487, -1.482879233424476, -1.509304083224466, -1.5327955408089433, -1.5531378743388422, -1.5701435983582088, -1.5836575367974282, -1.5935601316155643, -1.5997698651596204, -1.6022447065323813, -1.6009825380649663, -1.596020565238804, -1.5874337602873783, -1.575332433754887, -1.5598590660057647, -1.5411845583000074, -1.5195040778562767, -1.4950326726337293, -1.4680008208310125, -1.4386500602999603, -1.4072288177632368, -1.3739885302728976, -1.3391801244306987, -1.3030508943515309, -1.2658417982364156, -1.227785176144518, -1.1891028780855362, -1.1500047815838, -1.110687670942193, -1.0713344460506555, -1.032113626245386, -0.9931791139784887, -0.9546701835086582, -0.9167116611450736, -0.8794142654994062, -0.8428750785146637, -0.8071781205791657, -0.7723950056740925, -0.7385856551513583, -0.7057990513257406, -0.6740740145429784, -0.6434399897209058, -0.6139178305317516, -0.585520571386819, -0.5582541791957225, -0.5321182784990928, -0.5071068450203549, -0.4832088639550436, -0.46040895042431673 ], [ -1.3473157180695556, -1.376591760751709, -1.4035796159981104, -1.428045336933408, -1.449772340968662, -1.4685658204073364, -1.484256786677773, -1.4967055890109449, -1.5058047711689044, -1.5114811600225038, -1.5136971142077023, -1.512450897450346, -1.5077761783192183, -1.4997406954632422, -1.488444163398166, -1.4740155259420171, -1.4566096890863989, -1.436403879662263, -1.4135937795032336, -1.388389577749957, -1.3610120687547784, -1.3316889026756344, -1.3006510731545622, -1.268129703795818, -1.2343531741289322, -1.1995446073314944, -1.1639197266280334, -1.1276850750220473, -1.0910365836662095, -1.0541584674056468, -1.0172224214600099, -0.9803870904570375, -0.9437977797308976, -0.9075863786303615, -0.8718714662692324, -0.836758571460047, -0.8023405603153917, -0.7686981270250532, -0.7359003655022713, -0.7040054018469852, -0.6730610698245609, -0.6431056137549145, -0.6141684053071983, -0.5862706626750089, -0.5594261624457222, -0.5336419361651719, -0.5089189451297471, -0.4852527283118284, -0.46263401954282357, -0.4410493311481618 ], [ -1.273607939776044, -1.3006946491613613, -1.325637964913184, -1.3482262084824606, -1.3682638989651812, -1.385575601192472, -1.4000094347655452, -1.4114401128711682, -1.4197714001933621, -1.4249379049252666, -1.426906148044909, -1.4256748819366991, -1.421274659665011, -1.4137666857629716, -1.4032410086098013, -1.389814141320311, -1.3736262196646405, -1.3548378192463422, -1.3336265586779936, -1.3101836111618885, -1.2847102354168007, -1.257414420669603, -1.2285077218554132, -1.1982023422479187, -1.1667085029066184, -1.1342321224576901, -1.1009728172425606, -1.0671222208723634, -1.0328626136100354, -0.9983658455391963, -0.9637925328916697, -0.9292915039021918, -0.8949994688566412, -0.8610408883423324, -0.8275280138679109, -0.7945610757997841, -0.7622285947973939, -0.7306077944836078, -0.6997650948480727, -0.6697566677602576, -0.6406290378950883, -0.6124197142905792, -0.58515783962323, -0.5588648460699932, -0.5335551083039474, -0.5092365857276597, -0.4859114474760482, -0.463576675012461, -0.4422246382992747, -0.42184364254817397 ], [ -1.2013265290725064, -1.2263174796758736, -1.2493060635239026, -1.2701012604796933, -1.2885271108254568, -1.3044260648575068, -1.3176620200600686, -1.3281229380229687, -1.335722951556554, -1.3404038943294463, -1.3421362084875952, -1.340919208839074, -1.3367807052438803, -1.329776008242285, -1.3199863664737799, -1.3075169066245778, -1.2924941651055228, -1.2750633130627897, -1.2553851813125014, -1.233633189411328, -1.2099902745645805, -1.1846459033153565, -1.1577932339303438, -1.129626481789997, -1.1003385251374613, -1.070118775019933, -1.0391513215668975, -1.0076133590216092, -0.975673884127729, -0.9434926564275692, -0.9112194045524922, -0.8789932594684142, -0.8469423936646576, -0.8151838442442292, -0.7838234976059244, -0.7529562137411159, -0.7226660689620281, -0.6930266970121965, -0.6641017098838484, -0.6359451811962915, -0.6086021766054996, -0.5821093173626444, -0.5564953647735666, -0.5317818148986821, -0.5079834943470982, -0.48510914944107, -0.463162022344876, -0.4421404089575458, -0.42203819445780555, -0.4028453633624063 ], [ -1.1306887637384553, -1.15368026298106, -1.1748061825368092, -1.1938946133091957, -1.210787605213914, -1.2253440758662495, -1.2374424325992135, -1.2469828193329444, -1.253888916038128, -1.2581092371734064, -1.2596178945962282, -1.258414809099098, -1.2545253730336463, -1.247999585016724, -1.238910696515637, -1.2273534281662961, -1.2134418291007674, -1.1973068633768515, -1.1790938125533659, -1.1589595823999583, -1.1370699955277976, -1.1135971418344877, -1.0887168466577224, -1.062606303822694, -1.0354419083886146, -1.0073973125237288, -0.9786417179323863, -0.949338409764813, -0.919643529958103, -0.8897050823990693, -0.8596621580339481, -0.8296443649266123, -0.7997714461314944, -0.770153066948523, -0.7408887525263639, -0.7120679567455703, -0.6837702437310083, -0.6560655641092199, -0.6290146091523126, -0.6026692271590823, -0.5770728877509266, -0.5522611811512996, -0.5282623409278837, -0.5050977800717706, -0.48278263163838386, -0.46132628646086604, -0.44073292165146083, -0.42100201472018406, -0.4021288391563944, -0.38410493823430114 ], [ -1.0618851109091283, -1.0829751815637594, -1.1023318315984623, -1.1198007834169226, -1.1352406578973269, -1.14852549382287, -1.1595470053159724, -1.1682165048114312, -1.1744664334069432, -1.1782514563327966, -1.1795490971992484, -1.1783598998827989, -1.174707121585684, -1.1686359753139122, -1.160212454949113, -1.1495217905567927, -1.1366665941536356, -1.121764765268138, -1.104947230188519, -1.0863555885630736, -1.0661397365796685, -1.0444555283904888, -1.0214625280078238, -0.9973218936942303, -0.9721944267633327, -0.9462388072659531, -0.9196100305852701, -0.8924580516503986, -0.8649266373275497, -0.8371524225209503, -0.8092641615298772, -0.7813821631669986, -0.7536178959373945, -0.7260737481025747, -0.6988429266018323, -0.6720094784768982, -0.6456484185500286, -0.6198259475566852, -0.5945997456532812, -0.5700193271409608, -0.5461264433076585, -0.5229555214422241, -0.5005341292718235, -0.4788834552829213, -0.4580187965764333, -0.4379500470567783, -0.4186821798456697, -0.4002157188306703, -0.38254719519830904, -0.36566958565653596 ], [ -0.9950800058697311, -1.0143674699134388, -1.0320487339150568, -1.0479857438152052, -1.0620523282085763, -1.0741363747078219, -1.0841417677385958, -1.091990028530493, -1.0976216106212873, -1.1009968177919744, -1.1020963247025573, -1.1009212930258059, -1.097493087747813, -1.0918526100117636, -1.084059274652932, -1.0741896719778046, -1.0623359633527214, -1.0486040675863857, -1.0331116990399156, -1.0159863186214961, -0.997363055692098, -0.9773826532164278, -0.9561894811795135, -0.9339296552277756, -0.9107492893676927, -0.88679290383527, -0.8622020022144221, -0.8371138256719004, -0.8116602868372842, -0.7859670813788218, -0.7601529716695195, -0.7343292340434815, -0.7085992589434691, -0.683058291684651, -0.6577933005328167, -0.632882958243151, -0.6083977230574649, -0.5844000053429026, -0.5609444065098148, -0.5380780175116042, -0.5158407650505157, -0.49426579454391484, -0.4733798799042521, -0.45320385121755313, -0.433753032440634, -0.41503768225306326, -0.3970634321767643, -0.3798317170003789, -0.36334019340666157, -0.34758314349232267 ], [ -0.9304128229689945, -0.9479964843458828, -0.9640959882594151, -0.9785881701592218, -0.9913607798183601, -1.0023143558276968, -1.0113638835855334, -1.0184401884707395, -1.023491026872335, -1.02648184940902, -1.0273962219558976, -1.0262359005233652, -1.0230205657210656, -1.0177872318774739, -1.0105893550955436, -1.00149567336304, -0.9905888196017574, -0.9779637543717015, -0.9637260681803219, -0.9479902037524861, -0.93087764642606, -0.9125151266097422, -0.8930328726650849, -0.8725629463111959, -0.8512376862288265, -0.8291882793311101, -0.8065434734042585, -0.7834284396285971, -0.7599637889241646, -0.7362647421390118, -0.7124404507996551, -0.6885934624455383, -0.6648193224363266, -0.6412063025089723, -0.6178352452235862, -0.5947795127212281, -0.5721050278693496, -0.5498703958389588, -0.528127094387683, -0.506919721565591, -0.48628629016883873, -0.4662585589962265, -0.44686239177879705, -0.4281181355181489, -0.4100410108570052, -0.392641507992306, -0.3759257825063218, -0.35989604632091377, -0.3445509497616872, -0.3298859514445367 ], [ -0.8679990055328812, -0.8839769284256651, -0.8985873833834932, -0.9117208364236751, -0.9232777488682038, -0.9331701866331847, -0.9413232336480681, -0.9476761701196785, -0.9521833859522126, -0.9548150096611916, -0.955557242713321, -0.9544123979760095, -0.9513986489193555, -0.9465495036661888, -0.9399130251299461, -0.9315508252005578, -0.9215368667932584, -0.9099561119861277, -0.896903056970495, -0.8824801949457999, -0.8667964465493727, -0.8499655943053477, -0.8321047533965937, -0.8133329062857153, -0.7937695237298286, -0.7735332898311178, -0.7527409441249875, -0.7315062494382742, -0.7099390904074254, -0.6881447041586306, -0.6662230417258703, -0.6442682563154887, -0.622368312505198, -0.6006047088704602, -0.5790523053369354, -0.5577792457307889, -0.5368469655022814, -0.5163102743933574, -0.4962175038644927, -0.47661070934893157, -0.4575259178239133, -0.43899341174008044, -0.42103804099798925, -0.40367955537260847, -0.3869329505362544, -0.3708088215938907, -0.35531371880227014, -0.3404505008812788, -0.3262186820281576, -0.312614769405279 ], [ -0.8079313232526171, -0.8224002016876137, -0.8356128317664904, -0.8474721263561751, -0.8578901249245348, -0.8667893702023473, -0.8741041081628935, -0.8797812795030024, -0.8837812791875506, -0.8860784692627046, -0.8866614383391311, -0.885533008531449, -0.8827099972074328, -0.878222746841872, -0.8721144417549365, -0.8644402355149203, -0.8552662170559617, -0.8446682467464113, -0.8327306954465876, -0.8195451198929944, -0.8052089066347734, -0.7898239144817438, -0.7734951423378582, -0.7563294457210537, -0.7384343214858433, -0.7199167764743606, -0.7008822921603726, -0.6814338939059901, -0.6616713302740644, -0.6416903649654153, -0.621582181398149, -0.6014328977304062, -0.5813231882535301, -0.5613280055466527, -0.5415163965785521, -0.5219514050503737, -0.5026900516718789, -0.483783383726204, -0.46527658517286286, -0.4472091386335644, -0.42961503086592057, -0.41252299372517887, -0.3959567731116085, -0.3799354189735171, -0.36447359005681834, -0.34958186773995203, -0.3352670739479229, -0.3215325887859284, -0.30837866415819115, -0.2958027302319808 ], [ -0.7502812276349791, -0.76333584168914, -0.775239892212424, -0.7859076297388614, -0.7952616133297483, -0.8032338835219843, -0.8097669763546989, -0.8148147528475096, -0.8183430256171305, -0.820329971783645, -0.8207663283386843, -0.8196553723980149, -0.8170126941870248, -0.8128657753295809, -0.8072533891670683, -0.8002248434581836, -0.7918390887957452, -0.7821637182415486, -0.7712738848606744, -0.7592511639715576, -0.7461823860846506, -0.7321584648494242, -0.7172732420859469, -0.7016223693612611, -0.6853022427638755, -0.6684090046684126, -0.6510376234603481, -0.6332810594705471, -0.6152295227955686, -0.5969698262861236, -0.5785848348001628, -0.5601530098630427, -0.5417480471719236, -0.5234386029373668, -0.5052881038751595, -0.4873546347434712, -0.46969089665206054, -0.45234422893650295, -0.4353566871683101, -0.41876516983707535, -0.40260158636674803, -0.3868930593868549, -0.3716621545452137, -0.35692713159465206, -0.34270221099028264, -0.32899785077399546, -0.31582102908136145, -0.3031755281667723, -0.29106221639325924, -0.2794793251629284 ], [ -0.6951002784675773, -0.7068330319942295, -0.717515353592405, -0.7270717954755581, -0.7354344506921329, -0.7425439480020974, -0.7483503042110671, -0.7528136134701979, -0.7559045594338663, -0.7576047426187937, -0.7579068213293978, -0.756814469805343, -0.754342161725573, -0.7505147909343246, -0.7453671443533547, -0.7389432445803907, -0.7312955816414819, -0.7224842547028123, -0.7125760451986571, -0.7016434427849498, -0.6897636448397357, -0.677017549014993, -0.6634887567343335, -0.6492626036593996, -0.63442523112399, -0.6190627104366515, -0.6032602298368339, -0.5871013517970398, -0.570667346324542, -0.5540366039648006, -0.5372841303716958, -0.5204811226181314, -0.5036946258991215, -0.4869872679495777, -0.4704170673741732, -0.4540373111735807, -0.4378964960497065, -0.42203832757312365, -0.4065017709872434, -0.3913211472864375, -0.3765262682202035, -0.36214260401879006, -0.3481914778864532, -0.33469028164312764, -0.32165270729294715, -0.3090889897401765, -0.2970061563413975, -0.28540827946276726, -0.2742967286899485, -0.2636704198056461 ], [ -0.6424216166706638, -0.6529221512551706, -0.6624668547275017, -0.6709896163391913, -0.6784311481632814, -0.6847398246248899, -0.6898723945480647, -0.6937945494886264, -0.6964813376930374, -0.6979174185988899, -0.6980971579524036, -0.6970245680900207, -0.6947131016142865, -0.6911853096181009, -0.6864723778716364, -0.6806135560746212, -0.6736554964527068, -0.6656515186653824, -0.6566608182100826, -0.6467476352848813, -0.6359804004650325, -0.6244308726335475, -0.6121732834612683, -0.5992835014281179, -0.5858382269664446, -0.5719142288245807, -0.5575876302173925, -0.5429332517706327, -0.5280240166958672, -0.512930422078782, -0.4977200786533078, -0.4824573199981128, -0.4672028807602695, -0.45201364231122265, -0.436942443191495, -0.422037950818676, -0.4073445902243169, -0.39290252504861645, -0.3787476856520069, -0.36491183898772483, -0.3514226948048207, -0.3383040427989834, -0.32557591548075915, -0.31325477176780736, -0.3013536966115897, -0.28988261232155255, -0.27884849763557806, -0.2682556109902652, -0.25810571485565137, -0.2483982984066373 ], [ -0.5922614612763097, -0.6016163410151738, -0.6101045179346036, -0.6176683227894288, -0.6242562397575357, -0.629823610752734, -0.6343332260599157, -0.6377557885968554, -0.6400702439624082, -0.6412639732442775, -0.6413328499717919, -0.6402811663646968, -0.6381214370417405, -0.6348740906175756, -0.6305670612161971, -0.6252352929660363, -0.6189201711161916, -0.6116688936047892, -0.6035337967874983, -0.5945716486567232, -0.5848429223106792, -0.5744110617187759, -0.5633417510191305, -0.5517021977026777, -0.539560439098175, -0.526984680575137, -0.5140426728250147, -0.5008011344651897, -0.4873252250431903, -0.4736780723169558, -0.45992035647494767, -0.4461099527674277, -0.4323016328780016, -0.41854682430303036, -0.4048934260495167, -0.3913856781311713, -0.37806408164755245, -0.36496536568080407, -0.3521224968358201, -0.33956472697897166, -0.32731767458644967, -0.315403435083615, -0.3038407156265668, -0.2926449899304364, -0.28182866896988834, -0.2714012836504396, -0.26136967585983895, -0.2517381946442694, -0.24250889460201064, -0.23368173393850777 ], [ -0.5446206105696998, -0.55291307219629, -0.5604225761293593, -0.567099065658639, -0.57289801536456, -0.5777810180257406, -0.5817162704729251, -0.5846789486191357, -0.5866514661219238, -0.5876236152804646, -0.5875925925309038, -0.586562914058963, -0.5845462294946222, -0.581561043381676, -0.5776323551973375, -0.5727912292408808, -0.5670743058370136, -0.560523265122927, -0.5531842543069121, -0.5451072887831299, -0.5363456369242987, -0.5269551977944198, -0.5169938804455727, -0.5065209928887047, -0.49559664824022986, -0.48428119492445987, -0.47263467713180396, -0.4607163309813809, -0.4485841210088857, -0.436294320705791, -0.42390113989155465, -0.4114564007345445, -0.3990092632786948, -0.3866060004121086, -0.37428982135892275, -0.3621007420086768, -0.3500754997356268, -0.3382475098136315, -0.32664686010532007, -0.31530034039603017, -0.30423150254764697, -0.29346074755700613, -0.28300543560544744, -0.2728800152690203, -0.2630961682080202, -0.25366296585767323, -0.24458703488532563, -0.2358727284514981, -0.22752230060236567, -0.21953608141931924 ], [ -0.49948592965796546, -0.5067956924986903, -0.5134009756609188, -0.5192585697981777, -0.5243302204148714, -0.5285831131136951, -0.5319902693019898, -0.5345308449995883, -0.5361903290620369, -0.536960640695439, -0.5368401293308798, -0.5358334825554438, -0.5339515497631011, -0.5312110904815446, -0.527634457011058, -0.5232492211886235, -0.51808775489287, -0.5121867734647223, -0.5055868506516172, -0.4983319130833739, -0.49046872172221856, -0.482046347233106, -0.4731156458015746, -0.4637287415673441, -0.45393852151236413, -0.4437981483011426, -0.43336059618545586, -0.42267821462567956, -0.4118023237346031, -0.4007828450161406, -0.3896679701636925, -0.3785038699224339, -0.36733444423469486, -0.3562011141060213, -0.3451426548805989, -0.33419506992182857, -0.3233915030769554, -0.31276218777742204, -0.3023344301966697, -0.2921326235579944, -0.2821782904544281, -0.2724901499055772, -0.2630842058248406, -0.25397385359448266, -0.24517000153469137, -0.23668120419490868, -0.22851380457968062, -0.22067208263674254, -0.21315840757207383, -0.20597339180599494 ], [ -0.45683180892296105, -0.4632349391589099, -0.46900693930094595, -0.4741107430513285, -0.47851370646664915, -0.4821880054435963, -0.48511095413232974, -0.48726523890128814, -0.4886390656576969, -0.48922622137805694, -0.48902605339868344, -0.4880433721909059, -0.4862882849091845, -0.4837759679400111, -0.48052638705162565, -0.47656397365289793, -0.4719172652454817, -0.46661851753169814, -0.460703294946877, -0.4542100457178937, -0.4471796669770671, -0.4396550650163775, -0.4316807154516846, -0.42330222785514837, -0.41456591926612796, -0.4055184008567825, -0.3962061818649445, -0.3866752946758889, -0.37697094461681546, -0.36713718761279357, -0.35721663835011097, -0.3472502110162612, -0.33727689406072914, -0.32733355977294387, -0.3174548088312561, -0.30767284936357164, -0.29801740949740396, -0.28851568188059074, -0.27919229823430336, -0.2700693316632894, -0.2611663241958848, -0.25250033685647866, -0.24408601947970898, -0.2359356974528959, -0.22805947261090354, -0.2204653355980042, -0.2131592871430419, -0.2061454658597548, -0.1994262803728355, -0.19300254377544013 ], [ -0.41662157997824756, -0.4221904037192694, -0.4271964760537872, -0.43160822720827596, -0.4353980193257405, -0.43854246843610856, -0.4410226968457449, -0.44282451218623153, -0.44393851210968505, -0.4443601162192501, -0.44408952908734256, -0.44313163999909855, -0.4414958662843891, -0.43919594775825566, -0.43624969992738016, -0.43267873333773066, -0.4285081458619697, -0.42376619398805015, -0.4184839483975087, -0.41269493841311844, -0.40643478931851695, -0.39974085613940846, -0.3926518572261568, -0.38520751086249727, -0.377448178100142, -0.36941451503144895, -0.36114713771150475, -0.3526863028857752, -0.344071607541643, -0.3353417100678364, -0.3265340754755881, -0.31768474672025926, -0.3088281436817262, -0.29999689083929426, -0.29122167413825273, -0.2825311270133588, -0.27395174503142505, -0.26550782815778295, -0.2572214492517835, -0.24911244706370939, -0.24119844174292426, -0.2334948706751263, -0.22601504234330094, -0.21877020584671403, -0.2117696337090169, -0.2050207156528978, -0.19852906110620028, -0.1922986083255116, -0.18633173816964677, -0.18062939072017437 ], [ -0.37880887788377304, -0.3836119376438485, -0.38791582669130853, -0.39169387989508686, -0.39492291367563537, -0.3975834832286944, -0.3996600787463451, -0.4011412581846394, -0.40201971649160617, -0.4022922934183599, -0.40195992392647417, -0.4010275366563676, -0.3995039068666064, -0.39740147068418796, -0.3947361074690314, -0.3915268966820049, -0.3877958549735747, -0.38356765840753937, -0.3788693539192336, -0.3737300633787062, -0.36818068305231644, -0.3622535808624421, -0.3559822936344046, -0.34940122646366856, -0.3425453563908061, -0.3354499426821831, -0.3281502461295065, -0.32068125985563145, -0.31307745411611254, -0.3053725374960867, -0.29759923671598076, -0.2897890969831758, -0.28197230447459254, -0.2741775321277531, -0.2664318094772953, -0.2587604168232882, -0.2511868035765701, -0.24373253021364794, -0.2364172329017451, -0.22925860953438182, -0.22227242565432292, -0.2154725385372318, -0.20887093756491582, -0.20247779892914486, -0.19630155267089378, -0.19034896007046775, -0.18462519945334366, -0.17913395856009884, -0.17387753173725717, -0.168856920335124 ], [ -0.34333894045394553, -0.347440989756447, -0.35110283611714754, -0.3543021786162379, -0.35701978553611213, -0.3592396962857347, -0.36094937005005634, -0.3621397797637622, -0.3628054520370485, -0.3629444555277501, -0.36255834182242586, -0.3616520440581814, -0.3602337392291435, -0.3583146803738937, -0.3559090046745075, -0.3530335229984187, -0.349707495689471, -0.3459523985823605, -0.34179168238672397, -0.3372505278556013, -0.33235559858121566, -0.3271347928804995, -0.3216169960436239, -0.3158318341962685, -0.3098094311268469, -0.3035801696027214, -0.2971744588920828, -0.29062251037498843, -0.2839541232337415, -0.27719848223626453, -0.2703839695572319, -0.2635379924222123, -0.2566868281198904, -0.2498554876230501, -0.24306759870997796, -0.23634530910472007, -0.22970920977661602, -0.2231782781741254, -0.2167698408290364, -0.2104995544661159, -0.20438140449647624, -0.19842771956587235, -0.19264920067179725, -0.18705496325568416, -0.18165259061556727, -0.17644819696559377, -0.171446498487819, -0.16665089077201278, -0.16206353111582383, -0.15768542425476673 ] ], "zauto": true, "zmax": 3.0741332738216522, "zmin": -3.0741332738216522 }, { "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.1233846050933547, 0.11149343332607968, 0.10085537362835713, 0.09182982496818327, 0.08489660096047645, 0.0805848453002246, 0.07931343552242137, 0.08120790707391456, 0.08604078171706599, 0.09335547993252391, 0.10265809216297651, 0.11354342235558526, 0.12572874739617668, 0.13903353422815043, 0.153342967404287, 0.16857478488743285, 0.18465583389291546, 0.20150852094594934, 0.21904501577704197, 0.23716661434108435, 0.2557660113661838, 0.2747308374038035, 0.2939474083736036, 0.31330410413960547, 0.332694114878273, 0.3520174913994323, 0.37118254258990685, 0.3901066717504511, 0.4087167579516602, 0.4269491847902353, 0.4447496069389923, 0.46207253020372324, 0.47888076628914866, 0.4951448104322648, 0.5108421789308977, 0.5259567343969439, 0.5404780191246379, 0.554400611044712, 0.5677235120895735, 0.5804495751978552, 0.5925849734431825, 0.6041387127166232, 0.6151221878876193, 0.625548781299906, 0.6354335017333563, 0.6447926615023261, 0.6536435891027232, 0.6620043747120213, 0.669893645847125, 0.6773303705610985 ], [ 0.11052740750599184, 0.09848360341900608, 0.08755976880913498, 0.07810202807597579, 0.07063710518016542, 0.0658220239922774, 0.0642435048823326, 0.06611868172765414, 0.07116443773807901, 0.07879175074099239, 0.08840430090454617, 0.09955943002887749, 0.11198237260896388, 0.12551823374065138, 0.14007766817880402, 0.15559595723271538, 0.17200807230772333, 0.18923666131901684, 0.20718877785687595, 0.22575767212873551, 0.24482694351459916, 0.2642753280522368, 0.2839811617214301, 0.303826082472241, 0.3236978480012036, 0.34349231257084845, 0.3631146796791016, 0.3824801684703746, 0.4015142264123062, 0.42015240410038535, 0.43833998819539244, 0.45603146935151684, 0.4731899051571758, 0.48978622401590494, 0.5057985044289658, 0.5212112549837343, 0.5360147131302399, 0.5502041751941474, 0.5637793657229886, 0.5767438509425836, 0.5891044986041349, 0.6008709846624785, 0.6120553459054661, 0.6226715767425834, 0.6327352677669866, 0.642263283355106, 0.6512734754013264, 0.6597844302531101, 0.6678152459745953, 0.6753853371930054 ], [ 0.09861867199775937, 0.0865305909131327, 0.07541076948156432, 0.065562058213041, 0.05753502360100452, 0.052136324151390856, 0.05020734105807224, 0.05212440180460427, 0.05750591281246942, 0.06554871018473869, 0.07552203129676628, 0.08695613882962812, 0.0996041849191294, 0.11335113603477025, 0.12813965413211162, 0.14392382200040804, 0.1606454442016318, 0.17822548533289295, 0.19656434645826967, 0.21554644862834746, 0.23504624904663093, 0.2549340966233675, 0.2750811928852046, 0.295363431729869, 0.3156641539518913, 0.33587596528151675, 0.3559017980528196, 0.3756553888392962, 0.3950613210404848, 0.4140547543770574, 0.4325809378845987, 0.4505945812211976, 0.46805914124654635, 0.48494606654905326, 0.501234031341189, 0.5169081813507411, 0.5319594075143844, 0.5463836580243465, 0.5601812952626513, 0.5733565011240623, 0.5859167319733921, 0.5978722228439465, 0.6092355393302963, 0.6200211748556258, 0.63024519051492, 0.6399248944404927, 0.6490785575482267, 0.657725162554763, 0.6658841832706904, 0.6735753913424927 ], [ 0.08774270449119934, 0.07573977641559794, 0.06454780121924017, 0.05438638249100886, 0.04578028013403536, 0.03968674507134335, 0.03734244708032, 0.03942250378829849, 0.04534477355623522, 0.05394140296313465, 0.0643232921552406, 0.07602996033128998, 0.08887526475013172, 0.10280062272298317, 0.11778577083087333, 0.133803049435461, 0.15079882148362483, 0.16869033381300721, 0.1873702518919679, 0.20671406585875782, 0.2265877192884677, 0.24685422903131726, 0.2673788897278625, 0.28803307542290574, 0.30869682656670233, 0.32926045852553376, 0.3496254167441035, 0.36970457091303427, 0.38942210357399737, 0.4087131148685433, 0.42752303689254356, 0.4458069284472731, 0.46352870316639916, 0.4806603301492146, 0.49718103551719883, 0.51307652504603, 0.5283382416683658, 0.5429626667756948, 0.5569506705507363, 0.5703069137870417, 0.5830393016077431, 0.5951584880275318, 0.6066774292888417, 0.6176109832456256, 0.6279755516843069, 0.637788762295154, 0.6470691869834588, 0.6558360932942265, 0.664109225880732, 0.6719086151482976 ], [ 0.07806977981231392, 0.06631726908490505, 0.05524099108738215, 0.04493695379149482, 0.035822160473019456, 0.028933447893247734, 0.026087851055427103, 0.028547609746730058, 0.035279469592940496, 0.04452369861627814, 0.05528373689952323, 0.06719004977047495, 0.08015669954316285, 0.09419250157663214, 0.10931312883599503, 0.12550472603549126, 0.14271420171346752, 0.1608526843241922, 0.17980429856572605, 0.1994359509255513, 0.21960608121914812, 0.2401716601935903, 0.26099338370051334, 0.28193929362965325, 0.302887132669087, 0.32372572655260934, 0.3443556423255245, 0.36468932105251534, 0.3846508386354783, 0.40417541177084654, 0.4232087372652361, 0.4417062306790473, 0.4596322131993536, 0.4769590825622646, 0.493666493807356, 0.5097405679370672, 0.5251731406377034, 0.5399610586971882, 0.5541055283279847, 0.5676115170418554, 0.5804872088480263, 0.5927435112154823, 0.6043936113389143, 0.6154525786821852, 0.6259370104656411, 0.6358647166499946, 0.645254440997183, 0.6541256149147087, 0.6624981409798336, 0.6703922032667812 ], [ 0.06990957152089165, 0.05863498863707426, 0.04797896936883789, 0.03790871154680565, 0.028676277232248564, 0.02123397115500499, 0.017971303047048772, 0.02102035897346748, 0.028543610707970558, 0.03819071026896712, 0.04906050383253781, 0.0609473168455276, 0.07386841680385653, 0.08788489733956217, 0.1030327543951654, 0.1193004448020348, 0.136628425896178, 0.15491825578443053, 0.17404442084010555, 0.19386549300753414, 0.21423329397701574, 0.2349998318400733, 0.2560222455327816, 0.27716613398779194, 0.2983076420697821, 0.31933461907656974, 0.3401471005046738, 0.3606573058292036, 0.3807892982296163, 0.40047841592654027, 0.41967055716992324, 0.4383213799588684, 0.4563954616323611, 0.4738654512878727, 0.490711238633002, 0.5069191556781503, 0.5224812221428651, 0.5373944412120392, 0.5516601490677505, 0.5652834192284804, 0.5782725209847781, 0.5906384299970717, 0.6023943883079732, 0.6135555105289876, 0.6241384327147392, 0.634161000374625, 0.6436419921409278, 0.6526008757716865, 0.6610575933827891, 0.6690323730503641 ], [ 0.06374934225999937, 0.053265762900919826, 0.043491814516223276, 0.03433937945923278, 0.02600555013295299, 0.01937341625832192, 0.016661508780300986, 0.0197175349812767, 0.026828038187077536, 0.03594761621260222, 0.04631930158427836, 0.05779135982219417, 0.07039760726606939, 0.08419662906108905, 0.09921188755770195, 0.11541536840265104, 0.13273109991540594, 0.15104635931690275, 0.1702242276736954, 0.1901146726168802, 0.21056328420538506, 0.23141769792654557, 0.2525320679654931, 0.27377001162319076, 0.2950063999317173, 0.31612829733174885, 0.33703528463265064, 0.35763934301906647, 0.37786443303097556, 0.39764586914169486, 0.4169295653746806, 0.43567120828705913, 0.4538353990420453, 0.4713947950532831, 0.488329272992083, 0.5046251282132161, 0.5202743204471465, 0.535273771606999, 0.5496247185240063, 0.5633321211662679, 0.5764041252600226, 0.5888515770958731, 0.6006875875611564, 0.6119271420072271, 0.6225867523638542, 0.6326841478914372, 0.6422380010647685, 0.6512676852684866, 0.659793061221309, 0.6678342893079606 ], [ 0.06021122105596793, 0.050880445911889324, 0.04250633406808385, 0.035017604799468485, 0.02864288997798349, 0.02411279887572148, 0.0226292782724019, 0.024923804498762903, 0.0304004193095772, 0.03805395466097045, 0.04730176307370689, 0.057941405397038875, 0.06993886274083062, 0.08329662990820531, 0.09799408698614402, 0.11396924347487178, 0.13112064991333608, 0.14931705292078956, 0.16840841891547614, 0.1882356333299353, 0.2086380978997272, 0.22945928085022585, 0.25055055293401096, 0.2717736811188506, 0.29300230652834475, 0.3141226696228894, 0.335033786919422, 0.35564723570634404, 0.3758866659538442, 0.39568713001966577, 0.41499429880068167, 0.4337636160412396, 0.45195942934703, 0.4695541261698534, 0.4865272949713497, 0.5028649254658206, 0.51855865692812, 0.5336050797606509, 0.5480050926316483, 0.5617633153544201, 0.5748875561335761, 0.5873883307427359, 0.599278430519043, 0.610572535679416, 0.6212868703101526, 0.6314388953955951, 0.6410470363831784, 0.6501304419908559, 0.6587087712164117, 0.666802005781474 ], [ 0.0598478220230887, 0.0519227124348389, 0.045213886650069916, 0.039608599957771634, 0.035217911644052545, 0.03241369423644186, 0.03169853050179534, 0.03339895595096598, 0.03746098972616387, 0.04359823358393393, 0.05154731979292852, 0.0611597228109312, 0.07236522672077758, 0.08511299077213097, 0.09933441294491835, 0.11493004308480978, 0.13177113879085134, 0.14970737282589924, 0.16857573092241782, 0.18820840543205913, 0.20843902188290406, 0.2291072121347306, 0.25006177978556743, 0.2711627437582345, 0.2922825179976236, 0.31330644042288125, 0.33413282112045645, 0.3546726433090672, 0.37484902119723074, 0.39459649547134884, 0.413860228600353, 0.43259514739187827, 0.4507650684771601, 0.468341833021484, 0.48530446948626865, 0.5016383973489442, 0.5173346800351605, 0.5323893317110692, 0.546802679836509, 0.5605787833404828, 0.5737249048183993, 0.5862510341551408, 0.5981694603538028, 0.6094943880148563, 0.6202415947945757, 0.6304281262157054, 0.6400720243586254, 0.649192087187666, 0.657807655533095, 0.6659384250304923 ], [ 0.06283854270326761, 0.056285472454309086, 0.05106324891499078, 0.04695855650302637, 0.04392772032428375, 0.042110524948370455, 0.041756135082068234, 0.04310111575650035, 0.04627905302652523, 0.051316911559834394, 0.058187281577917326, 0.06684918343858633, 0.07725397235325406, 0.08933398312202068, 0.10299334209279781, 0.11810710637920814, 0.1345265904648743, 0.15208717515996048, 0.1706160930697911, 0.18993905783712126, 0.20988543934611253, 0.23029206439160543, 0.2510058494401578, 0.2718854900792885, 0.2928024105476562, 0.3136411455341573, 0.3342992957744565, 0.35468717198713845, 0.3747272188611818, 0.394353291790663, 0.41350984332661084, 0.43215106336865733, 0.45024000650735296, 0.46774773127764485, 0.4846524690839462, 0.5009388349459641, 0.5165970877726684, 0.5316224444121721, 0.5460144490869306, 0.5597763978676819, 0.5729148164438027, 0.5854389885064445, 0.5973605314810676, 0.6086930160472275, 0.6194516257970566, 0.629652853451041, 0.6393142302221919, 0.6484540851581936, 0.6570913315644056, 0.6652452778951059 ], [ 0.06886872430598544, 0.06337954652396469, 0.05918963950437551, 0.05601749996559975, 0.05373993073008629, 0.052405829299670095, 0.05218729069666773, 0.05330346172303681, 0.05595518710863853, 0.06029134024976887, 0.06640256646159932, 0.07432537011048676, 0.08404589418570124, 0.09550337646533663, 0.10859602682184838, 0.12318959067524497, 0.13912697334706126, 0.15623732199685073, 0.17434373057529795, 0.19326936169397976, 0.21284209201699628, 0.23289789241303924, 0.25328316537271633, 0.27385624185826235, 0.2944882123679467, 0.3150632403074517, 0.33547848162358723, 0.3556437132954142, 0.375480754576272, 0.3949227486692995, 0.41391335861755724, 0.4324059194006036, 0.45036257834272514, 0.467753447741031, 0.48455578690717005, 0.5007532253895287, 0.516335034824133, 0.531295453489513, 0.545633065066812, 0.5593502312006527, 0.5724525761012362, 0.5849485205204149, 0.5968488618822672, 0.6081663970722451, 0.6189155843198155, 0.6291122406892725, 0.6387732718741613, 0.6479164312334618, 0.6565601052816239, 0.6647231231268549 ], [ 0.07732248550664178, 0.0724847058135603, 0.06885091565466094, 0.06612788797700378, 0.06417550650615521, 0.06301780068540545, 0.06280447702099597, 0.06375078187225743, 0.06608061579210267, 0.06998594797296247, 0.07560382010570646, 0.08300663833727402, 0.09220185293077536, 0.10313859025310029, 0.11571867432730434, 0.12980910624116418, 0.14525373171458242, 0.161883023477851, 0.1795218108153097, 0.19799519326240705, 0.21713296045258992, 0.23677280491293143, 0.2567625602395835, 0.2769616534775595, 0.29724192911964326, 0.3174879782757556, 0.3375970866346061, 0.3574788971157981, 0.3770548670395872, 0.39625758516448006, 0.4150300011156288, 0.43332460857303656, 0.45110261406209173, 0.46833311518855203, 0.48499230554865885, 0.5010627181705766, 0.516532515051133, 0.5313948269929347, 0.5456471453817829, 0.5592907656451702, 0.5723302807836246, 0.5847731224638594, 0.5966291466145148, 0.607910260191292, 0.6186300857094843, 0.6288036602201474, 0.6384471655828536, 0.6475776871246983, 0.6562129980411315, 0.6643713671668829 ], [ 0.0875551450467077, 0.08299324313343547, 0.07953614107663388, 0.07691600260996266, 0.07500709636459822, 0.0738342268190138, 0.07354128609859699, 0.07434020917181275, 0.07645873335779421, 0.0800982410267633, 0.08540607125639747, 0.09246238600753635, 0.10127946389441694, 0.11180982520409653, 0.12395882264094148, 0.1375978965358229, 0.15257625895831972, 0.16873029154841718, 0.18589080108247535, 0.20388853806110843, 0.22255835430813486, 0.24174227863502307, 0.2612917124815219, 0.2810689018949418, 0.3009478170606489, 0.320814554544742, 0.34056736414271416, 0.3601163893522302, 0.379383197625891, 0.3983001640630927, 0.4168097605210065, 0.43486379159245026, 0.4524226096780775, 0.46945433350684496, 0.4859340878785216, 0.5018432770118484, 0.517168899554588, 0.5319029099123028, 0.5460416279488037, 0.5595851971772906, 0.5725370901822278, 0.584903659083057, 0.5966937282798971, 0.6079182264265055, 0.618589854487524, 0.6287227867964228, 0.638332402188772, 0.6474350425036207, 0.656047795993414, 0.6641883034370669 ], [ 0.09903635352919017, 0.09446319275986531, 0.0909141021348304, 0.08816383934441697, 0.08611421607776044, 0.08480080004338623, 0.08436707321112644, 0.08502013880996921, 0.08698225160569875, 0.0904490576357967, 0.09556114745886835, 0.10239118412857083, 0.11094477991275853, 0.12117039856013999, 0.13297288426152412, 0.14622661067854462, 0.16078637350737066, 0.1764957625405912, 0.1931934660573078, 0.21071805429241522, 0.2289116442655626, 0.24762269253064534, 0.26670806545642706, 0.28603449239418655, 0.3054794918199707, 0.3249318559403046, 0.344291775888718, 0.36347068423093115, 0.3823908838038225, 0.400985022782236, 0.41919546627083276, 0.4369736054117598, 0.45427913645953294, 0.47107933474950986, 0.4873483420587657, 0.5030664805112903, 0.5182196018366745, 0.5327984773489647, 0.5467982313537748, 0.5602178187011966, 0.5730595457679968, 0.5853286331727455, 0.5970328179094982, 0.6081819922477983, 0.6187878766190408, 0.6288637237319605, 0.6384240512843034, 0.647484400824151, 0.6560611205322104, 0.6641711699229325 ], [ 0.11137260868579708, 0.10658782307373256, 0.1027675734883333, 0.09973477356693523, 0.09742345399320523, 0.09588404760365585, 0.09526182854972795, 0.0957580276104887, 0.09758496840798707, 0.10092581198415554, 0.10590690490188882, 0.11258628149182438, 0.12095657580920756, 0.1309568156039276, 0.14248697112807923, 0.15542109668605877, 0.16961746974651837, 0.18492586327409863, 0.2011927254436341, 0.21826500238531657, 0.23599308117083426, 0.2542331000013186, 0.27284873772473284, 0.29171253845366796, 0.3107068142592984, 0.32972417301998896, 0.3486677250830523, 0.3674510257837606, 0.3859978100369889, 0.40424157104110986, 0.42212502892187986, 0.4395995280493284, 0.45662439460992693, 0.47316627932538574, 0.4891985042571642, 0.5047004275363888, 0.5196568356254037, 0.5340573693009344, 0.5478959868701728, 0.5611704660951744, 0.5738819448098457, 0.5860344991726216, 0.5976347578185374, 0.6086915497774598, 0.6192155838418272, 0.6292191570378836, 0.6387158899307727, 0.6477204866358238, 0.656248517585806, 0.6643162232932577 ], [ 0.12428260474409869, 0.11915474033756127, 0.11494922736744267, 0.11153689443853251, 0.1088847314829723, 0.10705968651427719, 0.10621011867050366, 0.10653125701874183, 0.1082238332865457, 0.11145599513922866, 0.11633716470106577, 0.12290814594077462, 0.13114587987901966, 0.14097692813343118, 0.15229310575870875, 0.164964915717579, 0.17885128856245677, 0.19380601082796864, 0.20968188157500847, 0.22633354008115247, 0.24361956705188362, 0.26140415734781275, 0.27955847556106256, 0.2979617210926418, 0.3165019062822779, 0.33507635595120233, 0.35359194926034265, 0.37196513566234085, 0.39012176294032397, 0.4079967569467822, 0.42553369084704085, 0.4426842777413775, 0.45940781556800714, 0.47567060794350463, 0.4914453795681577, 0.5067107002890044, 0.5214504280035887, 0.5356531773390206, 0.5493118184297084, 0.5624230080873818, 0.5749867541354939, 0.587006012588136, 0.5984863166131853, 0.6094354357579916, 0.619863063667713, 0.6297805324351171, 0.639200551738317, 0.648136971010868, 0.6566045630162872, 0.6646188273434505 ], [ 0.1375669800317073, 0.1320153745733803, 0.12735639239045615, 0.12350583072135078, 0.12046245035946782, 0.11831013641332343, 0.11720130129886407, 0.11732577273717569, 0.11887270443496606, 0.12199497921684112, 0.1267849047120934, 0.13326587845064422, 0.1413986273169822, 0.15109604364936627, 0.16223983875628822, 0.17469449348346472, 0.18831696541139636, 0.20296262731430106, 0.21848864743961813, 0.23475593732736616, 0.25163041522855045, 0.26898397255489065, 0.28669529158268536, 0.3046505402130398, 0.322743925106185, 0.34087808085706695, 0.3589642851919001, 0.37692250503512165, 0.39468129000939695, 0.4121775370071691, 0.42935615236065794, 0.44616963792825676, 0.4625776252300293, 0.47854637851695775, 0.4940482840094137, 0.5090613389245371, 0.5235686505903233, 0.5375579530513701, 0.5510211461577722, 0.563953860191349, 0.5763550475861964, 0.5882266021904008, 0.5995730057317658, 0.6104010006316158, 0.6207192879989737, 0.6305382494810319, 0.6398696916001025, 0.6487266112350709, 0.6571229809774847, 0.665073553185977 ], [ 0.15108457634301048, 0.14506521542596112, 0.13991702184639146, 0.13559664524449808, 0.13213242949853193, 0.1296248635383419, 0.12823113356034288, 0.12813667252977948, 0.12952003087128436, 0.13251983200933048, 0.137212402444433, 0.14360485957065186, 0.15164248536814312, 0.16122456756000644, 0.17222192605995826, 0.1844914803463356, 0.19788619600736485, 0.21226085810304768, 0.22747495848142832, 0.2433939569955394, 0.2598898024834119, 0.2768412073483037, 0.2941338873781313, 0.3116608174613249, 0.32932248211232956, 0.3470270805844058, 0.3646906523735295, 0.38223710344268924, 0.3995981280388253, 0.41671303213261734, 0.4335284715879062, 0.4499981216795327, 0.46608229543187457, 0.48174752734682963, 0.496966137170957, 0.5117157859660066, 0.5259790342681244, 0.5397429097830905, 0.5529984899981581, 0.5657405033538104, 0.5779669512213097, 0.5896787518540476, 0.6008794066862257, 0.6115746887961441, 0.6217723529873527, 0.6314818667248329, 0.6407141610557405, 0.6494814006114034, 0.6577967718016685, 0.6656742883530652 ], [ 0.16473579762107177, 0.15823119473143643, 0.15258143295859702, 0.14777948104368774, 0.14388054255586485, 0.14100083173782058, 0.13930272984713252, 0.13896838706089912, 0.14016719542341408, 0.1430251905774973, 0.14760456418020418, 0.15389800153889058, 0.16183688359481121, 0.1713078184960002, 0.18217085606203573, 0.19427467659945977, 0.20746694232864554, 0.22160015677889805, 0.23653431888205165, 0.25213771241144856, 0.2682868299755964, 0.284866030718555, 0.30176721955609787, 0.31888964142402393, 0.3361397843213918, 0.3534313466734797, 0.370685219879215, 0.38782944716894135, 0.40479913432675274, 0.4215363011357707, 0.4379896725627075, 0.4541144154144241, 0.4698718299513118, 0.48522900745419584, 0.5001584647246187, 0.5146377655459368, 0.5286491376936027, 0.5421790924717935, 0.5552180521745341, 0.567759989442952, 0.5798020812761342, 0.5913443794691443, 0.6023894984902847, 0.6129423212465337, 0.6230097227900135, 0.6326003117558185, 0.6417241891600898, 0.6503927240983766, 0.6586183458435182, 0.66641435183034 ], [ 0.17845104400147313, 0.17146316429386102, 0.16531671495999456, 0.16003640167163857, 0.15570127859502753, 0.15244197824644634, 0.1504261443930131, 0.1498336379284472, 0.15082627225039041, 0.15351946680471876, 0.15796349605921817, 0.16413887633902702, 0.1719651212294279, 0.1813176810280861, 0.1920466469325709, 0.2039925031757284, 0.21699696384077638, 0.23090909410221683, 0.24558794538415732, 0.2609030771920402, 0.276734047593449, 0.2929695646201499, 0.3095066642353892, 0.3262500607019975, 0.34311169037346456, 0.36001041197442435, 0.37687180878154025, 0.393628041313798, 0.41021771089778436, 0.42658570792517714, 0.44268303047100344, 0.4584665680009024, 0.47389885108253604, 0.4889477717497964, 0.503586281026167, 0.5177920706582626, 0.5315472458162588, 0.5448379947492338, 0.5576542604018712, 0.5699894179789192, 0.5818399614918283, 0.593205201494924, 0.6040869755384105, 0.6144893723319096, 0.6244184702110055, 0.6338820902096219, 0.6428895638398031, 0.6514515155450913, 0.6595796597044953, 0.66728661200426 ], [ 0.19218234756199465, 0.18472758297279235, 0.17810225443582567, 0.17235835317527146, 0.16759563772548405, 0.16395751170785702, 0.16161657637304666, 0.1607511411797733, 0.16151693784455903, 0.1640208045536185, 0.16830347591093286, 0.17433579651238515, 0.1820277671529797, 0.1912456270561218, 0.2018308422538952, 0.2136163227887275, 0.22643776463831053, 0.24014014685840895, 0.25458051535958154, 0.2696284173159394, 0.28516512025005086, 0.3010823837769532, 0.3172812218868416, 0.3336708567099162, 0.35016791933411545, 0.36669587709532575, 0.38318463560332006, 0.39957025836674137, 0.4157947541241349, 0.43180589387522317, 0.44755703176978967, 0.46300691441039904, 0.4781194710829622, 0.4928635829888956, 0.5072128330828981, 0.5211452400875425, 0.5346429811091052, 0.5476921073977264, 0.5602822574737125, 0.5724063712951082, 0.584060408515173, 0.5952430732634008, 0.60595554733174, 0.6162012331812704, 0.6259855078082422, 0.6353154882149744, 0.6441998090078686, 0.652648412476652, 0.6606723513815442, 0.6682836045753127 ], [ 0.205896996574043, 0.19800243680843044, 0.1909257493590535, 0.18474197987751545, 0.17956840988792883, 0.17555931297996727, 0.1728915948226626, 0.17174243594834981, 0.17226277312738636, 0.17455280634647716, 0.17864611915696485, 0.184506485548289, 0.1920369470906951, 0.201096777843299, 0.21152054288900116, 0.22313465395706775, 0.23576919297981877, 0.24926485214824354, 0.26347599362220925, 0.2782711501002975, 0.293532123848852, 0.3091525088460622, 0.3250361366815868, 0.3410957004226602, 0.35725164976328255, 0.37343135902910873, 0.38956852568431577, 0.405602742517924, 0.4214791883337935, 0.43714839102398956, 0.45256602819226105, 0.46769274125167215, 0.48249394791072675, 0.49693964483618086, 0.5110041971563354, 0.5246661146706728, 0.5379078165419189, 0.550715387225236, 0.5630783267390784, 0.5749892983398701, 0.5864438764011858, 0.5974402969366461, 0.6079792128205038, 0.6180634553953975, 0.6276978038347345, 0.6368887633545899, 0.6456443531448812, 0.6539739047049278, 0.6618878711158062, 0.6693976476523602 ], [ 0.2195724950063349, 0.21127299063023175, 0.20377959148701233, 0.19718643555417753, 0.1916251928238346, 0.18725894387589315, 0.18426795887434028, 0.18282839799404402, 0.18308741991971406, 0.1851403379810327, 0.18901587112816357, 0.19467331511270464, 0.202011395497105, 0.21088485611283408, 0.22112336394267187, 0.23254825350458236, 0.2449847756172987, 0.25826951106067253, 0.2722538005219978, 0.28680444007878464, 0.30180279722919084, 0.3171432097469315, 0.33273121950334206, 0.3484819441636103, 0.36431871812572625, 0.38017202974266195, 0.3959787265972664, 0.41168143732994616, 0.42722815411478793, 0.4425719252888269, 0.4576706171360166, 0.4724867140887661, 0.4869871359184739, 0.5011430581239709, 0.5149297275525132, 0.5283262694603827, 0.5413154850247985, 0.5538836400681494, 0.5660202467380244, 0.5777178403423896, 0.5889717536559452, 0.599779890928813, 0.6101425036376716, 0.6200619697844715, 0.6295425783062805, 0.6385903199314015, 0.6472126856102075, 0.6554184734651594, 0.6632176050408465, 0.6706209514876454 ], [ 0.23319256303953362, 0.22452828187454368, 0.21665773553865, 0.20969049298651093, 0.20376959792546517, 0.19906480982222227, 0.19575862231214525, 0.19402601389005877, 0.19401110177152134, 0.19580581427398572, 0.1994361001819504, 0.2048592561402413, 0.21197231564755672, 0.22062800760439777, 0.2306532765369236, 0.2418660466306463, 0.25408781179075757, 0.26715152352091076, 0.2809054575043115, 0.2952142103246091, 0.30995795437881896, 0.32503083222507495, 0.3403390820230811, 0.35579923960035204, 0.37133658501872185, 0.3868838876437829, 0.402380438832987, 0.4177713299921592, 0.43300692328533674, 0.4480424636081038, 0.46283778750083493, 0.4773570937601639, 0.49156874950285645, 0.5054451133082197, 0.5189623634277962, 0.5321003238907565, 0.5448422848230877, 0.5571748156846041, 0.5690875716640347, 0.580573094387539, 0.5916266085782603, 0.6022458165004123, 0.6124306920383125, 0.6221832761740161, 0.6315074754862455, 0.6404088651293027, 0.6488944975808391, 0.6569727182809262, 0.6646529891250283, 0.6719457206209716 ], [ 0.2467440719975497, 0.23775839826833317, 0.22955323928929275, 0.2222502586368166, 0.21600104457155178, 0.21097993729109937, 0.20737040820298233, 0.20534589184604016, 0.2050479436118901, 0.20656633265357735, 0.20992607312641867, 0.2150847343492765, 0.22194015490394534, 0.2303455343262929, 0.24012733780690446, 0.2511018961627706, 0.263088229470394, 0.27591638291078574, 0.2894317710790138, 0.30349656122406754, 0.31798917339804506, 0.33280277937945063, 0.3478434192045992, 0.36302811655665335, 0.3782831946976293, 0.3935428741472092, 0.40874816062128466, 0.4238459931993128, 0.43878860643157436, 0.4535330571759756, 0.46804087118169846, 0.48227777182697046, 0.49621346158082036, 0.5098214343934678, 0.5230788037250832, 0.5359661361198129, 0.548467284176609, 0.5605692156291606, 0.5722618372306846, 0.583537813448652, 0.5943923807879927, 0.6048231590244225, 0.6148299608547481, 0.6244146015410308, 0.6335807100985844, 0.6423335434932381, 0.6506798051963244, 0.6586274693117943, 0.6661856113476864, 0.673364246558779 ], [ 0.26021487534481014, 0.25095259732505976, 0.24245662070461751, 0.23485771123231966, 0.22831341455511922, 0.22300066916205158, 0.21910266801997771, 0.2167908168191082, 0.2162043754444087, 0.21743190380248967, 0.22049901504482283, 0.22536553822735797, 0.23193238838279956, 0.24005558428211216, 0.24956331798129697, 0.2602721999339471, 0.27200018891836614, 0.28457532482338377, 0.2978405673559964, 0.3116556300957132, 0.32589681592690845, 0.3404557182146428, 0.35523742111293133, 0.3701586084890361, 0.38514581349724475, 0.4001339165706556, 0.4150649209093724, 0.4298869898291703, 0.44455370870541083, 0.45902352709846855, 0.47325933780577184, 0.4872281549209121, 0.5009008599015653, 0.5142519916484196, 0.5272595628924464, 0.5399048904493886, 0.5521724310698175, 0.5640496177762788, 0.5755266938874882, 0.586596543550994, 0.597254518699455, 0.6074982630479852, 0.6173275341715382, 0.626744024927244, 0.6357511855794364, 0.6443540479900657, 0.6525590531845749, 0.6603738835142312, 0.6678073005233317, 0.6748689895027791 ], [ 0.27359249365714267, 0.26409827903544786, 0.25535508877985935, 0.24750015472208606, 0.24069467817838405, 0.23511639899030154, 0.23094704666237517, 0.2283554659711139, 0.22747872712418965, 0.22840487390171438, 0.23116133110687317, 0.2357118350553439, 0.2419623408149823, 0.2497738012455019, 0.2589782057295399, 0.26939428255139264, 0.2808403943059101, 0.293143594369879, 0.3061449525772422, 0.31970188258490356, 0.3336883849449245, 0.3479940350286397, 0.36252235088359563, 0.3771889707588102, 0.391919898600898, 0.4066499505386538, 0.42132145247281233, 0.4358831890469393, 0.4502895777820045, 0.4645000309196972, 0.4784784655079213, 0.4921929253025481, 0.5056152834335097, 0.5187210008304528, 0.5314889211886784, 0.5439010883207855, 0.5559425759179206, 0.5676013230409819, 0.5788679711682218, 0.5897357004686314, 0.6002000642827198, 0.6102588216951735, 0.6199117686800312, 0.6291605686711447, 0.6380085836223044, 0.646460706719751, 0.6545231979293161, 0.6622035235250803, 0.6695102006734606, 0.6764526480476741 ], [ 0.28686357288822306, 0.2771807520839018, 0.2682326021890792, 0.2601605454446884, 0.2531274502607984, 0.24731029583607758, 0.2428882969653165, 0.2400272220941113, 0.23886195002613758, 0.23948047627261645, 0.24191293152766064, 0.2461282379185944, 0.25203898801232577, 0.2595128714845812, 0.2683875232658225, 0.2784855094582705, 0.2896270417384983, 0.3016392659136864, 0.31436204385052485, 0.3276507939203593, 0.34137719470255057, 0.3554285290650126, 0.3697062924641726, 0.38412450700879586, 0.3986080211946237, 0.4130909516467662, 0.42751533788906626, 0.44183002726845855, 0.4559897763715382, 0.46995454016394084, 0.48368891489608307, 0.4971617014209718, 0.5103455591798235, 0.5232167259592339, 0.5357547835561948, 0.5479424541324357, 0.5597654160356692, 0.5712121311379401, 0.5822736783219026, 0.5929435897174914, 0.6032176877557125, 0.6130939221641041, 0.6225722067704036, 0.631654256482912, 0.6403434251389107, 0.6486445451034175, 0.6565637695949329, 0.6641084187391556, 0.6712868303250218, 0.6781082161740833 ], [ 0.30001398817018193, 0.2901836644612884, 0.2810706194209616, 0.2728185447075315, 0.2655903111120269, 0.25956083758999854, 0.2549059470652733, 0.251787879812358, 0.25033926007380164, 0.2506483147759778, 0.2527484759188628, 0.25661475635476716, 0.2621675863081006, 0.26928282907997547, 0.2778053236878179, 0.28756300537732754, 0.2983792957422131, 0.3100825188053353, 0.322512087199519, 0.3355218524306131, 0.34898130139956757, 0.36277530915657574, 0.3768030478568763, 0.3909764964762508, 0.4052188475567927, 0.41946298809305155, 0.4336501457536304, 0.44772873481414477, 0.4616534017148566, 0.47538425147138363, 0.4888862278763391, 0.5021286185307505, 0.5150846574485717, 0.5277312014476213, 0.5400484606306153, 0.552019767304327, 0.5636313713358463, 0.5748722530549626, 0.585733947353505, 0.5962103746437981, 0.6062976758875747, 0.6159940500709231, 0.6252995933552764, 0.6342161397448233, 0.6427471035325327, 0.6508973240646839, 0.6586729135322129, 0.6660811085831447, 0.6731301265743491, 0.6798290272583881 ], [ 0.31302942646553633, 0.30308991689665177, 0.29384933954556697, 0.2854520733437963, 0.2780596448993658, 0.2718438819621827, 0.26697653041254116, 0.26361594198579047, 0.26189239662454716, 0.2618944808459201, 0.26365925548214786, 0.2671683720471705, 0.27235089724288075, 0.27909191288492685, 0.28724468754822546, 0.2966438158345683, 0.3071171528181633, 0.3184952465911631, 0.33061785881388644, 0.3433377993706796, 0.35652262642028054, 0.3700548421060258, 0.38383114820861536, 0.3977612003916891, 0.41176616791280124, 0.42577729351473587, 0.43973456353819496, 0.45358553973215276, 0.4672843667988922, 0.4807909478095391, 0.4940702683766948, 0.5070918460778342, 0.5198292813475052, 0.5322598880289783, 0.544364384785198, 0.5561266318715294, 0.5675334009459724, 0.5785741684224177, 0.5892409252755678, 0.5995279981757341, 0.6094318784014298, 0.6189510561998968, 0.628085859196888, 0.6368382941513074, 0.6452118918549915, 0.6532115553329693, 0.660843411737393, 0.6681146684749816, 0.6750334741836308, 0.6816087851951649 ], [ 0.3258962595144483, 0.31588284929562954, 0.3065491993794902, 0.2980391075320886, 0.29051170760151346, 0.2841349614903809, 0.27907604255645246, 0.275489154515653, 0.2735021383746218, 0.273203948911305, 0.2746353722003747, 0.2777849223137846, 0.28259072002882124, 0.28894772019754505, 0.29671849612529755, 0.30574531967453716, 0.31586152775178505, 0.32690086051610534, 0.3387042331642077, 0.3511240096387036, 0.3640261958975149, 0.3772910940745833, 0.39081293573192233, 0.40449891823352985, 0.4182679555731312, 0.43204935221780866, 0.44578152691813494, 0.45941085436349566, 0.47289065291757554, 0.48618032199103434, 0.4992446186177524, 0.5120530559887445, 0.5245794044283242, 0.5368012757067931, 0.5486997734194219, 0.5602591946191683, 0.5714667704832355, 0.5823124362474869, 0.5927886228225019, 0.6028900643608495, 0.6126136175767442, 0.6219580898525432, 0.6309240741391116, 0.6395137894088649, 0.6477309259893759, 0.6555804955256045, 0.6630686856186248, 0.6702027193921506, 0.6769907203647204, 0.6834415830710752 ], [ 0.33860251694966126, 0.32854748798295863, 0.31915239057388284, 0.3105594537999406, 0.30292463655146945, 0.2964114896082859, 0.29118228944345304, 0.287386926856035, 0.2851507135018118, 0.2845628868851912, 0.285667861873723, 0.28846095864107185, 0.29288942755996483, 0.29885838638086837, 0.30624024575781744, 0.31488569109923115, 0.3246343928030707, 0.3353241458009179, 0.3467978015493761, 0.3589079190525179, 0.3715194217404319, 0.38451070722921704, 0.3977736736640114, 0.41121306395788915, 0.42474543741690796, 0.43829798691062605, 0.45180734293585817, 0.46521844761316083, 0.47848354065269166, 0.49156127239075126, 0.5044159425579032, 0.5170168543485965, 0.5293377691426926, 0.5413564460603909, 0.5530542511436312, 0.5644158225014488, 0.5754287796939911, 0.5860834676336072, 0.5963727271687873, 0.606291686197653, 0.6158375665988285, 0.6250095034690891, 0.6338083741365633, 0.642236635201151, 0.6502981664674025, 0.6579981211061319, 0.6653427817331112, 0.6723394223473264, 0.6789961762450211, 0.6853219101345028 ], [ 0.35113878757654654, 0.34107166305420744, 0.33164418589066197, 0.3229962716584525, 0.31528014901267304, 0.3086546047652179, 0.3032768353958891, 0.29929233077882395, 0.2968237861852712, 0.29596056075187205, 0.2967504457659951, 0.29919527999472134, 0.303251228815356, 0.30883354221390014, 0.31582468688275817, 0.32408422692816424, 0.33345881573776703, 0.34379104398943994, 0.35492643838730564, 0.36671841627540686, 0.3790313600691529, 0.3917421628835397, 0.4047406485535624, 0.4179292375643865, 0.4312221603633885, 0.44454444122955444, 0.4578308054348451, 0.4710246061471891, 0.4840768260625805, 0.496945180154797, 0.5095933274057212, 0.5219901882149247, 0.5341093581170345, 0.5459286057190802, 0.5574294421462807, 0.5685967498798405, 0.5794184601029858, 0.5898852691708739, 0.5999903863612347, 0.6097293065182958, 0.6190996025085508, 0.6281007335380907, 0.6367338663356138, 0.6450017069931315, 0.6529083418944087, 0.6604590866675387, 0.6676603424911849, 0.6745194593808134, 0.6810446062970954, 0.6872446480671071 ], [ 0.3634989113360303, 0.3534468460634087, 0.3440139121291087, 0.3353371683883475, 0.32756474141038233, 0.32085045160201997, 0.3153463378644371, 0.31119345405686893, 0.30851178842036686, 0.30739059859065127, 0.3078806782174804, 0.3099899167555387, 0.3136829483851525, 0.3188848598246906, 0.32548812206485556, 0.3333613979769588, 0.3423587795239983, 0.3523282661766335, 0.36311873947316897, 0.3745851403180093, 0.38659190213743966, 0.3990148981153643, 0.41174224182258023, 0.4246742772501148, 0.43772304595148115, 0.450811454781529, 0.4638723049700156, 0.47684729019766275, 0.48968603034412933, 0.5023451779673129, 0.5147876143933334, 0.5269817393254713, 0.5389008501114709, 0.5505226026198728, 0.561828543841924, 0.5728037059746335, 0.5834362522433261, 0.5937171656817234, 0.6036399732432117, 0.6132004988078742, 0.6223966397834187, 0.6312281630255366, 0.6396965167034108, 0.6478046555048461, 0.6555568772177948, 0.6629586692510574, 0.670016564078741, 0.6767380029233883, 0.6831312072438915, 0.6892050577779367 ], [ 0.37568037012679384, 0.3656686120858804, 0.356255470038191, 0.34757476309774693, 0.33977028349023297, 0.3329907907212243, 0.32738315761624603, 0.3230839946206975, 0.32021047959214655, 0.31885149408985686, 0.31906036955783607, 0.3208504466531128, 0.3241942100151226, 0.3290260831603713, 0.3352482708925206, 0.3427385460396286, 0.3513587192015692, 0.3609626859958862, 0.3714032931227717, 0.3825376549384771, 0.39423087781730015, 0.406358363178574, 0.418806963864619, 0.4314752902633913, 0.4442734350708383, 0.4571223358964777, 0.46995294085650186, 0.4827052935057912, 0.495327613831633, 0.5077754220981197, 0.5200107309791518, 0.5320013169602923, 0.5437200727224106, 0.555144436674248, 0.5662558928146939, 0.5770395328088906, 0.5874836719313082, 0.597579510930778, 0.6073208366162722, 0.6167037548590051, 0.6257264506376745, 0.6343889706489436, 0.6426930248257507, 0.6506418038330714, 0.6582398102383953, 0.6654927015840217, 0.672407144026071, 0.6789906755589468, 0.6852515781228495, 0.6911987581050284 ], [ 0.3876843359812102, 0.37773668898330426, 0.368367369610118, 0.3597066950823007, 0.35189398969002583, 0.34507292650399474, 0.339385240015786, 0.3349630952348019, 0.33192073583488035, 0.3303463510567687, 0.33029528332188446, 0.33178563825979707, 0.3347970165925391, 0.339272533589222, 0.34512369229681644, 0.352237218677816, 0.3604827709545539, 0.3697205107708265, 0.3798077859818695, 0.3906045047442319, 0.4019770789583868, 0.41380102900091115, 0.42596246147933053, 0.43835867438103704, 0.450898135587201, 0.4635000454058328, 0.47609364903924634, 0.4886174212657922, 0.5010182082014912, 0.5132503814414717, 0.5252750378766653, 0.5370592629001891, 0.5485754641932621, 0.5598007765295776, 0.5707165339866151, 0.5813078037649239, 0.5915629748676937, 0.6014733947342451, 0.6110330472394466, 0.6202382660536061, 0.6290874780636786, 0.6375809722967757, 0.6457206905056192, 0.6535100362408901, 0.6609536998306682, 0.668057497205643, 0.6748282209498533, 0.6812735023236807, 0.6874016833039962, 0.69322169792243 ], [ 0.39951538333363146, 0.3896546122814841, 0.38035231258604923, 0.371735123107684, 0.36393782977872635, 0.35709903004525273, 0.35135535776727966, 0.34683451928720904, 0.3436476757942283, 0.34188197674972715, 0.3415942121161151, 0.34280651911310894, 0.34550481398795574, 0.3496401675838606, 0.35513283124991757, 0.3618782000206628, 0.3697537843204504, 0.3786262758542852, 0.3883579836901352, 0.3988121891369641, 0.4098572352846744, 0.42136937438385386, 0.4332345255741154, 0.4453491545783975, 0.45762049536760013, 0.4699663121591158, 0.482314364936935, 0.4946017038592802, 0.5067738834609491, 0.5187841590244935, 0.5305927053657258, 0.5421658819662947, 0.5534755568781499, 0.5644984940508857, 0.5752158037333764, 0.5856124525895925, 0.5956768285358871, 0.6054003545997229, 0.6147771459901404, 0.6238037048276025, 0.6324786474463053, 0.6408024597490578, 0.6487772766933687, 0.6564066825734636, 0.6636955293096841, 0.6706497704496749, 0.6772763090177554, 0.6835828577185663, 0.6895778103099822, 0.6952701232122672 ], [ 0.41118091242391197, 0.401429049436855, 0.39221640453342554, 0.38366581785475234, 0.37590750127667893, 0.3690749991504486, 0.36329987417898, 0.35870534004376364, 0.3553993033043103, 0.3534675067529307, 0.352967610994798, 0.3539250380664705, 0.3563311950363008, 0.36014432708734995, 0.36529281404698744, 0.37168034595051297, 0.37919219143652183, 0.3877017432621557, 0.39707665640925566, 0.4071841145605816, 0.41789499509319705, 0.42908689814683737, 0.4406461383721104, 0.45246886902122946, 0.4644615305077646, 0.47654080643656344, 0.48863324436004835, 0.5006746669154633, 0.5126094680984659, 0.5243898625330995, 0.5359751338629108, 0.5473309117468005, 0.558428494747995, 0.5692442278137593, 0.5797589372317524, 0.5899574221995256, 0.5998279998768822, 0.6093620995596943, 0.6185539010841097, 0.6274000124993936, 0.6358991822629418, 0.6440520415918577, 0.6518608730694373, 0.6593294020968444, 0.6664626082644568, 0.6732665541716166, 0.6797482296349117, 0.6859154095873689, 0.6917765242819459, 0.6973405406734149 ], [ 0.42269035920836195, 0.41306888779055023, 0.4039681112660102, 0.39550698366224984, 0.3878111210949584, 0.3810090328629332, 0.3752272218095285, 0.3705843516123204, 0.36718488343154615, 0.36511278009875664, 0.36442600314487383, 0.36515252706083895, 0.3672884346210154, 0.3707983561754782, 0.37561814692915646, 0.3816593595002965, 0.3888148511862907, 0.39696480608633067, 0.40598253615967655, 0.41573959930965654, 0.42610997406254764, 0.43697321014417284, 0.4482166060705734, 0.4597365435677486, 0.47143914226843964, 0.48324040001452373, 0.49506596730836294, 0.5068506792265207, 0.5185379412114397, 0.5300790404179762, 0.541432433431648, 0.5525630446044866, 0.5634415966773111, 0.5740439861720987, 0.5843507095684317, 0.5943463418928061, 0.6040190665126004, 0.6133602532079737, 0.6223640806630649, 0.6310271991240913, 0.639348428933931, 0.64732849083942, 0.6549697642860955, 0.6622760703010324, 0.6692524759739331, 0.675905117950645, 0.6822410427334004, 0.6882680619273248, 0.693994620877496, 0.6994296794031001 ], [ 0.43405428180860256, 0.4245841945405203, 0.4156170871898276, 0.4072679566924876, 0.39965780248568467, 0.3929101039910303, 0.38714629468229284, 0.3824804108410342, 0.3790132676212204, 0.37682668179474593, 0.37597837118956173, 0.3764981667956444, 0.37838604727806757, 0.3816122592737514, 0.3861194753720247, 0.39182664535265765, 0.3986339892401676, 0.4064285030305658, 0.41508939529037187, 0.4244930069669561, 0.4345169367180059, 0.4450432557967315, 0.45596082315037506, 0.46716679384086784, 0.47856745578245724, 0.4900785409398068, 0.5016251485516036, 0.5131413989934636, 0.5245699142646999, 0.535861198912749, 0.5469729756504497, 0.5578695137967105, 0.5685209760157851, 0.5789027992807028, 0.5889951190249232, 0.5987822405400213, 0.6082521583456876, 0.6173961220993158, 0.6262082463047723, 0.6346851603753552, 0.642825695317431, 0.6506306032903104, 0.6581023064639314, 0.6652446718668295, 0.6720628092417446, 0.6785628892701219, 0.6847519798660535, 0.690637898559691, 0.6962290792807247, 0.701534452109373 ], [ 0.44528341510115643, 0.4359851557574316, 0.4271729982689935, 0.41895791754368766, 0.41145626964215953, 0.40478649456289323, 0.399064929178674, 0.3944008924473617, 0.39089135397491, 0.38861563877115274, 0.3876307162870491, 0.3879676309759169, 0.3896295312913844, 0.392591551715818, 0.3968025400738077, 0.40218836410670966, 0.40865633951459435, 0.41610023431055093, 0.4244053242892349, 0.43345307507323144, 0.4431251670082394, 0.45330672183503823, 0.46388870855086467, 0.4747695887469726, 0.4858563090811802, 0.4970647671153343, 0.5083198754095198, 0.5195553357809313, 0.5307132173659217, 0.5417434128114494, 0.5526030290181457, 0.5632557535178903, 0.5736712251242573, 0.5838244278091356, 0.5936951194775245, 0.6032673020088294, 0.6125287351919246, 0.6214704946376639, 0.6300865721033383, 0.6383735156672852, 0.6463301066612125, 0.6539570700605771, 0.6612568150436529, 0.6682332025796436, 0.674891337138984, 0.6812373798945519, 0.6872783810727823, 0.6930221293995754, 0.698477016855037, 0.7036519171959207 ], [ 0.4563877758797524, 0.44728108803315786, 0.43864444394610114, 0.43058473253794655, 0.42321363278556606, 0.4166445239862121, 0.4109886083693818, 0.40635039497321435, 0.4028228208482352, 0.4004824057616319, 0.39938491761772055, 0.39956203567342874, 0.4010194178487171, 0.40373641170277746, 0.40766742816197504, 0.4127447738403987, 0.4188825636940507, 0.4259812452365957, 0.43393226578533817, 0.4426224874261651, 0.45193806898652805, 0.4617676578549984, 0.4720048428529989, 0.48254989996354375, 0.4933109130819657, 0.5042043761036779, 0.5151553874608474, 0.5260975407101723, 0.5369726007900901, 0.5477300392760035, 0.5583264859813325, 0.5687251399869837, 0.5788951712118757, 0.5888111340363219, 0.5984524070608469, 0.607802667510172, 0.6168494047333906, 0.6255834743861792, 0.6339986929315108, 0.642091470832496, 0.6498604820519541, 0.6573063670755832, 0.6644314665305261, 0.6712395824966713, 0.6777357647435236, 0.6839261193264612, 0.6898176372107547, 0.6954180408372493, 0.7007356467848921, 0.70577924291214 ], [ 0.4673758844483567, 0.45847959502861646, 0.4500380557921566, 0.4421540057997435, 0.43493440883297135, 0.4284875565428103, 0.4229194765373546, 0.41832978315957037, 0.41480721709438756, 0.4124252212367247, 0.41123796836113, 0.4112772651522836, 0.4125506911960676, 0.4150411936411451, 0.41870817327454274, 0.4234899061937024, 0.42930698977237614, 0.43606641256540213, 0.4436658345215017, 0.45199771511965037, 0.46095301868922495, 0.47042433136990525, 0.480308321291851, 0.49050754983145783, 0.5009316929979692, 0.5114982599868684, 0.522132905696017, 0.5327694313352416, 0.5433495573410617, 0.5538225395813197, 0.564144685954663, 0.5742788175280064, 0.5841937070885671, 0.5938635186727528, 0.6032672642227691, 0.6123882878084268, 0.6212137835709273, 0.6297343504270595, 0.6379435843695561, 0.6458377077006295, 0.6534152335669162, 0.6606766635858674, 0.6676242160571559, 0.6742615821539705, 0.6805937075245764, 0.6866265968566209, 0.6923671391302679, 0.6978229514859472, 0.7030022398403232, 0.7079136745876669 ], [ 0.4782541480998304, 0.4695859163199698, 0.4613578210578365, 0.45366838980040214, 0.4466198335722483, 0.44031533128356276, 0.43485570324432005, 0.430335601856838, 0.4268394396532416, 0.4244373597790756, 0.4231816105307424, 0.4231036928652479, 0.4242125951787667, 0.4264943152234608, 0.42991271411914006, 0.43441158408878583, 0.4399176745603654, 0.4463443367649121, 0.45359542502972217, 0.4615691270253707, 0.4701614672204743, 0.47926931595004146, 0.48879282198048346, 0.49863725697276245, 0.5087143105302068, 0.5189429047465531, 0.5292496107227939, 0.5395687509815347, 0.5498422655131951, 0.5600194089505633, 0.5700563346756156, 0.5799156101681012, 0.5895656975290998, 0.5989804242629155, 0.6081384621608641, 0.6170228264013718, 0.6256204025744107, 0.6339215060384397, 0.6419194756132449, 0.6496103019126187, 0.656992289465304, 0.6640657510278982, 0.6708327320530315, 0.6772967630560547, 0.6834626375587388, 0.6893362133293934, 0.6949242347479518, 0.7002341742741832, 0.7052740911670496, 0.7100525057789522 ], [ 0.48902643091181675, 0.48060249126157645, 0.47260465090392945, 0.46512717002439463, 0.4582674758641139, 0.45212361898190007, 0.4467911953922735, 0.44235985379493353, 0.4389095851683414, 0.4365070627514772, 0.43520234669452246, 0.4350262728923794, 0.4359887996885982, 0.43807849089031115, 0.441263183987669, 0.4454917539914823, 0.45069676397620034, 0.45679771532565633, 0.46370458378704904, 0.47132134838123113, 0.47954927574488637, 0.488289795246372, 0.4974468742111906, 0.506928866478594, 0.5166498555290351, 0.5265305445325705, 0.5364987619027015, 0.5464896557651137, 0.5564456478521314, 0.5663162099132979, 0.5760575162269627, 0.5856320158676137, 0.5950079590378153, 0.6041589035362903, 0.6130632205024816, 0.6217036129494359, 0.6300666561589078, 0.6381423656035974, 0.6459237955085319, 0.6534066693021616, 0.6605890418921038, 0.6674709928067587, 0.6740543486703409, 0.6803424331431092, 0.6863398422957353, 0.6920522433462023, 0.6974861947304198, 0.7026489855743646, 0.7075484927640279, 0.7121930539536404 ], [ 0.49969381512482525, 0.49152873883075315, 0.48377618886632817, 0.47652611294330494, 0.4698711359875377, 0.46390418084773877, 0.45871562463993854, 0.45439010173610245, 0.4510031302136175, 0.44861779709388405, 0.4472817750408261, 0.44702494630926287, 0.4478578708528643, 0.44977125601334494, 0.4527364770268268, 0.4567070807391437, 0.46162110196485184, 0.46740395123846384, 0.4739716035685322, 0.4812338289979616, 0.489097247769987, 0.49746805211126827, 0.5062542997390963, 0.5153677410472186, 0.5247251867098937, 0.5342494533102351, 0.543869942505956, 0.5535229166768834, 0.5631515339111317, 0.5727057003344187, 0.5821417903913018, 0.5914222773537091, 0.6005153081078409, 0.6093942487606074, 0.6180372210996731, 0.6264266445182686, 0.6345487936346297, 0.6423933783890207, 0.6499531507550936, 0.6572235402198822, 0.6642023187405233, 0.670889294863554, 0.6772860359991971, 0.6833956173998538, 0.6892223961355372, 0.6947718082386584, 0.7000501871668112, 0.7050646017743458, 0.7098227120682729, 0.7143326411339397 ], [ 0.5102545436641778, 0.5023610372383172, 0.4948668366838675, 0.48785754710407775, 0.48142099024419904, 0.4756449834182328, 0.47061471727382564, 0.4664098355547168, 0.46310137520497363, 0.4607487731763581, 0.4593971760110087, 0.4590752894481535, 0.4597939720202739, 0.46154571012842704, 0.4643050218520116, 0.46802973856987445, 0.4726630253440929, 0.47813593806387744, 0.4843702858809877, 0.49128157162900027, 0.49878181400257593, 0.5067821027976529, 0.5151947915773538, 0.5239352819113074, 0.5329233942694309, 0.5420843503964334, 0.5513494106979951, 0.5606562194871291, 0.5699489131545282, 0.5791780437378792, 0.5883003649382376, 0.5972785208683979, 0.6060806707591554, 0.6146800761461424, 0.623054671068793, 0.6311866306852005, 0.6390619494621841, 0.646670036682195, 0.6540033343233224, 0.6610569603070573, 0.6678283785631207, 0.6743170962326777, 0.6805243875339694, 0.6864530432743794, 0.692107144649368, 0.6974918597721842, 0.7026132612893384, 0.7074781634243367, 0.712093976832078, 0.7164685797200371 ], [ 0.5207041218999859, 0.5130928751296441, 0.505867962451549, 0.49911063507431674, 0.4929039322785603, 0.48733061305238495, 0.4824707435127818, 0.4783990356497943, 0.4751820789371933, 0.4728756454423146, 0.47152227234551636, 0.4711493252985629, 0.47176771737148954, 0.47337140265410554, 0.47593768839956874, 0.4794283273938039, 0.48379127730601273, 0.48896295843300774, 0.49487081274570144, 0.5014359664170621, 0.5085758204520058, 0.5162064316786057, 0.5242445904233206, 0.5326095441693608, 0.5412243532574776, 0.5500168926729999, 0.5589205327402246, 0.5678745420958677, 0.5768242603280113, 0.5857210870049984, 0.5945223301714867, 0.6031909521192053, 0.6116952443456639, 0.6200084577618846, 0.6281084088012092, 0.6359770773211183, 0.6436002081515402, 0.6509669248161802, 0.6580693612801654, 0.6649023154780466, 0.6714629267639489, 0.6777503782162104, 0.683765623845552, 0.6895111401314735, 0.6949907008893167, 0.7002091742029953, 0.7051723400072045, 0.7098867268370378, 0.7143594662579171, 0.718598163525421 ], [ 0.5310355495915156, 0.523715139331941, 0.5167682497581055, 0.5102717885286479, 0.5043040572000913, 0.4989428303566922, 0.49426314149251493, 0.49033486373211765, 0.4872202115972, 0.4849713215844675, 0.4836280872578818, 0.48321642275087057, 0.48374710375294605, 0.4852152883572045, 0.48760075756902016, 0.49086884664965186, 0.4949719751116665, 0.4998516350407073, 0.5054406706844469, 0.5116656782788823, 0.5184493707987176, 0.52571278173874, 0.5333772181954142, 0.5413659101439026, 0.5496053353117205, 0.5580262248498041, 0.5665642732805085, 0.5751605874182878, 0.583761914297862, 0.5923206890622429, 0.6007949416740251, 0.6091480974209832, 0.6173487014181783, 0.6253700923192109, 0.6331900456629413, 0.6407904029433318, 0.6481566987146157, 0.6552777948611834, 0.6621455285478595, 0.6687543782687789, 0.6751011507659594, 0.6811846903228077, 0.6870056109874592, 0.6925660515862024, 0.6978694528962989, 0.7029203560158983, 0.7077242207596027, 0.7122872627914039, 0.7166163081577609, 0.7207186638833107 ], [ 0.5412396507254454, 0.5342165016672406, 0.5275541450825184, 0.5213251786499236, 0.5156032359282541, 0.5104612077455202, 0.505969215607873, 0.5021924179362727, 0.49918876132767387, 0.4970068143005672, 0.49568383455631865, 0.49524421798647483, 0.4956984561206559, 0.49704268951565167, 0.4992588925399056, 0.5023156678511292, 0.5061695755338366, 0.5107668803393994, 0.5160455759619764, 0.5219375393087755, 0.5283706783002668, 0.5352709594303915, 0.5425642306731989, 0.5501777861763231, 0.5580416475359808, 0.5660895598230476, 0.5742597178865484, 0.5824952498707588, 0.590744491116375, 0.5989610837737229, 0.6071039366877556, 0.615137077454857, 0.6230294248375995, 0.6307545055789777, 0.6382901355102427, 0.6456180809644056, 0.6527237130383562, 0.6595956642524021, 0.6662254946433278, 0.6726073722679651, 0.6787377714428624, 0.684615190748327, 0.6902398918272543, 0.6956136592592697, 0.7007395812421635, 0.7056218504248413, 0.7102655839744219, 0.7146766617958213, 0.7188615817313886, 0.7228273305317777 ] ] }, { "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.2554171597585082, 0.16836228289759916, 0.15383351920547317, 0.12554584914942554, 0.0855199226454489, 0.041923738642980365, 0.042435097313190666, 0.07388392934905631, 0.0028814072487392717, 0.08532625721387746, 0.11832700197006044, 0.09332532994449139, 0.12465862850424025, 0.10927987459039408, 0.1133127740249954, 0.11106552677626556, 0.13562084050921372, 0.1838158209520383, 0.20145471282315283, 0.20182879338321305, 0.21134335953178837, 0.3411679398268461, 0.5352822691202164, 0.9177997410297394, 0.7778274770826101, 0.18595571450545217, 0.23435220013874838, 0.16525102289053464, 0.1773562005290745 ], "xaxis": "x", "y": [ 0.24258662201464176, 0.5297565309485772, 0.45934036903775743, 0.36482439734619937, 0.23827713817772164, 0.09247507012780348, 0.17166928193304654, 0.15661013760289147, 0.181160308074951, 0.13924034381468114, 0.05788360015785916, 0.6103114727884531, 0.10593810772418724, 0.1149977330719707, 0.16821623185487736, 0.13603307285005425, 0.1918728874125481, 0.17661093222592275, 0.17125119155035753, 0.19292943778191388, 0.15774301412300856, 0.5152985500171781, 0.3241129443049431, 0.3311000978574157, 0.5080037554726005, 0.6264283813503558, 0.668607864048284, 0.5758856309903699, 0.6714439547848815 ], "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.2554171597585082, 0.16836228289759916, 0.15383351920547317, 0.12554584914942554, 0.0855199226454489, 0.041923738642980365, 0.042435097313190666, 0.07388392934905631, 0.0028814072487392717, 0.08532625721387746, 0.11832700197006044, 0.09332532994449139, 0.12465862850424025, 0.10927987459039408, 0.1133127740249954, 0.11106552677626556, 0.13562084050921372, 0.1838158209520383, 0.20145471282315283, 0.20182879338321305, 0.21134335953178837, 0.3411679398268461, 0.5352822691202164, 0.9177997410297394, 0.7778274770826101, 0.18595571450545217, 0.23435220013874838, 0.16525102289053464, 0.1773562005290745 ], "xaxis": "x2", "y": [ 0.24258662201464176, 0.5297565309485772, 0.45934036903775743, 0.36482439734619937, 0.23827713817772164, 0.09247507012780348, 0.17166928193304654, 0.15661013760289147, 0.181160308074951, 0.13924034381468114, 0.05788360015785916, 0.6103114727884531, 0.10593810772418724, 0.1149977330719707, 0.16821623185487736, 0.13603307285005425, 0.1918728874125481, 0.17661093222592275, 0.17125119155035753, 0.19292943778191388, 0.15774301412300856, 0.5152985500171781, 0.3241129443049431, 0.3311000978574157, 0.5080037554726005, 0.6264283813503558, 0.668607864048284, 0.5758856309903699, 0.6714439547848815 ], "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": [ "