{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Visualizations\n", "\n", "This tutorial illustrates the core visualization utilities available in Ax." ] }, { "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:36:28] 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", "from ax import (\n", " Arm,\n", " ComparisonOp,\n", " RangeParameter,\n", " ParameterType,\n", " SearchSpace, \n", " SimpleExperiment, \n", " OutcomeConstraint, \n", ")\n", "\n", "from ax.metrics.l2norm import L2NormMetric\n", "from ax.modelbridge.cross_validation import cross_validate\n", "from ax.modelbridge.registry import Models\n", "from ax.plot.contour import interact_contour, plot_contour\n", "from ax.plot.diagnostic import interact_cross_validation\n", "from ax.plot.scatter import(\n", " interact_fitted,\n", " plot_objective_vs_constraints,\n", " tile_fitted,\n", ")\n", "from ax.plot.slice import plot_slice\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. Create experiment and run optimization\n", "\n", "The vizualizations require an experiment object and a model fit on the evaluated data. The routine below is a copy of the Developer API tutorial, so the explanation here is omitted. Retrieving the experiment and model objects for each API paradigm is shown in the respective tutorials" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### 1a. Define search space and evaluation function" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [], "source": [ "noise_sd = 0.1\n", "param_names = [f\"x{i+1}\" for i in range(6)] # x1, x2, ..., x6\n", "\n", "def noisy_hartmann_evaluation_function(parameterization):\n", " x = np.array([parameterization.get(p_name) for p_name in param_names])\n", " noise1, noise2 = np.random.normal(0, noise_sd, 2)\n", "\n", " return {\n", " \"hartmann6\": (hartmann6(x) + noise1, noise_sd),\n", " \"l2norm\": (np.sqrt((x ** 2).sum()) + noise2, noise_sd)\n", " }\n", "\n", "hartmann_search_space = SearchSpace(\n", " parameters=[\n", " RangeParameter(\n", " name=p_name, parameter_type=ParameterType.FLOAT, lower=0.0, upper=1.0\n", " )\n", " for p_name in param_names\n", " ]\n", ")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### 1b. Create Experiment" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [], "source": [ "exp = SimpleExperiment(\n", " name=\"test_branin\",\n", " search_space=hartmann_search_space,\n", " evaluation_function=noisy_hartmann_evaluation_function,\n", " objective_name=\"hartmann6\",\n", " minimize=True,\n", " outcome_constraints=[\n", " OutcomeConstraint(\n", " metric=L2NormMetric(\n", " name=\"l2norm\", param_names=param_names, noise_sd=0.2\n", " ),\n", " op=ComparisonOp.LEQ,\n", " bound=1.25,\n", " relative=False,\n", " )\n", " ],\n", ")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### 1c. Run the optimization and fit a GP on all data\n", "\n", "After doing (`N_BATCHES=15`) rounds of optimization, fit final GP using all data to feed into the plots." ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [], "source": [ "N_RANDOM = 5\n", "BATCH_SIZE = 1\n", "N_BATCHES = 15\n", "\n", "sobol = Models.SOBOL(exp.search_space)\n", "exp.new_batch_trial(generator_run=sobol.gen(N_RANDOM))\n", "\n", "for i in range(N_BATCHES):\n", " intermediate_gp = Models.GPEI(experiment=exp, data=exp.eval())\n", " exp.new_trial(generator_run=intermediate_gp.gen(BATCH_SIZE))\n", "\n", "model = Models.GPEI(experiment=exp, data=exp.eval())" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 2. Contour plots\n", "\n", "The plot below shows the response surface for `hartmann6` metric as a function of the `x1`, `x2` parameters.\n", "\n", "The other parameters are fixed in the middle of their respective ranges, which in this example is 0.5 for all of them." ] }, { "cell_type": "code", "execution_count": 5, "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": [ [ -0.8533963895887937, -0.8949159107631347, -0.9379927229870356, -0.9824053627155491, -1.0278727293243688, -1.0740485929142858, -1.1205170770875759, -1.1667896928761046, -1.2123046311755143, -1.2564291500462266, -1.298466000469329, -1.3376648872794874, -1.3732399109935047, -1.4043937090085423, -1.4303485182572298, -1.4503835200750061, -1.46387655545988, -1.4703467186763277, -1.469492823002824, -1.4612219494650152, -1.44566294221814, -1.4231620242162566, -1.3942610277845584, -1.3596618186733433, -1.3201822920244104, -1.2767095729728681, -1.2301551871976841, -1.1814156012657586, -1.1313401328279382, -1.0807070273802983, -1.0302075689488102, -0.9804374452767306, -0.9318942037077362, -0.8849794740045531, -0.8400046476379629, -0.7971988326851364, -0.7567180959033302, -0.7186552158701033, -0.6830493739263911, -0.649895386451125, -0.619152226100492, -0.5907506909619278, -0.5646001625927639, -0.5405944516051444, -0.5186167679715801, -0.49854387721380033, -0.480249516991841, -0.4636071544216462, -0.4484921650866055, -0.4347835119373255 ], [ -0.8546737937380978, -0.8965049572384144, -0.9399369335077885, -0.9847510792733409, -1.0306685448309179, -1.077344534448929, -1.1243635042178315, -1.1712358798140121, -1.2173970137755081, -1.2622092386743344, -1.3049679895060742, -1.3449130332263073, -1.381245804845657, -1.4131536337044026, -1.4398411530740154, -1.4605683169413257, -1.474693141392434, -1.4817156375795588, -1.4813177873568555, -1.4733935319704812, -1.4580633635850935, -1.4356704904393554, -1.4067590140423718, -1.372037781091711, -1.3323354467300723, -1.2885525515479, -1.241615530590181, -1.1924361817428695, -1.1418786869422315, -1.0907350330392438, -1.0397087057526027, -0.9894058494209265, -0.9403326825917868, -0.8928977956675753, -0.8474179757314269, -0.8041263431083326, -0.7631817869231645, -0.7246789079834886, -0.6886578867150338, -0.6551138751553187, -0.624005658962608, -0.595263448401266, -0.5687957402133882, -0.5444952504426692, -0.5222439569835463, -0.5019173146608402, -0.4833877189625663, -0.46652730028091854, -0.4512101310530451, -0.4373139253112812 ], [ -0.8546789681713884, -0.8966979960214181, -0.9403532293057534, -0.9854291700155497, -1.0316497843699937, -1.0786725620122415, -1.1260834776287492, -1.1733934419076304, -1.2200369707725451, -1.2653739448411156, -1.3086954554541685, -1.3492348066029618, -1.3861847121376598, -1.4187215192179885, -1.446036801969095, -1.4673757948948483, -1.4820808086694177, -1.4896360784183984, -1.4897088167939319, -1.4821803004044933, -1.4671614067421384, -1.4449894251025421, -1.4162065018643994, -1.3815233786328398, -1.3417740079650513, -1.297866931688648, -1.2507384491044942, -1.2013112239054973, -1.150460531485482, -1.098989064460329, -1.0476101953690566, -0.9969388778220621, -0.947488943898114, -0.8996753858356656, -0.8538202324038464, -0.8101607771724627, -0.7688591264107718, -0.7300122619294322, -0.6936620283783071, -0.6598046390539599, -0.6283994433373061, -0.599376813225883, -0.5726450902244227, -0.5480965925643678, -0.5256127217971995, -0.5050682320880724, -0.4863347390222103, -0.46928355057706705, -0.4537879035108979, -0.4397246855595926 ], [ -0.8534017808064073, -0.8954824376059567, -0.9392261609280348, -0.9844208857000736, -1.0307939253262508, -1.0780058782945399, -1.125645405163923, -1.1732254654782186, -1.220181750014037, -1.2658741914639038, -1.3095925662553822, -1.3505672783626195, -1.387986390409782, -1.42101976164461, -1.4488506654410447, -1.47071438114224, -1.4859419203561202, -1.494005342540674, -1.4945594189221816, -1.487473437627613, -1.4728475068825955, -1.4510100963874875, -1.422497078135091, -1.3880158273341263, -1.3483998997985336, -1.304560162110751, -1.257437464453608, -1.207960618100918, -1.157012000148943, -1.1054017938117342, -1.0538508082945877, -1.002981065819293, -0.9533128972224152, -0.9052671097178357, -0.8591708135627887, -0.8152656456195824, -0.7737173431681544, -0.7346258528780711, -0.6980353769041573, -0.6639439445753097, -0.6323122485848571, -0.6030715999523981, -0.576130940635593, -0.55138291205278, -0.5287090174243259, -0.5079839406029584, -0.48907909794188903, -0.47186550589873966, -0.45621604790226905, -0.4420072213129474 ], [ -0.8508434036597223, -0.8928584766258512, -0.9365547093250673, -0.9817237315723778, -1.0280967118209796, -1.0753381613216837, -1.1230405797150713, -1.1707205323171435, -1.2178168979987323, -1.2636921774072043, -1.3076378838750644, -1.3488851195743417, -1.3866214142021849, -1.4200146958293112, -1.448244773221248, -1.4705418290798997, -1.4862300934834662, -1.4947731776031783, -1.495815877657015, -1.4892163113203223, -1.4750627952071076, -1.4536721852123358, -1.4255698238072045, -1.3914544679695444, -1.3521535337694648, -1.308574435970451, -1.2616571268978234, -1.2123316965241744, -1.161483484447567, -1.109926818374814, -1.0583873865847957, -1.0074924569316592, -0.9577676851001699, -0.9096390667548311, -0.8634386090799492, -0.8194124493545801, -0.7777303650410758, -0.7384958525651877, -0.7017561697959104, -0.6675119243507225, -0.6357259409171968, -0.6063312568585636, -0.5792381807736433, -0.5543404088883956, -0.5315202346010403, -0.5106529119908703, -0.49161024860540187, -0.4742635095045954, -0.458485715774945, -0.4441534183349895 ], [ -0.8470164468319304, -0.8888392597478539, -0.932352493553002, -0.9773517213462357, -1.0235724619802724, -1.070683932531145, -1.118283616118677, -1.1658932339106234, -1.2129568604646612, -1.25884207405561, -1.3028451671277297, -1.344201521414933, -1.3821022236127893, -1.4157177839189912, -1.4442293233667407, -1.4668667161119475, -1.4829518593635096, -1.491943597332614, -1.4934792202273317, -1.4874065652807151, -1.473801280559523, -1.4529660138092384, -1.425411539982182, -1.3918229389115369, -1.3530158816986182, -1.3098886251592157, -1.263374783800407, -1.2144008209592656, -1.163850836813045, -1.1125398842718452, -1.0611958999737057, -1.0104495070218817, -0.9608304526058882, -0.9127692431812883, -0.8666025549241352, -0.8225811462357966, -0.7808792136697531, -0.7416043634855203, -0.7048075874729092, -0.6704928180426892, -0.6386257885287719, -0.6091420411468431, -0.5819540112468673, -0.5569571776832172, -0.5340353105961306, -0.5130648743569253, -0.49391865879145425, -0.47646871917908556, -0.46058870733510404, -0.44615567413773843 ], [ -0.8419448833567481, -0.8834508073631306, -0.9266476886220462, -0.9713352899035164, -1.0172539733298658, -1.06407845160833, -1.1114123308537907, -1.1587840299313852, -1.2056448121012138, -1.2513698173930807, -1.295263116590378, -1.3365678838276573, -1.3744827498549217, -1.4081851757655608, -1.4368621834271114, -1.459747902724303, -1.476166111080032, -1.4855743606060796, -1.4876047786462907, -1.4820958124601784, -1.4691097107159763, -1.4489325911469333, -1.4220569699810688, -1.389149547658727, -1.3510089574981565, -1.308518829871248, -1.2626011580615706, -1.2141739589406866, -1.1641159224295272, -1.1132394003644366, -1.062271915008124, -1.0118455067101058, -0.9624927242348332, -0.9146478463602891, -0.8686519287793105, -0.8247604120425729, -0.7831522347522715, -0.7439396220984744, -0.7071779326943654, -0.6728751308842826, -0.6410006017945122, -0.6114931430262823, -0.5842680538580238, -0.5592233051304657, -0.5362448156941619, -0.515210888957372, -0.49599587950952684, -0.478473168089762, -0.4625175257202458, -0.448006946455785 ], [ -0.8356637645020232, -0.8767316887713295, -0.9194826534557352, -0.9637208651990754, -1.0091920276863742, -1.0555771408429226, -1.1024870693753144, -1.149458458804328, -1.195951727308815, -1.2413520130376596, -1.2849740862437908, -1.326072306531143, -1.3638566623952046, -1.3975156981435575, -1.426246623524553, -1.4492920341665991, -1.4659814269213511, -1.4757741988174822, -1.4782994252024149, -1.4733869899145107, -1.4610851464784125, -1.4416614780512154, -1.4155869915732906, -1.3835057919939084, -1.346194643277143, -1.3045174708500058, -1.259379662633998, -1.2116861782722321, -1.1623062565634745, -1.112046187373369, -1.0616304308486968, -1.0116904838262466, -0.9627603571097323, -0.9152772961348508, -0.8695863695361832, -0.8259476801799526, -0.7845451517092378, -0.745496061559456, -0.708860698573618, -0.6746517040971501, -0.6428428039460137, -0.6133767550908604, -0.5861724185969759, -0.5611309338899113, -0.5381410135336846, -0.517083406763384, -0.4978345977185468, -0.4802698137021921, -0.46426542222895506, -0.44970079495993287 ], [ -0.8282187315663807, -0.868732458535924, -0.9109132788372727, -0.9545701122072348, -0.9994545123663114, -1.0452545611714399, -1.0915895103740132, -1.1380057390546252, -1.1839747430248908, -1.2288940211191695, -1.2720918488243917, -1.312836994220381, -1.350354379308539, -1.383847448580093, -1.4125274938766528, -1.435649333114383, -1.45255154792595, -1.4626980874286941, -1.4657167784646652, -1.4614296537031124, -1.4498704915152596, -1.4312866693285597, -1.4061249280025188, -1.3750031342724753, -1.3386719257723292, -1.297970962050392, -1.253784469256618, -1.2070000655669713, -1.1584737258365083, -1.1090024570095913, -1.059305075087316, -1.0100105790794232, -0.961653064165826, -0.9146718675919538, -0.8694156158509467, -0.8261489560625785, -0.7850609393478276, -0.7462742311297929, -0.7098545227964514, -0.6758196951816469, -0.6441484305327669, -0.6147880855606285, -0.5876617264955251, -0.562674291872555, -0.5397178944170997, -0.5186763040032514, -0.4994286727842858, -0.48185257420192745, -0.4658264320365219, -0.45123141580699927 ], [ -0.8196653363524306, -0.8595148692104043, -0.901008074455425, -0.9439588731164453, -0.9881251885663619, -1.0332029794314044, -1.0788209977720988, -1.1245368268483649, -1.169834897759367, -1.2141273288863443, -1.2567585523682556, -1.2970147495053235, -1.3341390570079128, -1.3673532582098402, -1.3958861626588979, -1.4190080496091233, -1.4360694190494594, -1.4465410003252313, -1.4500508276101383, -1.4464136482072647, -1.435648378391586, -1.4179808443956718, -1.3938312732006293, -1.3637882682499904, -1.3285727318410212, -1.2889961096719322, -1.2459174429332127, -1.200203153464911, -1.1526924574905861, -1.1041700694920085, -1.0553466960645859, -1.0068469224004108, -0.9592035279062211, -0.9128570006067959, -0.8681589751636508, -0.8253784145513271, -0.7847095236143955, -0.746280576634981, -0.7101630311276548, -0.6763804702098224, -0.6449170590987138, -0.6157253163068692, -0.5887330889004895, -0.5638496872226774, -0.5409711817113309, -0.5199848966810905, -0.5007731565943946, -0.4832163522930974, -0.4671954002376497, -0.4525936688531597 ], [ -0.810068188040955, -0.8491508823339651, -0.8898470222540036, -0.9319758377478784, -0.9753021495564845, -1.0195305805645698, -1.0643004683714052, -1.1091820156745729, -1.153674355528766, -1.1972063480568047, -1.2391410396333349, -1.278784766728454, -1.3154018205136153, -1.34823533814883, -1.3765345846477897, -1.3995879930025215, -1.416760265734132, -1.4275306526397067, -1.4315284965274047, -1.4285616665169818, -1.4186339027765418, -1.4019484376974796, -1.3788972314970982, -1.350037223623023, -1.316056653941206, -1.2777354784227946, -1.2359041387728154, -1.1914045151788986, -1.1450559633780217, -1.0976281697613037, -1.049821430396263, -1.0022540712044476, -0.9554561520050688, -0.9098683123785888, -0.8658445507039225, -0.8236578012172296, -0.7835073230023014, -0.7455270935529852, -0.709794578760438, -0.6763394143917485, -0.6451516736318215, -0.6161895089422313, -0.589386045499679, -0.5646554706345659, -0.5418983124657035, -0.5210059348265523, -0.5018642978167123, -0.48435704666650203, -0.4683679983722851, -0.45378309759093827 ], [ -0.7994999489216773, -0.8377215051984883, -0.8775202298919899, -0.9187209859097945, -0.9610960203285533, -1.0043593888915294, -1.0481620549257447, -1.0920881774631637, -1.135653238124484, -1.1783047898030052, -1.219426718576222, -1.2583479560578854, -1.294356510270103, -1.3267194359405892, -1.3547088791607091, -1.377633574323116, -1.3948741781099703, -1.4059197380507884, -1.4104016742377528, -1.4081212337065967, -1.3990667271493051, -1.3834180250817725, -1.3615375308379338, -1.3339487218279351, -1.3013049293241785, -1.2643520381265232, -1.2238891256457323, -1.1807307459708465, -1.1356737382843278, -1.089470347288394, -1.0428083611640762, -0.996298101541216, -0.9504655217069077, -0.9057503677899427, -0.8625082685149437, -0.8210156694151792, -0.7814766557907166, -0.7440308708969395, -0.7087619030793688, -0.6757056709984697, -0.6448584712373222, -0.6161844644487761, -0.5896224650943824, -0.5650919678952595, -0.5424983943200808, -0.5217375779432691, -0.5026995313225346, -0.48527155183156184, -0.4693407318898871, -0.45479594209161084 ], [ -0.7880402052032269, -0.8253154852203063, -0.8641264230363945, -0.9043038488826282, -0.9456279563256188, -0.9878229689131485, -1.0305524508291735, -1.0734157505164876, -1.1159461942575928, -1.1576117734855444, -1.197819172160427, -1.2359220226941132, -1.271234210557041, -1.3030488095992157, -1.3306627676296003, -1.3534067503169003, -1.370678630934742, -1.381978119627676, -1.3869391942265796, -1.3853566101545582, -1.3772030551721626, -1.362634519439196, -1.3419829826816645, -1.3157372248490313, -1.2845140744143089, -1.2490234463094811, -1.210030944344613, -1.168321592167704, -1.1246675291806014, -1.0798014965019438, -1.0343969093252086, -0.989054465439861, -0.9442946620591975, -0.9005552768602516, -0.8581927579231031, -0.8174864940675639, -0.7786450442214748, -0.7418135494165934, -0.7070817055364329, -0.6744918218962495, -0.6440466209156668, -0.615716543675921, -0.5894464145315295, -0.5651613866267093, -0.5427721415993969, -0.5221793537483204, -0.5032774542688381, -0.4859577473621216, -0.47011093927371006, -0.45562914543263566 ], [ -0.7757742418450913, -0.8120278967334514, -0.8497713183794317, -0.8888416404436028, -0.9290275019008611, -0.9700639785671732, -1.011628124004453, -1.0533355792013448, -1.094738830868355, -1.13532781788155, -1.1745336827371486, -1.2117365055630918, -1.2462777948924886, -1.2774782865358345, -1.3046611697280286, -1.327180198537038, -1.344451297402518, -1.3559853591798903, -1.3614191721493143, -1.3605410453566165, -1.3533079223845812, -1.3398516277791428, -1.3204732360250682, -1.2956261074252313, -1.2658895762215678, -1.2319363311838538, -1.194497021853891, -1.1543255046545566, -1.1121675087522167, -1.0687345707441354, -1.0246841151991826, -0.9806057401783331, -0.937013193519259, -0.8943411972723124, -0.8529461459933069, -0.8131097088000304, -0.7750444513152723, -0.7389007212927923, -0.7047741832231942, -0.6727135252139149, -0.6427279861017622, -0.614794457425849, -0.5888640022863106, -0.5648677020359727, -0.5427217941356632, -0.5223321027908543, -0.5035977907128175, -0.4864144778945869, -0.4706767837644002, -0.45628035425251046 ], [ -0.762791752007896, -0.7979586566663355, -0.8345659207592612, -0.8724573089367526, -0.9114303695143512, -0.9512316469917559, -0.9915524647772288, -1.032025704716354, -1.0722241222647562, -1.1116608486412316, -1.1497928242538642, -1.186027949286414, -1.219736683208545, -1.2502686230602862, -1.2769741942920776, -1.2992309800654034, -1.316473434137984, -1.328223884260051, -1.3341220241554996, -1.3339497278216947, -1.3276481699477198, -1.315324951932074, -1.2972501140602009, -1.2738413360273668, -1.2456400072441314, -1.2132809143979466, -1.1774588467824847, -1.1388953837380547, -1.0983085811916662, -1.05638742049691, -1.0137719667780403, -0.9710393963265121, -0.9286954862616564, -0.887170822022453, -0.8468208286259841, -0.8079287150875284, -0.7707104878648168, -0.7353213001200637, -0.7018625321192901, -0.6703891268477626, -0.6409168236081456, -0.613429035655807, -0.5878832038471528, -0.5642165270150308, -0.54235102278417, -0.5221979118748306, -0.5036613468960669, -0.4866415254216135, -0.4710372387791985, -0.4567479141941559 ], [ -0.7491855123367401, -0.7832110059484915, -0.81862478772132, -0.8552775611421453, -0.8929761988124247, -0.9314792453213532, -0.9704929465991345, -1.0096681969945691, -1.048598899025374, -1.0868223361908667, -1.1238222488512348, -1.1590353480194917, -1.1918619608261878, -1.2216813252960323, -1.2478716964473158, -1.2698348724825839, -1.2870240330112426, -1.2989730043519594, -1.305324396494825, -1.3058536832177583, -1.3004863752643594, -1.2893060253141289, -1.2725518380935368, -1.2506059624374704, -1.2239718648207423, -1.1932462581844026, -1.159087666774849, -1.1221847475727016, -1.0832270217431406, -1.0428798868789149, -1.0017649172507077, -0.9604457012324499, -0.919418907486589, -0.8791099275455675, -0.8398722779273234, -0.8019899102190315, -0.7656816260945452, -0.73110688945446, -0.6983724438165337, -0.6675392625305865, -0.6386294717497519, -0.6116329855156242, -0.5865136762606036, -0.5632149721321568, -0.5416648257834338, -0.5217800393704208, -0.5034699594704078, -0.4866395755350776, -0.47119206821135357, -0.45703086106676094 ], [ -0.7350500549434604, -0.767889992738739, -0.8020643034864445, -0.8374309064195211, -0.8738063511488242, -0.910961613616538, -0.9486183705367688, -0.9864461064860257, -1.0240605029203869, -1.0610236571514453, -1.0968467666759634, -1.1309959644301184, -1.1629019656132864, -1.1919740400250673, -1.2176185114236362, -1.239261486578063, -1.256374858685507, -1.268503904093157, -1.275294147103816, -1.2765147776123533, -1.272075914103749, -1.262037477394076, -1.2466083439625693, -1.2261356450892853, -1.2010853489849964, -1.1720163446173204, -1.1395509029264566, -1.1043445017913966, -1.0670576074879998, -1.0283312867924226, -0.9887677074904929, -0.948915854532494, -0.9092622411659779, -0.870226046862198, -0.8321579377638683, -0.7953417754643364, -0.7599984527285445, -0.7262911756600607, -0.6943316158246878, -0.6641864660892656, -0.635884039729644, -0.60942064751151, -0.5847665689446009, -0.5618715009218858, -0.5406694200444648, -0.5210828354767285, -0.5030264389387745, -0.48641017928477237, -0.4711418028111283, -0.457128908572552 ], [ -0.7204803657268066, -0.75210099181062, -0.7850010018069317, -0.8190457661185301, -0.8540617902732612, -0.889832800392539, -0.9260962554385122, -0.9625406025126282, -0.9988036782283831, -1.0344727518082588, -1.069086791721351, -1.1021415948617814, -1.1330984107096282, -1.16139657785184, -1.1864704220958155, -1.2077702194078719, -1.2247864223160836, -1.2370756650438086, -1.2442864355391747, -1.2461818905626818, -1.2426572300086005, -1.23374941388745, -1.2196377907830647, -1.2006353077376173, -1.1771711947319696, -1.1497671050783458, -1.1190093972508974, -1.0855204206119022, -1.0499313410620146, -1.0128583810784262, -0.9748835737572679, -0.9365404248401199, -0.8983043388503894, -0.8605873167485762, -0.823736247964429, -0.7880340575032533, -0.7537029882276681, -0.7209093665364421, -0.6897692925740967, -0.6603547974317028, -0.6327001089275375, -0.606807758105008, -0.5826543372141278, -0.5601957854356581, -0.5393721311599914, -0.5201116603049349, -0.5023345104586776, -0.4859557122379388, -0.4708877137972161, -0.457042433410632 ], [ -0.7055706366634357, -0.7359482918154574, -0.7675499737906964, -0.8002486888389905, -0.8338810942194526, -0.868243863893383, -0.9030904263427083, -0.9381283530380435, -0.973017754951383, -1.0073711317115448, -1.0407552039188102, -1.0726953244818387, -1.1026830778226342, -1.130187593096357, -1.1546708732025457, -1.1756070454934888, -1.192504883522488, -1.2049323009438264, -1.212540902188518, -1.2150882384420392, -1.2124552942335054, -1.204657001809799, -1.1918442593744043, -1.1742969424015177, -1.1524085755072508, -1.1266644257735556, -1.0976155263559515, -1.0658513776563299, -1.0319738082594008, -0.9965738671857403, -0.960212880896481, -0.9234081253684082, -0.886623035922496, -0.8502615295042806, -0.8146658238076973, -0.7801170659242637, -0.7468380914287923, -0.714997691731414, -0.6847158502756376, -0.6560695009692668, -0.6290984547141985, -0.603811225626721, -0.5801905639567615, -0.5581985663097916, -0.5377812854319237, -0.5188728023084729, -0.5013987539180036, -0.4852793321597245, -0.47043178473263464, -0.456772458489792 ], [ -0.6904130970176316, -0.7195337787977282, -0.7498233926236267, -0.7811627070031549, -0.8133986371406473, -0.8463408765968136, -0.8797588444139717, -0.9133791895463765, -0.9468841661360468, -0.9799112757592134, -1.0120546592295683, -1.0428687946447908, -1.0718750910017791, -1.0985719156403233, -1.122448411164466, -1.1430021081144721, -1.1597598260007014, -1.1723007366625424, -1.1802798542032658, -1.183449755989094, -1.181678158816715, -1.1749591612242296, -1.1634165462127766, -1.1472984708767577, -1.126964004197212, -1.1028630697857555, -1.0755121367526377, -1.0454682962052981, -1.0133041518630725, -0.9795853890283696, -0.9448521815700992, -0.9096049345311491, -0.8742943428172141, -0.8393154006801771, -0.8050048027778595, -0.7716410985411971, -0.7394469605541318, -0.7085929748169737, -0.6792024342901526, -0.6513567018841849, -0.6251007950175259, -0.6004489246497022, -0.5773897936456993, -0.5558915207102274, -0.5359061065733007, -0.5173733991285507, -0.5002245448663665, -0.4843849365021734, -0.4697766825335573, -0.45632063486402263 ], [ -0.6750969451536376, -0.7029557403781825, -0.7319291823540571, -0.7619058645141066, -0.7927429731194119, -0.8242631665787696, -0.8562517126174947, -0.88845409036035, -0.9205743298093038, -0.9522744400239456, -0.9831753649190076, -1.0128599884763403, -1.040878762577858, -1.0667585091636915, -1.0900148042373614, -1.1101680439918022, -1.126762817818808, -1.1393896199385651, -1.1477073269346094, -1.1514643876543802, -1.15051644177802, -1.1448381960348122, -1.1345278853906418, -1.1198035042840924, -1.1009910841937214, -1.0785063859836768, -1.0528321925841067, -1.0244937308658075, -0.9940345938904647, -0.9619950142365339, -0.9288936668831653, -0.8952135390002011, -0.8613918979127859, -0.8278140461705521, -0.7948103566121253, -0.7626559955456484, -0.7315727333872998, -0.7017322807359756, -0.6732606530337555, -0.6462431442057744, -0.6207295693140309, -0.5967395120865197, -0.5742673814977252, -0.5532871405046493, -0.5337566190060664, -0.5156213623895441, -0.49881799749844763, -0.4832771206096734, -0.4689257282776501, -0.45568922285881525 ], [ -0.6597073988927701, -0.6863078105566639, -0.7139698526308087, -0.7425899391182771, -0.7720354468872905, -0.802141821324068, -0.8327098823783379, -0.8635035059274562, -0.894247915520738, -0.9246288955020346, -0.954293325657101, -0.9828515287055419, -1.009881990369593, -1.0349390166059413, -1.0575637824261683, -1.0772989567219788, -1.0937066458479665, -1.1063888288082784, -1.1150088581734428, -1.1193121033408358, -1.1191435412980257, -1.1144601497654913, -1.1053363816999187, -1.0919617893980653, -1.074630912675238, -1.0537266265027736, -1.0296989810606134, -1.003041951184027, -0.9742704016304359, -0.9438990970587076, -0.9124249466222988, -0.8803130540617526, -0.8479866502412721, -0.8158206470888035, -0.784138354723922, -0.7532108141103809, -0.7232581820858075, -0.6944526366700593, -0.6669223281137192, -0.6407559713666311, -0.6160077492327174, -0.5927022664068518, -0.5708393591889338, -0.550398621975833, -0.531343558908582, -0.5136253074129673, -0.49718591047015853, -0.4819611372446137, -0.4678828682565809, -0.4548810726950898 ], [ -0.6443248782467177, -0.6696780702310855, -0.6960415156133946, -0.7233193765480828, -0.7513890489618682, -0.7800984712892665, -0.8092635774379408, -0.8386660399860507, -0.8680515055289747, -0.8971285979596347, -0.9255690563358806, -0.9530094725027555, -0.9790551765707275, -1.003286845476938, -1.0252703285348723, -1.04456994591965, -1.0607651044085369, -1.0734695266690086, -1.0823517994766674, -1.0871554377816461, -1.0877163580377742, -1.083975652466412, -1.075985916483959, -1.0639101078775437, -1.0480129150161832, -1.0286456712040943, -1.0062266980051484, -0.9812193757580964, -0.9541101722114524, -0.9253884262366735, -0.8955290803392333, -0.8649789612124262, -0.8341467273573983, -0.8033962700406075, -0.7730431561247475, -0.7433536077408233, -0.7145454922041189, -0.6867908196872103, -0.6602192966953129, -0.6349225470290395, -0.6109586797309967, -0.5883569496636405, -0.5671223172390969, -0.54723976740444, -0.5286782934250541, -0.5113944882636879, -0.4953357159154048, -0.4804428577312818, -0.4666526454924641, -0.45389960475313185 ], [ -0.6290243299997869, -0.6531483134089215, -0.6782330953228028, -0.7041904466950831, -0.7309075250002115, -0.7582443619793344, -0.7860314418592944, -0.814067490752283, -0.8421176506868762, -0.869912284241895, -0.8971467482989004, -0.9234825799558161, -0.9485506320928904, -0.9719567408197001, -0.9932904489279695, -1.0121370983310247, -1.0280932195849861, -1.0407846202286248, -1.0498859938633438, -1.0551403591514021, -1.0563763120041838, -1.053521032461278, -1.046607295146467, -1.0357734007501003, -1.0212558938300638, -1.003375960012919, -0.9825212361042033, -0.9591252033714645, -0.9336463065138979, -0.9065485518485931, -0.8782847743339965, -0.8492831964193259, -0.8199374372705388, -0.7905998043622903, -0.7615775015013171, -0.7331312898807141, -0.7054761114078214, -0.6787832011032096, -0.6531832592867456, -0.6287703116957439, -0.605605947985037, -0.5837236905816717, -0.5631333030554222, -0.5438248979827471, -0.525772747784176, -0.5089387380361987, -0.49327543164945203, -0.47872873473032246, -0.4652401717260342, -0.4527487894632411 ], [ -0.6138746991446292, -0.6367934838537678, -0.6606257336314307, -0.68529062510775, -0.7106847413082166, -0.7366797145712692, -0.7631199096389696, -0.7898202462048077, -0.8165643107472881, -0.8431029792290375, -0.8691538661888417, -0.8944020246698701, -0.9185024240675029, -0.9410847904104781, -0.96176135299921, -0.9801378519644023, -0.995827800408082, -1.008469490668181, -1.0177446695952297, -1.0233972978716195, -1.0252504697375924, -1.023219498624743, -1.0173194380503003, -1.0076659223748003, -0.9944691053679257, -0.9780214593065789, -0.9586810190203803, -0.9368521033271827, -0.912965554279006, -0.8874601921479748, -0.8607666634002688, -0.8332943238609634, -0.8054213530625101, -0.7774879765525806, -0.7497924751853924, -0.7225895591237713, -0.6960906512018066, -0.6704656354722257, -0.6458456643254146, -0.6223266690611137, -0.5999732758259585, -0.5788228858825373, -0.5588897327523812, -0.5401687768240455, -0.5226393395263735, -0.5062684138632707, -0.4910136162185023, -0.47682576640869984, -0.46365109969928775, -0.45143312667336266 ], [ -0.5989385477525088, -0.6206812817393242, -0.6432923911000379, -0.6666981962379083, -0.6908043006636846, -0.7154933664339813, -0.7406228838691773, -0.7660230173548337, -0.7914946582179487, -0.8168078870407964, -0.8417011426338994, -0.8658815063673154, -0.8890266179524704, -0.9107888040225675, -0.9308019723403322, -0.9486916522986322, -0.9640882232494284, -0.9766428913998699, -0.9860454309549364, -0.9920422054251673, -0.9944526428077584, -0.9931822483999065, -0.9882304678175551, -0.9796922784538873, -0.9677532229824577, -0.9526785303088924, -0.9347977600083999, -0.9144868559793423, -0.8921495346579191, -0.8681996380609367, -0.8430456079730575, -0.8170777378554558, -0.7906584337373838, -0.7641154048906946, -0.7377375080220806, -0.7117728636708096, -0.6864288246845146, -0.6618733814837101, -0.6382376201664932, -0.6156188952496369, -0.5940844307869624, -0.5736751163331908, -0.5544093142724671, -0.5362865403373833, -0.5192909186348484, -0.5033943458061844, -0.48855932620164383, -0.4747414615751012, -0.46189159540823277, -0.44995762423545327 ], [ -0.5842718176458466, -0.6048719349736132, -0.6262976351919983, -0.6484820683521006, -0.6713393952299833, -0.6947626746290578, -0.7186217042855249, -0.74276088355653, -0.766997214565546, -0.7911186296483244, -0.8148829280193823, -0.8380177166812242, -0.8602218593835249, -0.8811690059827677, -0.9005137532157648, -0.9179008289900061, -0.9329773732498223, -0.9454079323633386, -0.9548912629004629, -0.9611775578381618, -0.9640843708658049, -0.9635094141367131, -0.9594386056551221, -0.9519482615193748, -0.9412011027802751, -0.9274366173778184, -0.9109570668784053, -0.8921108704617629, -0.8712751654111288, -0.8488390955386187, -0.8251889542819639, -0.8006958480339528, -0.7757061435332767, -0.7505346631044941, -0.7254603959292034, -0.7007243849666003, -0.6765294046048512, -0.6530410426240375, -0.6303898252250648, -0.6086740639848687, -0.5879631505886012, -0.5683010737113847, -0.5497099790309693, -0.5321936359553681, -0.5157407121174655, -0.500327788576676, -0.4859220750014667, -0.4724838052170326, -0.4599683098995615, -0.4483277754775421 ], [ -0.5699237294031823, -0.5894181254104625, -0.6096976032801072, -0.6307017841861517, -0.6523528767369566, -0.6745536581013516, -0.6971853739140585, -0.7201056151406231, -0.7431462783436641, -0.7661117867155874, -0.7887778436771613, -0.8108911016191002, -0.8321702354278541, -0.8523089782833513, -0.8709816589479223, -0.8878516309313945, -0.9025826837635709, -0.9148530965784306, -0.9243715011271427, -0.9308932614932881, -0.9342357524937515, -0.9342908152104897, -0.9310328465103893, -0.9245214541127668, -0.914898320565821, -0.9023787233640572, -0.8872388585455083, -0.8698005435654853, -0.850414964480861, -0.8294469304438046, -0.8072607242289622, -0.7842082173547648, -0.7606195426980507, -0.7367963297266344, -0.7130073143980602, -0.6894860241682665, -0.6664301884437795, -0.6440025170020607, -0.6223325079387745, -0.6015189812296704, -0.581633076118118, -0.5627214949454699, -0.5448098192784859, -0.5279057641265541, -0.5120022714930508, -0.4970803749475777, -0.4831117922764118, -0.4700612238071184, -0.45788835013207246, -0.4465495351906389 ], [ -0.5559368069169988, -0.574365056372608, -0.5935401235460744, -0.6134077065520107, -0.6338975186650554, -0.6549213482617771, -0.676371009001504, -0.6981162317004888, -0.7200025976252032, -0.74184968335853, -0.7634496802079027, -0.7845668587137139, -0.8049383514340013, -0.8242767910572277, -0.8422753224838615, -0.8586153663984984, -0.8729772298145215, -0.8850532563958233, -0.8945627475968977, -0.9012674538035181, -0.9049861272592876, -0.905606527339135, -0.9030934288082424, -0.8974916159263283, -0.888923493591083, -0.8775816805576994, -0.863717595648782, -0.8476274562725861, -0.829637215327155, -0.8100878035523958, -0.7893217201986319, -0.7676716371294809, -0.745451333962098, -0.7229490082406788, -0.7004228154266021, -0.6780983795984481, -0.6561679604171632, -0.6347909479238696, -0.6140953696847352, -0.5941801237940504, -0.575117688559704, -0.5569571000475746, -0.5397270285799158, -0.5234388225905031, -0.5080894216834428, -0.49366406972453014, -0.48013878316786557, -0.4674825497409518, -0.455659248419329, -0.4446292937591276 ], [ -0.5423470140671086, -0.5597506449256, -0.5778649735513215, -0.5966413544506477, -0.6160164411986723, -0.6359103134230966, -0.6562244719757342, -0.6768397498502132, -0.6976142347203146, -0.7183813684814871, -0.7389484793444009, -0.7590961047414636, -0.7785785592416514, -0.7971262590922932, -0.8144502941775336, -0.8302496032030477, -0.8442208435417126, -0.8560706728209372, -0.8655297313754323, -0.8723672145434591, -0.876404638571104, -0.8775273089111381, -0.8756921443186532, -0.870930901527144, -0.8633484306699897, -0.8531162546469802, -0.8404623547569321, -0.825658429034397, -0.8090060091608824, -0.7908227019775896, -0.7714295457336684, -0.7511401361209953, -0.7302518592661966, -0.7090393112127269, -0.6877497995911336, -0.6666007080161549, -0.6457784437538698, -0.6254386693099756, -0.6057075255711553, -0.5866835776574562, -0.5684402471926016, -0.5510285310408534, -0.5344798431959467, -0.5188088512082354, -0.5040162099790221, -0.49009112326046206, -0.4770136865487335, -0.46475698432132895, -0.45328893001061765, -0.4425738490977856 ], [ -0.5291839881500853, -0.5456058202656675, -0.5627042540541487, -0.5804358629562851, -0.5987436674044198, -0.6175553203056288, -0.636781145123886, -0.6563120725495208, -0.6760175699555182, -0.6957437258768825, -0.7153117382518828, -0.7345171515616774, -0.7531302755650218, -0.7708982676165756, -0.787549335921332, -0.8027993913497691, -0.8163612284988404, -0.8279559712396891, -0.8373261253756988, -0.8442492149889748, -0.8485507187897163, -0.850114936552139, -0.8488925468118494, -0.844903969198654, -0.8382381689131368, -0.8290471343767829, -0.8175367911175104, -0.8039554720120319, -0.7885811915433414, -0.7717088864661653, -0.7536385546815495, -0.7346649308429709, -0.7150690497580312, -0.6951118085312923, -0.675029461510922, -0.6550308668908613, -0.6352962399535154, -0.6159771425822897, -0.5971974399104695, -0.5790549731361975, -0.5616237253762255, -0.5449562897995617, -0.5290864826634352, -0.5140319759821046, -0.4997968540016702, -0.4863740236780195, -0.4737474316542332, -0.46189405880464524, -0.4507856784465001, -0.44039037612371124 ], [ -0.5164713535536962, -0.5319549084550476, -0.5480828546014522, -0.5648165392542431, -0.5821047784750856, -0.5998820956116582, -0.6180668030062261, -0.6365589731387441, -0.6552383932273879, -0.6739626632527785, -0.6925656792779817, -0.7108568328892483, -0.7286213356374565, -0.7456221175934789, -0.7616037200717931, -0.7762984777677273, -0.7894350559307864, -0.8007490918060973, -0.8099953328766251, -0.8169603335764339, -0.821474538192003, -0.8234225014909161, -0.8227501174794463, -0.8194680415407051, -0.8136509568328947, -0.8054328627635032, -0.7949990397008794, -0.7825756726021741, -0.7684182477729196, -0.7527997813134388, -0.7359997486144052, -0.7182943309395214, -0.6999483381445792, -0.6812089451567662, -0.6623012114131847, -0.6434252385266085, -0.6247547546714927, -0.6064368839683714, -0.5885928549785542, -0.5713194153993244, -0.5546907432766117, -0.5387606734937753, -0.5235650884446272, -0.509124351323445, -0.4954456879036306, -0.482525447200003, -0.470351192633546, -0.4589035931628283, -0.4481580984345826, -0.4380863935810448 ], [ -0.5042270987688673, -0.5188160835256119, -0.5340189874832643, -0.5498014876584969, -0.5661176368412462, -0.5829081522999142, -0.6000985440948485, -0.6175971307016385, -0.6352930366610142, -0.653054330188009, -0.6707265351877587, -0.6881318328395839, -0.7050693358642347, -0.7213168494922669, -0.7366344996768326, -0.7507704892699937, -0.7634690304681261, -0.7744802141845991, -0.7835712559168004, -0.7905382619056154, -0.7952174518992724, -0.7974947090863864, -0.7973124353021509, -0.7946729692019773, -0.7896382357743194, -0.7823257600134498, -0.7729016009000431, -0.7615710613961431, -0.7485681621755735, -0.7341448357426025, -0.7185606453352664, -0.7020736170047425, -0.6849325460828943, -0.6673709372355994, -0.6496025786552271, -0.6318186396420293, -0.6141861122204391, -0.5968473831063554, -0.5799207132311266, -0.5635014100815803, -0.5476634968643335, -0.5324617070868318, -0.5179336600967597, -0.5041021000719104, -0.49097710638214476, -0.47855820625080253, -0.46683634076548125, -0.4557956523756695, -0.44541507612107945, -0.4356697281432819 ], [ -0.4924640001285569, -0.5062018655861968, -0.520524767677739, -0.5354022780266202, -0.5507931482421653, -0.5666436483375155, -0.5828857462868214, -0.5994351786862037, -0.616189508253392, -0.6330263237965649, -0.6498018087918709, -0.6663499767315326, -0.6824829291366005, -0.6979925139612364, -0.7126537246901804, -0.7262300659055095, -0.7384809157196421, -0.7491706558247843, -0.758079053348542, -0.7650121169637093, -0.7698124678813995, -0.7723682107511688, -0.7726193864148301, -0.7705613351405837, -0.7662446588193375, -0.7597718774062424, -0.7512912487055027, -0.740988491618365, -0.7290772825853167, -0.7157893836912937, -0.701365140882278, -0.686044908867957, -0.6700617606370953, -0.6536356571412303, -0.6369691048909694, -0.6202442218025714, -0.6036210623264688, -0.5872370152893813, -0.5712070743919471, -0.5556247847782378, -0.5405636835608256, -0.526079073015449, -0.5122099889569236, -0.49898125120051795, -0.4864055064294856, -0.47448519526067146, -0.4632143942954026, -0.4525805002406262, -0.44256573677425953, -0.4331484758345376 ], [ -0.48119007655348806, -0.4941196478742642, -0.5076068182470828, -0.5216246344791249, -0.5361360371333852, -0.5510922499306703, -0.5664310162313048, -0.582074735160032, -0.5979285940070391, -0.6138788496050346, -0.6297914754735962, -0.6455114547200866, -0.6608630464767419, -0.6756513670732862, -0.6896655865327421, -0.7026839321805896, -0.7144805125152238, -0.7248337417177726, -0.733535891456119, -0.7404030671070256, -0.7452847478724091, -0.7480719840774606, -0.7487034318784433, -0.747168621937985, -0.7435081721202735, -0.7378110086314723, -0.7302089883230769, -0.7208695584064001, -0.7099872147911337, -0.6977745244337085, -0.684453384625804, -0.6702470409022456, -0.65537321336022, -0.6400385182205403, -0.6244342352128492, -0.6087333689727442, -0.5930888837348203, -0.5776329506341495, -0.5624770297053621, -0.5477126079871278, -0.5334124255827648, -0.519632038749291, -0.5064115898069385, -0.49377767552573654, -0.4817452270519746, -0.47031933436009243, -0.459496966058921, -0.4492685508580738, -0.4396194000374041, -0.4305309609297285 ], [ -0.4704090609444336, -0.4825722365227862, -0.49526688305311056, -0.5084691244327988, -0.5221456137241125, -0.5362519760737738, -0.5507311082545062, -0.5655113899621916, -0.5805049039460608, -0.5956058138938678, -0.6106891064628819, -0.6256099583713113, -0.6402040279017176, -0.6542889760984306, -0.6676674800657835, -0.6801318981443292, -0.6914705843880333, -0.7014756424361694, -0.7099516858417325, -0.7167249722603362, -0.7216521434761991, -0.7246277654993156, -0.7255899405543806, -0.7245234514531969, -0.7214601705590229, -0.7164767728116174, -0.7096900792466492, -0.7012505749629354, -0.6913347641623948, -0.680137040647276, -0.667861682829599, -0.6547154580557476, -0.6409011738027666, -0.6266123691060352, -0.6120292152825386, -0.5973155985410709, -0.5826172895908175, -0.5680610639204136, -0.5537546161582271, -0.5397871075735516, -0.5262301925113426, -0.5131393833548668, -0.5005556313563927, -0.48850702006137486, -0.4770104874614559, -0.4660735113778956, -0.4556957092473622, -0.4458703181088585, -0.4365855330427744, -0.42782569260734044 ], [ -0.46012087555349895, -0.47155838899246744, -0.4835024314193501, -0.49593183138905117, -0.5088165151295889, -0.5221160062781895, -0.5357777945522226, -0.5497356307455881, -0.5639078448952143, -0.5781958318212281, -0.59248289908179, -0.6066337186154668, -0.6204946532346712, -0.633895228648861, -0.646650977525681, -0.6585677860121191, -0.6694477264650676, -0.679096176581621, -0.6873298303386042, -0.6939850337167965, -0.6989257627821666, -0.7020505313237768, -0.7032975841351299, -0.7026478957701094, -0.7001257290737168, -0.6957967731371492, -0.6897641301615394, -0.6821626139826974, -0.6731519342682533, -0.6629093644637367, -0.651622441286751, -0.639482142746111, -0.6266768667283111, -0.6133874057814865, -0.599783001451605, -0.5860184716462995, -0.5722323393400587, -0.5585458488914569, -0.5450627336559908, -0.5318695910859894, -0.5190367248941494, -0.5066193244701203, -0.49465886664752484, -0.483184641896158, -0.47221532445625664, -0.4617605227429759, -0.4518222618308495, -0.44239636357934686, -0.4334737017971417, -0.4250413197311804 ], [ -0.45032210055734806, -0.4610733394779731, -0.47230724226483867, -0.48400499842249867, -0.4961394072863189, -0.5086734381907041, -0.5215586738443864, -0.5347336960438406, -0.5481225095364803, -0.5616331425889316, -0.575156607185096, -0.588566440277497, -0.601719069801467, -0.6144552433890114, -0.626602713182677, -0.6379802808725583, -0.6484031753365336, -0.6576895736500552, -0.6656679071089734, -0.6721844459154678, -0.67711055852143, -0.6803490175401009, -0.6818387850066772, -0.6815578512752558, -0.679523903406765, -0.6757928272837976, -0.6704552644510657, -0.6636316156083921, -0.6554659858585159, -0.6461195964629468, -0.635764153002714, -0.6245755790580167, -0.6127284194853349, -0.6003911075170564, -0.5877221894321409, -0.5748675176920192, -0.5619583613291326, -0.5491103405175265, -0.536423068039234, -0.5239803702756723, -0.5118509607873014, -0.5000894472360079, -0.4887375646421509, -0.4778255426329962, -0.4673735298596011, -0.45739301402856264, -0.4478881902802781, -0.4388572435008407, -0.4302935213480782, -0.42218658422448174 ], [ -0.44100642701978116, -0.4511093019843444, -0.46167195809368045, -0.4726776326828863, -0.4841016381737771, -0.49590998622685795, -0.5080579105758564, -0.5204883487730816, -0.5331304767867293, -0.5458984285161912, -0.558690370497585, -0.5713881335172999, -0.5838576185360469, -0.5959501843718512, -0.6075051805216389, -0.618353706166348, -0.6283235587185818, -0.6372451936985991, -0.6449583716320854, -0.6513190413326526, -0.6562059267885956, -0.6595262660575959, -0.6612202041246686, -0.6612634635245822, -0.6596680892655538, -0.6564812605973983, -0.6517823496847965, -0.6456785578036828, -0.6382995544641004, -0.6297915779052193, -0.620311432813448, -0.6100207572438912, -0.5990808431959762, -0.5876482006134651, -0.575870965443011, -0.56388617675933, -0.5518178894791366, -0.5397760482006122, -0.527856022515963, -0.5161386920142306, -0.504690967090833, -0.49356663674466, -0.4828074443054381, -0.47244430450523495, -0.46249858897076984, -0.45298342096735755, -0.44390493331603903, -0.4352634553513678, -0.4270546053148238, -0.41927027356748797 ], [ -0.4321650873643693, -0.44165594406379466, -0.45158460190466726, -0.46193606430131556, -0.47268783635274836, -0.48380861616377563, -0.4952569008529888, -0.5069795678703003, -0.518910522887838, -0.53096953914188, -0.5430614455582708, -0.5550758461358282, -0.5668875631516956, -0.5783579836500048, -0.5893374457795486, -0.5996687261530009, -0.609191584809711, -0.6177482009122945, -0.6251892066760092, -0.6313799196918535, -0.6362063050627756, -0.6395801842987253, -0.6414432548484588, -0.6417695887455657, -0.6405664264883622, -0.637873250098271, -0.6337592811144666, -0.6283196814237081, -0.6216708211994839, -0.6139450129346422, -0.6052850975262148, -0.5958392185968162, -0.5857560489189144, -0.5751806518334002, -0.5642510821185496, -0.5530957623684918, -0.5418316164709436, -0.5305629022325261, -0.5193806596293316, -0.5083626775087958, -0.4975738773540501, -0.4870670154716953, -0.47688361246708993, -0.467055029288776, -0.4576036210113904, -0.4485439118063229, -0.4398837464583558, -0.43162538481703855, -0.4237665154161238, -0.4163011729961247 ], [ -0.42378725829749525, -0.43270082631223683, -0.4420310524897035, -0.4517644557817236, -0.4618804517763002, -0.4723501137860659, -0.48313486458051064, -0.4941851590722263, -0.505439245817361, -0.516822124492148, -0.5282448436956753, -0.5396043030433005, -0.5507837289739403, -0.561653978368823, -0.5720757829203029, -0.581902978612517, -0.590986672163424, -0.5991801890675041, -0.6063445402642212, -0.6123540536169321, -0.6171017591114791, -0.620504105739426, -0.62250462902563, -0.6230762777324118, -0.6222222342005199, -0.6199752062056754, -0.6163953075469588, -0.611566760197415, -0.6055937290084641, -0.5985956350207441, -0.5907022877257317, -0.582049138459966, -0.5727728978652494, -0.56300769159665, -0.5528818599595327, -0.5425154458209926, -0.5320183649247394, -0.5214892150907139, -0.5110146553439382, -0.5006692713310279, -0.49051583746424854, -0.48060588698740286, -0.4709805066340191, -0.46167128106980454, -0.4527013225227545, -0.44408633186521707, -0.43583564816338444, -0.42795325382784133, -0.42043871164978913, -0.41328801800387593 ], [ -0.41586043276939055, -0.4242298045892758, -0.43299547566132934, -0.4421452602123974, -0.4516602382232358, -0.4615135881517186, -0.4716693657391726, -0.48208128822938057, -0.4926916078433762, -0.5034301836110545, -0.5142138831091115, -0.5249464605077645, -0.5355190590492469, -0.5458114693330889, -0.555694235782928, -0.5650316416779937, -0.5736855216579224, -0.5815197578416104, -0.5884052238296853, -0.5942248642382328, -0.5988785498662024, -0.6022873404869957, -0.6043968229631134, -0.6051792689362451, -0.6046344635735699, -0.6027891792228115, -0.5996953875995039, -0.5954274050063849, -0.590078235383528, -0.5837554104259237, -0.5765766257616416, -0.5686654434780917, -0.560147283150449, -0.5511458655518362, -0.5417802138172105, -0.5321622622576414, -0.5223950771537297, -0.5125716584338122, -0.5027742662708983, -0.4930742013489561, -0.4835319603155654, -0.474197687012945, -0.4651118437681315, -0.4563060338187531, -0.4478039145988135, -0.43962215111895997, -0.43177136830436497, -0.42425707037110455, -0.41708050377592976, -0.4102394477519698 ], [ -0.40837075899930947, -0.4162273935129927, -0.42446071066540825, -0.4330596284421853, -0.4420066785599775, -0.4512769118866919, -0.46083676450267697, -0.47064294215239166, -0.48064140242921644, -0.4907665355667503, -0.5009406629602808, -0.5110739833643853, -0.5210650954964019, -0.5308022082756716, -0.5401651133774998, -0.5490279390592221, -0.5572626327437518, -0.564743039830882, -0.57134936800055, -0.5769727618235767, -0.5815196731512549, -0.5849157068891979, -0.5871086527925784, -0.5880704792473171, -0.5877981561910206, -0.586313278614293, -0.5836605648834463, -0.579905391932269, -0.5751305922631624, -0.5694327708206934, -0.5629184035217725, -0.5556999581370192, -0.5478922394482719, -0.5396091120374913, -0.5309607028730711, -0.5220511376472481, -0.5129768232754681, -0.5038252559908623, -0.49467431050613164, -0.4855919502150672, -0.4766362902144886, -0.46785594262702324, -0.4592905758465358, -0.4509716245757207, -0.44292309473339364, -0.43516241554769297, -0.42770129970319404, -0.42054658074830714, -0.41370100473017896, -0.40716395997590715 ], [ -0.4013033458040463, -0.4086770910830906, -0.41640861239902777, -0.424487766753833, -0.43289835540054783, -0.44161710220141026, -0.4506126060398587, -0.4598443229444884, -0.46926165241876744, -0.47880322061897496, -0.48839646760967137, -0.49795765339449716, -0.5073923939683227, -0.5165968209292902, -0.5254594242620727, -0.5338635880758683, -0.5416907666042756, -0.5488241789509871, -0.5551528346532203, -0.5605756480505113, -0.5650053669752706, -0.5683720371759227, -0.5706257508003756, -0.5717384829524201, -0.5717048978108195, -0.5705420945935302, -0.5682883517777382, -0.5650010042575786, -0.560753644128802, -0.5556328671307906, -0.5497347932661232, -0.5431615750923025, -0.5360180762302655, -0.5284088621961913, -0.5204356018193431, -0.5121949351973992, -0.5037768268043199, -0.49526339195685865, -0.4867281620592711, -0.4782357386493842, -0.46984177743970995, -0.46159324015626807, -0.4535288528060261, -0.44567971288396874, -0.4380699939295048, -0.4307177028976919, -0.42363545334049596, -0.4168312248817065, -0.4103090865478513, -0.40406986794152605 ], [ -0.3946425344557297, -0.4015616653121177, -0.40882035108917175, -0.4164092475739482, -0.4243132706691403, -0.4325106471383839, -0.4409719515007966, -0.4496591822272717, -0.45852494666579313, -0.46751183924642287, -0.47655210895146227, -0.48556771676251886, -0.49447087870866774, -0.503165172651644, -0.5115472557174151, -0.5195091949331101, -0.5269413591872569, -0.5337357615771936, -0.5397896849254075, -0.5450093779456431, -0.5493135828009834, -0.5526366520540074, -0.5549310363221189, -0.556168971379537, -0.5563432592328637, -0.5554671132474989, -0.5535731128793993, -0.5507113796989497, -0.5469471360691205, -0.5423578371110465, -0.537030074909602, -0.5310564436572588, -0.5245325299609342, -0.5175541590703812, -0.5102149904435052, -0.5026045191554227, -0.49480650633726037, -0.48689783403110093, -0.478947758422856, -0.4710175203829366, -0.4631602630555275, -0.4554212020159568, -0.447837993253597, -0.4404412469284328, -0.4332551395729729, -0.42629808337887387, -0.41958341777777325, -0.4131200952011496, -0.40691333931849427, -0.4009652599539281 ], [ -0.38837213806606996, -0.3948634045162684, -0.40167667183021044, -0.4088032764375535, -0.4162291181467845, -0.4239337819990461, -0.4318896569549063, -0.4400611017459756, -0.4484037221542925, -0.45686383643512857, -0.4653782143583806, -0.4738741778688074, -0.4822701451437238, -0.4904766828805788, -0.49839810311857224, -0.5059346015882489, -0.5129848872760878, -0.5194492023242862, -0.5252325837686198, -0.5302481807311478, -0.5344204187084478, -0.5376878008968555, -0.5400051566644126, -0.541345187655728, -0.5416992178530599, -0.5410771181717116, -0.5395064407614194, -0.5370308554384404, -0.5337080245779585, -0.5296070798451873, -0.5248058735674755, -0.519388171001673, -0.5134409305991987, -0.507051791837392, -0.5003068585447805, -0.4932888336304976, -0.48607553158094796, -0.4787387698696091, -0.47134362048371325, -0.463947988308059, -0.45660247379363234, -0.44935047251954124, -0.44222846311179165, -0.4352664366556562, -0.4284884244209376, -0.4219130856977982, -0.41555432321941477, -0.4094218995532116, -0.4035220336166335, -0.39785796186087063 ], [ -0.38247565006914813, -0.3885643334640901, -0.39495811686953697, -0.40164891883100534, -0.40862351337395825, -0.41586272104601935, -0.4233406060353112, -0.43102372665622335, -0.43887049830846875, -0.44683073813922985, -0.4548454671569746, -0.46284704633932905, -0.47075971633249286, -0.4785005941685558, -0.4859811545336528, -0.4931091884070193, -0.4997911908841229, -0.5059350867738535, -0.5114531623282903, -0.5162650398169405, -0.5203005136249711, -0.5235020656421451, -0.5258268951418713, -0.5272483327146512, -0.5277565552062395, -0.5273585732454631, -0.5260775181948274, -0.5239513048583254, -0.5210307849672469, -0.5173775312417765, -0.5130614018045083, -0.5081580310119078, -0.5027463779575028, -0.49690644137916185, -0.490717223024316, -0.48425499389412036, -0.4775918917392699, -0.4707948554659272, -0.46392488371363466, -0.4570365911238424, -0.45017802657610634, -0.44339071245490785, -0.4367098621708963, -0.4301647339786112, -0.42377908190540114, -0.41757166869533763, -0.411556810530926, -0.4057449284792667, -0.4001430867725789, -0.3947555029218984 ], [ -0.37693642377705217, -0.38264639793624433, -0.38864521381425304, -0.39492529072499255, -0.4014741853507589, -0.4082738495107866, -0.4152999018315547, -0.4225209574368095, -0.42989806970162725, -0.4373843462315511, -0.4449248058947861, -0.45245654319882617, -0.45990925896414275, -0.4672062010092048, -0.4742655351938652, -0.4810021366166621, -0.4873297552919146, -0.4931634737410643, -0.49842233997864244, -0.5030320329633353, -0.506927402809006, -0.5100547277209073, -0.5123735446813451, -0.5138579401565475, -0.5144972273119186, -0.5142959826742, -0.5132734624150963, -0.5114624611832259, -0.508907710408964, -0.5056639355370354, -0.5017937017660199, -0.4973651763007839, -0.49244992382358727, -0.48712083357606706, -0.4814502540537817, -0.47550838757831204, -0.46936197417027165, -0.46307327381677127, -0.4566993393916185, -0.45029155956909794, -0.44389544205693116, -0.43755060203798046, -0.431290918345556, -0.4251448200108113, -0.4191356678091211, -0.4132821987311403, -0.4075990054175434, -0.4020970271104803, -0.3967840332606821, -0.39166508533871 ], [ -0.37173782523820276, -0.37709162044604355, -0.38271863304970793, -0.38861171662982685, -0.3947591343836878, -0.4011438807208571, -0.40774302323097406, -0.4145271059124466, -0.42145966281144265, -0.4284968976262009, -0.43558758798910174, -0.44267327160850933, -0.4496887639778449, -0.4565630431501232, -0.4632205160950669, -0.4695826543459779, -0.47556995602046015, -0.481104159850556, -0.48611060822615615, -0.49052063423137193, -0.4942738355613388, -0.4973200983009557, -0.49962124655037815, -0.5011522187779918, -0.5019017059180243, -0.5018722257264769, -0.5010796482847486, -0.49955222443040476, -0.49732919870306835, -0.4944591087545604, -0.49099788314704373, -0.48700684946650385, -0.4825507561991486, -0.4776958970158906, -0.4725084074010525, -0.4670527832601628, -0.4613906512092618, -0.4555798021574112, -0.449673484498006, -0.44371994119876285, -0.4377621664106922, -0.43183785170263567, -0.4259794892851617, -0.4202145991333605, -0.41456604824024795, -0.4090524328370985, -0.4036884978587168, -0.3984855718299153, -0.3934519993948684, -0.3885935576641018 ], [ -0.3668633617628903, -0.3718822299407846, -0.3771593176512124, -0.38268785890250323, -0.38845676022228687, -0.3944499828473625, -0.40064595049131396, -0.4070170203589631, -0.413529061883089, -0.4201411926215411, -0.4268057226975082, -0.43346835691969565, -0.44006869630581463, -0.44654106760025397, -0.4528156906218431, -0.458820169812034, -0.4644812699574396, -0.4697269092789283, -0.47448827895140044, -0.47870197976099904, -0.4823120567210363, -0.4852718128615327, -0.4875452946329899, -0.4891083625629552, -0.4899492897897628, -0.4900688646872469, -0.48948000830178556, -0.4882069491312973, -0.4862840238593394, -0.48375419096201466, -0.4806673537236284, -0.4770785903339729, -0.4730463825077103, -0.46863092217702274, -0.4638925602419813, -0.45889044407010526, -0.4536813731201974, -0.4483188860516357, -0.44285257887236446, -0.4373276425773987, -0.4317846004933626, -0.42625922007020267, -0.42078257086700216, -0.41538119957882536, -0.41007739371643376, -0.40488950755266023, -0.3998323267920868, -0.3949174517581243, -0.3901536824355452, -0.38554739222896267 ] ], "zauto": true, "zmax": 1.495815877657015, "zmin": -1.495815877657015 }, { "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.42328666570733586, 0.41515631811243286, 0.40624478557941796, 0.39652491183108196, 0.38597979794927756, 0.3746062830105791, 0.36241920988609044, 0.3494566016865478, 0.33578584966790465, 0.32151094186969525, 0.30678060576685634, 0.2917969375873898, 0.276823557879732, 0.2621914637884874, 0.24829948950511363, 0.23560482043358824, 0.2245981131857991, 0.2157591815239755, 0.20949514072320669, 0.20607359090029234, 0.2055734101491252, 0.20787484951718874, 0.2126943779469731, 0.21964849597524877, 0.2283209355266797, 0.23831386516273856, 0.2492767113225165, 0.2609159163359069, 0.27299248618348354, 0.28531363740583277, 0.29772290652381567, 0.31009119313598843, 0.3223098135698607, 0.3342857520606977, 0.34593880536604127, 0.35720011181594036, 0.3680115370632321, 0.3783254730168509, 0.388104730853853, 0.3973223327711114, 0.4059611088862956, 0.4140130783803005, 0.4214786391758844, 0.42836561373367027, 0.4346882063852385, 0.44046592575754945, 0.44572251867987633, 0.4504849525439305, 0.4547824733168559, 0.4586457573604731 ], [ 0.42184259247657074, 0.41356333819843455, 0.4044953346823168, 0.3946119558603718, 0.38389678816106526, 0.3723470206368415, 0.35997760873747603, 0.3468263500392714, 0.33295999482894645, 0.3184814554634739, 0.3035380384937696, 0.2883303410865293, 0.27312093466645115, 0.2582410841237956, 0.244092431485129, 0.2311389350182848, 0.2198831326990599, 0.21082180363053468, 0.20438193414014155, 0.2008493808846971, 0.20031433890802566, 0.2026581086937118, 0.20758847816971066, 0.21470720402982107, 0.22358160315986564, 0.23379896035269168, 0.24499687763855857, 0.25687331346117975, 0.26918374995542765, 0.28173220619109496, 0.29436068170370316, 0.30693960835902157, 0.31936043316963286, 0.3315305294908412, 0.3433701214807831, 0.35481069040430313, 0.36579430910746086, 0.37627343696722515, 0.38621083646874144, 0.3955794014692463, 0.40436179365576747, 0.4125498601670202, 0.4201438533514319, 0.4271514988665621, 0.4335869674435227, 0.4394698045602372, 0.4448238655357962, 0.4496762943208549, 0.4540565745018528, 0.45799567189412294 ], [ 0.42049048607329476, 0.4120826376982163, 0.40288290744829885, 0.3928660407801919, 0.3820170436263007, 0.37033446208754506, 0.3578344071002941, 0.3445554684644631, 0.33056465441216937, 0.31596444403061247, 0.3009009136433302, 0.2855726335506354, 0.27023953343052964, 0.25523007670630965, 0.2409437576693408, 0.22784422431590304, 0.21643690936481888, 0.20722571644637144, 0.2006488342614717, 0.19700541416073747, 0.1963975695567007, 0.19871380246548956, 0.20366292871533806, 0.21084239885319664, 0.21981201635666384, 0.23015050131498524, 0.24148737079379695, 0.2535138085463321, 0.26598012266653365, 0.2786866963702347, 0.2914731736117637, 0.30420857852207, 0.31678357444554683, 0.32910510682983274, 0.34109313216921905, 0.3526788993490391, 0.3638042174030589, 0.37442122646685033, 0.3844923183541505, 0.39398998468529184, 0.4028964799914515, 0.4112032665046596, 0.4189102576847798, 0.42602490457830294, 0.43256117954708817, 0.43853851173857855, 0.4439807225160838, 0.4489150001470241, 0.4533709434095393, 0.4573796946148334 ], [ 0.4192298605439727, 0.41071314193263087, 0.4014057348506233, 0.39128461031978107, 0.38033715405537866, 0.3685643195109003, 0.35598448024583834, 0.34263812511962993, 0.328593536661703, 0.3139535515103786, 0.29886338635588733, 0.28351926400395455, 0.2681770998632699, 0.253159685483402, 0.23885952149251605, 0.22573277061499253, 0.2142783370288522, 0.20499652421850506, 0.1983267996418092, 0.1945753839333142, 0.19385617830183693, 0.1960711995119117, 0.20094095167177048, 0.20807029653582784, 0.21702156739984285, 0.22737200531117333, 0.23874715814130648, 0.25083322236358113, 0.2633755708886047, 0.2761703009806212, 0.2890536323009791, 0.30189199361542723, 0.31457412970303045, 0.32700555999523034, 0.3391051401718874, 0.3508032139994864, 0.36204079327783983, 0.37276927778287156, 0.38295035326344523, 0.3925558365351538, 0.4015673471705619, 0.4099757661527673, 0.41778049392254835, 0.4249885488974865, 0.4316135593410032, 0.43767470234826233, 0.44319563831576797, 0.44820348081992445, 0.4527278324443351, 0.45679990801054293 ], [ 0.41805917243955243, 0.40945230482472267, 0.4000600309252381, 0.38986237922617556, 0.3788500591825508, 0.36702747380383544, 0.3544163689912304, 0.34106025525595407, 0.3270297373985162, 0.3124288513183593, 0.2974023998709774, 0.2821440451480981, 0.2669044667671712, 0.251998121599687, 0.23780594150441522, 0.22476974512533085, 0.21337277789230108, 0.2041011554004176, 0.19738552485966898, 0.19353240406477837, 0.1926665897897819, 0.19470927552950063, 0.19940304093151606, 0.20637201243665607, 0.2151914765470886, 0.22544470245800793, 0.23675771392041475, 0.24881369507143827, 0.26135337504460265, 0.2741678661768002, 0.28708878539559873, 0.2999786443611975, 0.3127230031033864, 0.3252248452779348, 0.3374010083411163, 0.3491802024768162, 0.3605020787198267, 0.37131686600154323, 0.38158521463411055, 0.3912780105066844, 0.4003760331448035, 0.4088694116914623, 0.4167568858673794, 0.42404490893717095, 0.43074664287327585, 0.43688089800424645, 0.44247106498124344, 0.4475440791203654, 0.45212944819956824, 0.45625836589918933 ], [ 0.4169761153311784, 0.4082964690783193, 0.39884042963286764, 0.3885918588689962, 0.37754567622029683, 0.36571071811864847, 0.3531131546542987, 0.33980058433162263, 0.32584692935680726, 0.3113582210325692, 0.2964792646305705, 0.28140095308390756, 0.26636758197339905, 0.25168280835362766, 0.23771181868304822, 0.22487590356740061, 0.21363448745800764, 0.20445003724485541, 0.19773521917254216, 0.19379036147063425, 0.1927496225966202, 0.194557667005125, 0.1989880310486991, 0.20569486711209958, 0.21427635878908372, 0.22432931708885104, 0.23548493502228007, 0.24742564879202786, 0.2598880591442474, 0.27265772388763765, 0.2855605275319143, 0.2984537400961171, 0.31121844427923834, 0.32375394845360544, 0.33597413303832446, 0.3478053379562139, 0.35918529526420295, 0.370062649313809, 0.3803967107136327, 0.3901572086164648, 0.3993239101763999, 0.4078860551430368, 0.41584160654303337, 0.4231963493243804, 0.42996288334767807, 0.43615956055580185, 0.44180941285202524, 0.4469391103064568, 0.4515779809080437, 0.45575711451611617 ], [ 0.4159779681441993, 0.40724130168195644, 0.39774052596066595, 0.3874640257763661, 0.3764117218852794, 0.3645977648337122, 0.35205368953370025, 0.3388321300969819, 0.32501119677437706, 0.3106995873042134, 0.2960424127549465, 0.28122751559912873, 0.26649167922752054, 0.2521254976244696, 0.23847474619792186, 0.22593496468800978, 0.21493508153229393, 0.2059063370762261, 0.19923606765409949, 0.1952129281960361, 0.1939784932621467, 0.1955033996047796, 0.19959859205825903, 0.20595687801004736, 0.2142079846737619, 0.22396932027257188, 0.23488203028615465, 0.24663039130709946, 0.25894774179394503, 0.27161379996853474, 0.2844477878596949, 0.2973005391238791, 0.3100474501515934, 0.3225830723378945, 0.3348174361997116, 0.34667381673907705, 0.3580875105483039, 0.36900520610399057, 0.3793846128278986, 0.389194119515425, 0.3984123491820913, 0.40702755265747814, 0.41503683513170336, 0.4224452412964848, 0.42926474051357477, 0.43551315837188126, 0.4412130990440935, 0.44639089701194, 0.45107562907774423, 0.4552982094806962 ], [ 0.4150619793443916, 0.4062822821929002, 0.39675349293788464, 0.38646909737938007, 0.37543468363626487, 0.36367045780562085, 0.3512141072815161, 0.33812408375005826, 0.32448338094047086, 0.31040385724951364, 0.2960310724885552, 0.2815494297850158, 0.26718708403062563, 0.2532195422693038, 0.23997012093941478, 0.22780454598678634, 0.21711636609600599, 0.20830030303086036, 0.20171328924308057, 0.19762826254791865, 0.1961921238065063, 0.19740213789446193, 0.20111026643628932, 0.20705382855547988, 0.21490080487254096, 0.22429532859861412, 0.2348931191770193, 0.24638313369864842, 0.2584967073925565, 0.27100781874693997, 0.2837284173133181, 0.29650195365564613, 0.3091971168532375, 0.3217027633189086, 0.3339242935824857, 0.34578131464303413, 0.3572062479998763, 0.36814352121204585, 0.3785490391897665, 0.3883897183030717, 0.3976429514761081, 0.4062959416834376, 0.4143448908464332, 0.42179406256551827, 0.4286547540872973, 0.43494421941218925, 0.4406845850265443, 0.44590179515987843, 0.45062461673587634, 0.45488372668602883 ], [ 0.41422576536956607, 0.4054152162120286, 0.3958727392979424, 0.38559736972792547, 0.37460088174202, 0.36291011386673283, 0.35056951293851335, 0.33764393610378646, 0.3242217544816296, 0.31041828456875076, 0.2963795096353463, 0.2822859085713614, 0.2683559414672116, 0.2548483125746149, 0.24206154323501564, 0.23032874304115378, 0.2200050664785453, 0.21144575091965198, 0.20497456265416175, 0.20084623282849837, 0.19921099088146088, 0.20009180584998906, 0.2033825272380143, 0.20886790701917843, 0.21625858570191, 0.2252302144821179, 0.23545722959430307, 0.24663618147999364, 0.2584979986064337, 0.2708114335271409, 0.2833809481278923, 0.29604200227112304, 0.3086558336200983, 0.3211048861548988, 0.3332893241845243, 0.3451246205068898, 0.35653999030550154, 0.36747738197963725, 0.3778907630893722, 0.38774550359309257, 0.39701772884387126, 0.4056935758457119, 0.4137683323440702, 0.4212454692062093, 0.4281355945227798, 0.43445536599651163, 0.4402263994312155, 0.44547420797105364, 0.45022720107705433, 0.4545157654515876 ], [ 0.41346769929445193, 0.40463674306392494, 0.395092567813862, 0.38484006553089817, 0.3738975551967041, 0.36229890614863647, 0.3500957375256146, 0.33735969550934986, 0.3241848177492313, 0.3106899881800292, 0.297021446133877, 0.2833552133578831, 0.2698991085759812, 0.25689370626137076, 0.24461117221702705, 0.23335045696885937, 0.2234270594682573, 0.2151558503512341, 0.2088266951595498, 0.20467504135919967, 0.20285270635999947, 0.2034063051257365, 0.20627019108295117, 0.21127678492222926, 0.21818142261568818, 0.22669445364767946, 0.23651237467682315, 0.24734206728166455, 0.25891584957818886, 0.27099813518261534, 0.28338610139336134, 0.2959070049316737, 0.30841423037035903, 0.32078337352597625, 0.33290898033243327, 0.3447020975867089, 0.3560885370475596, 0.36700765251844536, 0.37741142054256094, 0.3872636523063685, 0.3965392167631543, 0.4052232057995752, 0.41331001367196424, 0.4208023326903126, 0.4277100859070583, 0.4340493273224985, 0.4398411431221627, 0.4451105858380048, 0.449885668850343, 0.45419644269857096 ], [ 0.4127872647773547, 0.40394480524833853, 0.39440879224937947, 0.3841901380479871, 0.3733139009013855, 0.36182119757096387, 0.34977103765285517, 0.3372420407037967, 0.3243340100763072, 0.3111693475686691, 0.297894286661868, 0.2846798777456479, 0.271722549892174, 0.2592438784427592, 0.2474889066276042, 0.23672205201629506, 0.22721939910876998, 0.21925624672270116, 0.21308940163487908, 0.2089350792992855, 0.2069452868976883, 0.2071875702884641, 0.20963379988105277, 0.21416212933003306, 0.22057244449345054, 0.2286112535246614, 0.23799940373039066, 0.24845641388517317, 0.25971780586444115, 0.2715448209202017, 0.28372794910599436, 0.2960864448403134, 0.30846581721616845, 0.3207346999619852, 0.3327818975222064, 0.3445139398341978, 0.355853190085901, 0.3667364052204683, 0.3771136008762736, 0.38694707928753364, 0.39621051077477537, 0.4048879983761979, 0.41297309088532974, 0.42046773762804196, 0.4273811976440956, 0.4337289272420488, 0.4395314746799274, 0.44481341070678165, 0.4496023204923844, 0.4539278774268361 ], [ 0.4121853509948496, 0.4033390478856337, 0.3938192715705911, 0.3836429772571294, 0.37284199696481257, 0.3614647355040306, 0.34957762582430335, 0.33726626187393083, 0.32463614779319433, 0.3118130340760508, 0.29894284641036284, 0.28619123480503905, 0.2737427544896998, 0.2617996077657388, 0.250579707673542, 0.2403135758056809, 0.23123930836276702, 0.22359464915024363, 0.2176052823595014, 0.21346904972164432, 0.2113371097239543, 0.21129497165458982, 0.21334807533990977, 0.21741681086839504, 0.22334364976585597, 0.2309110653199859, 0.23986535574824985, 0.24994034486841427, 0.2608764076940925, 0.27243293846546607, 0.28439467109473454, 0.2965734540815411, 0.30880728401330165, 0.32095805602350774, 0.33290898547717, 0.34456220867153975, 0.3558367554680325, 0.36666690076821806, 0.3770008134669217, 0.38679939652073786, 0.3960352220206298, 0.4046914910213394, 0.41276097711082904, 0.4202449385929965, 0.4271520037640327, 0.43349704648155074, 0.4393000757447983, 0.4445851645998892, 0.44937944177580463, 0.4537121653578285 ], [ 0.4116644665555825, 0.4028211191578825, 0.3933243235250515, 0.3831969691994789, 0.3724775470573007, 0.3612216273199173, 0.34950293019186995, 0.33741386357282976, 0.3250654332148675, 0.3125864890827934, 0.3001223556306029, 0.2878329900028821, 0.27589089226277763, 0.26447901195319634, 0.25378880459320446, 0.24401834918655452, 0.2353700397929282, 0.22804688101801526, 0.22224603784785796, 0.21814834917790238, 0.21590341437854021, 0.21561176954397948, 0.2173080390606918, 0.2209503713602995, 0.22642048218718783, 0.23353517001982946, 0.2420660941740874, 0.2517622970977041, 0.26237034748286653, 0.273649155545481, 0.2853788816641791, 0.297364912895426, 0.3094384581965456, 0.32145522522202147, 0.33329326468949516, 0.3448506549563928, 0.3560433663175447, 0.36680342057411336, 0.37707733397574184, 0.3868247747391918, 0.3960173542684723, 0.4046374834520753, 0.41267724765905806, 0.42013727737118683, 0.42702561098398006, 0.43335656025472136, 0.4391495970194759, 0.444428282955566, 0.4492192635415326, 0.45355134422125726 ], [ 0.4112288542282494, 0.4023948475435258, 0.3929269857342388, 0.38285386712650066, 0.3722203928497851, 0.36108903012013394, 0.3495405013050089, 0.3376737298668211, 0.32560491765210486, 0.31346571706440746, 0.3014006002403652, 0.2895637032276141, 0.2781155988583846, 0.26722056028441205, 0.25704482868983397, 0.24775610838446405, 0.2395239449966406, 0.23251987120115625, 0.22691546853763409, 0.22287621863553675, 0.22054971673679735, 0.22004877965546502, 0.2214327601360668, 0.22469258107421536, 0.22974492722008025, 0.23643813487758755, 0.2445680683421832, 0.2538991365013611, 0.2641850513709138, 0.27518553984402244, 0.28667753386999745, 0.29846118311800185, 0.3103619469059162, 0.3222301906093961, 0.3339394737120696, 0.3453843484946164, 0.3564781457477203, 0.3671509674668227, 0.3773479429921421, 0.3870277178464679, 0.3961611107684302, 0.40472987318722725, 0.4127255004825903, 0.42014806484604683, 0.427005058870022, 0.433310253933632, 0.4390825870540718, 0.44434509447557663, 0.44912391086489695, 0.4534473507630301 ], [ 0.4108844935617783, 0.4020662782443787, 0.3926331007620866, 0.3826189435933373, 0.37207475497732745, 0.3610695052104973, 0.34969050599677415, 0.3380427820598653, 0.32624734171809167, 0.31443831574366, 0.30275913055503445, 0.29135813919578485, 0.2803844006409944, 0.26998447795521047, 0.2603010877718358, 0.25147405442298787, 0.24364325666298853, 0.23695221309338835, 0.23154994931162917, 0.22758833062666387, 0.22521268943642508, 0.22454562703433384, 0.22566691615110562, 0.2285951156555028, 0.23327706751945695, 0.23958905027562813, 0.24734912554216767, 0.25633653417140756, 0.266312676705599, 0.27703926909660037, 0.28829143908994914, 0.2998655225395454, 0.3115825125200134, 0.3232885181159819, 0.3348534897713682, 0.3461691520880688, 0.35714674103595323, 0.36771486046424834, 0.37781757814146677, 0.38741276712142136, 0.39647064451380576, 0.4049724457457098, 0.41290918053170383, 0.4202804342782415, 0.4270931974336509, 0.43336072098251566, 0.43910140712694656, 0.4443377500926419, 0.44909534371358095, 0.45340197109732927 ], [ 0.41063898486895234, 0.4018435592987462, 0.39245121182311077, 0.3825009054460394, 0.37204917899111917, 0.361171007919462, 0.3499597735567184, 0.3385260905501544, 0.3269953150088476, 0.3155037133528821, 0.30419352783579995, 0.2932075123620104, 0.28268386361873155, 0.27275270773070376, 0.2635352489727202, 0.2551461918869481, 0.24769907474667935, 0.24131286828813944, 0.23611699941561132, 0.23225142339241822, 0.22985905282905966, 0.2290700181097523, 0.22998045817287338, 0.23263151284223907, 0.2369951626249569, 0.2429715623819413, 0.25039837746504906, 0.25906861745629406, 0.2687515589518595, 0.2792119219886622, 0.2902244638151631, 0.30158324677569154, 0.31310624742232696, 0.3246365779793862, 0.336041617471018, 0.3472110874862297, 0.3580547690522367, 0.3685002567847296, 0.37849092675365104, 0.3879841571167821, 0.3969497694774771, 0.40536863351693164, 0.4132313791167127, 0.4205371747619179, 0.4272925490869885, 0.4335102486044988, 0.439208136506092, 0.4444081444236879, 0.4491352917413091, 0.45341678647965344 ], [ 0.41050131525246036, 0.4017366770555302, 0.3923922673900257, 0.38251156816158666, 0.3721561807370849, 0.36140650536684116, 0.3503613859425848, 0.33913643400684285, 0.32786083404415367, 0.31667262451075007, 0.30571276283541576, 0.29511869627829396, 0.28501858696950816, 0.27552761434132317, 0.26674768966379586, 0.2587712919839213, 0.2516889577731254, 0.24559846428099044, 0.24061242295924418, 0.23686045814033546, 0.23448292628113357, 0.2336154258421322, 0.23436669662217272, 0.2367956389668137, 0.24089440616387195, 0.24658280185512757, 0.2537151943658335, 0.2620969622290634, 0.27150517742905705, 0.2817084249904098, 0.2924824824680669, 0.3036207173975677, 0.31493962310250817, 0.32628067310286435, 0.3375098066717323, 0.34851564605220176, 0.3592072176550031, 0.36951163832731326, 0.3793719896822791, 0.38874544811761014, 0.39760165286620003, 0.4059212593483339, 0.4136946210531815, 0.4209205549879841, 0.42760516296334755, 0.43376069741350154, 0.4394044730586477, 0.4445578336136335, 0.4492451862845377, 0.4534931169098996 ], [ 0.41048151495356966, 0.4017570504403392, 0.39246914535088134, 0.38266530153912365, 0.3724116048010128, 0.36179323809760205, 0.3509138314632838, 0.3398933310328438, 0.3288641729687839, 0.3179657738743493, 0.30733771727015996, 0.29711249845285387, 0.2874091805656479, 0.2783296152974228, 0.26995874572027323, 0.26236975025388565, 0.2556334216056262, 0.24982951022078312, 0.24505635763585093, 0.2414346449350421, 0.23910198604690358, 0.23819752202649383, 0.2388391120379035, 0.24109892329722668, 0.24498456646068478, 0.25043136797448995, 0.2573074528045487, 0.26542903237197, 0.27458073599026966, 0.28453574631739864, 0.295072173718776, 0.3059842392304253, 0.31708849045791704, 0.32822614387926896, 0.33926286100709735, 0.35008709735424953, 0.3606078483132538, 0.37075230054180325, 0.38046364764784235, 0.38969916084459494, 0.398428509236926, 0.4066322816433104, 0.41430065303905694, 0.4214321480328826, 0.42803247011206325, 0.43411338186546233, 0.43969163452576404, 0.4447879537612688, 0.4494260928630395, 0.4536319651639318 ], [ 0.4105902197987363, 0.4019170031586248, 0.3926960198117951, 0.3829782744658751, 0.37283372919188795, 0.3623516652525546, 0.3516397695200313, 0.34082160176293147, 0.33003221696905755, 0.3194119734270849, 0.3090989739412933, 0.29922113018278035, 0.28988938243354784, 0.2811939207159707, 0.27320506317915416, 0.2659795622605871, 0.2595715795070918, 0.25404577090382685, 0.2494884789173943, 0.24601259592488683, 0.2437527031858241, 0.24284964165805278, 0.2434271750320028, 0.24556662706276836, 0.24928674570591153, 0.2545345655228153, 0.26118919878625, 0.2690761999998091, 0.2779874718227196, 0.2877014360304545, 0.2979997489060237, 0.3086789468259696, 0.3195571033457955, 0.33047651373234876, 0.3413036935758293, 0.3519278447305628, 0.36225864191241675, 0.372223879118813, 0.38176725967687075, 0.3908464378313102, 0.3994313164758819, 0.40750255721876255, 0.415050246378742, 0.42207266770000457, 0.42857514797916313, 0.4345689581454733, 0.4400702657789574, 0.4450991441387749, 0.4496786475163795, 0.4538339638880576 ], [ 0.41083816234925513, 0.4022291419414433, 0.3930876052632062, 0.3834675413426849, 0.37344216811058334, 0.3631041559168377, 0.35256448150151015, 0.3419495487201588, 0.33139634378038624, 0.32104567656049254, 0.31103401776992307, 0.3014850331326302, 0.29250249626396047, 0.2841665773986154, 0.2765352585430936, 0.2696516268028236, 0.26355613325182353, 0.25830100893801144, 0.2539625746874443, 0.25064683390598136, 0.24848490939125556, 0.24761754772027947, 0.24817145595018353, 0.25023342430284184, 0.25382951444919005, 0.25891511850733684, 0.26537791311896297, 0.27305149820909136, 0.28173481514052556, 0.2912121128402839, 0.3012696967193689, 0.3117077520350135, 0.3223472277760364, 0.33303272985397325, 0.34363267735881287, 0.35403786910125634, 0.36415932327250483, 0.37392594478604585, 0.3832823191957684, 0.39218675283570337, 0.4006095713310762, 0.4085316364546441, 0.4159430259063683, 0.4228418260202769, 0.4292330019194473, 0.4351273257290887, 0.44054035703309824, 0.44549147917530385, 0.45000300013944383, 0.4540993282741117 ], [ 0.41123561994063246, 0.40270567637892524, 0.39365832263470674, 0.38415002550723176, 0.3742566409586786, 0.36407350971466607, 0.3537141078821522, 0.34330687581980185, 0.33298999242871913, 0.3229041690130062, 0.3131840282989458, 0.3039492618396842, 0.29529736329558376, 0.28730004171555285, 0.28000511700902175, 0.2734446060551098, 0.2676479429570908, 0.2626573231341433, 0.25854072471424583, 0.25539790471871116, 0.253355959323176, 0.25255378550690805, 0.2531183263626491, 0.25513859508893477, 0.2586447029737565, 0.26359760864907716, 0.2698915854233345, 0.2773672708738985, 0.28583052740067894, 0.29507199586855437, 0.30488362058445223, 0.3150704135882821, 0.3254573866972224, 0.3358925411781002, 0.3462471263822568, 0.35641429216718734, 0.3663069913342011, 0.3758556894538068, 0.3850061876811902, 0.39371768518261635, 0.4019610987165501, 0.40971760259698364, 0.4169773349248929, 0.4237382199785777, 0.4300048703279809, 0.4357875479705853, 0.4411011773472, 0.4459644126981048, 0.4503987676286127, 0.4544278165749835 ], [ 0.41179185158064147, 0.40335772105097706, 0.39442143873904073, 0.38504146429051894, 0.37529568793597035, 0.3652814054014552, 0.35511379127605797, 0.34492248849167745, 0.33484608685932143, 0.32502458930261013, 0.31559048005174145, 0.30665965933171485, 0.29832412202004066, 0.2906485455384737, 0.28367259843102244, 0.27741961449766084, 0.2719104489985714, 0.2671793607992056, 0.26328737218493703, 0.2603283957454195, 0.2584248096798506, 0.25771196234943106, 0.2583145949081707, 0.260321165550276, 0.263763158840146, 0.268604908195635, 0.27474581829518335, 0.28203289206325294, 0.2902789468341379, 0.29928157479082934, 0.3088392358717217, 0.31876277747573345, 0.32888227698003425, 0.3390500422854893, 0.3491409311457805, 0.3590510789635736, 0.36869587233604995, 0.37800771887446954, 0.3869339191409912, 0.39543477059127374, 0.4034819247606626, 0.4110569637405928, 0.4181501433827421, 0.4247592535297586, 0.43088855844336643, 0.43654779590023657, 0.44175122685609564, 0.44651673725398044, 0.4508649991457204, 0.45481870034252486 ], [ 0.4125145572092214, 0.4041946229128226, 0.395388233842663, 0.3861553849173358, 0.3765754189132729, 0.3667468847907581, 0.3567858565442729, 0.3468223324723852, 0.3369945002895994, 0.32744099326574444, 0.3182917928975525, 0.30965909245485196, 0.3016300421300614, 0.29426355616050803, 0.2875929617465873, 0.2816350543270794, 0.27640427052836836, 0.27192873762206227, 0.26826363362221195, 0.2654972218671677, 0.2637463904679247, 0.26314133638132187, 0.2638024580213386, 0.2658153569389629, 0.26921079855303676, 0.27395488780349186, 0.279951188295003, 0.28705272779446744, 0.2950794658961395, 0.3038365039927809, 0.31312958352834896, 0.32277622466443523, 0.33261238220604517, 0.3424953990365471, 0.35230435967159457, 0.3619388887168789, 0.37131720363857657, 0.3803739587189484, 0.3890581817897839, 0.3973314343642105, 0.40516621897448657, 0.4125446023425253, 0.41945700360141824, 0.4259010986866147, 0.43188080409868734, 0.4374053180381197, 0.4424882101183098, 0.44714656052372564, 0.45140015518909365, 0.4552707458003565 ], [ 0.4134093918383047, 0.4052233558091575, 0.39656725096908935, 0.3875021793742944, 0.3781083813678296, 0.3684849788487758, 0.3587481592184605, 0.349027429995773, 0.33945974870748585, 0.330181681745655, 0.3213202813231482, 0.31298402309468043, 0.30525573213187407, 0.2981896481759978, 0.2918143402217174, 0.2861419415023124, 0.2811823360110884, 0.2769590328190587, 0.2735222281594133, 0.27095457234745, 0.2693666700518711, 0.26888211532703105, 0.2696151534544728, 0.27164670417133896, 0.27500527274781766, 0.2796576679194079, 0.28551107683810817, 0.2924244993447852, 0.30022535226308217, 0.30872679378468965, 0.31774250431920353, 0.32709735038271653, 0.336633792776834, 0.34621476009476493, 0.35572402462148334, 0.3650650729937829, 0.3741592469864555, 0.3829436732626284, 0.39136927671152366, 0.3993990073117016, 0.4070063063793041, 0.4141737834252121, 0.420892054896705, 0.4271586970948134, 0.43297727682515796, 0.4383564375639493, 0.4433090318205468, 0.4478512999540102, 0.4520021014750637, 0.45578220723651536 ], [ 0.4144795635556991, 0.4064480194877581, 0.3979636748535024, 0.38908833926129843, 0.37990262440166367, 0.3705055721448122, 0.3610127208223041, 0.3515522573380588, 0.3422590851856883, 0.3332669920716721, 0.32469963203941227, 0.31666167175485666, 0.3092320010468401, 0.30246108794672294, 0.29637408476613986, 0.29098005364634205, 0.2862858894413716, 0.28231171469378796, 0.27910339124496164, 0.2767378900702872, 0.27531878531691173, 0.27496182725039103, 0.2757736580274469, 0.277829153640274, 0.2811535137839098, 0.28571363575675657, 0.29142014457189835, 0.2981381755587751, 0.3057030002539784, 0.31393635250778773, 0.322660402543508, 0.3317078864120727, 0.34092823368880176, 0.3501903484423869, 0.3593830077582784, 0.368413811798105, 0.37720742251725203, 0.38570358926131126, 0.393855247558827, 0.40162681988082233, 0.40899274630719656, 0.4159362192070831, 0.42244807563343073, 0.42852580123832573, 0.43417260988965745, 0.4393965767297486, 0.44420981493016676, 0.4486276958276994, 0.4526681179265663, 0.45635083275036065 ], [ 0.4157255385417594, 0.4078694728659088, 0.39957887858448715, 0.39091589892233675, 0.38196101965439344, 0.3728125814472273, 0.363584744388693, 0.3544035769066617, 0.3454011300419047, 0.33670771140527855, 0.32844309123834015, 0.3207079771114029, 0.3135775981608159, 0.30709937229947004, 0.301296131749505, 0.29617516821063505, 0.29174164991801654, 0.28801328056402486, 0.2850320591284339, 0.2828691666575838, 0.28162051111879344, 0.2813930209403232, 0.28228466407760305, 0.2843633462501745, 0.28765033978162363, 0.29211236859732087, 0.2976635571427696, 0.3041754713856773, 0.31149166282622165, 0.3194429072031116, 0.327860309505319, 0.3365848642722933, 0.34547328991594073, 0.35440071850618887, 0.3632611257434721, 0.37196637181498043, 0.380444549035347, 0.38863811241772217, 0.3965020707519154, 0.40400236595284805, 0.41111447114274247, 0.4178221849764184, 0.42411657880891546, 0.4299950523978142, 0.43546046319420945, 0.44052030706250306, 0.44518594031003345, 0.449471842133706, 0.4533949223828745, 0.45697388214898865 ], [ 0.41714486862833056, 0.4094851212669467, 0.40141016281857667, 0.3929821180400383, 0.3842808778546854, 0.37540349611645385, 0.36646206809191517, 0.35757979332753587, 0.348885118882435, 0.34050420726435204, 0.3325524703043256, 0.32512647350793605, 0.3182979650373081, 0.31211186642939204, 0.30658954895792695, 0.3017375504337778, 0.2975602864158658, 0.29407377073504254, 0.29131647644413977, 0.28935369306028474, 0.28827319135076196, 0.2881723983126685, 0.28913991676943773, 0.2912361494566886, 0.29447816338652916, 0.2988324989058926, 0.30421698686126514, 0.3105099671458212, 0.3175636692665698, 0.3252182994196506, 0.33331423608026955, 0.34170100315236485, 0.3502428097077136, 0.35882115752434884, 0.3673353158084114, 0.3757014664332332, 0.3838511720513688, 0.39172962022062197, 0.39929391236833084, 0.4065115248365367, 0.41335897567291335, 0.4198206787543528, 0.4258879453086143, 0.4315580908295903, 0.4368336135797286, 0.4417214227562794, 0.4462321058686951, 0.4503792338315362, 0.4541787080256643, 0.45764815629129496 ], [ 0.41873214825958716, 0.4112888659024438, 0.40345069742758327, 0.39527941527535254, 0.38685387439684005, 0.378269295498033, 0.3696350739444194, 0.36107085208768513, 0.35270078852226555, 0.3446462965125727, 0.33701799249891257, 0.32990811015493854, 0.3233850247567716, 0.3174915667800385, 0.312248285117012, 0.3076617138458234, 0.30373622412848905, 0.30048666169473814, 0.29794821580935754, 0.29618023440679137, 0.2952620791670875, 0.2952813078130229, 0.2963168289961202, 0.29842135112397894, 0.3016077221547044, 0.30584244782499614, 0.31104732877734115, 0.31710779831643954, 0.32388508723295945, 0.3312291208196657, 0.3389897826457094, 0.3470252929404115, 0.35520745757325145, 0.36342420429477185, 0.3715801160917462, 0.3795956943670886, 0.3874059587518122, 0.39495881284541295, 0.4022134359686152, 0.40913882816266106, 0.4157125460216779, 0.42191961574991316, 0.42775158759466264, 0.4332056924154311, 0.43828406802200465, 0.4429930337531195, 0.44734240255981034, 0.4513448284723898, 0.4550151929929219, 0.4583700367479689 ], [ 0.4204790988473368, 0.41327121221763574, 0.40568966018937846, 0.3977955447196447, 0.38966627180373925, 0.38139472598757995, 0.3730870275894549, 0.36485864862108175, 0.35682885915772405, 0.3491138006681456, 0.34181891749723836, 0.3350319380967625, 0.3288179242228135, 0.3232178950710919, 0.31825201934281144, 0.3139273384485809, 0.3102486533978793, 0.3072299916163771, 0.30490344116025037, 0.3033224382543584, 0.3025578756263543, 0.30268737550537284, 0.30378014900133954, 0.30588130114003764, 0.30899963807560116, 0.31310186299050075, 0.318113997606558, 0.32392881071972224, 0.33041674781949043, 0.3374376254799154, 0.34485095631427226, 0.35252373122491065, 0.36033538190141456, 0.3681802545779774, 0.3759682132921844, 0.38362403245665405, 0.3910861382206829, 0.39830510308540973, 0.4052421448792893, 0.4118677576180372, 0.41816051634218865, 0.42410604779547656, 0.4296961357917435, 0.4349279252801631, 0.4398031945148721, 0.4443276743893703, 0.4485104039961371, 0.45236311966307124, 0.455899680245312, 0.45913553430135917 ], [ 0.4223747703032204, 0.4154195230314698, 0.40811255330524054, 0.4005139891671467, 0.39269940433842754, 0.38475889200379926, 0.3767947899148118, 0.36891787255962805, 0.36124201929270167, 0.35387767419759797, 0.34692480987046004, 0.3404665107062383, 0.33456455597085005, 0.32925833185218356, 0.3245679016721911, 0.320501120314695, 0.31706349627788893, 0.31426845277561827, 0.3121451281672111, 0.3107411701198403, 0.31011914691314596, 0.3103469501812534, 0.31148436598426427, 0.3135692081340033, 0.3166065464859206, 0.32056354034890394, 0.32537062617687884, 0.33092804003997495, 0.33711552527554, 0.3438028364974208, 0.35085913250208745, 0.3581601651649556, 0.3655929577497823, 0.37305822037951736, 0.3804710296646859, 0.3877603583496389, 0.3948679656489236, 0.4017470267180714, 0.40836074277395706, 0.41468105961168905, 0.4206875414307663, 0.4263663978072441, 0.43170963789286537, 0.43671431957064843, 0.4413818651020087, 0.4457174231444731, 0.4497292661147127, 0.4534282195521939, 0.45682712547091725, 0.45994034456108707 ], [ 0.424405842712784, 0.4177183936961312, 0.41070166749482195, 0.4034145303690925, 0.3959303728423208, 0.3883360940563502, 0.38072981580648113, 0.3732171816937251, 0.36590628467252156, 0.35890155197759827, 0.3522972718555682, 0.3461717925340505, 0.340583630032744, 0.3355706375713025, 0.33115291171321126, 0.32733925981197093, 0.32413601873094544, 0.321556120415306, 0.3196258947307126, 0.3183874170444239, 0.31789525595946727, 0.3182080034497136, 0.3193765113309392, 0.32143177671340206, 0.32437551629247896, 0.32817559344551167, 0.3327669713980641, 0.33805736160007677, 0.3439357521209032, 0.35028175610019824, 0.35697409203617164, 0.3638971856774443, 0.37094556383488886, 0.3780262102574933, 0.38505932221135114, 0.3919779800537566, 0.3987271906907608, 0.4052626560550335, 0.41154949753904285, 0.417561063863869, 0.42327787407609346, 0.4286866997418312, 0.4337797660503734, 0.4385540436905251, 0.4430106055163576, 0.4471540289567264, 0.4509918332136977, 0.45453394737836883, 0.4577922106652316, 0.4607799088228653 ], [ 0.42655700621404197, 0.4201501204637494, 0.4134366560837393, 0.4064739476570762, 0.3993328875781754, 0.39209683525824107, 0.3848593420725736, 0.3777205856317781, 0.3707825869138983, 0.36414354580283453, 0.35789194392687124, 0.35210135411316806, 0.3468270488507867, 0.3421053914120389, 0.33795654503598205, 0.3343902796024568, 0.3314137634621353, 0.3290394798204545, 0.32729109413700164, 0.3262054082440165, 0.3258294612475059, 0.3262131496246405, 0.3273990407045336, 0.32941189825183215, 0.3322505078280174, 0.33588365286097005, 0.3402508472454589, 0.34526716477876784, 0.35083065515510226, 0.3568305909923964, 0.36315506652860924, 0.36969702272072896, 0.37635835430990267, 0.3830521996860832, 0.3897037690608847, 0.39625015159619614, 0.40263951231770695, 0.40883000143382237, 0.4147885951565092, 0.4204899943555349, 0.42591563710465297, 0.431052835392047, 0.4358940215506745, 0.44043608072127444, 0.44467974616668526, 0.44862903973260504, 0.45229074675669356, 0.4556739211344313, 0.4587894209968294, 0.4616494782459132 ], [ 0.42881139441197713, 0.4226952301793187, 0.4162951781903916, 0.4096667929607406, 0.402878193738074, 0.39600891518688985, 0.3891476653474119, 0.38238891979366296, 0.3758284506845264, 0.3695581260621655, 0.36366058636868, 0.35820464355877707, 0.3532423549494985, 0.34880859824715066, 0.34492356053528095, 0.34159789128675033, 0.3388395113085795, 0.33666045279865753, 0.3350818704500023, 0.3341356565787427, 0.33386189664686944, 0.33430251490596946, 0.3354925467020301, 0.3374511685212314, 0.3401746674165276, 0.3436329217563205, 0.34776993763026065, 0.3525079307850994, 0.3577537148065347, 0.3634059161544457, 0.36936173257093297, 0.3755223960335635, 0.38179699022976155, 0.3881046641438118, 0.39437552128899334, 0.4005505570154922, 0.4065810052513205, 0.4124273878543024, 0.41805847246759714, 0.42345026288074195, 0.42858508156713204, 0.4334507605494635, 0.4380399319896432, 0.44234939945126894, 0.44637956971410087, 0.45013392902920624, 0.453618553576346, 0.45684164954917855, 0.45981312265128366, 0.4625441794598439 ], [ 0.43115104608536425, 0.42533303923059984, 0.4192535706212715, 0.41296619186524675, 0.4065360175810864, 0.400038535692675, 0.39355741968905944, 0.38718130335101514, 0.3809996361503921, 0.37509794809514635, 0.36955308432660167, 0.36442916101888845, 0.3597750620228862, 0.3556241604466094, 0.3519965736485381, 0.34890368655751125, 0.34635404175993506, 0.34435919341803994, 0.3429379503154027, 0.34211770425087185, 0.34193222898056175, 0.3424162684965977, 0.34359813184621335, 0.34549207913330704, 0.3480923223696001, 0.35136996754799726, 0.3552733851567591, 0.35973162542667186, 0.36465987445335585, 0.36996571759814423, 0.375555107499857, 0.3813372843844263, 0.38722830201836417, 0.39315315257826533, 0.3990467025191167, 0.40485374840539956, 0.4105285061088983, 0.41603379664038553, 0.4213401200090237, 0.4264247374349899, 0.43127082417944246, 0.43586671443080566, 0.4402052352646977, 0.444283115296802, 0.44810045114250835, 0.45166021738401047, 0.454967810469194, 0.4580306218421114, 0.46085763951800723, 0.4634590798221172 ], [ 0.43355737127608196, 0.42804221197087555, 0.42228751174946433, 0.41634462595495797, 0.41027547938700487, 0.4041513548948058, 0.3980507795102929, 0.3920564957973788, 0.38625165037086173, 0.3807155161307785, 0.37551925888265697, 0.3707224087284833, 0.36637073313672125, 0.36249607025746927, 0.35911834482175004, 0.3562494984172472, 0.3538985377206337, 0.3520765017397675, 0.35080002772201496, 0.3500924405942094, 0.34998187461142855, 0.3504967107291193, 0.35165934956379175, 0.35347980093475134, 0.3559506029499047, 0.3590441831792965, 0.3627130955764772, 0.3668928531258165, 0.37150655279008327, 0.3764702742147792, 0.38169831380548447, 0.3871075867832678, 0.3926208618991022, 0.39816878469206346, 0.4036908432115255, 0.4091355274811076, 0.41445995057160884, 0.41962916474156425, 0.42461534847629534, 0.42939697970337587, 0.43395805885621064, 0.43828740770636526, 0.44237804618327525, 0.4462266373537089, 0.44983298698240126, 0.453199585352482, 0.45633118261964667, 0.45923439303843877, 0.46191732682545567, 0.4643892507167499 ], [ 0.4360116006827949, 0.4308012929724341, 0.4253726465710223, 0.419774659959653, 0.41406593069841696, 0.4083134406365387, 0.40259053300333675, 0.396974091520475, 0.391541061719798, 0.3863646141497746, 0.3815104092712434, 0.3770335379861347, 0.3729767239881595, 0.36937023795641416, 0.3662336768236631, 0.3635793463392845, 0.3614165513041051, 0.3597557783267593, 0.35861167341183003, 0.35800393457328994, 0.3579557291185941, 0.3584898825732412, 0.35962368533448164, 0.361363536267975, 0.3637006701058176, 0.366608896756429, 0.37004473591065434, 0.373949749622959, 0.37825443703390116, 0.3828828579120002, 0.38775719362703687, 0.39280165981544823, 0.3979454532292401, 0.4031246615280563, 0.40828324123471316, 0.41337326390048285, 0.41835465600214544, 0.42319463693322773, 0.4278670146401596, 0.432351447868099, 0.43663273884960063, 0.4407001858883502, 0.44454700267458197, 0.4481697987958538, 0.45156811113968187, 0.45474397594546767, 0.45770153378568607, 0.4604466630123586, 0.4629866401176672, 0.46532982749761587 ], [ 0.4384952011170831, 0.43358919276370156, 0.42848514932109355, 0.4232295867995649, 0.4178776858436488, 0.41249209069063886, 0.40714099125574305, 0.4018955162295422, 0.39682658061834686, 0.39200146705973177, 0.3874805501897379, 0.3833146578064341, 0.3795435568985977, 0.37619592261365836, 0.37329088953417516, 0.37084093697261944, 0.36885550694997177, 0.3673445024445354, 0.36632076010401987, 0.36580078214228967, 0.3658034186438802, 0.36634671164567006, 0.367443596806365, 0.36909745935083677, 0.3712985658228366, 0.3740221420124162, 0.3772284334870488, 0.3808646156298, 0.38486805524339, 0.38917024766681224, 0.39370076764298717, 0.3983907251423669, 0.4031754312095875, 0.40799618458774617, 0.41280124478029884, 0.41754614712629473, 0.4221935468458843, 0.42671276861375784, 0.43107920462553295, 0.4352736627500903, 0.43928172755423756, 0.4430931661641808, 0.44670138971806883, 0.4501029687812269, 0.4532971955620021, 0.4562856847944225, 0.45907200668923825, 0.4616613478297814, 0.46406019827851963, 0.4662760649192208 ], [ 0.44099024412133087, 0.43638561246911206, 0.43160220757205303, 0.42668397331661806, 0.4216826299531397, 0.41665650210069227, 0.4116687164994416, 0.4067848106578148, 0.40206989480848243, 0.397585623834629, 0.3933873395952652, 0.3895218044174439, 0.3860259283685248, 0.3829267718863138, 0.3802428823990209, 0.37798673490698215, 0.37616776155524034, 0.37479525970908595, 0.37388043588920855, 0.3734370072263221, 0.3734801169316181, 0.3740237419529036, 0.3750771606515512, 0.3766412902799732, 0.37870572685124315, 0.38124712386418586, 0.384229202847422, 0.38760431119313676, 0.3913161411657528, 0.3953030658535731, 0.3995015430667699, 0.4038491495132538, 0.4082869759534458, 0.4127612837942433, 0.4172244576609141, 0.42163537178132826, 0.4259593227264567, 0.4301676790450824, 0.43423737429081644, 0.4381503368767123, 0.44189291740694686, 0.4454553469447117, 0.4488312401219388, 0.45201714489547284, 0.45501213470684215, 0.45781743698046745, 0.46043609255237294, 0.4628726423642045, 0.46513283963068575, 0.46722338714946404 ], [ 0.4434797192490697, 0.4391713984282992, 0.43470241889129446, 0.4301140983671735, 0.4254546965051483, 0.42077828494701647, 0.4161430679818041, 0.4116092041247551, 0.40723626657264345, 0.40308057529995645, 0.3991927150885216, 0.3956155949950116, 0.3923833785937861, 0.3895215039680799, 0.3870478222638816, 0.38497464584443397, 0.38331126875792454, 0.38206637119257864, 0.38124970243627504, 0.38087257683646336, 0.3809469910837709, 0.38148351102869915, 0.38248838829657333, 0.3839605610855353, 0.3858892146275771, 0.38825242488190875, 0.39101713862575865, 0.39414044113463353, 0.39757181484611487, 0.4012559539870741, 0.4051356830396422, 0.40915460596953845, 0.4132592440634521, 0.4174005587532695, 0.42153487033617026, 0.4256242591029352, 0.4296365713120825, 0.43354515668690696, 0.4373284479792242, 0.44096946739329357, 0.44445531746726624, 0.44777669041017354, 0.4509274121686175, 0.45390402592786605, 0.4567054134314176, 0.45933245001878364, 0.46178768918499663, 0.4640750735427721, 0.4661996704484228, 0.4681674317097238 ], [ 0.4459477876178797, 0.44192882298711306, 0.43776609739227473, 0.4334982824502561, 0.42917021623058565, 0.4248318259013394, 0.42053657521820187, 0.41633949285839145, 0.4122949124771482, 0.4084541330832528, 0.4048632713310625, 0.4015616037641527, 0.3985806663849171, 0.39594428005278565, 0.3936695095134304, 0.39176836937369264, 0.39024990852239533, 0.38912218863295106, 0.38839366544318427, 0.3880735995071178, 0.3881713456511204, 0.3886946429923629, 0.38964727636559016, 0.39102663546782507, 0.3928217174970541, 0.3950120022586636, 0.3975674168865993, 0.40044936684825383, 0.4036126074239134, 0.40700761017551207, 0.41058305454778354, 0.41428812924232755, 0.4180744285735736, 0.4218973408606041, 0.425716922552333, 0.42949831918076414, 0.43321182974010436, 0.4368327197068416, 0.44034087813566286, 0.443720394797803, 0.4469591111988152, 0.4500481791637805, 0.45298164487648196, 0.4557560654198866, 0.4583701584879206, 0.4608244829765971, 0.4631211474451808, 0.4652635439297602, 0.4672561055147889, 0.4691040869271326 ], [ 0.4483799749192191, 0.44464179195330067, 0.4407754925790294, 0.4368171138758305, 0.43280814574439264, 0.428794514062267, 0.42482515593308273, 0.42095024574096107, 0.4172191939883934, 0.41367860385491473, 0.4103704182635492, 0.407330505576153, 0.40458789954170116, 0.40216482187247643, 0.4000774811328375, 0.3983374835276883, 0.39695354717702375, 0.39593312311883416, 0.39528352599499017, 0.39501227592982635, 0.3951265329866311, 0.39563172335728486, 0.39652965450150823, 0.3978165407697384, 0.39948137887455715, 0.40150502336559885, 0.4038601470349968, 0.40651208044051285, 0.40942036012340305, 0.4125407127477451, 0.41582717444343764, 0.4192340808199148, 0.4227177394307512, 0.42623768586154326, 0.4297575052462081, 0.43324526014877535, 0.4366735996367734, 0.4400196358078493, 0.44326466919524365, 0.44639383027855684, 0.4493956866846891, 0.4522618487439727, 0.45498659220492516, 0.4575665069457354, 0.46000017427073386, 0.4622878721119858, 0.464431306250233, 0.4664333656624575, 0.46829790061585486, 0.47002952270417925 ], [ 0.45076330597207503, 0.4472959825663716, 0.44371492666538864, 0.44005358060907035, 0.4363501886299315, 0.4326468459823381, 0.42898820027589357, 0.42541986407466936, 0.42198665071547886, 0.4187307957265142, 0.4156903619033399, 0.41289803333819447, 0.41038047128070565, 0.40815832870756513, 0.40624690841102823, 0.40465732159205026, 0.40339789041162705, 0.40247547094132763, 0.40189637673614215, 0.40166666490344666, 0.40179169125154807, 0.40227501444390135, 0.40311688623768616, 0.4043126641711147, 0.40585149923497, 0.4077155833457961, 0.4098801130453802, 0.4123139751016828, 0.41498102647921997, 0.4178417544543946, 0.4208550737172627, 0.4239800401038242, 0.42717731779486495, 0.43041030758538507, 0.4336459104064105, 0.43685495143196446, 0.4400123215802749, 0.44309690622032893, 0.4460913697704178, 0.44898185499017823, 0.4517576420148833, 0.45441079821046787, 0.45693583795865106, 0.4593294024795349, 0.46158996382437956, 0.4637175537490392, 0.4657135166106828, 0.4675802850144259, 0.46932117709139776, 0.47094021460628965 ], [ 0.4530863850932515, 0.44987891823407916, 0.4465708590951975, 0.4431931195003081, 0.439780824154665, 0.43637242894878875, 0.43300854455987653, 0.4297305229600717, 0.4265789082230795, 0.42359189297356503, 0.42080394788328496, 0.4182447931619559, 0.41593884995668495, 0.4139052441087654, 0.41215834207130586, 0.4107086959247155, 0.40956418525618865, 0.4087310930571346, 0.40821485882673, 0.40802031923574106, 0.40815136264992774, 0.4086100613826771, 0.4093954699790682, 0.41050235704205856, 0.41192015261935705, 0.4136323420598036, 0.4156164378122831, 0.4178445418759483, 0.4202844042672736, 0.4229008100628889, 0.4256570993725296, 0.428516637837791, 0.431444097563401, 0.43440646390690285, 0.43737373800192775, 0.44031934858302174, 0.4432203152723988, 0.4460572190937478, 0.44881403752191273, 0.4514778949374486, 0.45403876890052774, 0.4564891813226789, 0.45882389343882946, 0.46103961548362676, 0.46313473638674246, 0.46510907535439, 0.46696365539024653, 0.4687004980716517, 0.4703224387506922, 0.4718329614355393 ], [ 0.4553394280519543, 0.4523799878109841, 0.44933188844372435, 0.446223595868237, 0.44308725970669555, 0.43995790198234097, 0.43687235750751513, 0.4338680208160224, 0.43098149040384776, 0.4282472323626271, 0.42569640408049586, 0.42335597640044303, 0.42124826379673785, 0.4193909162842374, 0.41779735061843554, 0.41647751589174076, 0.41543881881093886, 0.41468699584887014, 0.4142267265124523, 0.41406183687429854, 0.41419503508526967, 0.41462722949233294, 0.41535657834038453, 0.41637748316846673, 0.4176797508868744, 0.4192481111559375, 0.4210621989063681, 0.42309701854139137, 0.4253238201885426, 0.42771125768411505, 0.43022667156593003, 0.4328373469361721, 0.43551162692914075, 0.4382198057007558, 0.44093476899749, 0.44363238726682264, 0.44629169176754463, 0.44889487763721936, 0.4514271812302486, 0.45387667527999936, 0.45623401772311617, 0.45849218099173883, 0.4606461800592448, 0.46269281052819494, 0.4646304029198889, 0.4664585959561512, 0.46817812966544625, 0.46979065816911364, 0.4712985816129489, 0.4727048965967939 ], [ 0.4575142522530912, 0.4547904179626458, 0.45198870243747674, 0.4491352266282628, 0.4462593228002114, 0.4433927931784054, 0.4405689604306527, 0.43782156121027654, 0.43518356318616375, 0.4326860102870256, 0.43035701377255137, 0.42822100204507885, 0.4262983159436096, 0.4246051890211971, 0.4231540900119301, 0.42195433882614414, 0.4210128528763837, 0.4203348519446145, 0.41992435705674896, 0.4197843634639887, 0.4199166415104563, 0.42032120519967686, 0.42099556590199766, 0.4219339389209555, 0.423126581947627, 0.4245594157828847, 0.4262140185768274, 0.4280680117256878, 0.43009578662793346, 0.4322694712575957, 0.4345600114963368, 0.436938244265799, 0.4393758616898957, 0.4418461988261972, 0.4443248130021919, 0.44678985365101526, 0.44922224392296545, 0.4516057082500656, 0.45392668452939894, 0.45617415785540827, 0.4583394472437438, 0.4604159697314631, 0.46239899921276373, 0.464285431338518, 0.4660735611812619, 0.46776287715648934, 0.46935387267396234, 0.4708478758518101, 0.4722468970460907, 0.47355349367157684 ], [ 0.4596042321520509, 0.4571032073201429, 0.45453398669822215, 0.4519204596284672, 0.4492893074632763, 0.4466693303769741, 0.44409060045323706, 0.44158348811796644, 0.43917763255208625, 0.4369009453784563, 0.43477874552154305, 0.43283311706737904, 0.4310825586216154, 0.4295419529927108, 0.4282228352889863, 0.4271338850462643, 0.426281525483074, 0.4256704915588777, 0.4253042354730485, 0.4251850743461161, 0.42531404331118594, 0.4256904850842088, 0.426311468279874, 0.42717116674719, 0.4282603420406879, 0.42956604985912966, 0.431071645853705, 0.4327571090501323, 0.4345996461497118, 0.4365744986225902, 0.43865585314047256, 0.4408177550985208, 0.44303494064968985, 0.44528352816399036, 0.44754153835985583, 0.44978923792725933, 0.4520093208477776, 0.4541869536032907, 0.4563097155624657, 0.45836746557691443, 0.460352162104678, 0.4622576587815228, 0.4640794916558121, 0.46581466917743286, 0.46746147192291, 0.46901926604232835, 0.4704883324074538, 0.47186971219969204, 0.4731650689576075, 0.47437656669621914 ], [ 0.461604226853054, 0.4593130308340975, 0.4569623021950771, 0.45457382082313297, 0.45217178829901894, 0.4497822200692173, 0.4474321932050817, 0.44514899242381867, 0.4429592159216138, 0.4408879167503595, 0.4389578609202446, 0.4371889767128743, 0.43559804919860323, 0.43419868084882085, 0.43300149796012183, 0.43201454090133534, 0.43124374308516467, 0.43069338753303504, 0.43036643628710153, 0.4302646569975919, 0.43038851732887806, 0.4307368712402101, 0.43130650939261056, 0.43209167774656587, 0.433083676904065, 0.43427063901679164, 0.43563754425300766, 0.43716649422008774, 0.4388372160169107, 0.4406277367372095, 0.4425151495639156, 0.44447639003898937, 0.4464889519409983, 0.44853149155579763, 0.4505842915901887, 0.4526295770002083, 0.4546516916024018, 0.45663715522948345, 0.45857462650961367, 0.46045479712596066, 0.4622702410792292, 0.4640152384494763, 0.4656855885940643, 0.4672784234218645, 0.46879202778765966, 0.47022567130442666, 0.47157945392960854, 0.4728541663954044, 0.4740511657407372, 0.4751722656965751 ], [ 0.4635104864903629, 0.4614161221236712, 0.45926994044911484, 0.45709173958636273, 0.4549034137423286, 0.45272840719936935, 0.4505910486649088, 0.4485158042328025, 0.44652650222413576, 0.4446455938387881, 0.4428935167246891, 0.44128822176186583, 0.43984490557913875, 0.43857596385067965, 0.4374911471122245, 0.43659786774718007, 0.43590158103026766, 0.4354061511175457, 0.43511411854327786, 0.4350268091029028, 0.4351442606001988, 0.43546498593308425, 0.43598562891493314, 0.43670059450811444, 0.437601742410255, 0.43867822136612683, 0.4399164949273496, 0.44130057465126615, 0.44281244204868636, 0.4444326130075259, 0.4461407823136568, 0.44791648237526277, 0.4497396975769716, 0.45159139027122946, 0.45345391211401076, 0.4553112916088454, 0.45714940278951866, 0.45895602969555216, 0.460720846555952, 0.4624353350576863, 0.4640926587895935, 0.4656875120369718, 0.4672159565178868, 0.4686752560974927, 0.4700637164102364, 0.4713805338425367, 0.4726256564908501, 0.47379965842276844, 0.47490362770218264, 0.475939068064542 ], [ 0.4653205434331218, 0.46341014080310555, 0.46145476441958255, 0.45947236100815414, 0.45748268819704185, 0.4555068262882033, 0.4535665912008294, 0.4516838825377873, 0.4498800125986004, 0.44817507009252733, 0.4465873738787429, 0.44513306547704773, 0.44382587382289956, 0.44267706305266363, 0.4416955472324543, 0.4408881297261689, 0.4402598048568868, 0.43981405052875905, 0.43955304539369683, 0.43947776278053324, 0.4395879224694859, 0.4398818143757324, 0.4403560380220162, 0.44100522175476553, 0.44182179182875436, 0.4427958530252838, 0.4439152221119697, 0.4451656284485442, 0.4465310685970999, 0.4479942794173888, 0.4495372804028465, 0.4511419320827286, 0.4527904620935933, 0.45446592142497483, 0.4561525472097943, 0.4578360223428564, 0.4595036340280044, 0.46114434190709713, 0.46274877144197823, 0.46430915009437496, 0.465819203336968, 0.4672740254970145, 0.4686699376661818, 0.47000434200737834, 0.471275579138833, 0.4724827930722349, 0.47362580647443026, 0.4747050077680244, 0.47572125069816285, 0.47667576637482384 ], [ 0.46703309367217155, 0.4652940308525879, 0.46351604181869943, 0.46171535254098844, 0.45990975095650294, 0.4581181522108525, 0.45636008245970056, 0.4546551111108859, 0.4530222707207127, 0.45147950958514627, 0.4500432225452007, 0.44872789937657676, 0.44754591713206077, 0.4465074841447243, 0.4456207217670744, 0.44489184916801117, 0.44432542091505883, 0.4439245603257068, 0.4436911357535772, 0.44362584181324743, 0.44372817027289857, 0.44399628121713897, 0.44442680850854455, 0.44501464950658354, 0.4457527942099423, 0.44663224283591235, 0.4476420453260022, 0.44876947530245614, 0.45000032932660944, 0.45131932422476656, 0.45271055366515345, 0.4541579611817867, 0.45564578981650583, 0.4571589766378126, 0.45868347120050607, 0.46020646822778116, 0.46171655464893185, 0.46320377855554823, 0.4646596522968975, 0.46607710401886, 0.46745039199163446, 0.4687749947288085, 0.4700474878050552, 0.47126541593972177, 0.47242716667789886, 0.47353185006518045, 0.4745791871510585, 0.47556940896021604, 0.47650316668788495, 0.47738145323691605 ] ] }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "text": [ "0_0", "0_1", "0_2", "0_3", "0_4", "10_0", "11_0", "12_0", "13_0", "14_0", "15_0", "1_0", "2_0", "3_0", "4_0", "5_0", "6_0", "7_0", "8_0", "9_0" ], "type": "scatter", "x": [ 0.4395460933446884, 0.040499016642570496, 0.7552015045657754, 0.8764807442203164, 0.16961364448070526, 0.4195698454334094, 0.40296386094540215, 0.4387458135056479, 0.5277156591706055, 0.3886930348052634, 0.37112252974585985, 0.2862003216204048, 0.6059159506506585, 0.4746232603772924, 0.4714564599752141, 0.46109175680071085, 0.4971571167728355, 0.45763431058103526, 0.43464141528228467, 0.41308537791203115 ], "xaxis": "x", "y": [ 0.4502361882477999, 0.7470948239788413, 0.117015415802598, 0.5846348889172077, 0.21532452199608088, 0.04988894051462255, 0.008713146555143823, 0.0034131809228464113, 0.02171895435086355, 0.05038678256416381, 0.0525504788239551, 0.46336375000094726, 0.3965795795820581, 0.38179695418983023, 0.30356549024360996, 0.3794553932166109, 0.26332848876201553, 0.1575202706412538, 0.1239692235616326, 0.07827704775233543 ], "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", "0_1", "0_2", "0_3", "0_4", "10_0", "11_0", "12_0", "13_0", "14_0", "15_0", "1_0", "2_0", "3_0", "4_0", "5_0", "6_0", "7_0", "8_0", "9_0" ], "type": "scatter", "x": [ 0.4395460933446884, 0.040499016642570496, 0.7552015045657754, 0.8764807442203164, 0.16961364448070526, 0.4195698454334094, 0.40296386094540215, 0.4387458135056479, 0.5277156591706055, 0.3886930348052634, 0.37112252974585985, 0.2862003216204048, 0.6059159506506585, 0.4746232603772924, 0.4714564599752141, 0.46109175680071085, 0.4971571167728355, 0.45763431058103526, 0.43464141528228467, 0.41308537791203115 ], "xaxis": "x2", "y": [ 0.4502361882477999, 0.7470948239788413, 0.117015415802598, 0.5846348889172077, 0.21532452199608088, 0.04988894051462255, 0.008713146555143823, 0.0034131809228464113, 0.02171895435086355, 0.05038678256416381, 0.0525504788239551, 0.46336375000094726, 0.3965795795820581, 0.38179695418983023, 0.30356549024360996, 0.3794553932166109, 0.26332848876201553, 0.1575202706412538, 0.1239692235616326, 0.07827704775233543 ], "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": [ "