{ "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 08-10 23:09:21] ax.utils.notebook.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 08-10 23:09:21] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x2. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:09:21] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x3. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:09:21] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x4. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:09:21] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x5. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:09:21] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x6. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:09:21] ax.modelbridge.dispatch_utils: Using GPEI (Bayesian optimization) since there are more continuous parameters than there are categories for the unordered categorical parameters.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:09:21] ax.modelbridge.dispatch_utils: Using Bayesian Optimization generation strategy: GenerationStrategy(name='Sobol+GPEI', steps=[Sobol for 6 trials, GPEI for subsequent trials]). Iterations after 6 will take longer to generate due to model-fitting.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:09:21] ax.service.managed_loop: Started full optimization with 30 steps.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:09:21] ax.service.managed_loop: Running optimization trial 1...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:09:22] ax.service.managed_loop: Running optimization trial 2...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:09:22] ax.service.managed_loop: Running optimization trial 3...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:09:22] ax.service.managed_loop: Running optimization trial 4...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:09:22] ax.service.managed_loop: Running optimization trial 5...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:09:22] ax.service.managed_loop: Running optimization trial 6...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:09:22] ax.service.managed_loop: Running optimization trial 7...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:09:22] ax.service.managed_loop: Running optimization trial 8...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:09:22] ax.service.managed_loop: Running optimization trial 9...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:09:29] ax.service.managed_loop: Running optimization trial 10...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:09:33] ax.service.managed_loop: Running optimization trial 11...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:09:41] ax.service.managed_loop: Running optimization trial 12...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:10:21] ax.service.managed_loop: Running optimization trial 13...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:10:53] ax.service.managed_loop: Running optimization trial 14...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:11:31] ax.service.managed_loop: Running optimization trial 15...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:11:49] ax.service.managed_loop: Running optimization trial 16...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:12:44] ax.service.managed_loop: Running optimization trial 17...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:13:13] ax.service.managed_loop: Running optimization trial 18...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:13:25] ax.service.managed_loop: Running optimization trial 19...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:13:40] ax.service.managed_loop: Running optimization trial 20...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:13:54] ax.service.managed_loop: Running optimization trial 21...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:14:01] ax.service.managed_loop: Running optimization trial 22...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:14:10] ax.service.managed_loop: Running optimization trial 23...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:14:20] ax.service.managed_loop: Running optimization trial 24...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:14:32] ax.service.managed_loop: Running optimization trial 25...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:14:41] ax.service.managed_loop: Running optimization trial 26...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:14:50] ax.service.managed_loop: Running optimization trial 27...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:15:01] ax.service.managed_loop: Running optimization trial 28...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:15:13] ax.service.managed_loop: Running optimization trial 29...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 08-10 23:15:26] 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.34695371010224874,\n", " 'x2': 0.8585465623085132,\n", " 'x3': 0.4314455118737757,\n", " 'x4': 0.5140990471961608,\n", " 'x5': 0.49430755335188886,\n", " 'x6': 0.0}" ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "best_parameters" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'l2norm': 1.2458977556846476, 'hartmann6': -2.781888129029068}" ] }, "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.11436074002875118, -0.11375368403751007, -0.11365760688611803, -0.11405150511864126, -0.11490597291841886, -0.11618291915150059, -0.11783540677973314, -0.1198076691453196, -0.12203536930123826, -0.12444617351876086, -0.12696070502934387, -0.12949392680372085, -0.13195697248718563, -0.13425940455180563, -0.13631183261298774, -0.13802877870396202, -0.13933163686537986, -0.14015154799449647, -0.14043200222171015, -0.1401309923657197, -0.13922257257201853, -0.1376977225452135, -0.13556447409740657, -0.13284731605413136, -0.129585948777999, -0.12583350457186182, -0.12165438072001866, -0.11712184590688823, -0.11231557850445306, -0.10731927896662108, -0.10221847186716082, -0.09709858015492612, -0.09204331913696984, -0.08713342417074899, -0.08244569685186964, -0.07805233148404678, -0.07402046778087779, -0.0704119072964845, -0.067282929672975, -0.06468414969455416, -0.06266036635123151, -0.06125036944210682, -0.06048668630973342, -0.06039526952616059, -0.06099514400238282, -0.06229804720744114, -0.06430810714819424, -0.06702160796400047, -0.07042689152815496, -0.07450443530793482 ], [ -0.10783613913793488, -0.107409012897975, -0.10752849520375418, -0.10817292285696167, -0.10931169110221928, -0.11090488093068707, -0.11290299529035941, -0.11524686845635468, -0.11786782988250122, -0.1206882130030209, -0.12362229615230591, -0.1265777439258412, -0.12945758226781423, -0.13216269172618544, -0.1345947460526099, -0.1366594653132066, -0.1382700026051753, -0.13935024948357588, -0.13983783337919498, -0.1396865935066025, -0.1388683591283928, -0.1373739110309361, -0.13521307631641877, -0.13241397920811715, -0.12902153753238177, -0.12509534828234437, -0.12070714101665159, -0.11593799260057946, -0.11087549167927979, -0.10561101940676476, -0.10023727902802948, -0.09484616624782871, -0.08952703004735019, -0.08436533404940716, -0.07944169486034669, -0.07483124798994001, -0.07060327481669015, -0.06682101559532683, -0.06354159304707307, -0.06081597759153201, -0.05868893750777193, -0.05719893384167385, -0.05637793916880507, -0.05625117968947002, -0.05683681972261523, -0.0581456245180314, -0.060180649499799066, -0.06293700997634977, -0.06640178403322583, -0.07055409274864166 ], [ -0.10147908396431649, -0.10125263351170455, -0.10161031923110286, -0.10252990515625637, -0.10397967521333884, -0.10591795602871823, -0.10829272744901985, -0.11104139594791074, -0.11409083029893596, -0.1173577738395476, -0.12074974718869091, -0.12416653501256514, -0.12750230911683147, -0.13064838053086947, -0.13349650207900599, -0.13594257000026932, -0.1378905096563222, -0.13925608675906398, -0.13997036970216248, -0.13998258419117937, -0.13926214726490949, -0.13779973814770663, -0.13560734871722102, -0.13271734533883672, -0.12918065507719534, -0.12506425340440308, -0.1204481712749571, -0.1154222544883925, -0.11008289899680634, -0.10452995658340314, -0.09886396230381811, -0.09318378500330549, -0.08758475139500577, -0.08215724771048383, -0.07698576436769689, -0.07214832042423136, -0.06771618641930888, -0.0637538161577158, -0.06031889899019427, -0.057462452772002015, -0.055228892347777725, -0.053656027468546696, -0.052774965791652195, -0.052609919243965186, -0.05317793360822409, -0.054488579679390914, -0.05654365773033665, -0.05933697363331181, -0.06285424378355764, -0.06707317695618142 ], [ -0.09532347768989935, -0.09531971197327616, -0.09593954389766912, -0.09716027170413266, -0.09894918466319214, -0.1012629654134185, -0.10404714892591371, -0.10723572530318659, -0.11075100719307118, -0.11450390546278022, -0.11839476062223442, -0.12231485612945658, -0.12614869104750703, -0.1297770167055592, -0.13308055349547177, -0.13594421223162356, -0.13826156399346823, -0.13993924658826917, -0.14090097481523245, -0.14109084031120855, -0.14047564336607588, -0.13904608616829872, -0.1368167623305031, -0.13382498672380905, -0.13012860829054196, -0.12580302487285666, -0.12093766576113674, -0.11563222224539482, -0.10999289131072776, -0.1041288587614354, -0.09814919357605434, -0.09216026374357844, -0.08626372290734297, -0.0805550628212357, -0.07512268280488188, -0.07004739596626597, -0.06540227319393543, -0.0612527188899914, -0.057656675519121126, -0.054664865379129624, -0.05232099559271608, -0.050661874262898365, -0.04971741015501374, -0.049510493266548106, -0.05005677722817281, -0.05136440455690694, -0.05343373030277021, -0.05625710685403218, -0.059818791542521454, -0.06409502922951427 ], [ -0.08940503335249872, -0.08964724697186777, -0.09055448259166832, -0.09210370111888666, -0.09426134640106476, -0.09698261013376652, -0.10021070979649849, -0.10387627981301051, -0.10789702191503325, -0.11217779425500729, -0.11661132896430393, -0.12107974598028459, -0.12545697372244557, -0.12961209818111075, -0.13341355181189396, -0.13673393833591418, -0.13945518762328935, -0.14147366369488523, -0.14270482147510422, -0.14308703029276026, -0.14258425220333226, -0.1411873712391546, -0.13891410006441252, -0.13580752464964063, -0.13193346734690026, -0.12737693955663087, -0.12223800817911334, -0.1166274129731315, -0.1106622485914508, -0.10446197368030508, -0.09814494060207457, -0.09182556386780205, -0.08561217260868426, -0.0796055292918012, -0.07389794756800694, -0.0685729082760913, -0.06370505389761194, -0.05936043654154288, -0.055596900546373784, -0.052464495528589894, -0.05000583678210668, -0.04825635514344029, -0.04724440574913502, -0.046991232555925744, -0.0475108110505833, -0.04880961315150911, -0.05088635383636253, -0.05373178676593793, -0.057328615061905674, -0.06165157347811556 ], [ -0.08376123735453167, -0.08427403102267383, -0.0854952555923687, -0.08740168574815588, -0.08995910514509098, -0.09312141630384985, -0.09682970428083215, -0.10101136794226684, -0.10557949427784807, -0.11043269908920073, -0.11545567654842914, -0.12052067862674587, -0.1254900781533913, -0.13022006035841793, -0.13456535057536934, -0.13838474087734565, -0.14154704956555053, -0.143937056970196, -0.14546092553945522, -0.1460506393269697, -0.14566708501250547, -0.144301530900677, -0.14197542185950918, -0.13873857312452342, -0.13466599132169577, -0.1298536588128797, -0.12441367704903483, -0.11846917414903735, -0.11214934724138181, -0.10558494249012174, -0.09890438898741061, -0.09223071041947872, -0.08567925189963344, -0.07935618651505405, -0.07335771125116908, -0.06776980619886452, -0.06266841316097982, -0.05811988740378893, -0.05418158619159186, -0.05090247671688597, -0.04832367120923631, -0.04647882587793695, -0.04539437074493624, -0.04508956734880987, -0.045576418752621306, -0.046859479214301, -0.04893562725619516, -0.051793873974984805, -0.05541527724302531, -0.05977302205898671 ], [ -0.07843130750917848, -0.0792406071441989, -0.08080374512018629, -0.08309748439025444, -0.0860871728032474, -0.08972568033211847, -0.0939522114289062, -0.0986911201040751, -0.10385093731813566, -0.10932388722770614, -0.11498620061138498, -0.12069951401826806, -0.1263135643111436, -0.13167025493230577, -0.1366089993661943, -0.1409730652721668, -0.1446164801351124, -0.14741094462701465, -0.14925215431216743, -0.15006496352148457, -0.1498069335579575, -0.1484699746373419, -0.14607999131833316, -0.1426946442246526, -0.13839951743577383, -0.13330310845054805, -0.1275311237381912, -0.12122056649821178, -0.11451405310203844, -0.10755470612446127, -0.10048186286660865, -0.09342772583624115, -0.08651497931480745, -0.07985531276082036, -0.07354873156157804, -0.06768349888224456, -0.06233653674825235, -0.05757411626810405, -0.05345268185093477, -0.05001967841424837, -0.04731428050127284, -0.04536795515320868, -0.04420482403306614, -0.0438418226861923, -0.044288684028757186, -0.04554779722734614, -0.04761401013817246, -0.050474451764979444, -0.05410844981352825, -0.05848760752710369 ], [ -0.07345614918862187, -0.07458922505309806, -0.07652355170341596, -0.0792360783712428, -0.082691983315903, -0.08684342141842105, -0.09162804446848671, -0.0969674348548657, -0.10276570147743369, -0.10890857881332716, -0.11526341927692241, -0.1216804528577875, -0.1279955956278348, -0.13403492531272587, -0.13962072931030456, -0.14457880217331553, -0.1487464647591349, -0.1519806324280737, -0.15416520161502356, -0.15521706496799104, -0.15509020032892107, -0.15377748730041974, -0.1513101539019076, -0.14775500592599455, -0.1432098059686404, -0.13779731959446428, -0.13165861822506042, -0.12494622242571651, -0.11781759818043047, -0.1104294032648111, -0.10293274426964849, -0.09546956838295417, -0.08817019373158785, -0.08115188758973813, -0.07451833677848096, -0.06835981814784586, -0.06275386522695525, -0.057766234643496506, -0.05345199728192285, -0.04985660949094439, -0.047016855010535985, -0.044961585632033785, -0.0437122256122191, -0.043283039627048936, -0.04368119480290822, -0.04490667231145029, -0.046952101377277344, -0.04980259680319721, -0.05343567940934557, -0.057821347355047736 ], [ -0.06887831425814994, -0.07036380220370908, -0.0726999579772124, -0.07586413802214342, -0.07982166098773125, -0.08452435042068107, -0.08990871884336293, -0.095893945220069, -0.10237993921023902, -0.10924591074315182, -0.11634993640770908, -0.12353000429145655, -0.13060691077701614, -0.13738918240786357, -0.1436799309121518, -0.14928526335154169, -0.15402361210088034, -0.15773516713341862, -0.1602905196016593, -0.16159767622843302, -0.1616067725396435, -0.16031207294803773, -0.1577511547833116, -0.1540014816436499, -0.14917483164010636, -0.143410223088547, -0.13686605713146482, -0.12971217630652054, -0.12212243886885354, -0.1142682587702828, -0.10631339074497637, -0.09841007516893119, -0.09069651697171588, -0.08329556708238217, -0.07631440632496234, -0.06984499747415418, -0.0639650652831193, -0.05873937948814223, -0.05422114514023102, -0.050453342262530065, -0.04746989830048032, -0.045296618899212104, -0.043951842929046525, -0.043446824650244964, -0.04378587791819988, -0.04496634282099021, -0.04697845254249189, -0.049805186208646934, -0.0534221912822036, -0.057797847068769226 ], [ -0.06474196865852877, -0.06660989633934455, -0.06937990755767376, -0.0730300083509795, -0.07752601238748968, -0.0828198664857197, -0.0888474515364629, -0.09552601864560983, -0.1027516039203813, -0.11039693355499591, -0.11831043586543888, -0.12631697699118127, -0.13422081049042178, -0.1418109850426712, -0.1488691245870738, -0.15517913747703815, -0.16053808917090218, -0.16476724465826786, -0.16772219435187852, -0.16930103967964538, -0.16944982467541025, -0.16816472402678573, -0.1654908822636172, -0.1615181790170822, -0.1563745110793756, -0.15021738933929485, -0.14322472815383702, -0.13558566271724715, -0.1274920932571827, -0.11913146117103612, -0.11068105032730313, -0.10230390889199092, -0.0941463246769858, -0.08633667032485981, -0.07898536440629722, -0.07218566511958013, -0.06601501592630388, -0.06053668760127062, -0.05580150022042596, -0.05184945470644586, -0.048711151749566084, -0.04640892292203336, -0.0449576424858793, -0.04436522729518699, -0.044632865088954365, -0.04575503710520212, -0.047719418021107796, -0.05050674361224061, -0.054090733675740243, -0.05843814513707801 ], [ -0.06109287564531973, -0.0633746975577818, -0.06661200818002999, -0.07078372449790182, -0.07585655397649638, -0.08178309523733374, -0.08849920697876523, -0.09592080702176431, -0.10394050019164547, -0.11242465793345313, -0.12121172035435523, -0.13011250621228743, -0.13891316830697364, -0.14738112936499115, -0.15527392323358635, -0.162350420127087, -0.16838351318561828, -0.17317305894843282, -0.17655774854780826, -0.17842466346480823, -0.1787155309332934, -0.17742909791636496, -0.17461952036180695, -0.17039113383836546, -0.16489035497424698, -0.15829570498030432, -0.15080702484535247, -0.14263487866289037, -0.1339909550654228, -0.12508002755282632, -0.1160937723554144, -0.10720650650123553, -0.09857272301592968, -0.09032617392720799, -0.0825801827205287, -0.07542884674895856, -0.06894880451031493, -0.06320128040504147, -0.05823417017682708, -0.054083985893428665, -0.05077753476521174, -0.04833325810299394, -0.046762203468086794, -0.04606864350983875, -0.04625038830241035, -0.04729886331008193, -0.049199041453968695, -0.051929324259978094, -0.055461463381852316, -0.059760600493131144 ], [ -0.05797840265322751, -0.06070704906695834, -0.0644465696935771, -0.06917706922912048, -0.0748665895983619, -0.08146898461957341, -0.08892080747290942, -0.09713736610303036, -0.10600840525136956, -0.11539417027590126, -0.1251228124148458, -0.13499013103294277, -0.14476247471321257, -0.1541832509054034, -0.16298298421252677, -0.1708923092196566, -0.17765678593942458, -0.183052073090734, -0.18689784993821146, -0.18906897145322066, -0.18950266508820424, -0.1882010797621103, -0.1852290919143713, -0.18070785356384333, -0.17480503276078851, -0.1677229775529745, -0.1596861058305068, -0.1509287060495781, -0.14168408176301384, -0.1321756538657448, -0.1226103119159836, -0.11317402677348132, -0.10402952714204305, -0.09531570934370193, -0.08714838595744834, -0.07962197044557362, -0.07281172490097021, -0.06677625119671682, -0.06155996983490908, -0.05719539701299514, -0.05370509344298846, -0.05110321534615081, -0.04939664747698835, -0.04858573949035505, -0.04866470015112545, -0.049621728370188856, -0.05143897523262331, -0.05409243649383255, -0.057551870311734366, -0.06178082095747606 ], [ -0.05544756028361686, -0.058657506566548556, -0.06293568849998998, -0.06826368597724886, -0.0746113535079963, -0.08193447635637419, -0.0901711282249893, -0.09923686602741033, -0.10901928402601568, -0.11937283895298567, -0.13011513676826925, -0.1410259366966229, -0.15184992361855243, -0.16230384102543727, -0.17208794476266231, -0.1809010525488216, -0.18845785113306113, -0.19450668852574626, -0.19884589879005765, -0.20133681964195427, -0.20191206117918103, -0.20057820738926324, -0.19741287144654796, -0.19255674376810616, -0.18620183744751895, -0.17857745968386574, -0.16993549305896394, -0.16053639110904105, -0.1506369545676306, -0.14048054831459578, -0.130290024733677, -0.12026329227534593, -0.11057123531170499, -0.1013575553788224, -0.09274005116983641, -0.08481286422690104, -0.07764926731820676, -0.07130464416924287, -0.06581938847573432, -0.061221527708243295, -0.05752894789516394, -0.054751156981799776, -0.052890575890940594, -0.05194338822818745, -0.051900011991212525, -0.052745279733914296, -0.05445842721150396, -0.057012994331841704, -0.06037673633277074, -0.06451162830714663 ], [ -0.053551081648782084, -0.05727844614309752, -0.062133390181479564, -0.06809926130888544, -0.07514823522216174, -0.08323877183558193, -0.09231139813894373, -0.10228291581489746, -0.11303962125028033, -0.12443063365003526, -0.13626280327090834, -0.1482987759826957, -0.1602595477636527, -0.17183227565486803, -0.1826833296433571, -0.19247572777633204, -0.20088934819790594, -0.2076417813181684, -0.21250746113629893, -0.21533284598226587, -0.21604590416733838, -0.2146589311796302, -0.2112646454718194, -0.2060264004405597, -0.19916403857249299, -0.19093728513335673, -0.18162860468587771, -0.17152717817971153, -0.1609152081575641, -0.15005724491935302, -0.13919274802406145, -0.12853171922350903, -0.1182529901013003, -0.10850461545858547, -0.09940578913053011, -0.09104973318531506, -0.08350708645530291, -0.07682941170463875, -0.07105253683441615, -0.06619953493741071, -0.06228322609487025, -0.059308149101302, -0.05727200413248057, -0.05616660875261281, -0.055978440589260825, -0.05668886111844218, -0.058274126526108194, -0.06070529360346244, -0.06394812137168793, -0.06796305352415344 ], [ -0.052341548722882325, -0.05662422912657883, -0.06209584073854946, -0.06874178946566067, -0.07653710132290514, -0.08544371014355745, -0.09540562646931516, -0.10634202357979172, -0.11813889267505695, -0.13064057823510278, -0.1436430069730853, -0.156890579653447, -0.17007840445087175, -0.1828608476277399, -0.19486641201664667, -0.2057179267109161, -0.2150561275000905, -0.22256406629351877, -0.22798950754068587, -0.23116261496555107, -0.23200681571297016, -0.23054167946019982, -0.22687779708626993, -0.22120475148817692, -0.21377411258597767, -0.2048798107152885, -0.19483821962046655, -0.18396989611716263, -0.172584327944159, -0.1609683933967121, -0.14937866100009978, -0.13803722621600722, -0.12713051514409057, -0.11681036598942363, -0.10719669250137598, -0.09838110021504043, -0.0904309315453562, -0.08339333378253111, -0.07729905816296112, -0.07216579943181833, -0.06800097012858031, -0.06480387204116422, -0.06256728039651183, -0.06127849637946714, -0.06091995225561475, -0.06146947191668506, -0.06290029871754688, -0.06518100239089286, -0.06827536807584988, -0.07214235406065517 ], [ -0.05187356873910942, -0.056751428698021966, -0.0628816330970402, -0.07025192770253053, -0.07884072520715935, -0.08861427157590185, -0.0995211706974991, -0.11148420902809253, -0.12439019168303711, -0.13807935112620806, -0.15233655441139637, -0.16688675763664895, -0.18139680353406762, -0.1954847835297604, -0.20873699757913428, -0.2207313046604244, -0.23106458139475317, -0.2393812407134276, -0.24539940972460805, -0.24893151296260196, -0.2498966969817497, -0.24832369870986132, -0.24434419219104303, -0.23817803253252007, -0.23011284234846074, -0.22048086051186322, -0.20963587264473638, -0.19793249646557998, -0.18570931239425048, -0.17327651995035664, -0.16090811614593392, -0.1488381095209006, -0.13726001214580907, -0.12632875839852198, -0.11616423208798721, -0.10685569107081838, -0.09846651924631245, -0.09103888098229951, -0.08459798574757948, -0.07915578320291772, -0.07471399940348267, -0.07126649460504031, -0.06880097537032992, -0.06730013132181556, -0.06674229253229469, -0.06710171894432537, -0.0683486394068974, -0.07044915554042286, -0.07336511530973766, -0.07705404392334081 ], [ -0.05220399715042301, -0.05771911607519142, -0.06455214804683973, -0.07269344300250635, -0.08212532687921559, -0.0928192102136336, -0.10472945035034475, -0.11778377319693012, -0.13187101501080434, -0.14682803356578578, -0.1624285108650826, -0.17837667757362796, -0.194308554215193, -0.2098022105947961, -0.2243970871127421, -0.23762094197263478, -0.24902173375176767, -0.25820084964312895, -0.26484364049310555, -0.268743346059346, -0.26981528865752313, -0.26809963837564504, -0.26375284690963763, -0.2570295854249235, -0.24825828109350473, -0.23781387200042592, -0.2260911810702172, -0.21348154305881067, -0.2003542968021177, -0.18704375102489623, -0.17384142877121456, -0.16099286839760596, -0.14869799856330934, -0.13711405327627213, -0.12636007873616717, -0.11652224138187783, -0.10765932773347986, -0.09980800068361384, -0.09298752793126663, -0.08720382064784749, -0.08245271478445149, -0.07872249727374614, -0.07599572928698384, -0.07425045290877264, -0.0734608894208344, -0.07359774912096773, -0.07462827563237395, -0.07651614282657038, -0.07922131052456449, -0.08269992708300078 ], [ -0.053392193268232635, -0.05958919255281814, -0.067171975918623, -0.07613373639932264, -0.08646120887428843, -0.0981318013728576, -0.11110679189395367, -0.12532020907274888, -0.14066418843762474, -0.15697298225779643, -0.1740089388466899, -0.19145418313084106, -0.2089111839657538, -0.22591401771060843, -0.24195035360467193, -0.25649244894236334, -0.26903401814892103, -0.2791288064005986, -0.28642611716093763, -0.29069859010151317, -0.2918584090855023, -0.28995985308431493, -0.28518836032475003, -0.2778384731553371, -0.26828458117008175, -0.2569489474647119, -0.24427110577850492, -0.2306816524358805, -0.21658213258731224, -0.20233148815127655, -0.18823860743863696, -0.1745599586463643, -0.16150106123564179, -0.14922056052743593, -0.1378358247235516, -0.12742920043885408, -0.11805428845448995, -0.10974180491264895, -0.10250476117707874, -0.0963428257861767, -0.09124582798128411, -0.08719643024256685, -0.08417204338674655, -0.08214608745936458, -0.08108871894582059, -0.08096715245753805, -0.08174570467890474, -0.0833856809877318, -0.08584521158298808, -0.08907912516049243 ], [ -0.05550027958647952, -0.06242673629105566, -0.07080936536816362, -0.08064440835024067, -0.0919234485167435, -0.10463066065546467, -0.11873535766127596, -0.1341792018044793, -0.15085887627707306, -0.1686067646919822, -0.18717366019486958, -0.20621807833575717, -0.2253060500221606, -0.24392352625523872, -0.26150134716693085, -0.27745072818363353, -0.2912056635934354, -0.3022674953256187, -0.3102461268849418, -0.3148922443633226, -0.31611583589124165, -0.31398840140689455, -0.30872910407115356, -0.30067791217550033, -0.29026069397740606, -0.2779518179160996, -0.2642391505267333, -0.24959488264475588, -0.2344539120014989, -0.21920001622192437, -0.204159001356974, -0.1895974461750105, -0.1757254955528862, -0.16270225480773448, -0.15064257509997925, -0.13962430438803453, -0.12969535090889717, -0.12088013809557274, -0.11318521222852507, -0.10660389919584634, -0.10112000188826198, -0.09671059371622026, -0.09334800455651482, -0.09100111957802581, -0.0896361235372265, -0.08921682633714156, -0.08970470174527945, -0.09105876124833545, -0.09323536988543957, -0.09618809146686058 ], [ -0.058593355746992426, -0.06630030883831317, -0.07553663737209404, -0.08630179549314809, -0.09859256842886921, -0.1124005478212946, -0.1277040634224692, -0.14445361487760167, -0.16255156348419864, -0.18182903962333552, -0.20202491978040527, -0.22277245395908518, -0.24359822029124228, -0.2639358514413352, -0.2831543155381258, -0.3005982926525136, -0.3156365991638314, -0.3277133833244533, -0.33639577634453005, -0.3414112475700579, -0.34266880588197307, -0.3402607309620719, -0.3344451709906625, -0.32561353252368874, -0.3142489542312829, -0.3008827298731325, -0.2860545026184231, -0.2702800637428585, -0.25402842134357734, -0.23770801944738917, -0.22166083261955077, -0.20616252496273807, -0.1914267937381705, -0.17761223118288905, -0.16483037676926138, -0.15315399031959354, -0.1426248959238715, -0.13326100405955366, -0.1250623121976775, -0.1180158204498526, -0.1120993900811188, -0.10728463051909576, -0.10353893456347374, -0.10082679923224602, -0.09911057620818842, -0.09835079443862149, -0.09850619000386307, -0.09953356598848939, -0.10138758851782137, -0.10402060516970024 ], [ -0.06273959411067509, -0.07128213665945127, -0.08143046623642225, -0.09318736543802242, -0.10655505563331025, -0.12153300929012678, -0.1381093227518655, -0.1562442866942484, -0.17584682407999042, -0.19674718979566852, -0.2186717567317849, -0.24122666709924123, -0.26389594668897615, -0.286056794934899, -0.30701150306511726, -0.3260330266880018, -0.34241978948027557, -0.3555540749394031, -0.36495692102961985, -0.37033143006909924, -0.3715871239493261, -0.368841055293663, -0.36239609911844284, -0.3527014870512892, -0.3403035680686113, -0.3257952664561606, -0.3097711141346523, -0.29279205550204207, -0.27536149571578117, -0.25791196861311577, -0.24080057138244676, -0.22431085581266286, -0.20865894008830826, -0.1940019625318672, -0.180447451787221, -0.16806262315074738, -0.1568829746282474, -0.14691983427553823, -0.13816670865054348, -0.13060441541062084, -0.12420506734948589, -0.11893502473057704, -0.11475695884168058, -0.11163118035097952, -0.10951638668839214, -0.10836997662679249, -0.1081480693687934, -0.1088053507667962, -0.11029485147025098, -0.11256774147527226 ], [ -0.0680101189738248, -0.0774480506694536, -0.08857188844156094, -0.101387805297668, -0.11590353785176088, -0.13212664057776258, -0.15005537430264482, -0.16966037285456192, -0.19085759672159164, -0.21347642150852303, -0.2372298018172455, -0.2616947085629777, -0.2863094935371125, -0.31039106932031824, -0.3331707722312948, -0.3538452775923845, -0.37163792690030173, -0.385864767534059, -0.3959975542483735, -0.4017140009259646, -0.4029258953391222, -0.39977944911550145, -0.3926284044154123, -0.3819864424504446, -0.368469028907164, -0.3527351115674667, -0.3354367143192436, -0.3171809054231831, -0.2985052345704679, -0.27986533023364313, -0.2616321013264598, -0.24409567458585907, -0.22747346652318823, -0.2119203186387036, -0.19753920216531362, -0.1843915098064811, -0.17250635414300008, -0.16188858387788263, -0.1525254266448569, -0.14439179269551927, -0.1374543479866478, -0.1316745046760207, -0.1270104941281317, -0.1234186907136482, -0.1208543493969304, -0.11927190955914357, -0.11862500343091276, -0.11886629077699784, -0.11994722259725643, -0.12181781609456488 ], [ -0.07447855115735158, -0.08487703871740282, -0.09704586251205138, -0.11099459061396577, -0.12673636374611041, -0.1442866749721745, -0.16365386123418113, -0.1848188737078551, -0.20770458797765817, -0.23213894596961937, -0.25782012657226655, -0.28429361322920027, -0.31094902522715956, -0.33703962308265556, -0.361722387509872, -0.38411418418510235, -0.40335944014036307, -0.41870410313589324, -0.4295676758335207, -0.43560160544499144, -0.4367219279686037, -0.43310871521578476, -0.4251729749375212, -0.41349949484609183, -0.3987784851447532, -0.38173875725814654, -0.3630917288324592, -0.3434908624641823, -0.323507019995466, -0.30361753369369443, -0.2842056123499915, -0.26556661266006754, -0.24791821992436613, -0.23141230836956622, -0.21614695735610173, -0.2021776806781559, -0.18952735736397708, -0.1781946486927516, -0.16816087633247645, -0.15939545000110178, -0.15185999451456267, -0.14551135408069038, -0.14030365923292165, -0.13618963741995516, -0.133121337225927, -0.131050421454311, -0.12992816736141144, -0.1297052938462877, -0.1303317157311653, -0.13175630473978261 ], [ -0.08222009182846213, -0.09365025246880743, -0.10694018203671285, -0.12210279047446027, -0.13915629102428861, -0.1581235486056528, -0.17902226290077827, -0.2018429071747737, -0.226514338357094, -0.2528617716187507, -0.28056669052032335, -0.30914050412781824, -0.3379212168317648, -0.3660958251047155, -0.3927448231981358, -0.41690319520269864, -0.43763383836745895, -0.45410947478080604, -0.46569471717367855, -0.47201403811078557, -0.4729898928343374, -0.4688411079486634, -0.4600423987516653, -0.4472560587582267, -0.4312520768369139, -0.4128321374974564, -0.39276805938200393, -0.3717591791569084, -0.3504082602277289, -0.3292126185006206, -0.308566149657325, -0.2887681703048946, -0.2700357953282731, -0.2525175122388061, -0.23630644357665143, -0.22145242735717063, -0.20797249349533004, -0.19585960553256898, -0.18508971318897327, -0.1756272586897767, -0.16742932645079622, -0.16044864135358106, -0.1546356186759853, -0.14993965704172996, -0.14630984936125446, -0.1436952682431163, -0.14204496294944413, -0.14130778509123187, -0.14143214005871774, -0.1423657408245952 ], [ -0.09131003249321945, -0.10384932325072183, -0.11834355601255597, -0.13480887367353134, -0.153267989655962, -0.17375008662095548, -0.19628076254523363, -0.2208582597803867, -0.24741545148409588, -0.2757725996737957, -0.3055919004199634, -0.3363478415713303, -0.3673242545989538, -0.3976403005890652, -0.4262995187326592, -0.45225481159073316, -0.4744864968065085, -0.492091927458, -0.5043786719399118, -0.5109437580093077, -0.5117183806223656, -0.5069650333873095, -0.4972283150849056, -0.48325377679097903, -0.46589524146041056, -0.44602914498156276, -0.42448764814389606, -0.40201460915440557, -0.3792427624596021, -0.3566874739091504, -0.33475174660042656, -0.31373778833718663, -0.2938615982355967, -0.27526818453218743, -0.25804596714458616, -0.24223959871531836, -0.22786088840751495, -0.21489778936672838, -0.20332156704985482, -0.19309234389973828, -0.18416324639292636, -0.17648338356788928, -0.16999987459158472, -0.16465912443514175, -0.16040752558027238, -0.1571917419851463, -0.15495871014483198, -0.15365547117440337, -0.15322892738191662, -0.15362559678257803 ], [ -0.10182161823210256, -0.11555389070045063, -0.1313427302072082, -0.14920735040957855, -0.1691741449880586, -0.1912770360430599, -0.2155472133064199, -0.24198782073623853, -0.2705325515399278, -0.3009933761534808, -0.3330098582767301, -0.36601651952498027, -0.3992409782342448, -0.4317343122162742, -0.4624246194561498, -0.49018470325085584, -0.5139130983970668, -0.5326308900036837, -0.5455871664225775, -0.5523514266565471, -0.552866050072137, -0.547441882264442, -0.5366988890493456, -0.5214704847166838, -0.5026969597927811, -0.48132995210766105, -0.4582607187449151, -0.43427548375898883, -0.4100346272451726, -0.386069582705052, -0.36279107717972137, -0.3405034780785347, -0.31942151730315954, -0.2996870232924113, -0.2813843227150593, -0.2645536747345914, -0.2492025393544745, -0.23531473441161566, -0.22285766758838554, -0.21178788708813845, -0.2020552087622095, -0.193605668425751, -0.18638352790499746, -0.1803325388805529, -0.17539664341627237, -0.17152026579076973, -0.1686483273593523, -0.1667260946062884, -0.16569895007747526, -0.1655121563609403 ], [ -0.1138232585125587, -0.1288383349383344, -0.14601863435685536, -0.1653862229769013, -0.18697011313925416, -0.21080686348672495, -0.236930074176319, -0.2653437204915807, -0.2959777516758726, -0.32863127144707993, -0.36291709447298465, -0.3982266715803548, -0.4337301313681621, -0.4684117787549313, -0.5011279119268297, -0.5306754890690358, -0.5558740564191866, -0.5756690689359641, -0.5892507914034865, -0.5961617681229773, -0.5963581252482223, -0.5902031841972505, -0.5783965099388313, -0.5618622399384204, -0.5416278729566637, -0.5187190179709202, -0.494083557352935, -0.4685472385697661, -0.4427955600608107, -0.41737419663193664, -0.39270058791923645, -0.36908099743780676, -0.3467292172456327, -0.3257846336151998, -0.30632846178628503, -0.28839765876560214, -0.2719964365887327, -0.2571055211249683, -0.24368940610119788, -0.2317018878379904, -0.22109016455403996, -0.21179776394655858, -0.20376653499536673, -0.19693791044652165, -0.19125361804222374, -0.18665599235534847, -0.18308801518516427, -0.18049319058549151, -0.17881534034096236, -0.17799838680097335 ], [ -0.1273751660260819, -0.14376781670302807, -0.16244168974061557, -0.1834214134390456, -0.2067373273931371, -0.23242603615622215, -0.26051953682270174, -0.29101738207419087, -0.32383982816345336, -0.3587672870743381, -0.39538101948817245, -0.43302647677018663, -0.4708160727105032, -0.5076703312187181, -0.542379373209811, -0.5736705943826012, -0.6002893214490398, -0.6211079059294999, -0.6352590974649179, -0.6422601312043277, -0.642083556916502, -0.6351482922166279, -0.6222357962567159, -0.6043613813387972, -0.5826381581463398, -0.5581626323699576, -0.5319356875395469, -0.5048192730288512, -0.47752152418767707, -0.45060091004295066, -0.4244811122605123, -0.3994706040095814, -0.3757831014860177, -0.3535567445192599, -0.3328709862714075, -0.3137608531091128, -0.2962286139399834, -0.28025308660074794, -0.26579688565663934, -0.25281193126724644, -0.24124352282831374, -0.23103325134886354, -0.2221209905156375, -0.2144461729607307, -0.20794852747862735, -0.20256842541488718, -0.19824695998244612, -0.19492586035955306, -0.1925473225660278, -0.19105382091427414 ], [ -0.14252559333670667, -0.160393848202932, -0.18066656951875637, -0.20337054708425578, -0.22853593325282023, -0.2561963653396626, -0.2863775137536958, -0.3190682276391297, -0.35417189841355956, -0.39144334077776793, -0.43042699995849787, -0.47041990213490026, -0.5104778499514515, -0.5494621898554818, -0.5861039509745953, -0.6190686613631704, -0.6470339872047679, -0.6688040279490447, -0.6834577141742555, -0.6904901976658295, -0.6898932000893491, -0.6821428015326264, -0.6681019534932009, -0.6488745432641312, -0.6256550204603281, -0.599605846045457, -0.5717763205639066, -0.5430610766512808, -0.5141887232353272, -0.4857296664014356, -0.458114035754569, -0.4316534742745874, -0.40656304359535594, -0.3829812802624436, -0.3609875643490302, -0.3406166081495407, -0.32187020989992976, -0.304726570642462, -0.2891475227623893, -0.2750840156495151, -0.262480175798941, -0.2512762211175316, -0.2414104703742691, -0.23282065243514027, -0.22544468756646646, -0.21922108481833308, -0.21408907485585416, -0.20998857593587927, -0.2068600714057644, -0.20464445966010342 ], [ -0.15930691140224473, -0.17874971345467483, -0.2007268311718864, -0.2252666426642561, -0.2523973678997912, -0.2821463212517699, -0.3145276041918293, -0.34951235718765106, -0.38697909335953296, -0.42664945475335375, -0.46802576154066733, -0.5103550567505077, -0.5526391156092808, -0.5936859830269039, -0.6321752948208879, -0.6667189519448671, -0.6959350513055698, -0.7185671023554988, -0.7336470730210618, -0.7406532959222131, -0.7395993414892236, -0.7310178564971497, -0.7158494751556083, -0.6952805153675178, -0.6705796695813818, -0.6429686910794548, -0.6135400496238228, -0.5832176590548496, -0.5527490071046097, -0.5227163299242538, -0.49355716484812595, -0.4655879476127587, -0.43902704184201524, -0.4140154296357762, -0.3906343979870952, -0.36892015909689335, -0.3488756381127596, -0.33047978224607427, -0.31369477251622374, -0.29847150099110065, -0.2847536385859542, -0.2724805750745417, -0.2615894707437449, -0.25201662098489913, -0.2436983018861389, -0.23657123635516858, -0.23057279579684714, -0.22564103112006095, -0.2217146081550267, -0.2187327059009443 ], [ -0.17773181860639486, -0.19884610903942634, -0.222629903760368, -0.2491123436844514, -0.278317719877219, -0.3102634120085359, -0.34494643543205816, -0.38231292219792046, -0.42220824290972525, -0.4643132742817043, -0.5080834095979343, -0.552715308465235, -0.5971606562767708, -0.6401807241104643, -0.6804111175091827, -0.7164181005876376, -0.7467696278531364, -0.7701594724800342, -0.7855831617797232, -0.7925096864085376, -0.7909767883207417, -0.7815703879379843, -0.7653011181995646, -0.7434278553314758, -0.7172837365878288, -0.6881417317222432, -0.6571319156035994, -0.625204479273635, -0.5931249377690107, -0.5614880742629773, -0.5307405473177351, -0.5012058267762758, -0.47310800530135494, -0.446592895906982, -0.4217458991815263, -0.3986066834775726, -0.3771809790184902, -0.3574498796181547, -0.33937705447067495, -0.32291424242050476, -0.30800535634865883, -0.2945894779682401, -0.28260297904539333, -0.27198096599563093, -0.26265821131390016, -0.25456970689346475, -0.24765095016414818, -0.24183805327983865, -0.23706774756789123, -0.23327733955842 ], [ -0.19778997726968262, -0.22066737571373607, -0.24635289865129606, -0.27487529387147513, -0.306252657258692, -0.34048866359448093, -0.37755772948730476, -0.41737389436016237, -0.45974159457471264, -0.504294125112213, -0.5504362413390702, -0.597315055445343, -0.6438369684206966, -0.6887228860008137, -0.7305707528365433, -0.7679086064878897, -0.7992649650974656, -0.8232979070601757, -0.8389805555564043, -0.8457819131127111, -0.8437654665863368, -0.8335641558004911, -0.8162470537525225, -0.7931322592863835, -0.7656052713623369, -0.7349812097481057, -0.7024221944031992, -0.6689022665000979, -0.6352049115536154, -0.6019389632825809, -0.5695625828093993, -0.5384090303665978, -0.5087109236170486, -0.4806215388638537, -0.45423275016092235, -0.4295897234033904, -0.40670271033718497, -0.38555635953574563, -0.3661169570434173, -0.3483379715755385, -0.3321642301203242, -0.3175350003299226, -0.3043862109597467, -0.29265200240343336, -0.2822657661141746, -0.27316080373632884, -0.2652707131966994, -0.2585295889321496, -0.2528721060974584, -0.2482335434321249 ], [ -0.21944534850118685, -0.24416864290712587, -0.27183962870645756, -0.3024851232015928, -0.33611449981833064, -0.37271392232544315, -0.4122300002584428, -0.4545383341726798, -0.4993958242998211, -0.5463828827637803, -0.5948514313818619, -0.6439009058193648, -0.6923973711255662, -0.7390270227475525, -0.7823554822280135, -0.8208797155022224, -0.8531007976923499, -0.8776576869055368, -0.8935175973685336, -0.900159852717759, -0.8976741091708419, -0.8867313061514284, -0.8684441388437906, -0.8441738919791358, -0.8153447316122853, -0.7833043258681822, -0.7492414996369593, -0.7141523177758985, -0.6788388769895044, -0.6439261977143871, -0.6098868267049107, -0.5770669328956554, -0.5457106953835493, -0.5159816318500389, -0.48798052691960186, -0.461760116263939, -0.43733689110465795, -0.41470044752723645, -0.39382079341767173, -0.37465398420943236, -0.35714640790663843, -0.34123798994601157, -0.3268645435372121, -0.3139594524226096, -0.3024548403709912, -0.29228235441569295, -0.2833736659357161, -0.27566077426629354, -0.26907618085921614, -0.2635529875196034 ], [ -0.24263444278113022, -0.26927412506757636, -0.29899909073399594, -0.33183230637013006, -0.3677716917426194, -0.4067822135143807, -0.44877806638198, -0.4935912562065788, -0.5409262876382364, -0.590307380111619, -0.6410330656142664, -0.6921576152987393, -0.7425112144029815, -0.7907500554323608, -0.8354123324164076, -0.8749715833998718, -0.9079145808076722, -0.9328789353379066, -0.9488430758252695, -0.9553065858920508, -0.9523843037773448, -0.9407740961893704, -0.921615406220957, -0.8962951412269866, -0.8662616585150531, -0.832885447006194, -0.7973769834394672, -0.7607529870480716, -0.7238352664649924, -0.687267543999515, -0.6515399083426439, -0.6170147302838475, -0.5839508833678051, -0.5525249452419392, -0.5228490520413567, -0.4949855637760915, -0.46895890087528025, -0.4447649683479438, -0.42237857115427213, -0.4017591828282542, -0.38285537945479925, -0.36560820228595664, -0.3499536684986394, -0.3358246119672103, -0.3231520042476932, -0.31186587949506894, -0.30189596485498893, -0.2931720991249346, -0.28562450644010157, -0.2791839778497944 ], [ -0.26726563158077765, -0.29587670658845766, -0.32770551730024017, -0.3627689345642409, -0.40105059962338957, -0.44249089601860253, -0.4869678520202572, -0.534266218180787, -0.5840352595142133, -0.6357417922859916, -0.6886318760339657, -0.7417174037952771, -0.7937964247065451, -0.8434992236874521, -0.8893418748327651, -0.9297832528789682, -0.9633096350449297, -0.9885745485656152, -1.0045833081050715, -1.0108639818638752, -1.0075541592096229, -0.9953665955539229, -0.9754501010351546, -0.9491994891512616, -0.9180729095447178, -0.883454137253361, -0.8465704656433418, -0.8084580832672827, -0.7699597355321475, -0.7317404228407745, -0.6943109403835795, -0.6580531244454966, -0.6232436235906272, -0.5900748309747348, -0.5586726106873787, -0.529110941852999, -0.5014238124601038, -0.47561475670332515, -0.45166442143071417, -0.42953650959607004, -0.4091824018191229, -0.3905447108616418, -0.37355998204343116, -0.3581607165594142, -0.34427686420394543, -0.3318369064950311, -0.3207686297875915, -0.31099966987278316, -0.30245789409914753, -0.29507167369426346 ], [ -0.2932195832579053, -0.3238388447831718, -0.35779996175188244, -0.3951112503640679, -0.43573930320508314, -0.4795970116062498, -0.5265235168442586, -0.5762542623916929, -0.6283824200967849, -0.6823180861397256, -0.7372569385550624, -0.7921714111559854, -0.8458307174491214, -0.8968433685574516, -0.9437096787737494, -0.9848838344868962, -1.0188652713461244, -1.044338594287293, -1.0603485348393051, -1.0664571995483376, -1.062821258676726, -1.0501565194147902, -1.029604801429069, -1.0025522559447098, -0.9704532697997983, -0.9346957919647222, -0.8965191719232722, -0.8569777404633765, -0.8169361590528531, -0.7770830073529438, -0.7379526874508728, -0.6999495301220124, -0.6633708409561664, -0.6284274221718925, -0.5952611145252509, -0.5639594140436551, -0.5345674444742117, -0.5070976422280233, -0.48153751282780377, -0.4578557877286391, -0.4360072690322276, -0.4159366072483708, -0.3975812183077306, -0.3808735120127703, -0.36574257514141284, -0.35211542799051354, -0.3399179525601756, -0.32907557312929214, -0.3195137550436508, -0.3111583746457301 ], [ -0.3203508028734096, -0.3529947199527315, -0.3890932624151449, -0.4286436628880517, -0.47159290868985354, -0.5178241086120984, -0.5671358981027111, -0.6192139037496904, -0.6735960970262695, -0.7296380695806236, -0.7864881212143519, -0.8430823955202968, -0.8981646731101577, -0.9503264659415189, -0.9980598865968935, -1.0398251157580967, -1.0741472902319935, -1.0997540644763184, -1.1157380989339953, -1.1216980802131336, -1.117805222353074, -1.1047677087683387, -1.0837062100538684, -1.055983791418969, -1.0230389564282998, -0.9862553073042968, -0.9468794278557449, -0.9059820288489697, -0.8644500873056964, -0.8229974807743756, -0.7821846025344346, -0.7424408808597134, -0.7040868246962884, -0.6673539837468084, -0.6324022368485583, -0.5993343627819049, -0.5682081016149699, -0.539046012314646, -0.5118434503832208, -0.4865749702707363, -0.46319942370130984, -0.44166398803748946, -0.4219073235533083, -0.40386202702171226, -0.3874565218138736, -0.37261650150944475, -0.3592660243035534, -0.34732833868750396, -0.33672650644950186, -0.32738387655781614 ], [ -0.3484901788669742, -0.38315347763631014, -0.4213701481039142, -0.46312389197005366, -0.5083398892583084, -0.5568698803088954, -0.6084714490952979, -0.6627812462432564, -0.7192843400751395, -0.7772852030355833, -0.835888527023583, -0.8939978357009054, -0.9503354908957665, -1.003481710391032, -1.051928832731353, -1.0941535977153274, -1.128717459939938, -1.1543994739122732, -1.170344695092111, -1.176188170283002, -1.1721106976705045, -1.1588039130720942, -1.1373560257634865, -1.1090953044081169, -1.0754340556543365, -1.0377437401229153, -0.9972732256268247, -0.9551072125313707, -0.912154569852762, -0.8691553692586391, -0.8266976559557927, -0.7852379680352329, -0.7451221058484554, -0.7066043635813761, -0.6698644749940214, -0.6350221002713897, -0.6021489695345575, -0.5712789240966949, -0.5424161351352181, -0.5155417749362858, -0.4906193922527372, -0.46759921311896774, -0.4464215578313781, -0.4270195364525578, -0.4093211600842887, -0.3932509833683491, -0.37873137492002734, -0.3656834962598339, -0.35402805586318914, -0.34368589283593615 ], [ -0.37744837731563813, -0.41410334740795335, -0.4543941993629309, -0.49828887518363024, -0.545689004545786, -0.5964141035967758, -0.6501811321649635, -0.706579711629643, -0.7650453711165224, -0.824835732544475, -0.8850163581873823, -0.9444625367196878, -1.001880098128687, -1.05584452583949, -1.10485709322034, -1.1474207395372793, -1.1821414504286878, -1.2078545560193235, -1.2237585186736175, -1.2295224027178526, -1.2253316355052788, -1.211854347955426, -1.1901379544932427, -1.1614670724409915, -1.1272194550616679, -1.0887474583018106, -1.0472971771024986, -1.0039642194717233, -0.9596779775092883, -0.9152046435702414, -0.8711607068487863, -0.8280311099617623, -0.7861884722164455, -0.7459114106714797, -0.7074010312527624, -0.6707952700967433, -0.6361810914032481, -0.6036047056199169, -0.5730800347014582, -0.5445956641399986, -0.5181205099972856, -0.49360840727224325, -0.4710018009036492, -0.45023469610643463, -0.43123500211952204, -0.4139263833056011, -0.39822971388311973, -0.3840642171628285, -0.3713483567183988, -0.36000053516838826 ], [ -0.4070198821365914, -0.44561638809644194, -0.4879133646293378, -0.5338610918013325, -0.5833364259084581, -0.6361265094457905, -0.6919089412587413, -0.7502291230376001, -0.8104771930403385, -0.8718688669453493, -0.9334357168539806, -0.9940299613452517, -1.0523466299168938, -1.1069635557484798, -1.1563993267294606, -1.1991912364978594, -1.2339955199913162, -1.2597057157522582, -1.275572141912123, -1.2812941927449657, -1.277057321882296, -1.2635010966649813, -1.2416265364609078, -1.2126684188266603, -1.1779635029957185, -1.1388389771667953, -1.0965330934676945, -1.0521486508460258, -1.006633250500773, -0.960778115836338, -0.9152280304868154, -0.8704968381352123, -0.8269848684619739, -0.7849961568831356, -0.7447543482139911, -0.7064168069136928, -0.6700868186268468, -0.6358239587753376, -0.6036527936202846, -0.5735701119699943, -0.5455508883039674, -0.5195531659140407, -0.495522030248956, -0.4733928224934921, -0.4530937237495446, -0.43454782199803454, -0.4176747576399109, -0.4023920288453035, -0.3886160250542895, -0.3762628455958161 ], [ -0.43698745909802095, -0.47745360011210647, -0.5216657408507512, -0.5695549967889431, -0.6209727685998477, -0.675674324600958, -0.7332998558719663, -0.7933540044667184, -0.8551862298602845, -0.9179757989717827, -0.9807260038548935, -1.0422718371146324, -1.1013038629109484, -1.1564094472774598, -1.2061320696008249, -1.2490497997076162, -1.283872566262002, -1.3095518159627515, -1.3253865335344417, -1.3311021342788947, -1.3268800853197114, -1.3133279991643272, -1.291397183185128, -1.2622686637392213, -1.2272335005358939, -1.1875885707497216, -1.144559328747621, -1.0992515552356146, -1.0526279031022725, -1.0055025672581888, -0.9585475345401262, -0.9123052184107185, -0.8672038704967986, -0.8235735103814268, -0.7816610945754745, -0.741644289044043, -0.7036436018005802, -0.6677328552326309, -0.6339480949492504, -0.6022950859334637, -0.5727555649194996, -0.5452924167414421, -0.5198539315907922, -0.4963772851408208, -0.4747913673056281, -0.4550190695216505, -0.4369791255760431, -0.42058758743103103, -0.40575900525613273, -0.392407369930046 ], [ -0.46712682144798046, -0.5093701575487618, -0.555385356324338, -0.6050833047035653, -0.6582897949442135, -0.7147292939179368, -0.774007090184758, -0.835591000832725, -0.8987949076706099, -0.9627674500738839, -1.0264897713137442, -1.088785941314938, -1.1483486614269534, -1.2037817210195514, -1.2536599875907566, -1.296607016109057, -1.3313880069177575, -1.3570105029834145, -1.3728181258172423, -1.3785579473947678, -1.374404153420669, -1.360930382656771, -1.339036687645454, -1.3098482427433775, -1.2746071780279578, -1.2345758064279175, -1.1909620711915714, -1.1448702177528878, -1.0972741191837407, -1.0490080318428119, -1.000769177534115, -0.9531274009458746, -0.9065383985643796, -0.8613581851868626, -0.8178573760580428, -0.776234500024018, -0.7366279718545422, -0.6991266029622661, -0.6637786731775873, -0.6305996617842158, -0.5995787705739258, -0.5706843824748349, -0.5438685969777481, -0.5190709744869261, -0.4962216095494604, -0.4752436397434552, -0.45605528394518574, -0.4385714913105747, -0.42270527084927567, -0.40836876102829295 ], [ -0.49721129139250975, -0.5411205400525039, -0.5888077325534609, -0.6401629120803346, -0.6949866049542411, -0.7529740394074904, -0.8136985345161478, -0.8765953462859909, -0.940948121748593, -1.0058809058123366, -1.070359053670898, -1.1332022037562677, -1.19311173044729, -1.2487141548397753, -1.298621053588891, -1.3415046579115302, -1.3761856221497357, -1.4017248912944802, -1.4175064563367883, -1.4232950074280013, -1.419254907247137, -1.405924879663535, -1.384153479092789, -1.3550092836267158, -1.319683454664775, -1.2794003085641301, -1.2353459074737185, -1.1886183262335919, -1.1401983540125475, -1.0909367149104203, -1.0415531353329723, -0.9926430102231698, -0.9446883408314481, -0.8980705924714204, -0.8530839435813194, -0.8099480107821739, -0.7688195561827009, -0.729802955641678, -0.692959373453861, -0.6583146851106407, -0.6258662408814344, -0.5955885862819613, -0.5674382623067564, -0.5413578057098161, -0.5172790619852693, -0.495125913647363, -0.47481651546793435, -0.45626511736615927, -0.43938354513408745, -0.4240823993620697 ], [ -0.5270162793813887, -0.5724633809971598, -0.6216750460038987, -0.6745202947720388, -0.7307751765139101, -0.7901076494236101, -0.8520623135535653, -0.9160463334761493, -0.9813185746970687, -1.0469845790368864, -1.112000299768625, -1.1751873591060251, -1.2352620006068575, -1.2908790321631898, -1.3406909236584588, -1.383420532549538, -1.4179431991530054, -1.443370183673117, -1.4591217470967826, -1.4649767006739802, -1.4610877644333795, -1.4479586230430161, -1.4263869942336338, -1.3973850809930597, -1.3620919593786898, -1.3216912456900733, -1.2773431627217195, -1.230135030609902, -1.1810499820553444, -1.1309511203238765, -1.080577331217684, -1.0305470357574689, -0.9813667930741158, -0.933442441657212, -0.8870911853243071, -0.842553603097544, -0.8000049798278382, -0.7595656400888711, -0.7213101534152551, -0.6852753936695734, -0.6514675022641246, -0.6198678408482241, -0.5904380353927743, -0.5631242179820962, -0.5378605699883976, -0.5145722637691515, -0.49317789152866875, -0.47359146069599467, -0.45572402579511134, -0.43948501772615467 ], [ -0.5563234370414046, -0.6031658889194881, -0.6537407554344402, -0.7078962621560568, -0.7653851589212235, -0.8258504262485902, -0.8888114146546557, -0.9536517649876715, -1.0196110054508736, -1.0857821782789019, -1.151118057727238, -1.21444836949486, -1.2745098926528335, -1.3299904549781743, -1.379586583996523, -1.4220727605266248, -1.4563776626939773, -1.4816597301660726, -1.4973717989194424, -1.5033039334132776, -1.4995960404944064, -1.4867172427004607, -1.4654156834780108, -1.4366480685097698, -1.401500964671929, -1.3611152152640922, -1.3166216942314186, -1.2690925714606784, -1.2195086686023444, -1.1687410740572481, -1.117544035158757, -1.0665559532723206, -1.0163056719601202, -0.9672218376425253, -0.9196437170962659, -0.8738323749639771, -0.829981516013737, -0.7882275869042659, -0.7486589309314576, -0.7113239193269373, -0.6762380639714555, -0.6433901643215347, -0.61274756718761, -0.58426062960871, -0.5578664777708552, -0.5334921522421306, -0.5110572240452013, -0.4904759587284297, -0.4716590975587045, -0.45451531682028234 ], [ -0.5849243753191943, -0.6330077393534181, -0.6847736029261561, -0.7400499918862855, -0.7985678618696237, -0.859947753800625, -0.9236873690698302, -0.9891513956870797, -1.0555653534376026, -1.1220155718781153, -1.1874575504171707, -1.2507347818963008, -1.310609607207685, -1.3658067905361957, -1.4150692119552724, -1.4572232771697324, -1.4912493516330743, -1.5163500842674353, -1.5320077039876745, -1.5380212898302963, -1.5345173201669533, -1.521931263652914, -1.5009633323970084, -1.472516041600302, -1.4376235364478298, -1.3973823528569762, -1.3528909682382761, -1.3052022980628766, -1.2552902742647383, -1.2040294458882803, -1.1521853335138168, -1.1004128837920917, -1.049260520986208, -0.9991777083667812, -0.9505244221757945, -0.9035813963716599, -0.858560371324379, -0.8156138652433417, -0.7748441928265318, -0.7363115972111229, -0.700041454762948, -0.6660305711723665, -0.6342526223093906, -0.6046628121279503, -0.5772018281329727, -0.5517991763643846, -0.5283759751078787, -0.5068472813490277, -0.4871240174899808, -0.46911455879182806 ], [ -0.6126238738082328, -0.6617843714184394, -0.7145609348978269, -0.7707623059156167, -0.8300994162488925, -0.8921730780662487, -0.9564629963794454, -1.0223193977812992, -1.0889589165803042, -1.1554666356734393, -1.2208062502413013, -1.2838401261452246, -1.3433605067620191, -1.3981322432764265, -1.4469461452539196, -1.488680356320374, -1.5223651656396746, -1.5472447393249538, -1.562828050119644, -1.5689215288670044, -1.5656380654437605, -1.553380683376289, -1.5328035343467836, -1.5047565206558087, -1.470221829919237, -1.4302506161797321, -1.3859063716419913, -1.3382190160908412, -1.2881512147883418, -1.236576474243399, -1.1842673609807077, -1.1318916751021721, -1.0800143918800842, -1.0291034486138606, -0.9795378330100581, -0.931616816509881, -0.885569516203417, -0.84156424232643, -0.7997172948404204, -0.760101021383595, -0.7227510518064776, -0.6876726929020832, -0.6548465103260883, -0.6242331505007684, -0.5957774690449562, -0.5694120379640577, -0.5450601042904359, -0.5226380700378389, -0.5020575585630446, -0.48322712661446543 ], [ -0.6392425383591903, -0.6893096562057717, -0.7429113222496023, -0.7998381801933521, -0.8597831126946739, -0.9223300197401711, -0.9869442459154932, -1.0529658983498682, -1.1196075699778316, -1.1859581649567204, -1.2509945365093054, -1.3136024196880127, -1.3726076156727993, -1.426817519978124, -1.4750718658717707, -1.5163000131591513, -1.5495804131045852, -1.574196374583484, -1.5896814628319758, -1.5958482926284787, -1.5927963641576173, -1.5808976665376302, -1.5607622883129806, -1.5331892627606694, -1.4991095657877875, -1.459528291670341, -1.4154718056608986, -1.3679436991707314, -1.3178912902538529, -1.2661826858462937, -1.2135932657969324, -1.1607998600793783, -1.1083807445565859, -1.0568197166352216, -1.006512788992511, -0.9577763574122247, -0.9108559988023603, -0.8659353101033118, -0.8231444003736308, -0.7825677999611659, -0.7442516600604452, -0.7082101919382953, -0.6744313458206582, -0.6428817616660827, -0.6135110431321812, -0.586255415989245, -0.5610408359954172, -0.5377856109354279, -0.5164025986355952, -0.4968010383434761 ], [ -0.6646188908803816, -0.7154179315095205, -0.7696564859954437, -0.8271085065440951, -0.8874509482247979, -0.9502536607661363, -1.0149711879939278, -1.080937653036088, -1.1473661180200396, -1.2133539270905185, -1.277895505258343, -1.3399038291559413, -1.3982412570245808, -1.4517595716125942, -1.4993479529961928, -1.5399862268131712, -1.5727993061871204, -1.5971075778381019, -1.6124674810010968, -1.6186970508133238, -1.615882867979895, -1.6043674263608774, -1.5847188095183986, -1.557687026079311, -1.5241528035671732, -1.4850748459810412, -1.4414406796613135, -1.3942246689909048, -1.344355067753615, -1.2926904701137114, -1.24000494389304, -1.1869805058496263, -1.1342053617741565, -1.082176366343991, -1.0313043438770486, -0.9819211620164585, -0.9342877074339155, -0.8886021437497037, -0.8450080236072126, -0.8036019771675447, -0.7644408120717453, -0.7275479413782999, -0.6929191126982743, -0.6605274496559305, -0.6303278408408994, -0.6022607254844354, -0.5762553321623222, -0.552232429107888, -0.530106643823515, -0.5097884067643377 ], [ -0.688610897393402, -0.7399654197224121, -0.79465255648567, -0.8524311459509444, -0.9129644306453417, -0.9758110640459499, -1.0404182228141183, -1.1061179308079443, -1.1721278588833115, -1.2375579324336097, -1.3014240006048015, -1.362669542399837, -1.4201958615111059, -1.4729004321239434, -1.5197220206342, -1.5596900079869616, -1.5919741514116892, -1.6159301246218813, -1.6311358783792513, -1.6374144200543368, -1.6348400767260316, -1.6237274599557892, -1.604604726053899, -1.5781747639532868, -1.5452691908770233, -1.5068002992250977, -1.463715474275996, -1.4169573986861583, -1.3674319520258704, -1.3159844187944358, -1.2633836273239463, -1.2103130150343118, -1.1573673184224396, -1.1050535372691985, -1.0537949310843235, -1.0039369945449466, -0.955754572295852, -0.9094594779639824, -0.8652081602465791, -0.8231091043160143, -0.7832297699932195, -0.7456029528989073, -0.7102325160224515, -0.6770984817895066, -0.646161503162523, -0.6173667502236306, -0.5906472589705701, -0.5659267939362598, -0.5431222774026891, -0.5221458366613396 ] ], "zauto": true, "zmax": 1.6374144200543368, "zmin": -1.6374144200543368 }, { "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.5359173365585105, 0.5312609610176285, 0.5274218263545144, 0.5244485045887681, 0.5223664252363888, 0.521176278415038, 0.5208539156629207, 0.5213517824668815, 0.5226017380042283, 0.5245189638688209, 0.5270065619483298, 0.5299604053216331, 0.5332738323646506, 0.5368418482590509, 0.5405645990706189, 0.5443499912769164, 0.548115428454764, 0.5517887172212149, 0.5553082524083782, 0.5586226268294491, 0.5616898263157529, 0.5644761696795757, 0.5669551400532119, 0.5691062328241577, 0.5709139199562089, 0.5723668041155962, 0.5734570112013334, 0.574179848192805, 0.5745337353037464, 0.5745204070106312, 0.574145364636087, 0.5734185523992927, 0.5723552176502735, 0.5709769030389008, 0.5693125028081107, 0.5673992972295226, 0.5652838594569223, 0.5630227100280506, 0.5606825794696262, 0.5583401337235057, 0.5560810259865946, 0.5539981676042794, 0.5521891640783676, 0.5507529410409081, 0.5497856849531297, 0.549376333271992, 0.5496019510131679, 0.550523402753892, 0.5521817496607148, 0.5545957562633143 ], [ 0.5248643636639864, 0.5197782625191655, 0.5155721932395727, 0.5123026805310157, 0.5100007844453381, 0.5086700751690995, 0.5082863310043396, 0.5087990250912048, 0.5101344475705007, 0.5122001185252805, 0.5148900194389587, 0.5180901248176455, 0.5216837477440582, 0.5255563040274639, 0.5295992225827635, 0.5337128591910568, 0.5378083877950458, 0.5418087369142945, 0.5456487045386801, 0.5492744237055786, 0.5526423663619783, 0.5557180697738192, 0.5584747527323765, 0.560891963028, 0.562954367555885, 0.5646507657146295, 0.5659733782591636, 0.5669174392099646, 0.5674810984350853, 0.5676656267448926, 0.567475902627984, 0.5669211484957764, 0.5660158727553738, 0.5647809606858246, 0.5632448409990258, 0.5614446360219365, 0.5594271826453885, 0.5572497908538352, 0.5549805904939714, 0.5526983100115527, 0.5504913392099234, 0.5484559578279274, 0.5466936677727479, 0.5453076507144329, 0.544398480323543, 0.544059338044662, 0.5443710935022481, 0.5453976907601882, 0.5471823055548297, 0.5497446905128717 ], [ 0.5135342080682226, 0.5079834507544587, 0.5033767651461812, 0.4997798195572586, 0.4972303997357554, 0.49573584663868187, 0.49527246635822425, 0.49578702441582767, 0.4972001689668635, 0.4994113887434501, 0.5023049500742489, 0.5057561973986596, 0.50963763970634, 0.5138243562330888, 0.5181984041740759, 0.5226520668787306, 0.5270899196125985, 0.53142979870867, 0.5356028347550998, 0.5395527531048638, 0.543234660204486, 0.5466135279801413, 0.5496625669288124, 0.5523616474437882, 0.5546958934167188, 0.5566545365587513, 0.5582300873020398, 0.5594178504461955, 0.5602157915009668, 0.5606247424302154, 0.56064892187333, 0.5602967330840046, 0.559581790864413, 0.5585241150348239, 0.5571514114087135, 0.5555003416692701, 0.5536176619324409, 0.5515610884573422, 0.5493997317423281, 0.5472139324060775, 0.5450943402130712, 0.5431401080777056, 0.5414561313770065, 0.5401493514929041, 0.539324257214911, 0.5390778462450475, 0.5394944306499361, 0.5406407577513295, 0.5425619449491587, 0.5452786756765884 ], [ 0.5019762731327393, 0.495924213400909, 0.4908807224865709, 0.4869219424205711, 0.48409366597091746, 0.48240810465652545, 0.48184289802878105, 0.48234254418796874, 0.4838221054967249, 0.48617274517571907, 0.4892684443937856, 0.4929731695591387, 0.4971478025987438, 0.5016562812069545, 0.5063705772477326, 0.5111743288124639, 0.5159651060617457, 0.5206554179482517, 0.5251726523349709, 0.5294581888993799, 0.5334659389283823, 0.5371605561624598, 0.540515535712636, 0.5435113806520374, 0.5461339741881115, 0.5483732542056461, 0.5502222498973187, 0.55167650911939, 0.552733920519193, 0.5533949156456299, 0.5536630215788877, 0.5535457220629293, 0.5530555726215106, 0.5522115009380097, 0.5510402067646339, 0.5495775555806163, 0.5478698380745681, 0.5459747455954927, 0.5439618938656519, 0.5419127189162699, 0.5399195771162347, 0.5380839124937918, 0.5365134153650256, 0.5353181891458221, 0.5346060633210633, 0.534477327187877, 0.535019288963276, 0.5363011591432886, 0.5383697866288732, 0.5412467217493141 ], [ 0.49024752497351004, 0.4836560380110527, 0.47813708454069576, 0.4737787477582989, 0.47063631451530824, 0.46872821358094247, 0.4680344773088934, 0.46849800342188475, 0.4700284992230676, 0.47250861757551643, 0.4758015287556338, 0.4797590629817632, 0.4842296040386347, 0.4890650751255275, 0.4941265773777738, 0.49928846733593774, 0.5044408560241284, 0.5094906614270204, 0.5143614442646334, 0.5189923086936106, 0.5233361633586987, 0.5273576235592516, 0.5310308013584019, 0.5343371855283122, 0.5372637643413634, 0.5398014969089259, 0.541944196809707, 0.5436878570895437, 0.5450304186318292, 0.5459719633507282, 0.5465152977610214, 0.5466668789851449, 0.5464380219947782, 0.5458463120769272, 0.5449171290494426, 0.5436851694041657, 0.5421958302267056, 0.5405062966980843, 0.5386861570759556, 0.5368173607912502, 0.5349933436042603, 0.5333171761711051, 0.5318986553896727, 0.5308503544997086, 0.5302827744351521, 0.5302988822944192, 0.5309884596941106, 0.532422783460057, 0.5346501926566889, 0.5376930386231826 ], [ 0.47841233756325324, 0.471242166043703, 0.46520675376916815, 0.4604077185032253, 0.4569115493720772, 0.4547445258738592, 0.4538904426542945, 0.4542915527042906, 0.45585266929124046, 0.45844790089707954, 0.46192914913635874, 0.4661353465037725, 0.47090145345975376, 0.47606642427924734, 0.4814796161691746, 0.4870053894844102, 0.492525882818575, 0.49794212345391525, 0.5031737473573211, 0.5081576603016899, 0.5128459839274986, 0.5172036097464036, 0.5212056416552399, 0.5248349535368405, 0.5280800312883556, 0.5309332144011432, 0.5333894050342513, 0.5354452741741027, 0.5370989648478786, 0.5383502699766674, 0.5392012450855157, 0.5396572013119427, 0.5397280097826734, 0.5394296327676389, 0.5387857790509162, 0.5378295604971639, 0.5366050047028779, 0.53516825707956, 0.5335882884729086, 0.5319469169485801, 0.5303379616699165, 0.5288653805955673, 0.5276403088585155, 0.5267770144295575, 0.5263879184560991, 0.5265779761323109, 0.5274388559506189, 0.5290434586474555, 0.5314413497127334, 0.5346556192520209 ], [ 0.46654205008439714, 0.4587532795504388, 0.4521583203833656, 0.44687401936388854, 0.4429800045959484, 0.4405123659554758, 0.4394604030302109, 0.439767041002036, 0.4413329577186753, 0.44402388449102953, 0.44768009268887293, 0.4521268592343283, 0.457184733292025, 0.4626786469803483, 0.4684452330863024, 0.47433804567460985, 0.4802306658546361, 0.4860178868811131, 0.49161530606256576, 0.496957714981945, 0.5019966891443143, 0.5066977490900405, 0.511037411749503, 0.5150003857689073, 0.5185770975733363, 0.5217616730908359, 0.5245504474473154, 0.5269410329505632, 0.5289319435631983, 0.5305227497240441, 0.5317147181874844, 0.5325118749832328, 0.5329224135941052, 0.5329603535551982, 0.5326473360912416, 0.5320144230444148, 0.531103744016136, 0.5299698163630814, 0.528680346993144, 0.5273163190977727, 0.5259711779577935, 0.5247489655602451, 0.52376132093807, 0.5231233653383197, 0.5229486250330971, 0.5233432962462634, 0.5244003015977796, 0.5261936927957578, 0.5287739868108516, 0.5321649602111437 ], [ 0.45471417803564373, 0.4462668603001593, 0.43906757002978525, 0.43325013546662694, 0.4289094830725253, 0.42609383351903185, 0.42480017437487977, 0.42497386444313534, 0.42651258200672887, 0.4292741098696266, 0.4330868568601303, 0.43776169717534563, 0.44310370599546695, 0.4489226197547223, 0.4550412362602619, 0.46130137905076996, 0.46756740266380314, 0.4737274734187791, 0.479693018660385, 0.48539680908128235, 0.49079014387570913, 0.4958395679838529, 0.5005234833521599, 0.5048289374553508, 0.5087487940428329, 0.5122794209625005, 0.515418971893429, 0.5181662934792834, 0.5205204549367531, 0.522480870778304, 0.5240479657714135, 0.5252243121502401, 0.5260161506937375, 0.5264351886051594, 0.5265005477465639, 0.5262407167691915, 0.525695340760354, 0.5249166639341014, 0.5239704278114957, 0.5229360242261625, 0.5219057160324939, 0.5209827762545028, 0.5202784655473871, 0.5199078717260165, 0.5199847702455216, 0.5206158172531634, 0.5218945323001867, 0.5238956328939661, 0.5266703143830536, 0.5302430039916778 ], [ 0.44301122612672944, 0.4338661645483558, 0.42601663893357666, 0.4196152033956597, 0.41477443906553946, 0.4115574019548042, 0.4099714580195533, 0.40996669751314235, 0.4114394042353019, 0.4142401732776971, 0.41818548625435026, 0.4230710850226621, 0.4286854179771387, 0.4348217065551039, 0.44128764770932477, 0.4479122772705655, 0.4545499596660872, 0.46108178878831213, 0.46741487540395965, 0.4734800765095901, 0.47922871947041523, 0.48462881714506906, 0.48966118429767025, 0.4943157699976953, 0.49858842933531883, 0.5024782789710861, 0.5059857180263879, 0.5091111477965558, 0.5118543874422462, 0.5142147541118267, 0.5161917513593424, 0.5177862869910416, 0.5190023195882907, 0.5198488117266636, 0.5203418474957895, 0.5205067525986703, 0.5203800376222742, 0.5200109703141781, 0.5194625734998782, 0.5188118460552348, 0.5181490213585929, 0.5175757182554785, 0.5172019105455173, 0.5171417457211893, 0.5175083786210937, 0.5184081372158862, 0.5199344812419882, 0.5221623170820616, 0.5251432612784613, 0.5289023787175995 ], [ 0.4315190674154314, 0.42163876898301705, 0.41309276990262567, 0.4060539933051028, 0.40065517461677314, 0.39697729686212535, 0.3950413614072087, 0.39480512043864235, 0.39616564054134085, 0.3989675033423111, 0.40301541024207305, 0.4080892656688404, 0.4139596299021346, 0.42040171582827934, 0.4272066724040802, 0.4341895409049517, 0.441193831376514, 0.4480930690911808, 0.4547898928840009, 0.46121337532292034, 0.46731521890835404, 0.4730654027031168, 0.4784477431894284, 0.4834557165342363, 0.48808878314545945, 0.49234936788549727, 0.49624058233465634, 0.4997647259754983, 0.5029225655706357, 0.505713360769107, 0.5081355752107377, 0.510188184476131, 0.5118724653486625, 0.5131941260582716, 0.5141656154465523, 0.5148084308291259, 0.5151552299513246, 0.5152515424324954, 0.5151568722743872, 0.5149449890197009, 0.5147032266116756, 0.5145306528291863, 0.5145350448007562, 0.5148287107128166, 0.515523330857706, 0.5167241392441432, 0.5185239060133705, 0.520997279072612, 0.5241960689814891, 0.5281459936405988 ], [ 0.42032488255313766, 0.4096746680136249, 0.4003866424505225, 0.39265551719278674, 0.38663673492109546, 0.38243265514209657, 0.38008177834816315, 0.37955317457681387, 0.3807475530379804, 0.3835051610122112, 0.3876193288738442, 0.39285345137535, 0.39895881103760505, 0.4056909153643919, 0.41282271331648385, 0.4201538837623646, 0.4275161181215458, 0.43477483501223035, 0.4418280494371613, 0.4486032127694549, 0.4550528018043558, 0.46114932198816505, 0.4668802464490211, 0.47224326991789334, 0.4772421337243124, 0.4818831825574977, 0.4861727446835383, 0.4901153781891179, 0.4937129878695195, 0.4969647831433137, 0.4998680127768392, 0.5024193768557248, 0.5046169824948973, 0.5064626801022925, 0.5079645936904204, 0.509139642441402, 0.5100158410833668, 0.5106341631611275, 0.511049754606338, 0.5113322977322656, 0.5115653526994143, 0.5118445509295678, 0.5122745889193332, 0.5129650743569364, 0.5140254058228081, 0.5155590096989584, 0.5176573900884287, 0.5203945392802237, 0.5238222776872372, 0.5279670241635738 ], [ 0.4095146975633802, 0.3980639424118916, 0.38799028398101637, 0.3795112663659162, 0.37280751188659333, 0.3680064876518749, 0.36516866837521983, 0.364278899863183, 0.3652451873379197, 0.3679057275272138, 0.37204320939931895, 0.3774038909541489, 0.3837182414162769, 0.3907201375355934, 0.39816245492292546, 0.4058279796218237, 0.41353553137172505, 0.42114186008117893, 0.4285402269621946, 0.43565667471602426, 0.442444916583513, 0.4488806131413902, 0.45495561881088387, 0.46067260601013466, 0.46604033422368657, 0.47106972969007976, 0.4757708735876711, 0.48015095069524316, 0.4842131733995601, 0.4879566578501528, 0.49137718615288795, 0.4944687425667945, 0.49722566788406336, 0.4996452399987654, 0.5017304635820657, 0.5034928384655295, 0.5049548733379495, 0.5061521166256057, 0.5071344889477417, 0.5079667225616735, 0.5087277465487866, 0.5095089077832541, 0.5104109925700713, 0.5115401149647121, 0.5130026617521011, 0.5148996185493423, 0.517320724708617, 0.520338988368932, 0.5240061095185851, 0.5283492910173778 ], [ 0.3991706180399441, 0.38689407538395504, 0.3759946181380341, 0.3667131220388474, 0.359257598810632, 0.3537844973467891, 0.35038130104124743, 0.3490539326586567, 0.3497222403782107, 0.35222536354928047, 0.3563364678514804, 0.36178411397986615, 0.3682762675029004, 0.3755230060342475, 0.3832550344157818, 0.3912365664756496, 0.39927243338559437, 0.4072101584034695, 0.4149381654552229, 0.4223813679179015, 0.42949525095544355, 0.436259332370695, 0.4426706435561293, 0.4487376607162502, 0.45447495805423616, 0.4598987505820789, 0.46502343247485306, 0.46985917814323774, 0.4744106383703154, 0.4786767204523214, 0.48265138638487354, 0.4863253422204147, 0.4896884344567973, 0.49273252474626095, 0.4954545874505686, 0.49785976592471404, 0.4999641296690101, 0.5017968912629499, 0.5034018660934719, 0.5048379888812433, 0.506178741600967, 0.5075104025729438, 0.5089291015262979, 0.5105367629364314, 0.5124361367609462, 0.5147252404019448, 0.5174916481822273, 0.5208071389664044, 0.524723223790735, 0.5292680082052051 ], [ 0.38936792762871314, 0.376247061722824, 0.3644867695946578, 0.35435103575329074, 0.3460769806939568, 0.33985383732563124, 0.33580155725113636, 0.3339532640518387, 0.33424616038691923, 0.33652413417642657, 0.3405524154753488, 0.34604141242199304, 0.35267475189901043, 0.3601363076858328, 0.36813231216747766, 0.3764066132635111, 0.38474891437621883, 0.39299699673466587, 0.40103443874204636, 0.4087853879134684, 0.41620771764871983, 0.4232855794456091, 0.43002204602737854, 0.4364322865757281, 0.442537540701908, 0.44836005726988815, 0.45391911559414383, 0.45922822019559717, 0.4642935292440032, 0.46911352548146423, 0.47367986612225593, 0.4779792662534416, 0.48199619485033524, 0.4857161074860179, 0.4891289120091495, 0.49223236210894816, 0.4950350927209262, 0.49755904295286024, 0.4998410505860931, 0.5019334448274405, 0.503903512447888, 0.5058317712317492, 0.5078090588893723, 0.5099325380259594, 0.5123008257569418, 0.5150085698057071, 0.5181408932232712, 0.5217681940098229, 0.5259417917117803, 0.5306908472666689 ], [ 0.38017228910648054, 0.36619653032790883, 0.35354731510841475, 0.34251063538699916, 0.33335368859632686, 0.32630192269879404, 0.32151339837398124, 0.31905526977435855, 0.3188885857960671, 0.3208666933692496, 0.3247490424530991, 0.3302276077340779, 0.3369597425293466, 0.3446005179024711, 0.3528292405926826, 0.36136754593096904, 0.36998890707810317, 0.3785209369165948, 0.38684246462138255, 0.39487733258427565, 0.40258650116260064, 0.4099596015884967, 0.4170066737628893, 0.42375052439946503, 0.43021995475884495, 0.4364440192119556, 0.44244745011478714, 0.4482473772337101, 0.45385144394362636, 0.4592573588341903, 0.46445382380545625, 0.46942266849917413, 0.47414192157161467, 0.4785894818275025, 0.482747025000761, 0.4866037918560934, 0.4901599398276006, 0.4934291913063386, 0.4964405673109811, 0.49923905104806593, 0.5018850824358014, 0.5044528463418855, 0.5070273894059626, 0.5097006860986143, 0.5125668722356006, 0.51571696455964, 0.5192334721523888, 0.5231853588935567, 0.5276238166003296, 0.5325792445743683 ], [ 0.3716373413056177, 0.3568051648831932, 0.3432477353070884, 0.33127096652039173, 0.3211720820424883, 0.3132154257436118, 0.3076026131571733, 0.30444211142539207, 0.30372621165109176, 0.3053233981104804, 0.3089901844638832, 0.3144001228891047, 0.3211823596062704, 0.3289604657599481, 0.3373843148334667, 0.3461515216748837, 0.35501833789609966, 0.36380191987805677, 0.37237657194323703, 0.38066639319756335, 0.38863620423225675, 0.3962820191402262, 0.4036218195667203, 0.41068703788434435, 0.41751496662138626, 0.42414224840557746, 0.43059961047996664, 0.43690802786815613, 0.44307647882653006, 0.44910137341263034, 0.4549676019700664, 0.4606509989396267, 0.4661218872530743, 0.4713492871983423, 0.4763053502254601, 0.48096960514636694, 0.48533266447309276, 0.4893991137379428, 0.4931893826083036, 0.496740466702522, 0.5001054333495384, 0.5033517078131016, 0.5065582047891964, 0.5098114473491813, 0.5132009011221537, 0.5168138379583574, 0.5207301167185743, 0.5250173114872394, 0.5297266127954745, 0.5348898658784532 ], [ 0.3638030047021734, 0.3481227410386615, 0.3336483607355091, 0.32070261057163607, 0.30961143544840314, 0.30067957050704686, 0.29415691705926056, 0.29020055952007145, 0.28884211708166846, 0.2899718668980802, 0.2933470643454008, 0.2986233310777018, 0.30539985968191674, 0.313266097130544, 0.321840073631116, 0.33079373685796304, 0.3398653199011511, 0.34886141510560637, 0.35765216372261527, 0.3661625730084134, 0.374362151177054, 0.38225423423993404, 0.3898657507035925, 0.397237774862085, 0.404417037768606, 0.4114485438187564, 0.418369502279485, 0.4252048399642819, 0.43196454544952423, 0.43864298232502413, 0.44522012270496925, 0.45166444657251004, 0.4579370838565043, 0.4639966808398721, 0.4698044587012923, 0.4753289844965592, 0.4805502669491401, 0.4854628944847694, 0.49007803220307017, 0.49442417938447775, 0.49854666006394904, 0.5025058820763202, 0.5063744622526148, 0.5102333824807627, 0.5141674136268124, 0.5182601160369493, 0.5225887847931103, 0.5272197399634607, 0.5322043526563106, 0.5375761388279061 ], [ 0.35669477410778, 0.34018507923424957, 0.3247970969133646, 0.310866410262205, 0.2987449756905183, 0.2887777853801753, 0.2812663931340829, 0.276423186755591, 0.2743274824870664, 0.2748988998404663, 0.2779001175353735, 0.28297008677225244, 0.28967679008515107, 0.2975732688573171, 0.30624361210459666, 0.3153327625146827, 0.3245604118088858, 0.3337226842885573, 0.3426860424976576, 0.35137711048169523, 0.3597709308327521, 0.367879107330333, 0.375738528961779, 0.3834009384465384, 0.39092345117064997, 0.39836017145951835, 0.4057551857253125, 0.41313731656796904, 0.420517007214145, 0.4278855461820094, 0.43521658180913864, 0.44246959863766594, 0.4495948126302604, 0.4565388356154173, 0.46325046481878174, 0.4696860431049917, 0.4758139693196819, 0.4816180793254994, 0.4870997431627352, 0.49227862283693924, 0.4971921104586504, 0.5018935260677945, 0.5064492080849451, 0.5109346840190007, 0.5154301667869432, 0.5200156785613498, 0.5247661497362742, 0.5297468626021357, 0.5350095957050595, 0.5405897689969578 ], [ 0.35032417889884, 0.3330141257507095, 0.31672913952528015, 0.3018129639327896, 0.28863943641195566, 0.2775916616175165, 0.2690241202433617, 0.26320971667710885, 0.2602834634498445, 0.2602025360877558, 0.26274089932318656, 0.2675232693024431, 0.27408610622815954, 0.2819444969563521, 0.2906470823328173, 0.2998109318574403, 0.30913700640176955, 0.3184112500679501, 0.32749700530452364, 0.33632322218826566, 0.3448712958978573, 0.3531620167024469, 0.361243233437354, 0.36917837549938964, 0.3770358646073161, 0.38487957438410025, 0.3927607229435567, 0.4007117477292779, 0.4087426905992932, 0.4168403905976288, 0.42497041821923437, 0.4330813139413268, 0.4411104259277689, 0.4489905313282679, 0.45665646536054016, 0.46405112512447483, 0.471130402204827, 0.47786678136272326, 0.4842514939077928, 0.49029522522817787, 0.4960274517198551, 0.5014945349073283, 0.5067567424324592, 0.511884405913788, 0.5169534678942928, 0.5220407114299104, 0.5272189983125091, 0.5325528546385587, 0.5380947252914217, 0.5438821662597755 ], [ 0.34469043642889835, 0.3266192229770724, 0.3094677513774666, 0.2935829225151911, 0.27935506479218586, 0.26720101242715627, 0.25752664566978817, 0.25066809982206095, 0.24682278005222114, 0.245993850682801, 0.24797375084926512, 0.2523771047087121, 0.2587101108530087, 0.2664496078884978, 0.27510820953200704, 0.2842748691801576, 0.29363198002719126, 0.3029557257488247, 0.3121068740651388, 0.3210173314463519, 0.329675579666326, 0.3381124546670885, 0.3463877315158136, 0.35457751925182207, 0.3627624178373389, 0.3710166272703086, 0.3793985479166489, 0.38794364732568387, 0.39666032690507436, 0.4055291846879817, 0.4145055645816428, 0.42352479370530666, 0.4325091861107257, 0.4413757917101215, 0.45004396557648585, 0.45844204856876997, 0.46651270325608635, 0.47421667883823765, 0.4815349549328342, 0.4884693321081658, 0.49504160793649965, 0.501291518169329, 0.5072736495041112, 0.5130535545487959, 0.5187033257353568, 0.5242969114181362, 0.5299054775159001, 0.5355931225234228, 0.5414132338042107, 0.5474057238629922 ], [ 0.33978313980442254, 0.320999439129251, 0.3030259914920465, 0.28620796171138513, 0.27094587004626886, 0.2576836728969204, 0.24687377349771752, 0.238914673505878, 0.2340703666268605, 0.23239792456846992, 0.2337168058304274, 0.23763801432627085, 0.24364112083033937, 0.2511663304551859, 0.2596909602835483, 0.26877636134458405, 0.2780868389884243, 0.28738925332687204, 0.2965422049406384, 0.30548101414156215, 0.31420184640677945, 0.3227463613907919, 0.33118718463914265, 0.3396140582057531, 0.3481205496117678, 0.3567915719588341, 0.36569247117759895, 0.3748607578794806, 0.3843014749637348, 0.39398669770433264, 0.4038589652371054, 0.41383781068425524, 0.4238281839037778, 0.43372949862029314, 0.44344421972329645, 0.4528852191661112, 0.4619814596494126, 0.47068184266918595, 0.47895725330554845, 0.48680095169612647, 0.49422752008325954, 0.5012705981479462, 0.5079796479978699, 0.5144159967513792, 0.5206484147293089, 0.5267484997776163, 0.5327861473323291, 0.5388253833044018, 0.5449208150194444, 0.551114909865395 ], [ 0.33558565048312067, 0.31614664535196435, 0.29740911353166843, 0.27971216032045426, 0.26345980237170075, 0.2491146045363595, 0.23716705170341343, 0.22807264015834963, 0.22216229521023612, 0.21955333078842604, 0.2201019109195806, 0.22342481724467564, 0.22898191115884567, 0.23618104250469305, 0.24446667984508139, 0.25337393903117866, 0.26254974154635585, 0.27175191570064144, 0.28083701715963116, 0.28974397298776433, 0.2984770586819611, 0.30708945483118577, 0.3156675247389925, 0.3243155445991836, 0.333140712363313, 0.342238791116965, 0.35168143943170754, 0.36150670114623856, 0.3717139577389754, 0.38226392377783724, 0.39308331505535465, 0.4040730231456385, 0.4151182269437923, 0.42609888859671363, 0.436899393654885, 0.44741653040616786, 0.4575654199932491, 0.46728332960584856, 0.47653150632468033, 0.4852952756759613, 0.49358268756204965, 0.5014219937031192, 0.5088582285414511, 0.5159491539747506, 0.5227608229940444, 0.5293630172596372, 0.5358248133315021, 0.5422105241597632, 0.548576239567578, 0.5549671476974624 ], [ 0.33207875625262295, 0.3120489100132728, 0.29261724765006214, 0.27411346105778106, 0.25693857434910206, 0.24156396953357046, 0.22850647818298434, 0.21826821721362727, 0.21124227106853857, 0.20760957319182746, 0.20727318389440294, 0.2098683358458535, 0.21484625316823522, 0.2215901612552609, 0.22951626780746087, 0.23813574990063063, 0.2470789493323915, 0.2560946288169785, 0.2650369941220206, 0.27384844380769197, 0.28254162306803765, 0.2911818824285837, 0.2998701940965568, 0.3087262008566, 0.31787120325692575, 0.32741159107780576, 0.3374241655569354, 0.3479453292999183, 0.3589658075668361, 0.37043151666922625, 0.3822499210043638, 0.39430025139463426, 0.4064455675524633, 0.41854480483602935, 0.4304634351106342, 0.4420819522688284, 0.45330189580560576, 0.4640494773727798, 0.47427707429764, 0.4839629361732032, 0.49310946007411255, 0.5017403644708572, 0.5098970574228707, 0.517634465379476, 0.5250165698116135, 0.5321118882578371, 0.5389891285571345, 0.5457132328828457, 0.5523420051932565, 0.5589234779381733 ], [ 0.3292441387366859, 0.3086937668461233, 0.28864799318191964, 0.2694249711852407, 0.25141703665912657, 0.23509418981864166, 0.22098541729096408, 0.2096243143836933, 0.20145544944945948, 0.19672230204330388, 0.1953843011742757, 0.19711082780631223, 0.20136023429673514, 0.2075030057404726, 0.2149342510072916, 0.2231445401114654, 0.2317484463076961, 0.24048516449681706, 0.24920572666640212, 0.2578555358641351, 0.2664557610558849, 0.2750845937830878, 0.2838585012432697, 0.29291322462830716, 0.3023843503362581, 0.3123881593861699, 0.32300471251832746, 0.33426577621418, 0.3461496429192336, 0.3585833973948832, 0.37145151180973185, 0.3846085281628863, 0.39789328699051996, 0.41114254160655833, 0.4242025155671255, 0.43693770087189376, 0.44923677089851255, 0.46101584202425366, 0.4722194898506475, 0.4828199692003024, 0.49281505950583776, 0.502224901954426, 0.5110881381931456, 0.5194576152796825, 0.5273958910240784, 0.534970755030917, 0.5422509675273857, 0.5493024033949432, 0.5561847665471455, 0.5629490061149273 ], [ 0.3270672740755, 0.3060710082788321, 0.2854986785800802, 0.26565606508017114, 0.2469223678531348, 0.22975656791167814, 0.2146845091591665, 0.20225251621053986, 0.192940203678561, 0.1870468489370124, 0.18459515471657528, 0.18530609846414992, 0.18866539866842755, 0.1940472483821672, 0.20083584393046758, 0.20850574194161098, 0.2166566050869208, 0.22501706878385874, 0.2334336656841481, 0.24185409564734983, 0.25030823079196324, 0.25888790019305946, 0.26772599294794214, 0.2769749133347102, 0.2867842790553404, 0.29727881218011526, 0.30853902960050594, 0.32058809695412854, 0.3333872753368417, 0.34684027554906616, 0.3608047139948683, 0.37510764999007745, 0.3895620944622283, 0.4039820821879749, 0.41819489005271554, 0.43204987693562147, 0.4454240410394712, 0.45822472652059115, 0.47039003227792126, 0.4818874668360184, 0.49271132364148, 0.5028791659830917, 0.5124277344392026, 0.521408531872866, 0.5298833020916024, 0.5379195939142081, 0.5455865858381127, 0.5529513307532264, 0.5600755593180039, 0.5670131510479579 ], [ 0.32553953334012503, 0.30417481380230493, 0.2831682267711718, 0.2628134842337696, 0.24347368730995939, 0.22558861160419844, 0.20966621563391172, 0.19624525791135997, 0.18581960429792585, 0.17873149765026414, 0.17506902151272857, 0.17462135301161139, 0.17692479301431452, 0.1813780590650219, 0.18736806228699063, 0.19435964613614085, 0.20193877197771237, 0.20982224564453056, 0.2178504707226217, 0.22597271421516651, 0.23422795797508705, 0.24272270757869133, 0.2516072357015063, 0.2610508820957704, 0.27121638903762807, 0.28223450258589344, 0.2941822565906721, 0.3070691805590718, 0.32083414486782535, 0.3353526485768776, 0.3504517735240478, 0.3659288596340562, 0.38157024062170275, 0.3971675034669658, 0.4125300145860821, 0.42749346712144604, 0.44192481904225306, 0.4557242648304375, 0.46882493091777305, 0.4811909149667445, 0.49281417679379147, 0.5037106770283067, 0.5139160679102562, 0.5234811741223399, 0.5324674577192163, 0.540942633954519, 0.5489765868379238, 0.5566377176301032, 0.5639898406270535, 0.5710897150381958 ], [ 0.32465940015215744, 0.3030051704081728, 0.28165869387573617, 0.26090273938867636, 0.24108281881745194, 0.22261341879344554, 0.20597208573035566, 0.19167080195751424, 0.18019518824798086, 0.17191244394045377, 0.1669713696793956, 0.16524133221234663, 0.16633225382230407, 0.1696912956569188, 0.17472531638513605, 0.1808981335678596, 0.18778426166584675, 0.19508769818635, 0.20264124373201273, 0.2103953550857536, 0.21839901519309265, 0.2267747827986132, 0.2356912388096595, 0.24533443430607194, 0.2558783968580014, 0.26745623706395516, 0.28013626156524046, 0.2939082795402232, 0.30868288256989007, 0.32430260848239917, 0.34056094029980993, 0.35722419425896584, 0.3740522022024271, 0.39081531248143003, 0.4073067734640097, 0.42335062428149056, 0.4388057648779751, 0.45356704902485895, 0.46756420185440234, 0.4807592305557006, 0.49314284668528524, 0.5047302866943543, 0.5155568160788987, 0.5256731320398271, 0.5351408341393381, 0.5440281046348148, 0.552405722327512, 0.5603435191432528, 0.5679073720744094, 0.5751568013549732 ], [ 0.3244328292687777, 0.30256861027174164, 0.2809765374616483, 0.2599299784721406, 0.2397566241641041, 0.22084201673145265, 0.20362431069081896, 0.18857321129467247, 0.17614529135380613, 0.166711888489253, 0.16047031295233183, 0.1573734971625091, 0.15712314476964706, 0.15923899840780809, 0.16316807011708334, 0.1683849272482835, 0.17445705112746804, 0.18107598052648036, 0.1880664003578884, 0.19538048086699392, 0.2030788630825288, 0.21130190285121797, 0.22023721411970057, 0.2300865594547293, 0.24103217211946693, 0.2532044033835632, 0.26665626763634526, 0.28135097310568147, 0.297164892639666, 0.31390351135921424, 0.33132477777212294, 0.34916397047749026, 0.36715579047222136, 0.3850515087714521, 0.40263071018143387, 0.4197081854338268, 0.43613693856030716, 0.4518083183533003, 0.46665014717426073, 0.4806235316792669, 0.4937188616874106, 0.505951360034808, 0.5173564419618075, 0.5279850724078323, 0.5378992654479129, 0.5471678435365027, 0.5558625575619783, 0.5640546556124172, 0.5718119740865495, 0.5791966064650005 ], [ 0.32487280860260354, 0.3028782614456607, 0.28113350825849587, 0.2599040961607934, 0.23950059906254953, 0.22027838343112124, 0.20263152408751944, 0.18697761620798375, 0.17372829069536094, 0.16323877656280558, 0.15573641450701944, 0.1512499601457286, 0.14958100110653022, 0.15034144227508206, 0.15303933892202068, 0.15717496365864464, 0.16231662554584847, 0.16814656432131314, 0.17448297995785633, 0.18128189356226837, 0.1886182841172279, 0.19665234891464814, 0.20559102255992806, 0.2156497174196065, 0.2270143356732087, 0.23980587244743592, 0.2540544698388662, 0.26968966530529914, 0.2865483801617104, 0.3043963173037403, 0.32295557470148173, 0.34193189365426263, 0.36103740316043686, 0.3800072491331895, 0.3986102346350344, 0.41665445267285217, 0.4339891255367452, 0.45050376819758986, 0.4661255743529549, 0.48081569392744866, 0.494564877055186, 0.5073888136939765, 0.5193233963724508, 0.5304200671547843, 0.5407413689693971, 0.5503567971844151, 0.5593390323671529, 0.5677606237383258, 0.575691180729806, 0.5831951147332106 ], [ 0.32599817648248436, 0.30395312768545174, 0.2821468445433609, 0.26083840501186156, 0.2403225737525295, 0.22092545249395468, 0.20299666903038005, 0.1868983255344, 0.17298818774131994, 0.161589119538256, 0.15293719266660125, 0.14711889802264486, 0.14403024620169963, 0.1433844719345398, 0.14476769579971002, 0.14772246877862252, 0.1518299026023597, 0.15677042382542375, 0.16236089595537462, 0.16856570212565142, 0.17547802521049824, 0.18328009805696815, 0.19219782001506533, 0.20245702135649624, 0.21424139736809447, 0.227654982760122, 0.24269728275825525, 0.2592579425255088, 0.2771308803266646, 0.2960413268285671, 0.3156771228517634, 0.3357174381403351, 0.3558553098788905, 0.37581314150474904, 0.395351898275836, 0.41427535050462927, 0.4324307470043115, 0.4497070800683507, 0.4660318226975806, 0.4813667664717991, 0.4957033919333815, 0.509058062547701, 0.5214672383894678, 0.5329828450661392, 0.5436678965716739, 0.5535924491696462, 0.5628299502500773, 0.5714540362332547, 0.5795358233549803, 0.5871417223597823 ], [ 0.3278317322582164, 0.3058164710324678, 0.2840383409504458, 0.2627509463100775, 0.24223486912597272, 0.2227895036319894, 0.20472330617247644, 0.18834537957299122, 0.1739579852560189, 0.16184170073900891, 0.1522218174476762, 0.14521861878351341, 0.14080405053622008, 0.13878712482076136, 0.13883933526922237, 0.1405597351268685, 0.14355703868515945, 0.14752211998943524, 0.15228002691801978, 0.15781079028266629, 0.16423075827915776, 0.17174635757093765, 0.18060148646116744, 0.19102837978340653, 0.203202127067032, 0.21720243124361616, 0.23299169518618132, 0.25041568327722435, 0.2692243999207076, 0.28910434674269525, 0.3097125088227314, 0.330705505072816, 0.35176115298531324, 0.3725924113640184, 0.3929549803425803, 0.41265017469945064, 0.43152453380667544, 0.44946731617412206, 0.4664067105231759, 0.48230533782708157, 0.4971554292192855, 0.5109739336936251, 0.5237977232862904, 0.5356790091482315, 0.546681049223516, 0.5568742091342003, 0.5663324262616789, 0.5751301184082436, 0.5833395696803811, 0.5910288154672939 ], [ 0.3303977053587178, 0.30849323685649094, 0.286831985740227, 0.2656627077918882, 0.24525351129949277, 0.22588063820240545, 0.20781706692330817, 0.19132557761763908, 0.17665719568428345, 0.164047159105768, 0.15369610247692772, 0.1457346468314366, 0.14018438972878167, 0.13693054770372948, 0.13572386382744456, 0.13622657141482133, 0.1380886004555185, 0.141026198162499, 0.14488546410214465, 0.1496713033236265, 0.15552854905943017, 0.1626896681308401, 0.17141541815950118, 0.18194081665313439, 0.19442721804163565, 0.20892498061457207, 0.22535623412005937, 0.243522513795007, 0.26313224163250765, 0.28383725460417075, 0.30526834047174284, 0.32706393723736515, 0.3488902405001338, 0.370453441706209, 0.3915057900219477, 0.4118472462868857, 0.4313242012828526, 0.44982635646110763, 0.467282536514254, 0.4836559524364389, 0.49893925631165253, 0.5131496094700172, 0.5263239080628568, 0.5385142616139663, 0.5497837909134519, 0.5602027944698785, 0.5698453222682872, 0.5787861878949215, 0.5870984424861094, 0.59485132481082 ], [ 0.3337187283868938, 0.3120066419074365, 0.2905502099585575, 0.26959362741660886, 0.24939410366066594, 0.2302085619750924, 0.21228113964935705, 0.19583692010720047, 0.18108346076256426, 0.16821319329250642, 0.15739527320011285, 0.14875268073565312, 0.14233009839111224, 0.13806196843981314, 0.13576086869940257, 0.13514867860571753, 0.13592407289144018, 0.13784148094854332, 0.1407803937962445, 0.14477881042360935, 0.1500137762680963, 0.1567445782830314, 0.16524805613226826, 0.17576046860671957, 0.18842800819183317, 0.20327155816314327, 0.2201750316406804, 0.23889997832735116, 0.2591188304543946, 0.2804545740051568, 0.30251693608055036, 0.32493017134684626, 0.347351629272305, 0.369482430985313, 0.3910722248803889, 0.41191985725748254, 0.4318714002583987, 0.4508165746597962, 0.46868427711903327, 0.485437682234986, 0.5010692250112828, 0.5155956599645021, 0.5290533227266432, 0.5414936760319374, 0.5529791953665384, 0.5635796337502862, 0.573368695375854, 0.582421140747294, 0.5908103391948794, 0.598606276773265 ], [ 0.33781256802916493, 0.31637427490516595, 0.2952092296836613, 0.2745570394361972, 0.25466524702929505, 0.23577489793800374, 0.2181075129363182, 0.20185897372388387, 0.18720211424515731, 0.17429231993840394, 0.16326631501498842, 0.154228582868423, 0.14722593414646543, 0.14221645926911713, 0.1390533112744841, 0.1375070943095834, 0.13732490910433415, 0.13830559103524687, 0.1403687640246971, 0.14358847794149318, 0.1481731539293283, 0.15440694830098264, 0.16258202097246002, 0.1729372730390678, 0.1856076071380771, 0.20059076322928615, 0.21774066221035981, 0.2367878364838076, 0.25737714927271826, 0.27910967363945005, 0.30157914922066886, 0.32439892717633856, 0.3472193130096202, 0.36973706484969165, 0.3916991918375911, 0.412902918396605, 0.43319322385495934, 0.4524589462892339, 0.47062811549780675, 0.48766295059771136, 0.5035548025374523, 0.5183192198407346, 0.5319912504648733, 0.5446210516848176, 0.5562698548892695, 0.5670063171041225, 0.5769032816725002, 0.5860349637875285, 0.5944745704156659, 0.6022923572920618 ], [ 0.3426889558570674, 0.32160423559212215, 0.3008142916303459, 0.28055379643476797, 0.2610613429441568, 0.24256465888709924, 0.22526753510941097, 0.20934360890745055, 0.19493882231083023, 0.18217813461603238, 0.17116831067235638, 0.16199051789178068, 0.1546805631839613, 0.14920191097590393, 0.14543069356214872, 0.14317407254089357, 0.1422222267554394, 0.14241749386426347, 0.14371852180221853, 0.146230833166616, 0.15018694984934963, 0.15588941658271868, 0.16364317846546203, 0.17369258278407465, 0.18616921556051283, 0.2010594642814487, 0.21820071266642455, 0.23730534573434653, 0.25800133613895904, 0.27987566635551053, 0.30251115756738484, 0.3255130818611001, 0.348525891397123, 0.37124208268126674, 0.3934054576060861, 0.4148106778828387, 0.43530051351538657, 0.4547617525905786, 0.4731204152577612, 0.4903366891640465, 0.5063998527557262, 0.5213233543751649, 0.535140151995749, 0.5478983787920391, 0.5596573753109338, 0.5704841141075326, 0.5804500333575938, 0.5896282893658007, 0.5980914321543476, 0.6059095022638565 ], [ 0.3483468875215238, 0.3276918839966419, 0.30735570988692684, 0.28756742364224813, 0.26855678003780414, 0.25053965635689895, 0.23370529961879127, 0.2182099622536777, 0.2041786823753701, 0.19171191214856093, 0.1808902327626735, 0.17177078906368823, 0.16437238287405803, 0.15865413217539953, 0.15450452846761867, 0.15175837401808345, 0.1502427031310338, 0.14983831211465695, 0.15053614322044617, 0.15246314853750823, 0.1558638289641509, 0.1610482836383501, 0.16832818469774982, 0.1779541805929426, 0.1900625089268108, 0.2046415269712007, 0.22152772573914103, 0.2404302693562886, 0.2609724450179366, 0.2827359232394853, 0.3052981962297439, 0.32825952863491376, 0.3512598091619384, 0.3739874034679008, 0.3961823397856429, 0.41763576992349516, 0.4381871316882611, 0.45771999171398137, 0.4761572155280596, 0.4934558821901581, 0.5096022081953255, 0.5246066460271741, 0.5384992591721413, 0.5513254353263763, 0.5631419746423183, 0.5740135745303192, 0.5840097228713786, 0.5932020048289516, 0.601661822959827, 0.6094585248865098 ], [ 0.35477270747443707, 0.33461766916191094, 0.3148063897438611, 0.29556131847236117, 0.2771029092853559, 0.25963563350565394, 0.24333581411060248, 0.22834522072163957, 0.2147720602505309, 0.2026969408385562, 0.19217823444992205, 0.18325092883252522, 0.17591607926136293, 0.1701255481361543, 0.16577586622812188, 0.1627246875095664, 0.16083099048370242, 0.1600080390543334, 0.16027071335390444, 0.16175632440641446, 0.16470854464756304, 0.16943264557136128, 0.17623789885215213, 0.18537796427593886, 0.1969975209349935, 0.21109694311774196, 0.22752554689505186, 0.24600355469858495, 0.26616203539983385, 0.28758687681918194, 0.3098567487544736, 0.33257087337874497, 0.35536664875383883, 0.3779290887478618, 0.3999944016447665, 0.4213496922807954, 0.44183026381610585, 0.4613155391129723, 0.4797242772853743, 0.4970095211367383, 0.5131535510902565, 0.5281630168562688, 0.5420643511296438, 0.5548995272308674, 0.5667221961100868, 0.5775942216748048, 0.5875826230136446, 0.5967569250713348, 0.6051869138769407, 0.6129407874027991 ], [ 0.36193918106092327, 0.3423462980178297, 0.3231211713181028, 0.30447840065383164, 0.2866282467255221, 0.2697634708167394, 0.2540479620215078, 0.23961048601454488, 0.22654502035277352, 0.21491588280800053, 0.20476309951239588, 0.19610293164129644, 0.18892126649063565, 0.18316406148052927, 0.17873559695063038, 0.17551446552900177, 0.17338811700685158, 0.17229694433390244, 0.17227250724229498, 0.1734536661723279, 0.1760732588240823, 0.1804211160909847, 0.18679434413847487, 0.19544290664547753, 0.20651825698720244, 0.22003680044052437, 0.23586926850675952, 0.25375785929411665, 0.2733523618080296, 0.29425227060356834, 0.3160446162151114, 0.33833257194255867, 0.36075420641593214, 0.38299296011717743, 0.40478202844927424, 0.42590463192550604, 0.4461916971319377, 0.4655180239048088, 0.48379766075305974, 0.5009789581309732, 0.5170395979803587, 0.5319817852176414, 0.5458277139359892, 0.5586153745890117, 0.5703947390927128, 0.5812243423980074, 0.591168267448369, 0.6002935327155479, 0.6086678758180418, 0.6163579218791192 ], [ 0.3698056097180138, 0.35082726327931324, 0.33223793616975034, 0.3142430150253781, 0.2970414611491878, 0.28081363393957454, 0.2657108737347468, 0.2518496257495487, 0.23931136438266318, 0.22814696299824047, 0.21838185051192902, 0.21001783564085902, 0.20302992689039795, 0.19736160398944247, 0.19292651581568848, 0.18962364207312546, 0.18736629390931306, 0.1861176756963409, 0.18592075480868692, 0.18691037003410332, 0.1893024735537701, 0.1933643380946969, 0.19937284557052729, 0.20756653985106094, 0.21809816130605877, 0.23099847004791535, 0.2461621993902317, 0.26335952393685835, 0.2822667437712168, 0.30250491693978737, 0.3236764446730462, 0.34539401154020616, 0.367300417093367, 0.38908028159468483, 0.4104655093869086, 0.43123639695296595, 0.45121991954995405, 0.47028631919795577, 0.48834476740939614, 0.5053386151248889, 0.5212405600639761, 0.5360479391231108, 0.549778272912136, 0.5624651374374657, 0.5741544046586193, 0.5849008725261433, 0.5947652916474637, 0.6038117868843697, 0.6121056659401605, 0.6197116020507771 ], [ 0.37831890480676406, 0.3599965423160572, 0.3420801230681981, 0.32476448278351777, 0.3082361917527343, 0.2926624675048261, 0.2781818362183786, 0.26489883323451485, 0.2528837807539064, 0.24217659536164515, 0.2327917377383285, 0.22472109635389736, 0.21793361454090562, 0.2123743015839827, 0.20796829451889884, 0.20463477026229734, 0.20231069529423612, 0.20097868890884837, 0.20068968131704643, 0.2015716781398405, 0.20382109731326395, 0.20767901899218716, 0.21339677591680012, 0.22119481975907684, 0.23122042519864613, 0.2435135477750647, 0.2579907156620414, 0.2744512484206014, 0.2926018870232614, 0.31209074044095647, 0.332541419512007, 0.35358146109563, 0.37486281307962577, 0.3960746666452601, 0.4169500832053415, 0.4372681018645318, 0.45685280669574757, 0.47557049266385676, 0.4933257440231868, 0.5100569799314842, 0.5257318329725407, 0.5403425950333346, 0.5539018765914433, 0.5664385671209624, 0.5779941463455741, 0.588619371560915, 0.5983713504352235, 0.6073109983144093, 0.6155008719142803, 0.6230033659523659 ], [ 0.38741542917315097, 0.36977914740870893, 0.352560148163367, 0.33594154684984273, 0.32009663589440107, 0.305178954122636, 0.29131410609309394, 0.27859519151120904, 0.26708266647959966, 0.25680780930439734, 0.24777754283680162, 0.23997816667795518, 0.23337712250353673, 0.22792466244623893, 0.2235592810180077, 0.22022004904375952, 0.21786557406986387, 0.21649522211580272, 0.2161657824279315, 0.21699747678965503, 0.21916683797216518, 0.22288775077241973, 0.22838330506884597, 0.23585118629589374, 0.24542709523931117, 0.25715389054899096, 0.27096495794784226, 0.28668634084396355, 0.3040556105044933, 0.3227505882951367, 0.34242007913820594, 0.3627108607949116, 0.3832881709759864, 0.4038493176385528, 0.4241313536352534, 0.443914208575449, 0.46302062906047214, 0.4813140354321393, 0.49869512437717145, 0.515097803594997, 0.5304848567545937, 0.5448436008660635, 0.5581817034851291, 0.5705232629336668, 0.5819052119043683, 0.592374076599919, 0.6019831050322382, 0.610789765845002, 0.6188536106752796, 0.6262344870771809 ], [ 0.3970233563193921, 0.3800921602474408, 0.36358321173620406, 0.34766701512967485, 0.33250302687396177, 0.31823091452593566, 0.3049635664500066, 0.29278334127857053, 0.28174218208977203, 0.2718649279036262, 0.26315408204849144, 0.2555941769703721, 0.249155038101914, 0.24379515959095746, 0.2394677002066213, 0.23613105122745168, 0.23376356643216017, 0.23237923173180078, 0.23203945449326244, 0.23285678695550602, 0.23498883417148872, 0.23862296695009752, 0.24395337416433485, 0.2511523667530356, 0.26033950755685603, 0.2715547330923256, 0.28474247622237236, 0.29975107310709903, 0.3163467322476, 0.33423712035105846, 0.35309817963610923, 0.37259892751255547, 0.3924212545840884, 0.4122738262497234, 0.4319005339124535, 0.45108454525418146, 0.46964911502791096, 0.4874561840480617, 0.504403578288595, 0.5204214068875213, 0.5354680805162854, 0.5495262363497578, 0.5625987579376907, 0.5747050096397471, 0.5858773582251029, 0.5961580224367724, 0.6055962699940778, 0.6142459671815061, 0.6221634764042605, 0.6294058902110116 ], [ 0.4070652847335471, 0.3908479050380223, 0.37505105473448547, 0.35983207882855883, 0.34533642128243786, 0.3316900724541013, 0.31899375597893515, 0.30732002932408636, 0.29671375321980875, 0.2871953788542613, 0.2787656990133107, 0.27141062953797346, 0.26510541371044455, 0.259818940802626, 0.255519710787485, 0.25218458035902186, 0.24980984565825126, 0.2484223618154515, 0.24808740560430492, 0.2489104809782464, 0.2510318428268194, 0.2546139757605193, 0.2598228983109835, 0.2668046593265388, 0.2756598341293943, 0.28642084986582067, 0.29903772725744904, 0.3133759927348611, 0.329226817450568, 0.34632598386273467, 0.36437670044149273, 0.38307173887637225, 0.4021119579035205, 0.421219988141419, 0.4401491049225619, 0.45868799338123944, 0.47666234165364657, 0.493934168401035, 0.5103996458099653, 0.5259860066542454, 0.540647966305486, 0.5543639626214114, 0.567132419532144, 0.5789681694635781, 0.5898991196948417, 0.5999632129680266, 0.6092057087688151, 0.6176767953320857, 0.6254295311537431, 0.6325181068843134 ], [ 0.41746086968860385, 0.401956979646845, 0.38686535269408934, 0.3723299857949742, 0.3584825087762674, 0.34543578682298537, 0.3332792319216825, 0.32207673474612775, 0.3118675312756663, 0.3026695366991657, 0.2944840776047429, 0.2873008884016106, 0.2811028031439953, 0.2758704421030181, 0.2715877426193869, 0.26824892807057216, 0.2658664994017495, 0.26447866826981087, 0.2641540679000976, 0.2649919378514936, 0.2671169629942507, 0.2706688260902845, 0.27578697240922934, 0.2825915800924504, 0.2911629076589377, 0.3015227222821476, 0.3136221406868395, 0.3273389986001834, 0.3424852000654135, 0.35882179200760156, 0.37607801231725174, 0.3939705826380437, 0.4122205546185347, 0.43056633770887065, 0.44877262691718955, 0.4666356276885122, 0.4839852814876006, 0.5006852517867636, 0.5166313537066819, 0.5317489834974537, 0.5459899725575463, 0.5593291757284907, 0.5717610115446087, 0.5832961022081786, 0.5939581097788558, 0.6037808283153636, 0.6128055657682941, 0.6210788312612292, 0.6286503306876102, 0.6355712645857261 ], [ 0.4281292827531636, 0.41333094744291565, 0.3989305624387036, 0.3850589263433958, 0.3718343804455741, 0.3593575052464828, 0.34770747367182153, 0.3369407566214196, 0.3270923812861612, 0.3181793339912952, 0.31020524332441024, 0.3031654155542326, 0.2970516669725991, 0.2918569717250776, 0.2875803126024239, 0.284231983962146, 0.281838993913359, 0.2804495296515258, 0.28013514157329705, 0.2809895601392567, 0.283123654451587, 0.28665654933298684, 0.2917032080259276, 0.2983592110885925, 0.30668437567801093, 0.31668799094956235, 0.32831894101945397, 0.34146319169538963, 0.35594923594609557, 0.3715600461885073, 0.3880487824371871, 0.40515529414957346, 0.42262107933099097, 0.4402013307380147, 0.4576735944068228, 0.47484319221878785, 0.4915458975929345, 0.5076484700943094, 0.5230476371010138, 0.5376680283758747, 0.5514594672933621, 0.5643939246178649, 0.5764623573779463, 0.5876715890304508, 0.5980413365217295, 0.607601452386304, 0.6163894228102188, 0.6244481430605807, 0.6318239777508814, 0.6385651034636174 ], [ 0.4389913666857187, 0.42488457461180196, 0.41115614475718687, 0.39792411841626596, 0.38529433175903244, 0.37335612418206027, 0.36217963050998475, 0.3518151777887034, 0.34229489681702197, 0.3336361814276182, 0.3258462763829645, 0.3189272070856024, 0.3128805003120954, 0.30771152284813896, 0.30343352348970837, 0.3000714184918883, 0.29766504324177556, 0.2962712387087574, 0.29596401556184915, 0.296832229799269, 0.29897455207917634, 0.30249178378173186, 0.3074767416949954, 0.3140022498296996, 0.32210844719935233, 0.3317914334259769, 0.3429956528795702, 0.355611908822845, 0.3694815977387969, 0.3844062505001562, 0.40016040638466205, 0.41650553588403133, 0.43320306947865245, 0.45002526481241373, 0.46676334490912696, 0.4832328826489032, 0.49927673959157504, 0.5147660186513754, 0.5295995171981516, 0.5437021243799737, 0.5570225335824414, 0.5695305622299446, 0.5812142990745132, 0.5920772386699923, 0.6021355146772114, 0.6114153067853562, 0.6199504684396007, 0.6277804022408703, 0.6349481950632657, 0.6414990141775532 ], [ 0.449971409590716, 0.43653756725761644, 0.4234581651918257, 0.41083915932523224, 0.39877484600198965, 0.38734448591701764, 0.37661042194326133, 0.3666180714257424, 0.35739783245791745, 0.3489685656967921, 0.3413420351411714, 0.33452761925852065, 0.32853674631037233, 0.32338675740034006, 0.31910409394432016, 0.31572673132413337, 0.3133056579954743, 0.31190506522820144, 0.3116009082424294, 0.31247765087188456, 0.3146232027004921, 0.31812217618900956, 0.3230476584426631, 0.32945189162635763, 0.33735671431025865, 0.34674518066821775, 0.35755605744224517, 0.3696825843285224, 0.3829760050638391, 0.39725330296821915, 0.41230774877876164, 0.4279205431423861, 0.4438719944746446, 0.45995112412507466, 0.47596311568349225, 0.49173447155266914, 0.507116044079485, 0.5219842723767277, 0.5362410126643296, 0.5498123387688171, 0.5626466429106705, 0.5747123073749388, 0.5859951582007987, 0.5964958591216858, 0.6062273599847249, 0.6152124788430874, 0.6234816698394927, 0.631071008502651, 0.6380204107785881, 0.6443720908005535 ], [ 0.4609985103907386, 0.4482158148706606, 0.4357603256801485, 0.42372675227199763, 0.41219892619353055, 0.40124723707114845, 0.3909274597997412, 0.3812812421763685, 0.37233823781699144, 0.36411956589312183, 0.3566420544237181, 0.3499226492729626, 0.34398245169215513, 0.3388500153410332, 0.3345636891742999, 0.33117286894739995, 0.32873802793527956, 0.3273294077724839, 0.32702432596101666, 0.32790318716825795, 0.33004439141403386, 0.3335183520419503, 0.3383808189764859, 0.34466579021737365, 0.35237857573284703, 0.36148995168319675, 0.3719325501447293, 0.38360044831236995, 0.3963523478779208, 0.4100179925528021, 0.4244068550895062, 0.4393178300241153, 0.4545487181747402, 0.46990457699441274, 0.4852043896508321, 0.5002858571467543, 0.5150083798710249, 0.529254454527148, 0.5429297850147475, 0.5559624174225916, 0.5683011846399425, 0.5799137041649605, 0.5907841259218222, 0.6009107823820616, 0.6103038543842791, 0.6189831338229607, 0.626975938632232, 0.6343152154356164, 0.6410378498892532, 0.6471831931573548 ], [ 0.4720075446555338, 0.45985218165844843, 0.4479945072048672, 0.4365189295632219, 0.4254999377118056, 0.41500024415027276, 0.4050702079766168, 0.395748719618781, 0.3870654901631488, 0.3790444413916161, 0.3717077071351005, 0.36507968202588376, 0.3591905953505355, 0.3540792051552052, 0.3497943420827641, 0.3463951446300305, 0.34394992020132886, 0.34253366896914306, 0.3422244348452513, 0.34309876835181424, 0.3452266384562379, 0.3486660856486969, 0.35345782298691303, 0.35961998178744814, 0.3671433375764268, 0.37598758101046587, 0.3860793468602603, 0.3973126231953653, 0.4095518074480998, 0.42263718238897147, 0.4363921442135484, 0.4506312711039563, 0.4651683127995483, 0.4798233566439559, 0.49442868926244377, 0.508833139319246, 0.5229049020072177, 0.5365329903469048, 0.5496275359550987, 0.5621191879546286, 0.5739578507084713, 0.5851109741284609, 0.5955615753524505, 0.6053061345524252, 0.6143524743852543, 0.622717703867595, 0.6304262836892818, 0.6375082509075491, 0.64399762599415, 0.6499310136495617 ], [ 0.48293976520315407, 0.4713869072896654, 0.4601009141678171, 0.44915689154836647, 0.43862110469109616, 0.42854972542656944, 0.4189887442648978, 0.40997516003508705, 0.4015393583001886, 0.39370838615198556, 0.3865096753770948, 0.3799746940888344, 0.37414202529596313, 0.36905945792328493, 0.36478479863642754, 0.3613852488023308, 0.3589353366981466, 0.3575135542588108, 0.35719800634806576, 0.35806149563476436, 0.36016648657504363, 0.36356030501367304, 0.36827079193366624, 0.3743025409873631, 0.38163387839235136, 0.39021486488749646, 0.3999667023179352, 0.4107828965036277, 0.42253232606886026, 0.4350640573396365, 0.44821344625352644, 0.46180888162475214, 0.4756784914390298, 0.48965623411286835, 0.5035869738155081, 0.5173303336493947, 0.5307632899668174, 0.5437815946250172, 0.5563001866610648, 0.5682527882629748, 0.5795908834955468, 0.590282263204836, 0.6003092948421305, 0.609667047896521, 0.6183613781075288, 0.6264070487521217, 0.6338259459562673, 0.6406454273191711, 0.6468968289034754, 0.6526141444005203 ] ] }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "text": [ "0_0", "1_0", "2_0", "3_0", "4_0", "5_0", "6_0", "7_0", "8_0", "9_0", "10_0", "11_0", "12_0", "13_0", "14_0", "15_0", "16_0", "17_0", "18_0", "19_0", "20_0", "21_0", "22_0", "23_0", "24_0", "25_0", "26_0", "27_0", "28_0" ], "type": "scatter", "x": [ 0.3495166003704071, 0.8901249477639794, 0.9341307515278459, 0.3981546014547348, 0.06442984566092491, 0.9731279211118817, 0.711693842895329, 0.1791477669030428, 0.8779646440472175, 0.14022108949578363, 0.09837225623964749, 0.11075198162139444, 0.10829836083976369, 0.10872853671537026, 0.10914581140006792, 0.12024785046452524, 0.08537573049631343, 0.17077557058138923, 0.21000401373768696, 0.24696115301702115, 0.2962356566033925, 0.36734076551444717, 0.43322577469363455, 0.41069337393545535, 0.4005874678848605, 0.38221464246998454, 0.3558818561433652, 0.331137795186129, 0.34695371010224874 ], "xaxis": "x", "y": [ 0.9523188471794128, 0.329069453291595, 0.20295190438628197, 0.4246944095939398, 0.3867763029411435, 0.15313099510967731, 0.1465086881071329, 0.5693084038794041, 0.4360744726366273, 0.6036733211181039, 0.4634080944818754, 0.5092513682109966, 0.5277565977477967, 0.4607432013198608, 0.5565129348904627, 0.5935678101617056, 0.6624495890680604, 0.5832755741016528, 0.6101906909591976, 0.62820829580725, 0.6436286584623306, 0.6586832477174029, 0.6693203368365506, 0.6700966880204665, 0.6919379811476656, 0.722567603621774, 0.7769128537385162, 0.8253338964468004, 0.8585465623085132 ], "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", "1_0", "2_0", "3_0", "4_0", "5_0", "6_0", "7_0", "8_0", "9_0", "10_0", "11_0", "12_0", "13_0", "14_0", "15_0", "16_0", "17_0", "18_0", "19_0", "20_0", "21_0", "22_0", "23_0", "24_0", "25_0", "26_0", "27_0", "28_0" ], "type": "scatter", "x": [ 0.3495166003704071, 0.8901249477639794, 0.9341307515278459, 0.3981546014547348, 0.06442984566092491, 0.9731279211118817, 0.711693842895329, 0.1791477669030428, 0.8779646440472175, 0.14022108949578363, 0.09837225623964749, 0.11075198162139444, 0.10829836083976369, 0.10872853671537026, 0.10914581140006792, 0.12024785046452524, 0.08537573049631343, 0.17077557058138923, 0.21000401373768696, 0.24696115301702115, 0.2962356566033925, 0.36734076551444717, 0.43322577469363455, 0.41069337393545535, 0.4005874678848605, 0.38221464246998454, 0.3558818561433652, 0.331137795186129, 0.34695371010224874 ], "xaxis": "x2", "y": [ 0.9523188471794128, 0.329069453291595, 0.20295190438628197, 0.4246944095939398, 0.3867763029411435, 0.15313099510967731, 0.1465086881071329, 0.5693084038794041, 0.4360744726366273, 0.6036733211181039, 0.4634080944818754, 0.5092513682109966, 0.5277565977477967, 0.4607432013198608, 0.5565129348904627, 0.5935678101617056, 0.6624495890680604, 0.5832755741016528, 0.6101906909591976, 0.62820829580725, 0.6436286584623306, 0.6586832477174029, 0.6693203368365506, 0.6700966880204665, 0.6919379811476656, 0.722567603621774, 0.7769128537385162, 0.8253338964468004, 0.8585465623085132 ], "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 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "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": { "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "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 }, "autotypenumbers": "strict", "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": [ "