{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Loop API Example on Hartmann6\n", "\n", "The loop API is the most lightweight way to do optimization in Ax. The user makes one call to `optimize`, which performs all of the optimization under the hood and returns the optimized parameters.\n", "\n", "For more customizability of the optimization procedure, consider the Service or Developer API." ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [ { "data": { "text/html": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 23:28:35] ipy_plotting: Injecting Plotly library into cell. Do not overwrite or delete cell.\n" ] }, { "data": { "text/html": [ " \n", " " ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "import numpy as np\n", "\n", "from ax.plot.contour import plot_contour\n", "from ax.plot.trace import optimization_trace_single_method\n", "from ax.service.managed_loop import optimize\n", "from ax.metrics.branin import branin\n", "from ax.utils.measurement.synthetic_functions import hartmann6\n", "from ax.utils.notebook.plotting import render, init_notebook_plotting\n", "\n", "init_notebook_plotting()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 1. Define evaluation function\n", "\n", "First, we define an evaluation function that is able to compute all the metrics needed for this experiment. This function needs to accept a set of parameter values and can also accept a weight. It should produce a dictionary of metric names to tuples of mean and standard error for those metrics." ] }, { "cell_type": "code", "execution_count": 2, "metadata": { "collapsed": true }, "outputs": [], "source": [ "def hartmann_evaluation_function(parameterization):\n", " x = np.array([parameterization.get(f\"x{i+1}\") for i in range(6)])\n", " # In our case, standard error is 0, since we are computing a synthetic function.\n", " return {\"hartmann6\": (hartmann6(x), 0.0), \"l2norm\": (np.sqrt((x ** 2).sum()), 0.0)}" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "If there is only one metric in the experiment – the objective – then evaluation function can return a single tuple of mean and SEM, in which case Ax will assume that evaluation corresponds to the objective. It can also return only the mean as a float, in which case Ax will treat SEM as unknown and use a model that can infer it. For more details on evaluation function, refer to the \"Trial Evaluation\" section in the docs." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 2. Run optimization\n", "The setup for the loop is fully compatible with JSON. The optimization algorithm is selected based on the properties of the problem search space." ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 23:28:35] ax.modelbridge.dispatch_utils: Using Bayesian Optimization generation strategy: GenerationStrategy(name='Sobol+GPEI', steps=[Sobol for 6 arms, GPEI for subsequent arms], generated 0 arm(s) so far). Iterations after 6 will take longer to generate due to model-fitting.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 23:28:35] ax.service.managed_loop: Started full optimization with 30 steps.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 23:28:35] ax.service.managed_loop: Running optimization trial 1...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 23:28:35] ax.service.managed_loop: Running optimization trial 2...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 23:28:35] ax.service.managed_loop: Running optimization trial 3...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 23:28:35] ax.service.managed_loop: Running optimization trial 4...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 23:28:35] ax.service.managed_loop: Running optimization trial 5...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 23:28:35] ax.service.managed_loop: Running optimization trial 6...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 23:28:35] ax.service.managed_loop: Running optimization trial 7...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 23:28:39] ax.service.managed_loop: Running optimization trial 8...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 23:28:44] ax.service.managed_loop: Running optimization trial 9...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 23:28:49] ax.service.managed_loop: Running optimization trial 10...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 23:28:53] ax.service.managed_loop: Running optimization trial 11...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 23:28:57] ax.service.managed_loop: Running optimization trial 12...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 23:29:01] ax.service.managed_loop: Running optimization trial 13...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 23:29:05] ax.service.managed_loop: Running optimization trial 14...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 23:29:10] ax.service.managed_loop: Running optimization trial 15...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 23:29:16] ax.service.managed_loop: Running optimization trial 16...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 23:29:22] ax.service.managed_loop: Running optimization trial 17...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 23:29:27] ax.service.managed_loop: Running optimization trial 18...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 23:29:32] ax.service.managed_loop: Running optimization trial 19...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 23:29:36] ax.service.managed_loop: Running optimization trial 20...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 23:29:40] ax.service.managed_loop: Running optimization trial 21...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 23:29:45] ax.service.managed_loop: Running optimization trial 22...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 23:29:49] ax.service.managed_loop: Running optimization trial 23...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 23:29:51] ax.service.managed_loop: Running optimization trial 24...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 23:29:51] ax.service.managed_loop: Running optimization trial 25...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 23:29:52] ax.service.managed_loop: Running optimization trial 26...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 23:29:52] ax.service.managed_loop: Running optimization trial 27...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 23:29:53] ax.service.managed_loop: Running optimization trial 28...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 23:29:54] ax.service.managed_loop: Running optimization trial 29...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 12-26 23:29:56] ax.service.managed_loop: Running optimization trial 30...\n" ] } ], "source": [ "best_parameters, values, experiment, model = optimize(\n", " parameters=[\n", " {\n", " \"name\": \"x1\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " \"value_type\": \"float\", # Optional, defaults to inference from type of \"bounds\".\n", " \"log_scale\": False, # Optional, defaults to False.\n", " },\n", " {\n", " \"name\": \"x2\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " {\n", " \"name\": \"x3\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " {\n", " \"name\": \"x4\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " {\n", " \"name\": \"x5\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " {\n", " \"name\": \"x6\",\n", " \"type\": \"range\",\n", " \"bounds\": [0.0, 1.0],\n", " },\n", " ],\n", " experiment_name=\"test\",\n", " objective_name=\"hartmann6\",\n", " evaluation_function=hartmann_evaluation_function,\n", " minimize=True, # Optional, defaults to False.\n", " parameter_constraints=[\"x1 + x2 <= 20\"], # Optional.\n", " outcome_constraints=[\"l2norm <= 1.25\"], # Optional.\n", " total_trials=30, # Optional.\n", ")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "And we can introspect optimization results:" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'x1': 0.401889304984257,\n", " 'x2': 0.8829760773861991,\n", " 'x3': 0.5085079884233787,\n", " 'x4': 0.577561995546186,\n", " 'x5': 0.036637715157876075,\n", " 'x6': 0.03896324583126402}" ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "best_parameters" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'l2norm': 1.2394268660324381, 'hartmann6': -3.1795181994310635}" ] }, "execution_count": 5, "metadata": {}, "output_type": "execute_result" } ], "source": [ "means, covariances = values\n", "means" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "For comparison, minimum of Hartmann6 is:" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "-3.32237" ] }, "execution_count": 6, "metadata": {}, "output_type": "execute_result" } ], "source": [ "hartmann6.fmin" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 3. Plot results\n", "Here we arbitrarily select \"x1\" and \"x2\" as the two parameters to plot for both metrics, \"hartmann6\" and \"l2norm\"." ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "linkText": "Export to plot.ly", "plotlyServerURL": "https://plot.ly", "showLink": false }, "data": [ { "autocolorscale": false, "autocontour": true, "colorbar": { "tickfont": { "size": 8 }, "ticksuffix": "", "x": 0.45, "y": 0.5 }, "colorscale": [ [ 0.0, "rgb(247,252,253)" ], [ 0.125, "rgb(229,245,249)" ], [ 0.25, "rgb(204,236,230)" ], [ 0.375, "rgb(153,216,201)" ], [ 0.5, "rgb(102,194,164)" ], [ 0.625, "rgb(65,174,118)" ], [ 0.75, "rgb(35,139,69)" ], [ 0.875, "rgb(0,109,44)" ], [ 1.0, "rgb(0,68,27)" ] ], "contours": { "coloring": "heatmap" }, "hoverinfo": "x+y+z", "ncontours": 25, "type": "contour", "x": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "xaxis": "x", "y": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "yaxis": "y", "z": [ [ -0.3482516942882625, -0.3371198948353651, -0.3269628693453024, -0.3180767657896926, -0.3107650971580418, -0.3053273794760434, -0.302045246349665, -0.30116635898405164, -0.3028868319476252, -0.3073333916161134, -0.3145469947483266, -0.3244700132092484, -0.33693915809374997, -0.35168593024793715, -0.36834552427279266, -0.3864739283981842, -0.4055717367226175, -0.42511223211031757, -0.4445708185117161, -0.46345292764601087, -0.4813179971643595, -0.49779784044332565, -0.5126085261163469, -0.5255556265844283, -0.5365333024472982, -0.5455181327839298, -0.5525588778256794, -0.5577634857764828, -0.5612846528332487, -0.5633051423527018, -0.5640238942830489, -0.5636437369219378, -0.5623612739072952, -0.5603592792469361, -0.5578017057332598, -0.5548312060275817, -0.5515688869154007, -0.5481158713201679, -0.5445561370959091, -0.5409600462328248, -0.5373879828733017, -0.5338935887462399, -0.5305262153487114, -0.5273323850810083, -0.5243562387885072, -0.5216391110283971, -0.5192184891168041, -0.5171266637247052, -0.5153893697092644, -0.5140246608509258 ], [ -0.34576714087112936, -0.33454103298556204, -0.32433088759825845, -0.3154448114336912, -0.3081991928496324, -0.30290684929698797, -0.29986241501553224, -0.2993252552085004, -0.30150062844390235, -0.3065203774425227, -0.3144250236875128, -0.32514960681913885, -0.3385157304433286, -0.3542318724088078, -0.37190305321395023, -0.3910496010154325, -0.4111333435526021, -0.43158846559847497, -0.4518537423741449, -0.4714029403390112, -0.4897707383638732, -0.5065723536915763, -0.5215159556175215, -0.534407770547735, -0.5451504455314298, -0.5537357143228316, -0.5602327021343156, -0.5647733305392351, -0.5675362688389269, -0.5687307532336019, -0.5685813925008496, -0.5673148297069024, -0.56514886117937, -0.5622843482051598, -0.5589000087050944, -0.5551499546215277, -0.5511636514275329, -0.5470478238944436, -0.5428897239359718, -0.5387611217043675, -0.53472239046526, -0.5308261348107175, -0.5271199552963091, -0.5236481308189387, -0.5204522006291774, -0.5175706040850683, -0.5150376581261844, -0.5128822053837887, -0.5111262530097274, -0.509783860541591 ], [ -0.3438402195270924, -0.33257269705451953, -0.3223647500399329, -0.3135361991919763, -0.30641603803571416, -0.30133009991714466, -0.29858572331948974, -0.29845366103240045, -0.30114794753504537, -0.30680506219539083, -0.315464414526089, -0.3270527433051509, -0.34137520800394183, -0.35811553453702394, -0.37684649950032734, -0.39705049077549637, -0.418148268865443, -0.43953281310989345, -0.4606045581057796, -0.4808044498296229, -0.49964191433142724, -0.5167157826613344, -0.5317272224609384, -0.5444846317674508, -0.5549011728714304, -0.562986137150504, -0.5688316406357194, -0.5725962754677352, -0.5744873134078252, -0.574742908009191, -0.5736155080209326, -0.5713574114479696, -0.5682090887435369, -0.5643906094544402, -0.5600962359523358, -0.5554920102108909, -0.5507159598858562, -0.5458803921336794, -0.5410756337155511, -0.5363745233423305, -0.5318369773982148, -0.5275140390940634, -0.5234509782441592, -0.5196892129857726, -0.5162670409295376, -0.5132193557879137, -0.5105766543162822, -0.5083636922160597, -0.5065981306955114, -0.5052894465670592 ], [ -0.34252004243823597, -0.3312700684483496, -0.3211260684573287, -0.3124192584183425, -0.30549086855976415, -0.30067934060299994, -0.2983042782432308, -0.29864734796506354, -0.30193082779128777, -0.3082951918548298, -0.31777790881015977, -0.3302963111892283, -0.3456376592451733, -0.3634590993854958, -0.38329901740402295, -0.4045995278356862, -0.4267379975401684, -0.44906409739240316, -0.4709382449796675, -0.4917674776798362, -0.5110355731737777, -0.5283253152164122, -0.5433319246255701, -0.5558676695857327, -0.5658584539871585, -0.5733337345827634, -0.578411445250502, -0.5812797326130172, -0.5821772630688797, -0.5813736841240784, -0.5791515533708318, -0.5757907269213234, -0.571555861511359, -0.5666873588885482, -0.5613957860704588, -0.555859550537761, -0.5502253996604483, -0.544611151319595, -0.5391099526822911, -0.5337953151298962, -0.5287261958241272, -0.5239514963808611, -0.5195135207085093, -0.5154501545338959, -0.511795761000672, -0.5085809874637137, -0.5058318139722644, -0.5035682282389258, -0.5018028904701317, -0.5005400753192302 ], [ -0.3418547681157471, -0.33068744165731, -0.3206756722196207, -0.3121616810125456, -0.3054984682644528, -0.3010365507554169, -0.29910720712634276, -0.3000023724223406, -0.3039518532456793, -0.31109929343059806, -0.3214792190182785, -0.33499829732359254, -0.351424305924378, -0.3703858841939911, -0.3913848102449762, -0.41382055286969055, -0.437024750108679, -0.4603016822283492, -0.48297012274893714, -0.5044021893640351, -0.5240557206728786, -0.5414979250364762, -0.5564192917199902, -0.5686378421949356, -0.5780946505453033, -0.584842156833169, -0.5890271463441312, -0.5908703951671501, -0.5906449218405572, -0.588654576603914, -0.5852143899928914, -0.5806337374865562, -0.575202998127913, -0.5691840245899968, -0.5628044207803549, -0.5562553510587782, -0.5496923857904343, -0.543238722394086, -0.5369900126730633, -0.5310199837692648, -0.5253860715813887, -0.5201343978841051, -0.5153036092614367, -0.5109273331193991, -0.507035253528199, -0.5036530222202027, -0.500801361568137, -0.498494770731978, -0.4967402199514779, -0.49553613436218136 ], [ -0.34189097374384003, -0.3308775120775369, -0.321072807360526, -0.31282962942476145, -0.306512185942607, -0.30248240852505304, -0.30108250340977394, -0.3026138464916368, -0.3073128588380176, -0.3153253256650217, -0.3266816353198887, -0.34127636045691356, -0.3588560744720326, -0.37901888183973376, -0.40122767479479515, -0.4248368798448805, -0.44913008003062393, -0.4733641201376464, -0.49681456414817715, -0.5188176832718789, -0.5388051942554626, -0.5563293357959431, -0.5710772418607446, -0.5828747566568038, -0.5916807586293558, -0.5975737038861446, -0.6007324741558948, -0.6014137451486579, -0.5999280126134099, -0.5966161702268411, -0.5918281778417422, -0.585904944211606, -0.5791641231496709, -0.5718901230084512, -0.5643282795036835, -0.5566828518089837, -0.5491182735868112, -0.5417629233965431, -0.5347145742425119, -0.5280466462714697, -0.5218144291153903, -0.5160605666731879, -0.5108193001582431, -0.5061192193193336, -0.5019845346039509, -0.4984351069253279, -0.4954856187461929, -0.49314432414421416, -0.49141178422400245, -0.4902799030267504 ], [ -0.34267298992615025, -0.33189061502390227, -0.32237427341953495, -0.3144867666956477, -0.30860285641386453, -0.305095103803553, -0.30431573580315874, -0.3065745508990181, -0.3121134577280056, -0.321079133412679, -0.3334964211364779, -0.34924618300631427, -0.36805191990999453, -0.3894790740582381, -0.4129493223970966, -0.4377696447743935, -0.46317326996325847, -0.48836761477139223, -0.5125835393039484, -0.5351206293149291, -0.5553844039152895, -0.5729128687486769, -0.5873913372163551, -0.5986557315488013, -0.6066855763129433, -0.6115885951271725, -0.6135792272797471, -0.6129535173152423, -0.6100627328297361, -0.6052877829566115, -0.5990161021083349, -0.5916221929166252, -0.5834525449186876, -0.5748152036863952, -0.565973884522446, -0.5571462161985234, -0.5485054639560085, -0.5401849139688144, -0.5322840028717983, -0.5248752503961958, -0.5180111088544537, -0.5117299850659431, -0.5060609104004448, -0.5010266057707344, -0.49664496622321286, -0.49292922428588803, -0.48988720314068424, -0.4875201237110318, -0.48582139308730143, -0.48477570280257143 ], [ -0.3442422081082497, -0.33377392734702616, -0.3246335104437763, -0.3171932216505753, -0.3118376391553268, -0.3089490487955562, -0.3088886332447567, -0.311973401105764, -0.31844939948855067, -0.32846271256920523, -0.3420310023484394, -0.3590196042838245, -0.37912692461791964, -0.4018835188395009, -0.42666747930866844, -0.4527359437149294, -0.4792695311466342, -0.505424302807669, -0.5303849972575305, -0.5534137623995152, -0.5738899451295674, -0.5913381783534737, -0.6054436423602756, -0.6160547758843611, -0.6231747997294146, -0.6269441785252434, -0.6276165906367228, -0.6255311213991821, -0.6210832761850382, -0.6146970819311683, -0.606800077850238, -0.5978024613101756, -0.5880811186134025, -0.5779687812499026, -0.5677481346359938, -0.5576503788425964, -0.5478574977609234, -0.5385073285283892, -0.5297004332446369, -0.5215077624473747, -0.5139781712172529, -0.5071450079908444, -0.5010312342255232, -0.49565282134708144, -0.49102046360328555, -0.48713988970887345, -0.4840112121151523, -0.4816278042690181, -0.4799751539183361, -0.4790300338683875 ], [ -0.3466363730789135, -0.3365706458010662, -0.3278996520094888, -0.3210045066640541, -0.3162787931511257, -0.3141135056136559, -0.31487756526247135, -0.3188937856339844, -0.3264107771524083, -0.33757230197831034, -0.3523869649242042, -0.37070254852279083, -0.3921901843231099, -0.4163432239288747, -0.4424937781460947, -0.46984677200456626, -0.4975280178976258, -0.5246403670449895, -0.5503210956366349, -0.5737942408334962, -0.5944130926773783, -0.6116898836357718, -0.6253114919806562, -0.6351414898476946, -0.6412100523405184, -0.6436940833905198, -0.6428904063987533, -0.6391850256230904, -0.6330213228107684, -0.624869673925045, -0.6152004338315338, -0.6044616288196414, -0.5930620942944158, -0.5813602536354874, -0.5696582854033858, -0.5582010796282484, -0.54717913557585, -0.5367343936951239, -0.5269679165179839, -0.5179483368367725, -0.5097200813123333, -0.5023105561993706, -0.4957357388880974, -0.4900039243689476, -0.48511768157305046, -0.4810743275380822, -0.47786538640814347, -0.4754755496970471, -0.47388160601897655, -0.4730516940680265 ], [ -0.3498888748855111, -0.34031915886331854, -0.33221656344766304, -0.32597040966808377, -0.32198241197358346, -0.32065115690793045, -0.32235194521275434, -0.3274118048803776, -0.3360801114259948, -0.3484963300586248, -0.3646578877469242, -0.3843927734056609, -0.4073425060539124, -0.43296083038483135, -0.46053146366183695, -0.48920478708496407, -0.5180496783346373, -0.5461140001676856, -0.5724862959306123, -0.5963518848815843, -0.6170381883053866, -0.6340461061042573, -0.6470661769021187, -0.6559798947550892, -0.6608478535907945, -0.6618873219386832, -0.6594424023358756, -0.6539501053199901, -0.6459055011482393, -0.6358286728546685, -0.6242355774366404, -0.6116142301970269, -0.5984069501697551, -0.5849988058665565, -0.5717119143476357, -0.5588048814660524, -0.5464764194005867, -0.5348720257376387, -0.5240925456727352, -0.5142034619685409, -0.505243868517655, -0.4972342833258201, -0.49018273370663223, -0.48408886894830716, -0.47894617437964593, -0.47474262134865297, -0.4714602487653241, -0.4690742184885477, -0.4675518323901262, -0.46685187670318573 ], [ -0.3540280560974942, -0.34505223090169657, -0.33762188742229804, -0.33213388600961835, -0.32899714822171866, -0.32861665204390933, -0.33137259192998014, -0.33759444836496644, -0.34753035165499657, -0.3613132565460597, -0.3789270511084053, -0.40017747907564893, -0.424673957148904, -0.45182814403961014, -0.4808729490197945, -0.5109019288551793, -0.540924972458865, -0.5699332469698544, -0.5969653485022965, -0.6211673159006577, -0.641840939176529, -0.6584769280599909, -0.6707715596624924, -0.6786272014156143, -0.682138534529027, -0.6815673460383929, -0.6773093830307968, -0.6698569613270018, -0.6597608254674123, -0.6475942475525105, -0.6339216431021173, -0.6192731944942163, -0.6041262117626698, -0.5888932991110805, -0.5739168698905903, -0.5594691695534741, -0.5457567132736001, -0.5329279041812023, -0.5210825544088995, -0.5102820773778136, -0.5005592555051317, -0.491926711159667, -0.484383506702007, -0.47791963889681743, -0.4725185235628997, -0.46815783325722826, -0.46480921288050014, -0.4624374411746066, -0.46099954506098717, -0.460444243677099 ], [ -0.35907655147797857, -0.3507962192341756, -0.3441461213613346, -0.3395299790403543, -0.3373629609057003, -0.33805516726473805, -0.34199009295438554, -0.3494977578886065, -0.3608228445809192, -0.3760893629703608, -0.39526507595579674, -0.4181308330592619, -0.4442613200032508, -0.47302356773508003, -0.5035972725732627, -0.5350169436764156, -0.566231498976586, -0.5961737611330784, -0.6238311979683515, -0.6483100214273836, -0.6688866477222777, -0.6850427878640606, -0.6964826329246203, -0.7031325276255056, -0.7051251092237731, -0.7027710665576159, -0.6965223903050777, -0.6869312136199655, -0.6746081136984619, -0.6601831536757501, -0.6442721272854413, -0.627449571524578, -0.6102292581523223, -0.5930521452233857, -0.5762812032609552, -0.5602021304686531, -0.5450287202445963, -0.5309115182719639, -0.517948385632018, -0.5061956576597961, -0.4956787518864585, -0.486401328100047, -0.478352423736752, -0.4715113441754777, -0.4658504290502117, -0.4613360876567343, -0.45792865836682095, -0.4555816856651964, -0.4542411404028157, -0.4538449707827037 ], [ -0.3650506776495177, -0.357570345545154, -0.35181175272952037, -0.3481848006048167, -0.34710992272028673, -0.3490010230196099, -0.3542432189716507, -0.3631650325302096, -0.376005332512811, -0.3928765581084883, -0.41372756327268734, -0.43831148186158675, -0.46616552279499324, -0.4966095021449375, -0.5287675187316916, -0.5616128698750436, -0.5940315818984252, -0.6248965202620809, -0.6531428453627335, -0.6778363758625265, -0.6982283966207394, -0.7137928309788064, -0.7242440356662394, -0.7295355768119267, -0.7298421118445777, -0.7255278436229347, -0.7171058400029302, -0.7051927763830124, -0.6904633909031077, -0.6736082542116228, -0.6552975135317363, -0.6361522484308759, -0.6167241169436648, -0.5974831674659833, -0.578813083141521, -0.5610127099858444, -0.5443024737993298, -0.5288341836868333, -0.5147027263273034, -0.5019582595157595, -0.49061770846640695, -0.4806746465682752, -0.4721069858439082, -0.46488227559770956, -0.4589607592993219, -0.45429661539135235, -0.45083796801524767, -0.44852628704336195, -0.44729572126113326, -0.447072762278129 ], [ -0.37195989016419917, -0.3653860431657805, -0.3606324785366204, -0.3581146035595759, -0.35825712594521253, -0.3614764045893686, -0.3681574435630268, -0.3786251377391139, -0.3931100509496237, -0.4117102751602759, -0.43435281526494895, -0.4607601334446214, -0.490429130189854, -0.5226297961564315, -0.5564282783152896, -0.5907345525782979, -0.6243698759513199, -0.656145548994352, -0.6849432079878126, -0.7097876496003106, -0.7299052148785647, -0.7447632372007835, -0.754088543277782, -0.7578652907838503, -0.7563144100876951, -0.7498584568388669, -0.7390766429606341, -0.7246551213407857, -0.7073372842928374, -0.6878780335662804, -0.667004891677283, -0.6453876594294534, -0.6236172500716066, -0.6021934485845932, -0.581520693354779, -0.5619105491134682, -0.5435893025270979, -0.5267090276641904, -0.5113605064817712, -0.49758652916433577, -0.4853943290433118, -0.47476621611008185, -0.46566784136359685, -0.45805391437598697, -0.4518715571256855, -0.44706175511738233, -0.44355952424519396, -0.44129343891489037, -0.4401850832343577, -0.4401488323208793 ], [ -0.3798063244476795, -0.3742464007848507, -0.3706125346285214, -0.3693249778516745, -0.3708117255582455, -0.37549023272404547, -0.383743624027284, -0.3958909838773277, -0.41215200051422984, -0.4326075440479411, -0.4571597283221902, -0.48549730423196413, -0.5170739878343098, -0.5511073371636162, -0.5866032320809893, -0.6224062625250038, -0.6572710550841654, -0.6899457038211587, -0.719257020515619, -0.7441880412427113, -0.7639402521963563, -0.7779755453451707, -0.786035548349814, -0.7881384901220385, -0.7845560061823167, -0.775774065072864, -0.7624433185410515, -0.7453245367041872, -0.7252344161778228, -0.7029961106480058, -0.6793975756090473, -0.6551594921609301, -0.6309133329173311, -0.6071891678297732, -0.5844121143841503, -0.562905898453953, -0.5429017675304573, -0.5245509415494529, -0.5079388606298483, -0.4930996683547717, -0.48002963772767293, -0.468698589959887, -0.45905875052343736, -0.45105089407020094, -0.4446079987491711, -0.43965690941165225, -0.43611866238170527, -0.4339081440607784, -0.4329336629927252, -0.43309685132738274 ], [ -0.3885844353691168, -0.3841457211972197, -0.3817461581337249, -0.38181019935922045, -0.3847681557915217, -0.3910372288087598, -0.40099689725150367, -0.41495823850185, -0.43312746801163815, -0.45556532340015954, -0.4821459500758012, -0.5125213275481733, -0.5460991181433723, -0.5820418752110732, -0.6192929441508965, -0.6566294957837993, -0.6927376498705955, -0.7263005741393467, -0.7560888213286887, -0.7810427676949714, -0.8003389888388563, -0.8134349966832357, -0.8200895490474904, -0.8203585159618567, -0.8145688370367619, -0.8032751658053308, -0.7872051095317363, -0.7671993894813052, -0.7441528015823518, -0.7189607566494549, -0.6924747242483305, -0.6654683943119664, -0.6386150294734725, -0.6124754288408376, -0.5874951899470522, -0.5640095115218815, -0.5422535727422675, -0.5223765005397847, -0.5044570514980002, -0.4885193582039904, -0.47454740078846847, -0.4624972438973429, -0.45230650114293236, -0.44390091349768457, -0.43719830453296105, -0.4321104540506431, -0.4285435791726755, -0.4263981228369056, -0.425568447150966, -0.42594285587342084 ], [ -0.39828074773982514, -0.39506921075973267, -0.39401720296121856, -0.3955527566474506, -0.4001075517364683, -0.4080972139205308, -0.4198958390373204, -0.4358043308745525, -0.45601286562837706, -0.48055917124030567, -0.5092863877737923, -0.5418067158101427, -0.5774789607626716, -0.6154081711684252, -0.6544729486168952, -0.6933810281541761, -0.7307480968044384, -0.7651905516521935, -0.7954210661300476, -0.820336245425624, -0.839087507146292, -0.8511289177432022, -0.8562386616228059, -0.8545138868574036, -0.8463415852231753, -0.83235056430337, -0.8133511075032338, -0.7902693991769161, -0.764083257470076, -0.7357644233701388, -0.7062309705128895, -0.676311684247674, -0.6467227664048287, -0.618056080496332, -0.5907773801362803, -0.5652325180899942, -0.5416594488877762, -0.5202038511192548, -0.5009363560491988, -0.4838696409979637, -0.46897400301853587, -0.4561904472385745, -0.44544077515305336, -0.4366346001475787, -0.4296736008211317, -0.42445359975368335, -0.42086519575912495, -0.41879367849217886, -0.4181188408643117, -0.4187151213405551 ], [ -0.4088737269670977, -0.40699281143558563, -0.4073989236133313, -0.4105230751790976, -0.41679740087010697, -0.4266346731715951, -0.4404019260187588, -0.4583877966264469, -0.4807639455697148, -0.5075423207854157, -0.5385321420801139, -0.5733029556534288, -0.6111620384315535, -0.6511545474115688, -0.6920922022149023, -0.7326112892099892, -0.7712550553136521, -0.806571114649026, -0.8372124066767552, -0.8620303931941495, -0.880150848815368, -0.8910251618441651, -0.8944531729607337, -0.8905769841831057, -0.8798485125390432, -0.8629763630523235, -0.8408593979224159, -0.8145149310459374, -0.7850088305696641, -0.7533932878750227, -0.7206560629076562, -0.6876830692826097, -0.6552345087865912, -0.6239335328633819, -0.5942656027996587, -0.5665862789284275, -0.5411350122716021, -0.5180525672565233, -0.4973999149308299, -0.4791767608998643, -0.4633382794843419, -0.4498090867216089, -0.4384939665546197, -0.42928532456516755, -0.4220677331746394, -0.41672020653285324, -0.41311697510748946, -0.4111275193143402, -0.41061649599595884, -0.41144399713363256 ], [ -0.42033377554294726, -0.4198831828691312, -0.4218539370459202, -0.4266794516620074, -0.43479144093458433, -0.44659860643684035, -0.4624593269041939, -0.48264799582787066, -0.5073154304856062, -0.5364452088047948, -0.5698099200120705, -0.6069337942215824, -0.647070108513139, -0.6892019005580945, -0.7320719593830918, -0.7742431071785045, -0.8141840374552856, -0.8503713655257787, -0.881396166634524, -0.9060630825575455, -0.9234714795241299, -0.9330706272462667, -0.934684148327853, -0.9285027793026153, -0.9150483279406734, -0.8951149820401818, -0.8696962344458323, -0.8399063170825636, -0.8069042506665651, -0.7718268190393729, -0.7357345240809281, -0.6995723749035423, -0.6641455400481557, -0.6301085702330222, -0.5979660648203262, -0.5680822234449929, -0.5406965998607351, -0.5159434768671514, -0.49387254688245585, -0.47446896516264836, -0.4576713042604037, -0.4433864448367466, -0.4315009522635651, -0.4218889670082959, -0.4144170321358769, -0.40894655160155335, -0.40533469468992855, -0.4034345382493072, -0.4030950993950424, -0.40416170493648473 ], [ -0.4326233572281748, -0.4336978371070028, -0.43733436622636757, -0.4439682035790937, -0.4540298110569374, -0.4679226747230303, -0.4859950352537419, -0.5085052202085232, -0.5355810794376681, -0.5671754805401679, -0.6030219551407088, -0.642597048292658, -0.6850978344217855, -0.7294432117699563, -0.7743051051427039, -0.8181708587630878, -0.8594323820477381, -0.8964928502519391, -0.9278790398795866, -0.9523467581459082, -0.9689678799077046, -0.9771898684774926, -0.976862108997472, -0.9682276157317765, -0.9518831018619361, -0.9287142207206953, -0.8998152519191747, -0.8664032128278623, -0.8297354159240788, -0.791037371074006, -0.7514453301525743, -0.7119652877370626, -0.6734482482104787, -0.636580162914862, -0.6018840847958988, -0.5697316717249261, -0.540361082273993, -0.5138984603182346, -0.49038053005602533, -0.4697762679441624, -0.45200613833587755, -0.4369579348090886, -0.4244988179991045, -0.4144836384201456, -0.4067600334116712, -0.401171052556031, -0.3975561759501558, -0.39575155136931883, -0.3955901225222225, -0.3969021011319409 ], [ -0.44569724692037394, -0.4483854236660254, -0.453782162811021, -0.46232403107319886, -0.47443945308780844, -0.49052563905346913, -0.5109193406983137, -0.535861186678833, -0.5654541871308396, -0.5996184699626725, -0.6380464355224336, -0.6801649391450595, -0.7251129829696676, -0.7717435641805663, -0.818655958858757, -0.8642600399279416, -0.9068685912898016, -0.9448086787742349, -0.976540030186363, -1.0007672458878707, -1.016533279952966, -1.0232838167224894, -1.0208957945201669, -1.0096680599934107, -0.9902772394734757, -0.9637063728749907, -0.9311567277262358, -0.8939539978791862, -0.8534589163198685, -0.8109898084620102, -0.7677616138841936, -0.7248431143475964, -0.6831319199016046, -0.6433452790075551, -0.6060239083189514, -0.5715456423303504, -0.5401456562955822, -0.511940222891123, -0.4869513524566045, -0.46513017918255106, -0.44637753933327295, -0.43056079497356525, -0.4175265419720855, -0.40710935841815954, -0.3991371550597578, -0.3934339482633984, -0.38982097282045913, -0.3881169972875407, -0.38813853436329016, -0.3897004051854618 ], [ -0.4595029004918654, -0.46388615794725574, -0.47112960040358187, -0.4816705808223294, -0.4959347506486904, -0.5143120768836809, -0.5371266208636638, -0.5645998965460148, -0.5968084931433948, -0.6336381301743632, -0.6747384136353409, -0.719484928901851, -0.7669571271203226, -0.8159406527113724, -0.864960541164264, -0.9123472571209139, -0.956332035715467, -0.9951629571165606, -1.0272296463116195, -1.0511827649659966, -1.0660345532543531, -1.0712286256490948, -1.0666710254722176, -1.0527198360703043, -1.0301365264727704, -1.0000074062463833, -0.9636469013126061, -0.9224952277092513, -0.8780216006503379, -0.8316411658914553, -0.7846503938513769, -0.7381825570991549, -0.6931825429164904, -0.6503986968098894, -0.6103885166787566, -0.5735346469934217, -0.5400676184430346, -0.5100920431541949, -0.4836134338594025, -0.4605634012414579, -0.44082163602781543, -0.4242337457214653, -0.41062463965105267, -0.39980769358979007, -0.39159033491146045, -0.3857769405785638, -0.38217002226839325, -0.38057060033638246, -0.3807784802810923, -0.382592896476851 ], [ -0.4739809355535356, -0.48013238178668183, -0.4892999245462597, -0.5019211948638975, -0.518418385027551, -0.5391733507148171, -0.5644964236092909, -0.5945888246463131, -0.6294994601768578, -0.6690783687882482, -0.7129311510174219, -0.7603810119432899, -0.8104468121885624, -0.8618457520852207, -0.9130272799187451, -0.9622406256753265, -1.0076330244242473, -1.0473705365704216, -1.0797693640859887, -1.1034231591225696, -1.117311288910046, -1.120874661204709, -1.1140496849194064, -1.0972568605689972, -1.0713472626899994, -1.0375162198354162, -0.9971973620108132, -0.9519511440883682, -0.9033601918042937, -0.8529403457908482, -0.8020723307615141, -0.7519555073918691, -0.7035826173294162, -0.6577328179623014, -0.6149794294004551, -0.5757084730814348, -0.5401441209908628, -0.5083774991806136, -0.48039582164644323, -0.4561094962225065, -0.43537557094286106, -0.41801661258052536, -0.40383477335710327, -0.39262135994071956, -0.384162632086825, -0.37824280068803073, -0.37464526056053327, -0.3731530010492816, -0.3735489301733508, -0.37561658275963916 ], [ -0.4890657113089629, -0.4970492414425607, -0.5082081412441148, -0.5229798219292103, -0.541782380420538, -0.5649887954935982, -0.5928947995315894, -0.6256803913188311, -0.6633658675121057, -0.7057647290389435, -0.7524378354779102, -0.8026554000955364, -0.8553751293950778, -0.9092450962920704, -0.9626381208305341, -1.0137205547118224, -1.0605532331267349, -1.1012170838480864, -1.1339513680428306, -1.1572893656664438, -1.1701750626720768, -1.1720456581661187, -1.1628688409067744, -1.1431303991423434, -1.113775501299299, -1.0761139932048582, -1.0317045157783702, -0.9822332511112386, -0.9294009542144335, -0.8748278550582083, -0.8199815110439828, -0.7661288557032355, -0.7143109744758116, -0.6653374809051957, -0.6197965006939237, -0.5780759544968697, -0.5403919117422584, -0.5068201745327374, -0.4773278630857991, -0.4518025270173891, -0.4300771145692017, -0.4119499193607703, -0.39719933090308746, -0.38559379389150417, -0.3768977970814589, -0.3708749445571451, -0.3672892096452136, -0.365905358215336, -0.3664893000279559, -0.3688088441276305 ], [ -0.5046859935262409, -0.5145554657019937, -0.5277619226361303, -0.5447420650033881, -0.565909306436297, -0.5916270860301984, -0.6221758385660652, -0.6577136633775336, -0.6982316586297324, -0.7435063499572538, -0.7930536014499123, -0.8460905334275319, -0.9015136345544772, -0.9579016177373609, -1.0135500048562758, -1.066540896246367, -1.1148464830906164, -1.1564594787907456, -1.1895385897320498, -1.2125531465191455, -1.2244089356410994, -1.2245380728805682, -1.2129400382759226, -1.1901683695663243, -1.1572664148647305, -1.1156636441486225, -1.0670491422122117, -1.0132399636590956, -0.9560594166846073, -0.8972355816687088, -0.838325256980776, -0.780664317176333, -0.7253426026315903, -0.6731997739224502, -0.6248377096940849, -0.5806447315772769, -0.5408270588176731, -0.5054433459824352, -0.47443885670100183, -0.4476766753816497, -0.42496425505759516, -0.4060744556941285, -0.3907609779800405, -0.3787686967894297, -0.36983981554524403, -0.36371698265076935, -0.36014453878130404, -0.35886892751142097, -0.3596390516920267, -0.3622070570636504 ], [ -0.5207656892326067, -0.5325642251199254, -0.5478626064950105, -0.5670963366375963, -0.5906736033748508, -0.6189477431368522, -0.6521833620262918, -0.6905162279854085, -0.7339079801814952, -0.7820981378507026, -0.8345577837353064, -0.8904513489150006, -0.948614550759524, -1.0075569960282378, -1.0654966770144885, -1.1204304398484175, -1.1702398691616882, -1.2128265529351596, -1.2462650680726446, -1.2689571148904628, -1.2797672184072533, -1.2781206708204484, -1.2640487961493387, -1.238174823236216, -1.2016438139186167, -1.156009413718306, -1.1030960543412558, -1.0448563352373759, -0.9832401533598455, -0.9200866112682413, -0.8570439621623627, -0.7955182711997637, -0.736648478094635, -0.6813038470344082, -0.6300989444358149, -0.5834210006556382, -0.5414646618525838, -0.5042696550978636, -0.4717576855934329, -0.44376584059706414, -0.4200747675989822, -0.40043082374577876, -0.38456218952627474, -0.37218955850886926, -0.36303243153985654, -0.35681224980645987, -0.35325360727135946, -0.35208462244848526, -0.35303727638374904, -0.3558482038216144 ], [ -0.5372246350324579, -0.5509840526769556, -0.5684062655400728, -0.5899250929580302, -0.6159429954585252, -0.6468027372906788, -0.6827527221898535, -0.7239061850346153, -0.7701953523382743, -0.8213230853929319, -0.8767163400663627, -0.935487745223724, -0.9964132003768458, -1.0579339730244421, -1.1181907981704504, -1.1750947416756101, -1.226435243521247, -1.2700201920648904, -1.3038366682637426, -1.326215103284655, -1.335975550851817, -1.3325343991816734, -1.3159543574711536, -1.2869296447499272, -1.2467098493192212, -1.1969766009850709, -1.1396938753999515, -1.07695387276082, -1.0108366257421453, -0.9432950839107791, -0.8760709512245339, -0.8106416137507313, -0.7481954007970044, -0.6896307224471001, -0.635573779914195, -0.5864092542996804, -0.5423185513192548, -0.5033207661431567, -0.469312435920076, -0.44010322267655533, -0.415445768156367, -0.3950589693929394, -0.37864476589865825, -0.36589916635571873, -0.3565186567488654, -0.3502033218532812, -0.34665799487907134, -0.34559256407862615, -0.34672226815585305, -0.34976847302766156 ], [ -0.5539794229160588, -0.5697198062838735, -0.5892848229665455, -0.6131061181556916, -0.6415799586428135, -0.6750381509202055, -0.713712664939514, -0.7576942083656244, -0.806885916726503, -0.860954682210908, -0.9192843866090588, -0.9809371912107303, -1.0446306211604, -1.1087389000898664, -1.1713263404951337, -1.2302182860772115, -1.2831110720189178, -1.3277168373744368, -1.3619322087541121, -1.3840129326383765, -1.3927313622184903, -1.3874926083654895, -1.368389748796368, -1.3361885185574516, -1.292244936271339, -1.2383714741796332, -1.176674949308421, -1.109390447363602, -1.0387310897541853, -0.9667660921640104, -0.8953323639819719, -0.8259796224833251, -0.7599458347311532, -0.6981581042752896, -0.6412532514142921, -0.5896120139213101, -0.5434009782457516, -0.5026170132350729, -0.46713000421163486, -0.43672089456601726, -0.41111325674962784, -0.3899977037489095, -0.3730493402914892, -0.35993910615328306, -0.350340272799458, -0.3439315262625957, -0.34039802719522116, -0.3394316265675872, -0.34073109413689995, -0.344002857950765 ], [ -0.5709442479768048, -0.5886736544417319, -0.6103871919404273, -0.6365138332257445, -0.6674432124707348, -0.7034958643362703, -0.7448872161976052, -0.7916856328487707, -0.8437657163226295, -0.9007593702802077, -0.9620088007925165, -1.0265274362680499, -1.0929763315285346, -1.1596644931104778, -1.2245812563943606, -1.2854669870217843, -1.3399246897346768, -1.3855694311814815, -1.420205058914073, -1.442009657092761, -1.4497047914289702, -1.4426817009647388, -1.4210622215100677, -1.3856832220679203, -1.3380079455599159, -1.2799813901731503, -1.2138554052900283, -1.1420103131680919, -1.0667945744224245, -0.9903956243497194, -0.9147470665889834, -0.8414718368961296, -0.7718577555220145, -0.7068601899305937, -0.6471256256046709, -0.5930295574626401, -0.5447222974153021, -0.5021770403877164, -0.4652356978433254, -0.4336493684058558, -0.407111656106929, -0.3852842215360013, -0.36781488448819033, -0.3543492630353562, -0.3445373345020213, -0.3380364547508221, -0.33451230382319674, -0.33363898630515365, -0.33509916889439095, -0.338584759353878 ], [ -0.5880317634748766, -0.6077460678228275, -0.631600418849096, -0.6600206055295668, -0.6933892092028293, -0.7320152352607439, -0.7760975591438841, -0.8256825319733745, -0.880616970546019, -0.9404990072270721, -1.0046308560271244, -1.0719792905691539, -1.1411512191729658, -1.2103927788454025, -1.2776204177123605, -1.3404910432422268, -1.3965149896787308, -1.443209862015963, -1.4782852812113116, -1.4998393722264742, -1.5065401622430352, -1.497762301454361, -1.4736541588544165, -1.4351223155592918, -1.3837367160954743, -1.321575160846506, -1.2510354024099524, -1.1746442507417756, -1.094886943376885, -1.0140705611928946, -0.934226596574893, -0.8570519596165236, -0.783884510523122, -0.7157074879412739, -0.6531761736837414, -0.5966596462191407, -0.5462906481826211, -0.502017438942421, -0.46365283372687793, -0.43091716160924065, -0.40347335215426927, -0.38095362344430206, -0.362978220643015, -0.34916733006087, -0.3391476823739521, -0.3325554862788407, -0.32903723773665705, -0.3282496826572956, -0.3298598406402269, -0.3335456001558037 ], [ -0.6051539300455122, -0.6268368013912797, -0.652810812587221, -0.6834980390413214, -0.7192735977110221, -0.7604347472733879, -0.8071638757585693, -0.8594857582740376, -0.9172203173805644, -0.9799333097045548, -1.046888861823561, -1.117009451432449, -1.188850533919939, -1.260598221181826, -1.330098825369817, -1.3949281633594004, -1.4525055810698657, -1.5002519679403976, -1.5357823982285679, -1.5571136838804012, -1.5628581192964321, -1.5523710520956002, -1.5258245450140664, -1.4841923098221876, -1.42914895200426, -1.3629037129490285, -1.2879995873433177, -1.2071098593506773, -1.1228570576361148, -1.0376687410579601, -0.9536751547706485, -0.8726477899919483, -0.7959747008636608, -0.7246666500093244, -0.6593869530993626, -0.6004972565103672, -0.5481116383061257, -0.5021523878940475, -0.46240234114674617, -0.42855036925898604, -0.40022824347679964, -0.3770384502064046, -0.35857354732136715, -0.34442833323769007, -0.33420647323048436, -0.32752332925251104, -0.3240066144650531, -0.32329619871072146, -0.32504399719101396, -0.3289144592743798 ], [ -0.6222228474203513, -0.6458458537544496, -0.6739050448578565, -0.7068182286020925, -0.7449526439690992, -0.7885936078057376, -0.8379071325020875, -0.8928969260223587, -0.9533570019826209, -1.0188222566853868, -1.088520789913198, -1.1613333577956575, -1.2357669695458662, -1.309951017160367, -1.3816650883331172, -1.4484071739513091, -1.507508449486053, -1.5562951535535485, -1.592288863707206, -1.6134249366433673, -1.6182585359924475, -1.6061231476975821, -1.577211100841501, -1.5325594013191335, -1.4739435766728572, -1.4037010976699933, -1.3245178088420912, -1.2392120326285725, -1.15054306849658, -1.0610591184807006, -0.9729896652976411, -0.8881812076870079, -0.8080720997771438, -0.7337003286679964, -0.6657366069139647, -0.6045343237702991, -0.5501880376048995, -0.5025933037386632, -0.46150237557045526, -0.42657225007329824, -0.39740330750105346, -0.37356823661643945, -0.3546319884204423, -0.3401641818419021, -0.32974573783982386, -0.3229715918683922, -0.31945117983630156, -0.31880807037662406, -0.3206796995632273, -0.3247177319496273 ], [ -0.639151558687931, -0.6646743925663474, -0.6947712091699842, -0.7298549648727619, -0.7702845940801895, -0.8163332811806578, -0.8681507955126806, -0.9257203216989893, -0.9888109975065814, -1.056928438485897, -1.1292668719970709, -1.2046680581121572, -1.2815938200361656, -1.3581205501531528, -1.4319651646168579, -1.5005520137794932, -1.5611281388149174, -1.6109286628527562, -1.6473843046294259, -1.6683502916874342, -1.6723242995365895, -1.6586157200429008, -1.6274331925972094, -1.5798718698022918, -1.5178026244362244, -1.4436859171342578, -1.3603461453294687, -1.2707436661208784, -1.1777728828085157, -1.0841020526837606, -0.9920599346055052, -0.9035682314756917, -0.8201156269608727, -0.7427670757128269, -0.6722001925713581, -0.6087595085764113, -0.55251948972125, -0.5033485076163047, -0.4609679511674174, -0.4250028338890335, -0.39502219166122754, -0.3705690940691362, -0.35118117379042335, -0.3364032529881391, -0.32579397459977066, -0.31892838941928403, -0.31539826480601274, -0.3148115319681952, -0.3167918507951202, -0.32097882353637264 ], [ -0.6558548187583084, -0.6832256368557541, -0.7152998287450094, -0.7524848797433656, -0.7951309694100668, -0.8434989463618559, -0.8977224653052462, -0.957764732600317, -1.0233710486368233, -1.0940193415547002, -1.1688721578198618, -1.246735078106151, -1.326028193986784, -1.4047789817907608, -1.480646346256559, -1.5509861011121198, -1.6129664535035002, -1.6637365250197853, -1.7006405749715885, -1.7214567187303034, -1.7246260573839625, -1.7094321674600836, -1.6760956116192802, -1.625763232210436, -1.5603937564385448, -1.482563246565284, -1.3952283172850382, -1.3014866617874485, -1.2043648587960205, -1.1066497763675596, -1.0107689511883304, -0.9187191861611486, -0.8320394040852188, -0.7518213002475194, -0.6787490543814316, -0.6131579960066258, -0.5551022516964026, -0.5044229186286042, -0.46081060060752477, -0.42385855920103466, -0.39310483817079933, -0.3680633303390286, -0.3482448603315289, -0.3331700192007119, -0.3223757878576472, -0.3154179969403599, -0.31187145540019445, -0.31132920582220147, -0.31340190702519033, -0.31771788319602123 ], [ -0.6722498202323743, -0.7014056890193745, -0.7353848057796086, -0.7745885245758748, -0.8193577863851449, -0.8699408723794755, -0.9264554244502645, -0.9888451874329746, -1.0568326315427015, -1.1298695616323164, -1.207089023637995, -1.287263274218712, -1.3687742671706087, -1.4496049560521171, -1.5273614558596775, -1.5993370391328363, -1.6626276493437744, -1.7143031523715329, -1.7516276188607527, -1.7723069227884272, -1.77472796848495, -1.758147491578916, -1.7227933000561864, -1.6698562360861198, -1.6013734882450552, -1.5200271410703752, -1.4288975718764911, -1.331213312195391, -1.2301288070654457, -1.1285471085931436, -1.0289933776263058, -0.9335390174365433, -0.8437729211151459, -0.760813308211723, -0.6853507561669463, -0.6177113413181454, -0.5579289723265697, -0.5058177831862007, -0.4610380714107356, -0.42315194971867864, -0.39166715117147466, -0.3660691152177835, -0.3458426020173002, -0.3304847272258089, -0.3195115788425249, -0.31246055482249346, -0.3088903149824529, -0.3083798426933104, -0.3105276370200625, -0.31495158310962457 ], [ -0.6882568712472956, -0.7191243108325296, -0.7549243063699622, -0.7960513757434851, -0.8428366957820734, -0.8955157067656969, -0.9541900940574867, -1.0187846049110663, -1.0889998257397446, -1.164262938971959, -1.2436796211206071, -1.3259916567324939, -1.409546548506422, -1.4922873795115763, -1.5717732060162213, -1.6452415986321978, -1.7097240436556589, -1.7622195201885564, -1.799920081174775, -1.8204661613134836, -1.822194439027899, -1.804334648207948, -1.767117057116314, -1.7117677523148853, -1.6403912097493278, -1.555763821562842, -1.461079140208465, -1.3596881623735317, -1.25486738535668, -1.1496324863154408, -1.0466042939124813, -0.9479277990644068, -0.8552413458877866, -0.7696894470750804, -0.6919690918808512, -0.6223973760807116, -0.5609885212272014, -0.507530450989631, -0.46165406860731384, -0.4228913390971627, -0.3907207149306562, -0.3646002002476374, -0.34398947667059576, -0.3283631355025165, -0.31721729620822336, -0.3100718339517343, -0.306470164940144, -0.3059781185268846, -0.30818293525111584, -0.3126929477979692 ], [ -0.7038000210389008, -0.7362956391482682, -0.7738215768455208, -0.8167647634511879, -0.8654460378640747, -0.9200876737708621, -0.980775396115686, -1.0474153472569325, -1.1196870937438728, -1.1969946090555594, -1.2784182555180892, -1.3626721638670782, -1.448073129464141, -1.5325292322770636, -1.6135586564645854, -1.6883508903605815, -1.7538819348003676, -1.8070898006913374, -1.8451045304169524, -1.8655098234240148, -1.8665977366957665, -1.8475718420742433, -1.8086602000573497, -1.7511145878022283, -1.6770940587192404, -1.5894556302323628, -1.4914933721566654, -1.3866704548588742, -1.2783779823360346, -1.1697393934914742, -1.0634682530887027, -0.9617814773581491, -0.866366009429415, -0.7783923794337808, -0.6985641922832082, -0.6271901893730087, -0.5642658810593264, -0.5095542086682712, -0.4626580536676619, -0.42308065291532526, -0.39027257136993754, -0.36366570011345756, -0.342695876394316, -0.3268163165876605, -0.31550425192074716, -0.30826306558379724, -0.3046219285020322, -0.3041344918496576, -0.30637769230719747, -0.3109512369057952 ], [ -0.7188076299158517, -0.7528388379709623, -0.7919856882904166, -0.8366267207970406, -0.8870718105452042, -0.9435296796976349, -1.0060700189321976, -1.0745806752194231, -1.148720963555553, -1.227872960749686, -1.3110936796741983, -1.3970723647908367, -1.4840988817621903, -1.570051355646489, -1.6524136894582195, -1.7283356150985045, -1.7947476818897694, -1.848538265281988, -1.8867870802440814, -1.9070315485021878, -1.907526276915417, -1.887450600923572, -1.847026076503143, -1.7875201825622797, -1.711132673683829, -1.620785825859549, -1.5198596429131785, -1.4119172566323095, -1.300455179798981, -1.188698260668052, -1.0794487044149423, -0.9749928930472334, -0.877065095936489, -0.7868615070682814, -0.7050927446972082, -0.6320601982872318, -0.5677421153305815, -0.5118781820899589, -0.4640451094921991, -0.42371925655100817, -0.3903250645038696, -0.3632699422819943, -0.34196736735184263, -0.32585052944044635, -0.31437900671032715, -0.3070408395832842, -0.30335204081025635, -0.3028551244655753, -0.3051177249553787, -0.3097318834379752 ], [ -0.7332128810849834, -0.7686786843212441, -0.8093322066821951, -0.8555427505176054, -0.9076085479710636, -0.965724322499609, -1.029943582207938, -1.10013609990478, -1.175941607030607, -1.2567214912028624, -1.3415112871675847, -1.4289780654949205, -1.517388563172923, -1.604596155513494, -1.6880574128824897, -1.7648912612767835, -1.8319937649969797, -1.8862162206822084, -1.9246011261448956, -1.9446515721915856, -1.9445932746068155, -1.9235843657471623, -1.8818362372384159, -1.8206220844059666, -1.7421677965379618, -1.6494442467055264, -1.545901091584765, -1.4351873385478473, -1.320893858740028, -1.2063388879960029, -1.0944078235411672, -0.9874531090955541, -0.887254558646585, -0.7950335623337126, -0.7115083402636346, -0.6369743206379908, -0.5713944234468797, -0.5144873178031828, -0.46580588063704886, -0.4248018768019044, -0.3908757583334319, -0.36341239021542915, -0.3418046231359, -0.32546716486904215, -0.3138433276106245, -0.30640707292049774, -0.3026624266455429, -0.30214186647885555, -0.3044047665921994, -0.309036487987852 ], [ -0.7469542323257308, -0.783746085794413, -0.8257837864121735, -0.8734265069443721, -0.9269601066153084, -0.9865648019961898, -1.0522776968554364, -1.1239506245523918, -1.201204304250282, -1.2833805430904923, -1.3694951835366298, -1.4581957866823017, -1.5477297861432238, -1.6359311550473035, -1.7202363941055043, -1.7977431105739339, -1.865324630462061, -1.9198087174518566, -1.9582148700884463, -1.9780249259207798, -1.9774453786203878, -1.9556172504690108, -1.9127389946287374, -1.8500800136834368, -1.7698776196811508, -1.675133799404741, -1.5693501899916622, -1.4562458236713245, -1.3394929694777558, -1.2224934088158217, -1.1082087625935377, -0.999053054650319, -0.8968492709306393, -0.8028433765275358, -0.7177619589134474, -0.6418962603330929, -0.5751962931447665, -0.5173624528840095, -0.46792659681775683, -0.42631860387567055, -0.39191743336682183, -0.3640876439605458, -0.342203434306815, -0.3256627656874438, -0.31389421830158915, -0.3063590485068137, -0.30255054543087523, -0.30199230496994756, -0.3042365172399044, -0.3088628680412251 ], [ -0.7599758059197794, -0.7979785280098104, -0.8412706850511316, -0.8902003904947935, -0.9450403553579061, -1.0059557258504022, -1.072966912748181, -1.1459078666330762, -1.2243807803403763, -1.3077089052566888, -1.394890109239963, -1.4845550771129457, -1.5749357983846421, -1.6638523255960438, -1.7487286249302862, -1.826650912079376, -1.8944821287018219, -1.9490407726077685, -1.9873383046947055, -2.0068491041082686, -2.005770878492589, -1.9832325786839902, -1.939418027312649, -1.8755842494818158, -1.7939656804641237, -1.6975776369391231, -1.5899550488551362, -1.4748695405074805, -1.3560599198560777, -1.2369997602315341, -1.1207182967487213, -1.0096854708651644, -0.9057644063848354, -0.8102248253631228, -0.723802596529709, -0.6467869122784617, -0.5791177579862485, -0.5204804805445469, -0.47038918602280644, -0.42825497870303186, -0.39343816523863095, -0.3652855201599461, -0.3431547948775633, -0.32642912129922075, -0.3145240211405673, -0.3068895226491335, -0.3030095014018539, -0.30239987400526136, -0.3046067507132113, -0.30920516004263376 ], [ -0.772227715544902, -0.8113204503206053, -0.8557311971827537, -0.9057960516624946, -0.9617737652078736, -1.023813805064755, -1.0919195454568043, -1.1659070476260633, -1.2453603971648328, -1.3295852527377727, -1.4175631820113508, -1.5079106193049838, -1.5988480183269018, -1.6881871203070409, -1.7733471178715416, -1.8514130934019848, -1.9192503718483935, -1.9736828828149438, -2.0117293757736787, -2.030870863131527, -2.0293071097701127, -2.0061608120871477, -1.9616006594534234, -1.8968639975826453, -1.81416900602444, -1.7165267753913234, -1.6074862562392715, -1.4908529170896465, -1.3704154541793057, -1.2497055659182796, -1.1318098009425999, -1.0192471158914045, -0.9139170236110452, -0.8171119403919003, -0.7295780316426614, -0.6516048889610921, -0.5831257641930574, -0.5238146161644184, -0.47317148124869246, -0.4305921684080143, -0.39542148689063006, -0.3669912115928753, -0.34464506463642364, -0.32775343458831596, -0.31572058798792724, -0.3079868976972697, -0.3040282152129212, -0.3033540221458688, -0.3055054751830373, -0.3100539706375163 ], [ -0.7836663290876125, -0.8237235482720682, -0.8691120050450751, -0.9201548010941794, -0.9770958935461527, -1.0400684314177004, -1.1090583709964141, -1.1838638349396855, -1.264051178415774, -1.3489093971346888, -1.4374054201685111, -1.5281440776242148, -1.6193382615487373, -1.7087971300770586, -1.793943034347735, -1.8718703882177565, -1.9394598680418578, -1.9935556601442879, -2.0311991255200086, -2.049891916486467, -2.047846776491514, -2.024186541044751, -1.979065444407337, -1.9136953475112228, -1.8302661175364658, -1.7317677836504648, -1.621743925313828, -1.5040141463016878, -1.3823988100109923, -1.2604722726917998, -1.1413664459739552, -1.0276411568844623, -0.9212278123419013, -0.8234401628983667, -0.7350357207824101, -0.6563071650637078, -0.5871846467449617, -0.5273347649285924, -0.47624752194844344, -0.4333072302278669, -0.39784663350656957, -0.3691855242864748, -0.34665620429229405, -0.32961855722576416, -0.31746751528099404, -0.3096354549170126, -0.30559165181679093, -0.3048404322988285, -0.306919142154233, -0.311396572407753 ], [ -0.7942544665664328, -0.8351470014315912, -0.8813684436948623, -0.9332279220808918, -0.9909537571782314, -1.0546621282396313, -1.124321176016553, -1.1997110181270165, -1.2803806434268559, -1.3656033140853219, -1.4543330031485224, -1.5451656326237277, -1.6363105879239797, -1.7255802764543255, -1.8104082449070535, -1.8879087692373486, -1.9549908167917935, -2.0085334774541246, -2.045615706135084, -2.0637734019023006, -2.061243018986265, -2.0371542841421117, -1.991648706121239, -1.9259083952689684, -1.8420844302943555, -1.7431300841606723, -1.6325645273683618, -1.514201260807017, -1.391872864968229, -1.2691793261974542, -1.1492844637074326, -1.0347796500008029, -0.9276229394519466, -0.8291477043401703, -0.7401238027125778, -0.6608498298029386, -0.5912567094690866, -0.5310079880672947, -0.47958794783251246, -0.4363734612776877, -0.40068886692661776, -0.37184518810989453, -0.34916607856848536, -0.3320032878579271, -0.3197444373433427, -0.3118156413024553, -0.30768109826236856, -0.30684128767554175, -0.3088308978982992, -0.3132171385384528 ], [ -0.8039615326303546, -0.8455576254274617, -0.8924646785287391, -0.9449768817702046, -1.0033060882694813, -1.0675508654469987, -1.137661150036458, -1.2133990002673407, -1.2942964231851306, -1.379611912046681, -1.4682882222440896, -1.5589151415202203, -1.6497026949729825, -1.738472452588682, -1.822677220732699, -1.899461580602707, -1.9657754655561004, -2.0185470426960985, -2.054907206427687, -2.0724390661249634, -2.069413127975611, -2.0449728999485997, -1.9992497180419246, -1.9333931014974968, -1.8495065506870307, -1.75049234874991, -1.6398270248468059, -1.5212976976649277, -1.3987289363197846, -1.2757281326704812, -1.1554763026203503, -1.040585988618147, -0.9330359181073048, -0.8341769658243627, -0.7447921827358501, -0.6651889294808528, -0.5953028980307749, -0.5347990599683323, -0.4831604788121744, -0.4397608284143706, -0.4039198736972942, -0.37494323465111057, -0.3521488206214207, -0.3348827261797749, -0.3225273706803302, -0.3145044029824735, -0.31027448413763437, -0.3093355768143249, -0.3112208706656925, -0.31549701021382504 ], [ -0.8127635834412983, -0.8549299473766305, -0.9023737933282925, -0.9553734377213502, -1.0141234675262756, -1.0787042300101608, -1.1490471065429655, -1.2248960855431044, -1.3057666321023866, -1.3909035065967545, -1.4792400744441268, -1.5693628646368702, -1.6594867830709592, -1.747448524028407, -1.8307281572164444, -1.9065107659996297, -1.9717994297093788, -2.0235848214854446, -2.0590632311546226, -2.0758771098792876, -2.072340807860074, -2.047618425564547, -2.001834218704544, -1.9361034756323534, -1.852474986186105, -1.7537874792813732, -1.643457816087137, -1.5252269237226077, -1.402890884344069, -1.280045541087536, -1.1598734825813435, -1.0449971883724074, -0.9374094125944745, -0.8384759594738413, -0.7489936598022542, -0.6692813754939304, -0.5992835486686874, -0.5386711034468386, -0.4869304708420681, -0.4434364692302182, -0.40750822835861467, -0.37844943416583954, -0.35557524958388065, -0.33822867465968875, -0.3257891010363987, -0.3176755570985015, -0.3133467367523677, -0.3122994300990578, -0.31406648655356495, -0.3182149901466378 ], [ -0.8206433281907599, -0.8632462043885452, -0.9110777875912808, -0.964399637142228, -1.0233883298733693, -1.088105444155787, -1.1584635212196703, -1.234188545931807, -1.3147799715761352, -1.3994699676902793, -1.487184456477524, -1.5765097030584712, -1.66566982500865, -1.7525226093596804, -1.8345832389845063, -1.9090870948603367, -1.9731018756587557, -2.023693207850605, -2.058135130678993, -2.0741405772371038, -2.070076840495174, -2.045135137412433, -1.999435986650596, -1.9340597337619978, -1.8509948577149022, -1.753005736010476, -1.6434340658962754, -1.5259557397976877, -1.4043182013254683, -1.282086597094927, -1.1624289642735577, -1.0479658770380684, -0.9406968866751371, -0.8419996679359092, -0.75268505210829, -0.6730858864090834, -0.6031591896996593, -0.5425862855897736, -0.49086153347880224, -0.44736525209847344, -0.41141991117127796, -0.38233078157327216, -0.3594133316867749, -0.3420100787039635, -0.32949960429109537, -0.3213001935380486, -0.316870162808365, -0.315706479955866, -0.3173428067157522, -0.3213476554916179 ], [ -0.8275900660520248, -0.8704962655189474, -0.9185674827873578, -0.9720477072899993, -1.0310948393960429, -1.095751225645539, -1.1659103783374298, -1.2412804536733755, -1.3213455464241841, -1.405326514087487, -1.4921439251812307, -1.5803869045576977, -1.6682931874680371, -1.7537475790043884, -1.8343079760956569, -1.9072693076802105, -1.9697744765510017, -2.01897533395334, -2.052234744387032, -2.0673461226952616, -2.062737959864171, -2.0376346299950954, -1.9921562531373778, -1.9273481814130844, -1.845134334374463, -1.748195711852439, -1.639785118315084, -1.5234959800896564, -1.4030078391442613, -1.281836365816139, -1.1631188741485732, -1.0494618684974162, -0.9428640056286445, -0.844711275742678, -0.7558282721704346, -0.6765639274535433, -0.6068913678461014, -0.546506552287976, -0.4949161914483844, -0.4515103804264373, -0.41561886739353815, -0.38655201994974586, -0.3636286743534054, -0.34619349535422206, -0.33362649185284154, -0.3253470976914019, -0.32081484822445705, -0.3195282369142032, -0.32102287865095036, -0.3248696834581697 ], [ -0.8335995600294677, -0.8766774784095996, -0.9248423383241553, -0.9783198370681727, -1.0372486324341157, -1.101651487383901, -1.1714028203430478, -1.246193271678238, -1.3254923828037724, -1.4085111393925316, -1.4941670040369117, -1.5810552130016944, -1.667431575430991, -1.7512137397464533, -1.8300095756868366, -1.9011821390691321, -1.9619590862877712, -2.0095884394034136, -2.041531542958336, -2.055671009612149, -2.050503783393663, -2.0252927771326927, -1.9801608433249593, -1.9161187242403857, -1.8350226864189705, -1.7394630303809184, -1.632591852095166, -1.5179044587245163, -1.39899462971821, -1.2793106892727877, -1.161943467618602, -1.0494732224191785, -0.943889711867022, -0.8465832085540093, -0.7583913008515455, -0.679680607636409, -0.6104434679207673, -0.5503943762859829, -0.49905656973696844, -0.4558340240739216, -0.42006759357959256, -0.39107618882876727, -0.3681850419324497, -0.3507435802150882, -0.3381354710668423, -0.3297831854382136, -0.32514906794296494, -0.32373447394692834, -0.32507809456182857, -0.3287541831934748 ], [ -0.8386738499221207, -0.881794442864364, -0.9299101793907216, -0.983227851751844, -1.0418664303415253, -1.1058288772493972, -1.1749706007274865, -1.2489652010062333, -1.3272686457891028, -1.409083667162831, -1.4933270332678026, -1.5786034597436305, -1.6631913008636476, -1.745046711044259, -1.821834360742371, -1.8909932338173592, -1.9498441440092507, -1.995739798922307, -2.0262481481084906, -2.039348305813286, -2.033611776525209, -2.0083445887376015, -1.963675103880811, -1.9005800954654428, -1.8208460503731116, -1.7269668423351139, -1.6219840198656346, -1.509281166898739, -1.3923502692007657, -1.2745558265189205, -1.1589272665652466, -1.0480067228580454, -0.9437669107901323, -0.8475979238841507, -0.760349012140235, -0.6824054943483309, -0.6137814928662071, -0.554213491725293, -0.5032450799818773, -0.4602979594684502, -0.4247277353184644, -0.39586518393011816, -0.37304488137595637, -0.3556235822194598, -0.34299081127268005, -0.3345739418398792, -0.32983969790981016, -0.32829361191936024, -0.32947855020558725, -0.3329730279190144 ] ], "zauto": true, "zmax": 2.0758771098792876, "zmin": -2.0758771098792876 }, { "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.5837204022945397, 0.5758946016182853, 0.5681294413600889, 0.5605973739898211, 0.5534860933140703, 0.5469937513185316, 0.5413224752765977, 0.5366694724976765, 0.5332151472994244, 0.5311083238165912, 0.5304498530271043, 0.5312772254680032, 0.5335536724525881, 0.5371650015279539, 0.5419258981459053, 0.54759511101591, 0.5538967448911871, 0.560543657640075, 0.5672590220749811, 0.5737931990435431, 0.5799345907876488, 0.5855145495427413, 0.5904073891501846, 0.594527020697822, 0.5978217981787333, 0.6002689616780416, 0.6018697343489249, 0.6026457554429271, 0.6026371644962982, 0.6019023124298784, 0.6005187702432969, 0.59858503933185, 0.5962221505349937, 0.5935741966950334, 0.5908068163719222, 0.5881027859450214, 0.5856542302741504, 0.5836515415375298, 0.58226984571118, 0.5816546261763115, 0.5819086732020382, 0.5830826361179078, 0.5851709764509545, 0.5881141232927148, 0.5918063969767788, 0.5961081773126337, 0.6008601637657321, 0.6058975251745639, 0.6110621694840686, 0.6162120538961589 ], [ 0.5793061802229222, 0.5709174853074106, 0.5625694900659067, 0.5544459418224255, 0.5467484857933125, 0.5396919544109774, 0.5334977251413575, 0.5283842189722662, 0.5245537379379536, 0.5221756252804709, 0.5213671831565342, 0.5221754719899376, 0.5245642325339583, 0.5284099132692647, 0.5335089104540689, 0.539595253895951, 0.5463652935669252, 0.5535045279288013, 0.5607119215230943, 0.5677184824262063, 0.5742987403275336, 0.5802754091572304, 0.5855185889873212, 0.5899413269572297, 0.5934933584809094, 0.5961545739220931, 0.5979293560135494, 0.59884250756296, 0.5989370861532185, 0.5982740991004805, 0.5969336893993653, 0.5950171621225042, 0.5926489700484915, 0.589977622147233, 0.587174442171204, 0.5844292437878494, 0.5819423573606655, 0.5799130615186607, 0.5785252852730967, 0.5779322937333522, 0.5782426985823022, 0.5795102728824256, 0.581729540848141, 0.5848380268723521, 0.5887246950041003, 0.5932429189169894, 0.5982256445401097, 0.6035003698742597, 0.6089020551097758, 0.6142828358858101 ], [ 0.5749116605748186, 0.5659494926047055, 0.5570044383184104, 0.5482712858703581, 0.5399656194062225, 0.5323192923155653, 0.5255737321217935, 0.5199698920552553, 0.5157337647735452, 0.5130572836463102, 0.5120762009917816, 0.5128486447616029, 0.5153394963527623, 0.5194154594141773, 0.5248533748309647, 0.5313607787347739, 0.5386044438171466, 0.5462410305881452, 0.5539443860778751, 0.5614258708957603, 0.5684463727804822, 0.5748205650905578, 0.5804151279252336, 0.5851430849957375, 0.5889563272239908, 0.5918380268666278, 0.5937961707145571, 0.5948589615958518, 0.5950723996416845, 0.5944999689320097, 0.5932240169142609, 0.591348119601699, 0.5889994822294566, 0.586330257855026, 0.5835166210412668, 0.5807545721397755, 0.5782518308903611, 0.5762158328863057, 0.5748387161261929, 0.5742811086381747, 0.5746572257941338, 0.5760239566347654, 0.5783760815640256, 0.5816485900525761, 0.5857255973920864, 0.5904540682704625, 0.5956598292876963, 0.601163327901745, 0.6067931394386262, 0.6123960518672796 ], [ 0.5705738917979835, 0.5610323311898323, 0.5514806020219423, 0.5421240926090563, 0.533192102829862, 0.524933628326116, 0.5176107425060266, 0.5114880897266489, 0.5068170577272073, 0.5038142365231405, 0.5026358959881817, 0.5033528375933614, 0.5059318248649777, 0.5102295229415036, 0.5160020343425964, 0.5229287301570291, 0.5306451332261556, 0.5387777896237788, 0.5469747564545379, 0.5549276938847983, 0.5623842958984188, 0.5691519670089588, 0.5750948837868958, 0.580126960029208, 0.5842030467849553, 0.587310226970896, 0.5894605081975817, 0.5906856838480383, 0.591034661360495, 0.590573150623218, 0.5893852534551006, 0.5875761892018574, 0.5852751367641419, 0.5826369951540296, 0.5798418110255079, 0.5770907591733594, 0.5745979586262646, 0.5725780963365713, 0.5712307622257067, 0.570723396928701, 0.5711755195787614, 0.5726471070281061, 0.575133434052471, 0.5785674273694286, 0.5828290047151775, 0.5877594825320662, 0.5931783644833396, 0.5988998114098953, 0.6047466909813961, 0.6105609982311287 ], [ 0.5663322814613346, 0.5562107169635011, 0.5460480590311492, 0.5360596592713409, 0.5264880768399552, 0.5175993129691885, 0.5096764224494126, 0.5030086685477486, 0.4978743711078257, 0.49451676438065334, 0.4931147153474243, 0.4937533861254997, 0.4964022812025359, 0.500907866220344, 0.5070044738810652, 0.5143418283067659, 0.522522770421713, 0.5311427390535071, 0.5398236281963317, 0.5482376248940664, 0.5561199109146623, 0.5632715652856954, 0.5695552857419236, 0.574886841868225, 0.5792248570680912, 0.5825609285687451, 0.5849114537256274, 0.5863119437284368, 0.5868141038747204, 0.58648553593708, 0.5854115545683689, 0.5836982937115638, 0.5814760141489121, 0.5789013352982686, 0.5761570534820688, 0.5734483460481651, 0.5709945699141515, 0.5690165843802395, 0.5677205136909272, 0.567279931608139, 0.5678192814269316, 0.5694015822607402, 0.572022889584171, 0.5756146452779914, 0.5800533667786393, 0.5851756471993711, 0.5907956242148005, 0.5967220758821616, 0.6027729485067113, 0.6087860738380398 ], [ 0.5622279773553743, 0.5515316966401478, 0.5407599287764069, 0.530137153462036, 0.5199184836423679, 0.5103864970168495, 0.5018452480028812, 0.49460923652724564, 0.4889849902906633, 0.48524420209432517, 0.4835903515510682, 0.48412468877227804, 0.48682043967231803, 0.4915138917120639, 0.49791681361687645, 0.5056480958986538, 0.5142768128700044, 0.5233666778180494, 0.5325134117518522, 0.5413702707423794, 0.5496608478947397, 0.5571810016399308, 0.563793062526873, 0.5694156476195011, 0.5740119457436695, 0.577578622138872, 0.5801367632228382, 0.581725643521565, 0.5823995673117774, 0.5822275991652739, 0.5812956243511703, 0.579709855372955, 0.5776006271345716, 0.575125126761325, 0.572467637463912, 0.569836013549107, 0.5674535248805922, 0.5655459593354395, 0.5643249059301317, 0.5639692706584155, 0.5646079680862085, 0.5663070012823646, 0.5690635434409952, 0.5728082354265163, 0.5774151352464237, 0.5827171968099748, 0.5885243022530341, 0.5946408822298864, 0.6008808483397837, 0.6070785654494077 ], [ 0.5583031072513173, 0.5470437917346687, 0.5356714309874226, 0.5244186059911256, 0.513552022425648, 0.5033700860390187, 0.4941974982944718, 0.4863742207227322, 0.48023589699424823, 0.47608420547519514, 0.474149092177131, 0.4745496058684584, 0.4772637958901829, 0.4821180333552203, 0.48880106945254703, 0.4969001948804368, 0.5059501013566859, 0.5154826299672716, 0.5250677447133028, 0.5343406555358338, 0.5430145324660022, 0.5508812614006786, 0.5578039763999411, 0.5637051288244261, 0.5685532171221286, 0.5723504517916614, 0.5751228153697872, 0.5769132906167894, 0.5777784769471455, 0.5777883650678498, 0.5770286586537619, 0.5756046994859376, 0.5736457706863831, 0.571308349207204, 0.5687768082098753, 0.5662602097667306, 0.5639842613770292, 0.5621782859046314, 0.5610581307187635, 0.5608071252552128, 0.5615581395961583, 0.5633800959014775, 0.5662716741580236, 0.5701635004496918, 0.5749282500842356, 0.5803964701548684, 0.58637503847013, 0.5926651921377225, 0.5990777829593651, 0.6054444618445902 ], [ 0.5545998873348996, 0.5427959712041763, 0.5308387256035377, 0.5189676308063613, 0.5074597733950479, 0.496628303855478, 0.4868178019547578, 0.47839344182628385, 0.47172040945382204, 0.4671314775819177, 0.46488463168536953, 0.46511833878936265, 0.4678166886663899, 0.4727967033660519, 0.47972412240846213, 0.48815443248615875, 0.49758792727981477, 0.5075249996500295, 0.5175107556359635, 0.5271636053354389, 0.5361876937522092, 0.5443722991219728, 0.5515825552121953, 0.557745695377056, 0.5628361916519521, 0.566862173537119, 0.5698546118718203, 0.5718600232478135, 0.5729368781115669, 0.5731554368074612, 0.5726003500996453, 0.5713750210253951, 0.5696064357041659, 0.5674489616666457, 0.5650855401026932, 0.5627248424146322, 0.5605934067124229, 0.5589225687292406, 0.5579311125152961, 0.5578057935394165, 0.5586828731695196, 0.560634128819137, 0.5636601883093271, 0.5676925441902452, 0.5726036883735512, 0.5782231247772126, 0.5843561004889541, 0.590801913805285, 0.5973694046386625, 0.6038883074018069 ], [ 0.5511596193923699, 0.5388364727238613, 0.5263175514914096, 0.5138478841064725, 0.5017134928364306, 0.4902408535441262, 0.4797932076961399, 0.4707601467506982, 0.4635362293466716, 0.4584858716977192, 0.4558962542767838, 0.45592669913483436, 0.4585686531297862, 0.46363072967349483, 0.4707562511060147, 0.47946940975129215, 0.48923682213494074, 0.49952852261414743, 0.5098661892715054, 0.519853047879759, 0.5291858297503412, 0.5376526539859791, 0.5451218383242321, 0.5515262708701049, 0.55684694956272, 0.5610981668582521, 0.5643158376449187, 0.5665497009692712, 0.567859539427288, 0.5683150950120508, 0.567998966596542, 0.5670114269811238, 0.565475800829284, 0.5635428314983608, 0.5613923935520967, 0.5592310586379161, 0.5572844807121496, 0.5557843850870476, 0.5549510833318775, 0.5549736955186958, 0.5559912795233891, 0.558078413832596, 0.5612381653682539, 0.5654038580387007, 0.5704491035638698, 0.5762038348062152, 0.5824731405541737, 0.58905571424416, 0.5957594868632595, 0.6024131049399631 ], [ 0.5480216076425303, 0.5352115068820495, 0.5221616999634429, 0.509121297505511, 0.4963836088881403, 0.48428669544208053, 0.4732107830196316, 0.4635684837301717, 0.4557828594195904, 0.4502498173622595, 0.4472863237248776, 0.4470737029316404, 0.44961214856759285, 0.4547032429074334, 0.4619692046887515, 0.47090430733825717, 0.48094307792459, 0.49152703211652776, 0.502156415841738, 0.512421251318421, 0.5220126532714761, 0.530719076176939, 0.5384131552503078, 0.5450341960264328, 0.5505701333726828, 0.555041512726646, 0.558488992828391, 0.5609650708879466, 0.5625301348281702, 0.5632524782117899, 0.5632115137899831, 0.5625030655836968, 0.5612453148171114, 0.5595837586053504, 0.5576934729458025, 0.5557771327075095, 0.5540577140967373, 0.5527656403129191, 0.5521212868748921, 0.5523150420543887, 0.5534881556164356, 0.5557179717630484, 0.5590105344466726, 0.5633020323463201, 0.5684685805381225, 0.5743420935887822, 0.5807290451941097, 0.587428912084745, 0.5942498543003399, 0.6010202759170755 ], [ 0.5452220367211141, 0.5319638932871934, 0.5184213789392651, 0.5048461460912136, 0.4915369804738214, 0.47884150122129177, 0.46715479071795457, 0.45691045442594247, 0.4485584076329353, 0.44252506725099955, 0.4391570653776198, 0.4386584712757844, 0.44103964786484573, 0.44609701188260437, 0.45343382945589394, 0.4625168344826392, 0.4727510325898544, 0.48355207684004314, 0.4944013614949205, 0.5048780360985373, 0.5146695483963405, 0.5235661897863743, 0.5314459585805045, 0.5382551983841706, 0.5439890247080493, 0.548674151373755, 0.5523556082838734, 0.5550880200394132, 0.5569315138170597, 0.5579518534966544, 0.5582239900822442, 0.5578378512927509, 0.5569048791911122, 0.5555636061323264, 0.5539824990909328, 0.5523584778150901, 0.5509100015621788, 0.549864468522489, 0.5494408373421956, 0.5498296653177687, 0.551173802043026, 0.5535533499514421, 0.5569779091419204, 0.561387616561636, 0.5666625269505814, 0.5726381381419868, 0.5791238913286325, 0.5859214614712389, 0.5928403892374502, 0.5997096837053717 ], [ 0.5427928615159604, 0.5291316910500975, 0.5151415428114317, 0.5010750388311053, 0.48723451744465707, 0.47397488885552475, 0.46170354893661913, 0.45087244283213307, 0.44195586557662725, 0.43540883774553496, 0.43160670005646024, 0.43077648979505556, 0.43294014053720964, 0.4378912840787334, 0.4452173112578644, 0.4543609062470943, 0.4647011847223748, 0.47563145030645065, 0.48661741215741283, 0.4972300039914444, 0.5071550734876143, 0.5161862213463599, 0.5242077346015541, 0.5311734472143524, 0.5370857110128692, 0.5419771327958607, 0.5458965555311212, 0.5488999232344124, 0.5510460679588661, 0.552396984342774, 0.5530217404353964, 0.5530027914540591, 0.5524431373031816, 0.5514725446074705, 0.5502510045902664, 0.548967792457333, 0.5478350024615913, 0.5470752940155428, 0.5469047504358507, 0.5475130298122668, 0.5490440248164651, 0.5515806246840719, 0.555136598545819, 0.5596571441129823, 0.5650277143925724, 0.5710890063729482, 0.57765501726148, 0.5845310332395396, 0.5915291187922971, 0.5984797227245738 ], [ 0.5407607659784892, 0.5267468963966392, 0.5123602789596367, 0.4978529424207047, 0.4835287938425795, 0.4697475897666526, 0.45692614128187964, 0.44553149584690843, 0.43605903620884934, 0.4289895112291627, 0.4247250869251611, 0.42351537291921254, 0.42539518624899475, 0.430158260353334, 0.43738015454586154, 0.4464841591693863, 0.45682823410932044, 0.4677877131648049, 0.478816356957284, 0.4894798365812855, 0.49946455137598, 0.5085688252865088, 0.5166840158033309, 0.5237717125784376, 0.5298413571577822, 0.5349309720628156, 0.5390924608714417, 0.5423820941814621, 0.5448561997056778, 0.5465716001864119, 0.5475899122552669, 0.5479844169743332, 0.5478478716507624, 0.5472994114170685, 0.5464886546365424, 0.5455953449738232, 0.5448233940572301, 0.5443890598219873, 0.5445041543725091, 0.5453564326494709, 0.5470903305600424, 0.5497915952733977, 0.5534788022897471, 0.5581033286539829, 0.5635574745325215, 0.5696887307129525, 0.5763172108181921, 0.5832531944574264, 0.5903123830346255, 0.5973274728812273 ], [ 0.5391462504256286, 0.5248342853127931, 0.5101073514560709, 0.49521536607346467, 0.48046181242411307, 0.466208738907899, 0.45287919932581816, 0.44095160439343867, 0.43093837726033696, 0.42334217241213146, 0.4185891423696987, 0.41695038601167345, 0.4184747521046405, 0.42295941357817796, 0.42997308135662177, 0.43892546041863156, 0.4491591749250597, 0.46003680862197216, 0.47100444822773807, 0.48162572106695006, 0.4915897896087433, 0.5007010380124838, 0.5088585188621729, 0.5160316463380544, 0.5222365956073772, 0.5275161199804773, 0.5319242317391764, 0.5355163457168802, 0.5383448973108179, 0.5404599695178625, 0.5419140132831995, 0.542769315340195, 0.543106506535554, 0.5430321818915159, 0.54268368914072, 0.5422293921688475, 0.5418632735384611, 0.5417936199498324, 0.5422266777709808, 0.5433473901343299, 0.5453003121505423, 0.5481741666561457, 0.551992986189805, 0.5567154278976096, 0.5622420461485178, 0.5684286638605552, 0.575103010214002, 0.5820816819211709, 0.5891850797355905, 0.5962489152442899 ], [ 0.5379629042392435, 0.5234104775081374, 0.5084030031780062, 0.4931868397643578, 0.4780630908999224, 0.4633935019949104, 0.44960401866338706, 0.43718029157558846, 0.42664710401711536, 0.4185243450702028, 0.41325840532406183, 0.41114008105206934, 0.41223315914709907, 0.41634193592036645, 0.42303408908786705, 0.431712603056376, 0.44171159128849274, 0.45238688370367064, 0.46318166067651056, 0.47366096272703184, 0.4835189729445994, 0.49256739055849175, 0.5007134295611679, 0.5079342007295221, 0.5142520466412801, 0.5197135575036317, 0.5243737010863082, 0.5282856625319837, 0.5314964168151382, 0.5340475750511745, 0.5359805676738558, 0.5373447599508846, 0.5382067081046231, 0.5386585424517555, 0.5388234753737825, 0.5388567201772253, 0.5389406961049087, 0.5392742818655145, 0.5400570002595911, 0.5414701959437084, 0.5436582097526895, 0.5467129053949243, 0.5506644236633547, 0.5554797608238475, 0.5610690597258008, 0.5672979243850389, 0.5740031065869263, 0.581008759757605, 0.5881409770817279, 0.5952392014204579 ], [ 0.5372169128646841, 0.5224832887402295, 0.5072571076102649, 0.4917798090179786, 0.47634823358202266, 0.4613212532822191, 0.44712427911015556, 0.43424583850922077, 0.4232179370397157, 0.414572354498145, 0.40877119008471857, 0.4061224747386482, 0.4067055295552047, 0.41033565159223623, 0.41658594173991415, 0.4248604010850022, 0.4344923148350142, 0.44483743167122436, 0.45534123080717853, 0.46557383993384455, 0.4752367661646758, 0.4841502056993701, 0.4922298523872181, 0.49946019680319453, 0.50586897714466, 0.511505519504393, 0.516424392828576, 0.5206749868573968, 0.524297068865046, 0.5273218859073118, 0.5297778623628728, 0.5316994251638033, 0.533137068702703, 0.5341665505364119, 0.534895153844247, 0.5354632884188153, 0.5360403281367072, 0.5368144764739907, 0.5379775414981134, 0.5397066253907491, 0.5421456211055878, 0.5453897430247426, 0.549475877682163, 0.554380354509301, 0.5600241378412679, 0.5662839426744156, 0.5730068310410587, 0.5800256462880011, 0.5871730816738671, 0.5942929659132922 ], [ 0.5369068349282157, 0.5220514218732658, 0.5066687409317334, 0.49099404455298495, 0.47531812388453126, 0.45999448728558967, 0.44544461097308224, 0.4321554554277609, 0.42066086732710717, 0.41149874045990437, 0.4051417785095581, 0.40191221507674807, 0.40190514284071177, 0.4049507430102715, 0.41063437270330005, 0.4183693946261996, 0.42749659628942305, 0.43737886137682014, 0.4474695480089475, 0.45734774877795153, 0.4667246576756324, 0.47543009907516687, 0.48338843731988584, 0.49059105067131725, 0.4970701027250487, 0.5028763500697737, 0.5080624080321551, 0.512672114097173, 0.5167361043995276, 0.5202732177035818, 0.5232967714517017, 0.5258241717627264, 0.5278878574697856, 0.5295453606929872, 0.5308863543644369, 0.5320349511629101, 0.5331461874864041, 0.5343965251697157, 0.5359692559631462, 0.5380367514475025, 0.5407423258988794, 0.5441847917785413, 0.5484083895480919, 0.5533996890319403, 0.55909158261813, 0.5653730817112704, 0.5721027039859466, 0.5791229911392223, 0.5862740457601558, 0.5934046680740317 ], [ 0.5370236682235332, 0.5221045243490241, 0.5066262152242899, 0.4908166267898089, 0.47495882499975073, 0.4593985893280964, 0.44455018115775796, 0.43089463050500254, 0.4189622338729906, 0.40929107091846995, 0.4023590364872343, 0.39849912477883087, 0.3978220600512172, 0.40017659560584407, 0.40516723976658614, 0.41222534310845177, 0.4207079156043836, 0.4299925769225707, 0.4395464509194843, 0.4489616704840592, 0.4579615636614931, 0.4663866955900001, 0.47417018982226705, 0.4813096602448535, 0.48784053343111117, 0.49381348742079206, 0.499277427537013, 0.50426869131098, 0.5088066889304189, 0.5128956669046326, 0.5165316416448518, 0.5197128828104787, 0.5224518143869556, 0.5247859915098593, 0.5267859545106919, 0.5285582263202643, 0.530242437751088, 0.5320024680089283, 0.5340124949841956, 0.5364398320819168, 0.5394271828569444, 0.5430772315895049, 0.5474421349102987, 0.5525195034651728, 0.5582551166367814, 0.5645513028689038, 0.5712790208916264, 0.5782913805273924, 0.5854365951540773, 0.5925689482558503 ], [ 0.5375512039988777, 0.5226236134841458, 0.5071075782215776, 0.491222517969213, 0.4752422139579582, 0.45950250987942515, 0.4444073731238116, 0.4304277693052124, 0.418085272655706, 0.4079123617088018, 0.40038669490619627, 0.3958483751224902, 0.3944232570422858, 0.3959819683378465, 0.40015479450375696, 0.406399623584859, 0.41409850945721605, 0.4226516172089036, 0.4315459580522985, 0.4403909769291708, 0.44892469948338887, 0.456999562639899, 0.4645574626029443, 0.47160144915424296, 0.47816885820360217, 0.48430857177493924, 0.49006382198858317, 0.49546130657663645, 0.5005069500913544, 0.5051881006488302, 0.5094812167172286, 0.5133633250676718, 0.5168249606109564, 0.519882104165614, 0.5225848491915188, 0.5250210778809783, 0.5273142003424003, 0.5296149140639805, 0.5320878945185503, 0.5348952254427609, 0.5381790551242862, 0.5420462242809998, 0.5465573045446825, 0.5517216232191944, 0.5574986411250227, 0.563804844595, 0.570524446524482, 0.577521846874392, 0.5846539578159393, 0.591780981592177 ], [ 0.5384666495320588, 0.5235818442961951, 0.5080815484726307, 0.49217568493968905, 0.47612730735384534, 0.4602602988873, 0.4449655197295547, 0.43070009401431336, 0.4179721248608271, 0.4073031155999811, 0.3991653358627799, 0.39390235216035957, 0.3916543374944059, 0.3923165559688027, 0.3955511182908631, 0.40085056951433534, 0.4076306360618445, 0.4153218635539802, 0.4234374328417738, 0.43160856944826836, 0.43959071076907164, 0.44724935132119714, 0.45453511976125316, 0.46145555804181976, 0.46804835741367884, 0.4743586639249065, 0.4804218546121909, 0.4862526514194678, 0.4918410771470383, 0.4971551773694695, 0.5021495734934394, 0.5067780063556369, 0.5110073940215925, 0.5148307603996933, 0.5182766979417512, 0.5214136770544789, 0.5243483473797771, 0.5272178746473924, 0.530177247072559, 0.5333832895282626, 0.5369777197285053, 0.5410718110262589, 0.5457349675009774, 0.5509887689412223, 0.5568069750648195, 0.5631208815478093, 0.5698285893541966, 0.5768063585201344, 0.5839202727017043, 0.5910368125008545 ], [ 0.5397414815621535, 0.524945570616306, 0.5095088219211423, 0.49363069064638493, 0.4775621756764258, 0.46161337359150634, 0.44615953858394364, 0.43164063118981666, 0.41854711984367304, 0.40738479515140646, 0.3986159113817566, 0.3925840667045783, 0.3894427061087303, 0.38911385074638133, 0.39129665428342936, 0.39552569515267116, 0.40125853370765713, 0.40796377992825306, 0.4151871536217434, 0.42258632589003686, 0.4299370425197256, 0.43711912648016754, 0.4440918558989119, 0.45086616656476386, 0.4574783264220462, 0.46396755581944704, 0.470358955267285, 0.4766527313944787, 0.482820443993402, 0.4888083667188114, 0.4945470358211101, 0.4999649944379777, 0.5050040355142984, 0.5096331257540984, 0.5138586159216741, 0.5177291076453663, 0.5213342398136054, 0.5247975421804075, 0.5282643187845448, 0.5318862259149162, 0.5358047199737545, 0.540135752175526, 0.5449578770055071, 0.5503053096134923, 0.5561665408656679, 0.562488133349814, 0.5691825290556823, 0.5761382662314015, 0.5832309592004651, 0.5903336535798536 ], [ 0.5413424795687556, 0.5266756317826115, 0.5113436607627717, 0.495534638091917, 0.47948629652054753, 0.46349333010775684, 0.4479132350237061, 0.43316600652627885, 0.41972101003298606, 0.4080643796516926, 0.3986444406867533, 0.39180177558793766, 0.38770191192981474, 0.38629506645923367, 0.38732165118680323, 0.3903646671633882, 0.39493097080443607, 0.4005346104549286, 0.4067602322846572, 0.41329681280558567, 0.4199435119477446, 0.4265958570783093, 0.43322164508574584, 0.4398339223792823, 0.4464654859311939, 0.45314714676135026, 0.459891036034092, 0.4666800912239903, 0.47346471858487776, 0.4801669294387968, 0.48669102650817386, 0.49293865827749933, 0.49882528882581895, 0.5042950830961912, 0.5093317754361202, 0.513963983423401, 0.5182643785224255, 0.5223429816882982, 0.5263355775357939, 0.5303888323831507, 0.5346441250334601, 0.5392222738619175, 0.5442111844872362, 0.5496579269603237, 0.555565966123512, 0.5618973953691997, 0.5685792726917623, 0.5755126853628454, 0.5825830292194714, 0.5896701339668958 ], [ 0.5432328793477434, 0.5287287859761105, 0.513535660623435, 0.49782933088517084, 0.4818331707432522, 0.46582507397830347, 0.4501429909620477, 0.4351847032752931, 0.4213957554662215, 0.40923955864960876, 0.39914741920319524, 0.39145436151677004, 0.386336754921123, 0.3837737844135535, 0.38355025069136744, 0.38530282172901037, 0.38859424011439125, 0.3929909279815202, 0.3981228046903203, 0.403715205675312, 0.40959404082935263, 0.4156720305457525, 0.42192528752471165, 0.4283674461260622, 0.4350254468171496, 0.441918849648137, 0.44904380842301167, 0.4563630102840739, 0.4638029114890013, 0.47125880887228916, 0.47860681029407537, 0.48572028810894285, 0.49248757480313243, 0.49882772185129487, 0.5047018871132544, 0.5101189490738364, 0.515134941117899, 0.5198467077822461, 0.5243808044822481, 0.5288791362080214, 0.5334831680839816, 0.5383186927389125, 0.5434830336546185, 0.5490361642584202, 0.5549965762709612, 0.5613419684896812, 0.5680141190004149, 0.5749267957188235, 0.5819753266111285, 0.589046484403273 ], [ 0.5453735842615959, 0.5310592078233486, 0.5160315883428888, 0.5004535104530216, 0.4845330212810444, 0.4685300400310609, 0.45276155190682577, 0.4376014326694966, 0.4234694429098472, 0.41080409468734863, 0.40001744316648885, 0.3914369799912967, 0.38524870359678204, 0.3814609344452894, 0.3799049082835595, 0.38027499094407125, 0.3821954239263838, 0.38529140926830036, 0.3892444035052072, 0.3938213515824406, 0.3988784967720538, 0.4043473490748831, 0.41021201557120013, 0.41648487394160194, 0.42318418784125855, 0.43031498057087336, 0.4378540498517228, 0.44574061142065013, 0.45387430433424186, 0.4621213759546585, 0.47032807399478743, 0.4783385470752362, 0.48601370038361774, 0.4932476702784559, 0.49997953373623727, 0.5061990415886171, 0.5119461834938628, 0.5173051270434192, 0.5223935689935097, 0.527348887806349, 0.5323127423442812, 0.5374158980819598, 0.542765014053678, 0.5484328395795384, 0.5544527591630874, 0.5608179703117453, 0.5674849149379793, 0.574380045182264, 0.5814086820138116, 0.5884646490586904 ], [ 0.5477243736366341, 0.5336199716764536, 0.5187771889527047, 0.5033450399108721, 0.48751540925572784, 0.4715292933413262, 0.4556816538412596, 0.44032130263248415, 0.42584096982104297, 0.4126529367871257, 0.40114860020289034, 0.39164651926823496, 0.3843411958508884, 0.37926973524345464, 0.37631083855964365, 0.37521939852553104, 0.37568575175402136, 0.3773997078315862, 0.3801004209036637, 0.3836019063591407, 0.3877945904222034, 0.39263046245272104, 0.3981011154988015, 0.4042153911290882, 0.41097949382026283, 0.41838007164801266, 0.42637075199240393, 0.43486381099565025, 0.44372918554711127, 0.4528019593222813, 0.4618972837175221, 0.47082970491520854, 0.47943302370887675, 0.48757724184417234, 0.4951803351830296, 0.502213895529535, 0.508702692432072, 0.5147188334766052, 0.5203715550679279, 0.5257939027125219, 0.5311277427110384, 0.5365086786737512, 0.5420524614001057, 0.5478443108642113, 0.5539321893921516, 0.5603245162799055, 0.5669921939561866, 0.5738742477912037, 0.5808859751218491, 0.5879283175038665 ], [ 0.5502450541468671, 0.5363644515533298, 0.5217188745338148, 0.5064429249451196, 0.4907116308057376, 0.4747463429042014, 0.45881928502744024, 0.44325353971369436, 0.4284142070040656, 0.41468676099268553, 0.4024412744916702, 0.3919865110709309, 0.3835244714280386, 0.3771202746339824, 0.37270021345234294, 0.3700814074735477, 0.3690238853331279, 0.36928730350990296, 0.3706745739221209, 0.37305248183214296, 0.3763497773346963, 0.3805406911276801, 0.3856235170402361, 0.3916007021356748, 0.39846228915249826, 0.406172030922718, 0.41465606592357585, 0.4237960211025823, 0.4334293067957193, 0.44335808275395533, 0.45336575469150747, 0.46323760442399475, 0.47278138051021007, 0.4818443727078461, 0.49032493010422507, 0.4981777833130373, 0.5054134834986014, 0.5120927527024183, 0.5183167353492896, 0.524214247950496, 0.5299272487603275, 0.5355958898649009, 0.541344599714817, 0.5472705875922708, 0.5534359070010242, 0.5598637655231364, 0.5665391911411821, 0.5734135719276691, 0.5804121007235497, 0.587442873909386 ], [ 0.5528965094179534, 0.5392475821647406, 0.5248052266211753, 0.50968908850015, 0.4940567943546516, 0.4781095484796871, 0.4620964419857721, 0.4463146007415372, 0.43110145281513085, 0.41681572750316004, 0.40380613534985116, 0.392371246646386, 0.3827196875260328, 0.37494349261122273, 0.3690159014079698, 0.36481694256625913, 0.362178991959864, 0.3609362253027339, 0.360961297549491, 0.36217974758597626, 0.36456311870512, 0.36810969466907684, 0.37282329917621015, 0.3786963727240578, 0.3856977868932415, 0.3937630545735362, 0.40278593930815476, 0.4126134972496963, 0.42304796068462464, 0.4338573254612646, 0.4447933686193584, 0.4556133155593923, 0.46610074410698765, 0.47608233598030625, 0.485438768932331, 0.4941094903540358, 0.5020919467002554, 0.5094361384008986, 0.5162353964660309, 0.5226142763437173, 0.5287145523059187, 0.5346804635617788, 0.5406445275323235, 0.5467152908375821, 0.5529682519555523, 0.5594408324467719, 0.56613173606534, 0.5730044194163119, 0.5799938393580931, 0.587015264438728 ], [ 0.5556416141513575, 0.5422269407732264, 0.5279882647766762, 0.5130298443770809, 0.49749151577405054, 0.48155405056275175, 0.4654433024058793, 0.4494305898492251, 0.4338260867384538, 0.4189623523469308, 0.40516719435629694, 0.39272896845716415, 0.38186217465970035, 0.372684417936979, 0.3652146027154041, 0.35939545826329267, 0.3551334998686008, 0.35234156677545214, 0.3509680073856364, 0.35100344432749064, 0.3524670638295539, 0.3553830443700986, 0.3597590577771959, 0.3655729701513986, 0.37276635706933264, 0.38124017640543084, 0.3908503207382977, 0.40140520898905796, 0.4126695714604293, 0.42437671970799873, 0.436247878968033, 0.4480144418488312, 0.4594386030143412, 0.47032923011620503, 0.4805517235276259, 0.4900320342956233, 0.49875565055452553, 0.5067624318196332, 0.5141380261811116, 0.5210025188232874, 0.5274970391571302, 0.5337692703614566, 0.5399590569300071, 0.5461854699155045, 0.5525366619924487, 0.5590635710833579, 0.5657780297682045, 0.5726552013970273, 0.5796396379462743, 0.5866537877153473 ], [ 0.5584459905555534, 0.545263625054186, 0.5312244544155879, 0.5164170416605388, 0.5009632035362173, 0.48502319746255185, 0.46879979260495347, 0.4525389631752109, 0.4365244085917384, 0.4210634802546654, 0.4064639116086438, 0.3930041044326031, 0.38090378076208986, 0.37030458767353913, 0.3612692984868093, 0.3538023684423178, 0.347885461782235, 0.34351373678228586, 0.3407171919409344, 0.33955828070873095, 0.34010912807116617, 0.3424216640185683, 0.3465050783717895, 0.3523169165100962, 0.3597640006014742, 0.36870531974180865, 0.3789527893687486, 0.39027210133629325, 0.40238869035951846, 0.41500160887090926, 0.4278037592276625, 0.44050406092370176, 0.4528470570339772, 0.4646272536467268, 0.47569753094757167, 0.4859722472170688, 0.4954260229208019, 0.5040890015299642, 0.5120390784644424, 0.5193914501062353, 0.5262859399992658, 0.5328728484464358, 0.5392984196649151, 0.5456912894656595, 0.5521513470826962, 0.5587422446878249, 0.5654883174768651, 0.5723760216249089, 0.5793593100450622, 0.5863678169934653 ], [ 0.5612785957662821, 0.5483229163145279, 0.5344754451882691, 0.5198088749492558, 0.5044269346898856, 0.48846947866544566, 0.4721165693861681, 0.45558955309687627, 0.43914670631488356, 0.42307140843412677, 0.40765239945013243, 0.3931585813077594, 0.37981431883082434, 0.3677836393189451, 0.3571709802134968, 0.34804089159141727, 0.34045047941985285, 0.3344804080218193, 0.33024831104859215, 0.3278957000113839, 0.32755345176624073, 0.32930310892274833, 0.33315225523074743, 0.3390309598105003, 0.34680229929177675, 0.3562747016249436, 0.3672094599229914, 0.37932561807178194, 0.3923083019846965, 0.40582391214469143, 0.41954057585616356, 0.43314930693689857, 0.4463816550278299, 0.4590217960452704, 0.47091310183154955, 0.48196024900245105, 0.49212793360180523, 0.5014367856514808, 0.5099566368013734, 0.5177971470334394, 0.5250959692941045, 0.5320050180559212, 0.5386758591838836, 0.5452456055191107, 0.5518248585736708, 0.558489097857501, 0.5652744732913273, 0.5721782821502825, 0.5791636692556132, 0.5861674660586335 ], [ 0.5641121385346303, 0.5513747295059206, 0.5377085461780026, 0.5231703735616575, 0.5078459441981307, 0.491854999003987, 0.475355465086883, 0.4585449761658391, 0.4416576306937244, 0.4249542491908488, 0.4087058128086247, 0.3931722962086838, 0.37858217607737105, 0.3651201048503547, 0.3529296600524053, 0.34213328981479957, 0.3328631585508766, 0.3252881378817453, 0.3196194875350598, 0.3160855140834363, 0.3148822352596739, 0.31612265827645475, 0.31980869541070506, 0.32583415814866123, 0.33400770190701107, 0.3440774356779311, 0.35574702304405714, 0.36868538315558647, 0.3825373850690705, 0.39693978437015986, 0.4115409085714485, 0.42601963760061085, 0.4401000245886784, 0.45356039369699586, 0.46623773659438483, 0.4780288480545932, 0.4888892087011056, 0.49882986204925167, 0.5079119985864106, 0.5162388612486106, 0.5239448736907372, 0.5311824033026095, 0.5381071306125818, 0.5448634527650634, 0.5515715749461445, 0.5583178523878491, 0.5651495168937155, 0.5720742299299371, 0.5790641125722222, 0.5860632137356543 ], [ 0.5669233313581669, 0.5543938610362563, 0.5408969555201826, 0.5264735960227063, 0.5111917649800629, 0.4951515443374654, 0.4784894617420907, 0.4613805065449824, 0.4440359732283614, 0.426695637562083, 0.40961403444047195, 0.39304284627152386, 0.3772141643603876, 0.36233145720920773, 0.34857467960616645, 0.3361214912417806, 0.3251780685505543, 0.31600363615932603, 0.3089089793227921, 0.3042174041915096, 0.3021970483536532, 0.3029941961364215, 0.3065999417478884, 0.312861266324373, 0.3215200078846876, 0.3322531983572027, 0.3446998204848711, 0.3584759937716769, 0.3731877369937324, 0.3884467239406968, 0.4038878959037164, 0.4191848709875732, 0.4340603733263018, 0.4482916186367684, 0.4617123033772426, 0.474212911103595, 0.4857401092939733, 0.4962949731388537, 0.5059292041301223, 0.5147385286930454, 0.5228529126239981, 0.5304238847802734, 0.5376099329765157, 0.5445614677626125, 0.5514071289069199, 0.558243150967092, 0.5651270851959503, 0.5720764656149744, 0.5790721728984977, 0.5860655040070413 ], [ 0.5696929902859603, 0.5573600523833604, 0.5440197699023217, 0.5296975646400812, 0.5144440648015232, 0.4983402980713526, 0.4815022681704647, 0.46408350341181076, 0.4462739486482936, 0.42829389445641375, 0.410382767718893, 0.39278462162238675, 0.37573469889564154, 0.3594534674853037, 0.34415434015439805, 0.3300670843455746, 0.3174701710465269, 0.30671463845178665, 0.29821640187982734, 0.2924022738288904, 0.2896200004947053, 0.2900508447002277, 0.2936687387076717, 0.3002614140972679, 0.3094899324868591, 0.32094887643263964, 0.33420593627848344, 0.34882297647609867, 0.3643701697090158, 0.38044026724325236, 0.3966625498062639, 0.41271312269643384, 0.4283199695411416, 0.4432639828982653, 0.45737843843845327, 0.470548745708962, 0.4827128064373187, 0.49386103059245756, 0.5040345325296369, 0.5133202375906966, 0.5218422935922788, 0.5297500068235055, 0.5372032988362728, 0.5443572741628354, 0.5513478021136482, 0.5582799745122885, 0.5652208835441401, 0.5721974373710512, 0.5791990614043537, 0.5861843399890299 ], [ 0.5724059988982526, 0.5602578921458944, 0.547061804191107, 0.5328279796092671, 0.5175902302130623, 0.5014112708084904, 0.48438757515645253, 0.4666524802053027, 0.44837608105796145, 0.42976075193311253, 0.41103214557569395, 0.39242736421445024, 0.37418439134425313, 0.35653893109901263, 0.3397348747680089, 0.3240506621922905, 0.3098346591629729, 0.2975303081111146, 0.28766362752950364, 0.28077339455023576, 0.2772947173382075, 0.27744527862378693, 0.2811742438474605, 0.2881959738287, 0.29807569057816974, 0.3103142137055229, 0.32440241726891694, 0.33984809808409694, 0.3561903105089626, 0.3730105063879603, 0.3899410508328017, 0.40666881492882284, 0.4229337310370313, 0.43852494923829544, 0.4532778301342138, 0.4670735359946129, 0.47984088038440287, 0.4915586212824046, 0.5022559834648954, 0.5120096743159235, 0.5209365831547755, 0.5291823625017666, 0.5369069662407079, 0.5442688560726089, 0.551409914108211, 0.5584430593382435, 0.5654441415158123, 0.5724489429771912, 0.579455220725381, 0.5864288902613766 ], [ 0.5750511556280068, 0.5630765817648099, 0.5500132537128891, 0.5358567537184922, 0.5206247483152973, 0.5043625045273413, 0.4871480611560468, 0.46909589883514796, 0.4503577861414771, 0.43111973963757144, 0.41159495675831664, 0.39201428915169273, 0.37261813990240134, 0.35365581916374617, 0.33539877779731364, 0.3181704791819768, 0.30238611394630194, 0.28858103036550303, 0.27739520815644403, 0.2694871956560054, 0.26538698025631774, 0.26534957430332323, 0.2692905478557261, 0.27683553554456425, 0.2874386291476002, 0.30049662767320884, 0.31541991567191047, 0.3316643927365796, 0.3487443770595829, 0.36623876068678735, 0.38379229056703074, 0.40111095513085987, 0.41795305807514127, 0.43412013580690456, 0.449451639871741, 0.4638248633776868, 0.47715886391378104, 0.48941952936628524, 0.5006227591308609, 0.5108335630180726, 0.5201601121649209, 0.5287429775823055, 0.5367407564769084, 0.5443139445112242, 0.5516092309868816, 0.5587463393724058, 0.565809097410589, 0.5728416625512993, 0.5798499091524624, 0.5868071252496913 ], [ 0.5776209249025261, 0.5658095911055441, 0.5528692320689143, 0.5387814081804659, 0.5235484353638673, 0.5071991093866559, 0.4897942159318253, 0.47143076525294353, 0.45224373382687166, 0.4324043229143197, 0.41211458287969766, 0.39159985970963973, 0.37110279682190034, 0.35088491140091055, 0.33124250520328713, 0.3125403684756249, 0.29525684295168314, 0.28001737995839265, 0.26757804274941793, 0.25872339383446175, 0.25408472533024234, 0.25395431551299835, 0.2582043013106269, 0.26635594229377635, 0.2777380722911181, 0.29163556093207615, 0.30737724754795487, 0.3243714332226005, 0.34211540997997375, 0.3601947953682114, 0.3782759523287774, 0.3960918817086276, 0.41342503366326605, 0.4300927849948993, 0.4459400963216761, 0.460840329480668, 0.4747018383095321, 0.4874762810247423, 0.49916475448952197, 0.5098191105204051, 0.5195373904541065, 0.5284537119793489, 0.5367239786511131, 0.5445094395606037, 0.5519604170044713, 0.5592024363119783, 0.5663265332671917, 0.5733847420838516, 0.5803908339453507, 0.587325499537884 ], [ 0.580111112806323, 0.5684542297907149, 0.5556292163246671, 0.5416043680955017, 0.5263675579907846, 0.5099321866303488, 0.49234304346097724, 0.4736810954681213, 0.45406606774764574, 0.43365587522304977, 0.41264273333215484, 0.3912473039369304, 0.3697144949069322, 0.34831697244247384, 0.3273735650056477, 0.3072868629725095, 0.28859422839039606, 0.27200794816394336, 0.2583998432450085, 0.24868393123455945, 0.2435968540063708, 0.24346647935957644, 0.24811115970209482, 0.2569333910262824, 0.26912570249133994, 0.28385692993293515, 0.3003765315357991, 0.3180514848162594, 0.33637049474120284, 0.35493498338877, 0.37344139664475184, 0.3916566385014748, 0.4093920774578441, 0.42648353415563817, 0.4427822731652454, 0.4581572790305766, 0.4725050768090595, 0.4857617089481568, 0.4979120575619235, 0.5089934633569686, 0.5190925424806201, 0.5283356938902766, 0.536874878868699, 0.5448708874476477, 0.5524765488340367, 0.5598222170935223, 0.5670053787653576, 0.5740854446473911, 0.5810838488442442, 0.5879886932490966 ], [ 0.5825204873567008, 0.5710111589575508, 0.5582964294135592, 0.5443321930906734, 0.5290928887496521, 0.5125776858122876, 0.4948166990811888, 0.4758763138578675, 0.4558625503102331, 0.43492156058157005, 0.41323706021499385, 0.39102595957834535, 0.3685357192165007, 0.3460495453030659, 0.323907034694198, 0.30254547614842814, 0.2825568973594257, 0.26473563354338137, 0.2500657707874938, 0.23958991517174688, 0.23415000252121232, 0.23410539315922851, 0.2392106777226332, 0.24873867811937064, 0.2617399531268826, 0.27726836856301545, 0.29449963747951535, 0.31276717125250925, 0.33155944519496117, 0.35050172369958077, 0.3693275332639646, 0.38784306459229506, 0.4058920788794678, 0.4233304801694326, 0.4400160281326705, 0.45581259856057416, 0.4706037160517223, 0.4843085245613315, 0.4968944555180442, 0.5083831795033575, 0.518848771807973, 0.5284087982293781, 0.5372101479588843, 0.5454120276633627, 0.5531687078181191, 0.5606144335451694, 0.5678523979227811, 0.5749488819120278, 0.581932726955771, 0.5887994221620301 ], [ 0.584850362266692, 0.573483866267789, 0.5608771869809842, 0.5469747751733015, 0.5317387332080165, 0.5151552390879391, 0.4972411094892991, 0.4780496386819207, 0.45767469517936327, 0.43625219556126626, 0.41395873134493916, 0.39100853409281466, 0.3676522172560342, 0.34418345359841823, 0.3209615740007176, 0.2984561416051992, 0.2773095616568558, 0.25839198581905126, 0.24279249842652775, 0.231675526399376, 0.2259821572741917, 0.22609588590139015, 0.2316992785655853, 0.2419307698946554, 0.2557009742622213, 0.271955954820579, 0.28980656270008776, 0.3085611082348632, 0.3277152310983359, 0.34692425565830515, 0.3659637188971228, 0.3846825773441609, 0.40295895692044537, 0.4206694765491257, 0.4376780465972105, 0.45384254551560166, 0.4690324235882849, 0.48314887876495766, 0.496140937892287, 0.5080137140643551, 0.5188278591311029, 0.5286911774570355, 0.5377444976227802, 0.5461444206267758, 0.5540456605707805, 0.5615854539442652, 0.5688719674000258, 0.5759778337474885, 0.5829390157401768, 0.5897583222784036 ], [ 0.5871041614345553, 0.575878124744421, 0.563380232918472, 0.5495445320515873, 0.5343219611676777, 0.5176870098373184, 0.4996446179981606, 0.48023650302275933, 0.45954594225162043, 0.4377001542746091, 0.414870035172218, 0.3912683662072065, 0.36714984822773805, 0.3428191253769342, 0.3186550464233255, 0.2951578895602776, 0.27301649021633784, 0.25316932000193193, 0.23679904594373838, 0.22517788707059827, 0.2193320187191166, 0.21965785904222238, 0.22576110558007012, 0.2366500117996505, 0.2511066996867408, 0.26798289639576406, 0.2863360346174233, 0.3054576193053178, 0.3248561275438296, 0.3442207656626695, 0.3633715393999359, 0.3822015007138125, 0.4006235110592709, 0.4185345500166028, 0.4358039027853155, 0.45228254607708235, 0.4678250214837878, 0.4823138882676356, 0.49567918631439833, 0.5079089164899979, 0.519049696328971, 0.5291988497981149, 0.5384903108982099, 0.547077161691002, 0.5551136330966896, 0.5627390907990926, 0.570065949869443, 0.577172658600699, 0.5841019761624882, 0.5908639104221676 ], [ 0.5892869794962476, 0.5782014535196147, 0.5658160846792905, 0.5520556202855017, 0.5368610699410988, 0.5201965874832644, 0.5020566913878647, 0.4824730527957225, 0.4615199233860987, 0.439317373258906, 0.4160320860950091, 0.39187677326816833, 0.3671114770417861, 0.34205287257831757, 0.31709991703932605, 0.2927829545631359, 0.26983379337716606, 0.24925066340071858, 0.23229420104468712, 0.2203224362056938, 0.214423635033563, 0.21499212760618694, 0.22155704118434286, 0.23301144975066027, 0.24803036041645415, 0.265390244572578, 0.28410816056310406, 0.3034662068486026, 0.32298920693718675, 0.34240141816490516, 0.36156715322328864, 0.38042267324694035, 0.3989143567255863, 0.41695828431520693, 0.4344280327331803, 0.4511668928700888, 0.4670140248735728, 0.48183310569143484, 0.495535041390607, 0.5080905371877722, 0.5195318579600343, 0.5299453474106299, 0.5394573692317056, 0.5482166828142175, 0.5563761785745598, 0.5640765239238408, 0.5714336606981151, 0.5785312923941447, 0.5854186035456362, 0.5921126184403965 ], [ 0.5914051517251138, 0.5804625959774607, 0.5681964062520627, 0.5545231887502347, 0.5393753030341188, 0.5227079550901588, 0.5045067187352498, 0.48479475691184964, 0.4636388601096145, 0.4411535058725175, 0.4175026917592702, 0.3929005637238069, 0.3676140198621454, 0.34197327695468066, 0.31639864889608343, 0.2914506473024621, 0.2679010018075405, 0.2467981770619166, 0.22946128452221407, 0.21730465109061137, 0.21144728086967962, 0.21226366388397822, 0.21921294910476807, 0.23109889213130763, 0.24651949254222935, 0.2641992103183472, 0.28312844120334457, 0.3025860291834008, 0.32211447894326206, 0.34147172614337107, 0.3605637344984308, 0.3793669896181499, 0.3978586979254318, 0.4159720033162103, 0.4335835116706749, 0.45052827900750636, 0.46663006160938436, 0.48173391822419587, 0.4957319420272766, 0.5085777437625619, 0.5202892118147786, 0.5309414254542026, 0.5406526554618588, 0.5495666392884573, 0.5578341344677383, 0.5655963131665444, 0.5729719215251776, 0.5800493292595382, 0.5868837236086233, 0.5934988949774044 ], [ 0.5934658444518077, 0.5826710281563453, 0.5705334234856406, 0.5569626890979388, 0.5418838431369555, 0.5252445511998343, 0.5070229267745181, 0.48723515812027934, 0.4659421272174203, 0.4432542678268544, 0.419334435533798, 0.39439978633044853, 0.36872574408001557, 0.3426578419591608, 0.31663936358371353, 0.2912614531771461, 0.2673327464186209, 0.24594138833186174, 0.2284422750543599, 0.21627078918517417, 0.21053960887646592, 0.21158502184973008, 0.2188090230998305, 0.23096042551484106, 0.24659617603348322, 0.2644142484297851, 0.28339210758343364, 0.30281037113947074, 0.3222288079841322, 0.34143557020025783, 0.3603734998536515, 0.37905451094750425, 0.3974826933239593, 0.41560560098513444, 0.4333015482604832, 0.45039712406966304, 0.4667011550906216, 0.48204087140234575, 0.4962903401908575, 0.5093866512574468, 0.5213335714539183, 0.5321948322269204, 0.5420802297859444, 0.551127875764332, 0.559485660962404, 0.5672944912946856, 0.5746751904967404, 0.5817201738035438, 0.5884901538595231, 0.5950153658446364 ], [ 0.5954766750757386, 0.5848365077066856, 0.572839393369801, 0.5593892562457264, 0.5444050940511618, 0.5278284424216457, 0.5096314306783515, 0.48982478659307555, 0.46846500882806885, 0.44566000712621673, 0.42157301803638986, 0.3964257778606094, 0.3705039170079908, 0.34417006793598787, 0.3178920503501795, 0.2922918977114335, 0.2682115693592075, 0.2467671059384946, 0.22932435300217946, 0.21730189177313297, 0.21176777538490266, 0.21300387948367752, 0.22037253940335347, 0.23260603012124825, 0.24825804310104443, 0.2660259266372749, 0.28488767503044693, 0.3041300887362097, 0.3233287651193782, 0.34229722031744225, 0.3610088565197968, 0.3795048353698855, 0.39781122643362943, 0.41588691449223936, 0.43361064880180344, 0.45080067935642093, 0.46725187552398273, 0.48277493031363417, 0.4972271038417845, 0.510529876029041, 0.5226733957300463, 0.5337101404542424, 0.5437411743281457, 0.5528984635563456, 0.5613263500775997, 0.5691647247520526, 0.5765357561705854, 0.5835352520011516, 0.5902289181271178, 0.5966530418728114 ], [ 0.5974453686991458, 0.5869686712312981, 0.5751261359296851, 0.5618171684421231, 0.5469560621215808, 0.5304796185914792, 0.5123554337293708, 0.492590252083918, 0.47123766628806896, 0.4484045234521439, 0.4242558921309495, 0.39901956026453417, 0.37299288521899593, 0.3465570937583722, 0.32020559200331206, 0.29459070298996076, 0.2705828917301979, 0.24931292574727848, 0.23213203141616778, 0.2204054149983021, 0.21512218682473158, 0.21649829292185443, 0.22387587077766463, 0.23600767803598824, 0.25147959364363676, 0.2690127816553163, 0.2875988700648622, 0.3065352748326135, 0.3254118064447481, 0.34406191001555236, 0.3624823679773413, 0.3807365472668528, 0.3988669904006722, 0.4168406132731013, 0.43453546112165975, 0.45176193989175717, 0.4683023919661305, 0.48395270780372984, 0.49855493103131476, 0.5120161283243935, 0.524313542584463, 0.5354886401705304, 0.5456336011694011, 0.5548737998759629, 0.5633493932063273, 0.5711985283605845, 0.5785439805112867, 0.5854842663191838, 0.5920895006417567, 0.598401561887406 ], [ 0.5993794564758046, 0.5890766855063673, 0.5774046346243302, 0.5642593932067766, 0.5495518439387244, 0.533215417901361, 0.5152145842560346, 0.49555352462859437, 0.47428433058978275, 0.4515141542916347, 0.4274112168097741, 0.40221062723871215, 0.3762226512399665, 0.34984802208884175, 0.32360582136298954, 0.29817663257017357, 0.2744528690907937, 0.25356559695397407, 0.23682682213552028, 0.22551691749091396, 0.220520129728941, 0.22198111855663147, 0.2292403153047783, 0.2411018852811666, 0.25621353754783244, 0.2733418150388338, 0.29150459517561894, 0.3100148575422376, 0.32847555635797426, 0.3467348176961564, 0.3648054672308746, 0.38276573888038334, 0.40066892636077656, 0.418486668447833, 0.43609537103762275, 0.4532984325339926, 0.46986748403392686, 0.4855857051991396, 0.5002818070769705, 0.513849863150482, 0.5262550863219286, 0.537528294107395, 0.547752718467953, 0.5570467591306829, 0.565545794283393, 0.5733855195185622, 0.5806885759382022, 0.5875554802666236, 0.5940601257008233, 0.6002494580856895 ], [ 0.6012860189584583, 0.5911689559205702, 0.5796847085804562, 0.5667272224293913, 0.5522052235623505, 0.5360500853192594, 0.5182244934916248, 0.4987314083368135, 0.4776227257641419, 0.45500713798311987, 0.43105714692782415, 0.4060161490787099, 0.3802079965010089, 0.3540530089606009, 0.32809473479561174, 0.3030382051342874, 0.27978934454579646, 0.25946437744052986, 0.24331423672162808, 0.2325109892770099, 0.22781887666832643, 0.2293121030577692, 0.23634469004751765, 0.24779426630584905, 0.26239214372347214, 0.27896781701704615, 0.2965771781999873, 0.3145543695327853, 0.3325154099799324, 0.35031865198370526, 0.36798610548728883, 0.38560378535425066, 0.4032301857667875, 0.4208385558125021, 0.43830298184937005, 0.4554209851836622, 0.4719555930816559, 0.4876796225616686, 0.5024105425421811, 0.5160310116237691, 0.5284952085219029, 0.5398237567609333, 0.5500909493814333, 0.5594078865833838, 0.5679046160890459, 0.5757136979050439, 0.582956901934808, 0.5897360181323121, 0.5961280494749389, 0.6021844315293867 ], [ 0.6031714760750693, 0.5932528935010616, 0.5819747576649011, 0.5692299971773731, 0.5549263793162147, 0.5389944638925724, 0.5213964136980895, 0.5021352078450537, 0.4812637239674282, 0.4588932571322955, 0.43520146742132604, 0.410440612825525, 0.3849481785088722, 0.3591631535023603, 0.33365088325761433, 0.3091352041783856, 0.28652553688181615, 0.2669083404953017, 0.25145590362289166, 0.24121783268669839, 0.23683399974601516, 0.23831400180096013, 0.24503653202794823, 0.25596536214450394, 0.2699287797834462, 0.2858321207605687, 0.3027796186998349, 0.32013256294371073, 0.33752104090711776, 0.3548103336966095, 0.37202574591100057, 0.3892547117065977, 0.40655589278889037, 0.42390141257075015, 0.4411626470974643, 0.45813260397150296, 0.4745680035053538, 0.4902338000468979, 0.5049384310552762, 0.518554814905353, 0.5310271723209025, 0.5423664580777056, 0.5526380986776447, 0.5619456252815573, 0.5704132481799626, 0.578169737930542, 0.5853352680745837, 0.5920121670151542, 0.598279851760742, 0.6041936265607418 ], [ 0.6050414238806003, 0.5953347401347037, 0.5842815793199408, 0.5717749203148135, 0.5577226973322683, 0.5420558151653543, 0.5247370719604852, 0.5057705823826089, 0.48521122749838214, 0.4631737591035058, 0.4398415716442189, 0.4154759009437103, 0.39042720545512827, 0.36515117341549536, 0.3402308545661319, 0.3164016891035891, 0.29456567573492576, 0.2757658908280664, 0.26108365372187253, 0.25144100651275575, 0.2473580082809914, 0.2487887570751451, 0.25514358200346576, 0.26547696028718554, 0.278719887306276, 0.293861547424345, 0.31006275960949753, 0.3267177767424502, 0.34347261590513073, 0.36019744575049845, 0.3769162462032728, 0.39371258140445375, 0.4106410385870751, 0.4276703977301359, 0.4446692396215784, 0.4614275882468676, 0.47769824286590745, 0.4932408481586885, 0.5078570621471153, 0.5214117797445137, 0.5338403878066943, 0.5451447518134441, 0.5553815620107979, 0.5646465680301546, 0.5730576863560718, 0.5807392829292957, 0.5878092322222982, 0.5943696701484911, 0.6005017172599508, 0.6062638945258629 ], [ 0.6069005169299126, 0.597419450052988, 0.5866102542673864, 0.574366952889716, 0.5605986864877257, 0.5452377619341452, 0.5282486514676318, 0.5096375780466761, 0.48946226753221334, 0.4678415430913034, 0.44496477310896715, 0.42110179533033587, 0.3966146630115574, 0.37197280057446247, 0.3477716707627777, 0.32475007271177364, 0.30379163253419866, 0.28588470211622174, 0.27201278693703224, 0.2629728381177375, 0.25917582428699376, 0.2605309636362021, 0.26648384956216153, 0.27617826137373797, 0.2886475529642631, 0.3029681876825816, 0.3183632439595971, 0.33426494667820966, 0.3503375326640493, 0.366455145347224, 0.38263719035178356, 0.39895934048238463, 0.4154688320093747, 0.432129491339126, 0.44880732213707486, 0.46529099570231297, 0.4813317743572332, 0.49668651267246955, 0.5111523154877551, 0.5245877687534826, 0.5369205727854902, 0.5481441270559806, 0.5583065727274604, 0.567495727110624, 0.5758228151955667, 0.5834072321207487, 0.5903638848797875, 0.5967940027309373, 0.602779698047215, 0.6083820390608093 ] ] }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "text": [ "0_0", "10_0", "11_0", "12_0", "13_0", "14_0", "15_0", "16_0", "17_0", "18_0", "19_0", "1_0", "20_0", "21_0", "22_0", "23_0", "24_0", "25_0", "26_0", "27_0", "28_0", "2_0", "3_0", "4_0", "5_0", "6_0", "7_0", "8_0", "9_0" ], "type": "scatter", "x": [ 0.6065336465835571, 0.45095149851427035, 0.4017443252662917, 0.3532628482265897, 0.34999503819780325, 0.40712475656215985, 0.4065608690637547, 0.39435957825162227, 0.40487357795022333, 0.3988129612128385, 0.41587608821959715, 0.6276875138282776, 0.4031557775284978, 0.401889304984257, 0.40339700051491495, 0.9062658064067364, 0.9858642723411322, 0.14112357143312693, 0.3234916778149817, 0.8181310528889298, 0.390814067753727, 0.5128439664840698, 0.2376164197921753, 0.26338279247283936, 0.09650871157646179, 0.4646945670972718, 0.5375464324520348, 0.5782317078665615, 0.5035310904263841 ], "xaxis": "x", "y": [ 0.8308824896812439, 0.8294892026049441, 0.861237031456911, 0.8288668189112192, 0.8406659840944923, 0.8667979398458383, 0.8542353557320609, 0.9086430605300365, 0.854064842041787, 0.8806223466474414, 0.8866631378821144, 0.22122102975845337, 0.8678033304646079, 0.8829760773861991, 0.8586983898468499, 0.6997898947447538, 0.7347549227997661, 0.43644058983772993, 0.9388173642804631, 0.20582487527281046, 0.7537080543394991, 0.9149803519248962, 0.3273465931415558, 0.6676128506660461, 0.29555177688598633, 0.9982253380196752, 0.8308117054270464, 0.9057361440347685, 0.7957047585410606 ], "yaxis": "y" }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "showlegend": false, "text": [ "0_0", "10_0", "11_0", "12_0", "13_0", "14_0", "15_0", "16_0", "17_0", "18_0", "19_0", "1_0", "20_0", "21_0", "22_0", "23_0", "24_0", "25_0", "26_0", "27_0", "28_0", "2_0", "3_0", "4_0", "5_0", "6_0", "7_0", "8_0", "9_0" ], "type": "scatter", "x": [ 0.6065336465835571, 0.45095149851427035, 0.4017443252662917, 0.3532628482265897, 0.34999503819780325, 0.40712475656215985, 0.4065608690637547, 0.39435957825162227, 0.40487357795022333, 0.3988129612128385, 0.41587608821959715, 0.6276875138282776, 0.4031557775284978, 0.401889304984257, 0.40339700051491495, 0.9062658064067364, 0.9858642723411322, 0.14112357143312693, 0.3234916778149817, 0.8181310528889298, 0.390814067753727, 0.5128439664840698, 0.2376164197921753, 0.26338279247283936, 0.09650871157646179, 0.4646945670972718, 0.5375464324520348, 0.5782317078665615, 0.5035310904263841 ], "xaxis": "x2", "y": [ 0.8308824896812439, 0.8294892026049441, 0.861237031456911, 0.8288668189112192, 0.8406659840944923, 0.8667979398458383, 0.8542353557320609, 0.9086430605300365, 0.854064842041787, 0.8806223466474414, 0.8866631378821144, 0.22122102975845337, 0.8678033304646079, 0.8829760773861991, 0.8586983898468499, 0.6997898947447538, 0.7347549227997661, 0.43644058983772993, 0.9388173642804631, 0.20582487527281046, 0.7537080543394991, 0.9149803519248962, 0.3273465931415558, 0.6676128506660461, 0.29555177688598633, 0.9982253380196752, 0.8308117054270464, 0.9057361440347685, 0.7957047585410606 ], "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": [ "