{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Loop API Example on Hartmann6\n", "\n", "The loop API is the most lightweight way to do optimization in Ax. The user makes one call to `optimize`, which performs all of the optimization under the hood and returns the optimized parameters.\n", "\n", "For more customizability of the optimization procedure, consider the Service or Developer API." ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [ { "data": { "text/html": [ "" ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-26 20:09:10] 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 04-26 20:09:11] 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 04-26 20:09:11] 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 04-26 20:09:11] 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 04-26 20:09:11] 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 04-26 20:09:11] 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 04-26 20:09:11] ax.service.utils.instantiation: Created search space: SearchSpace(parameters=[RangeParameter(name='x1', parameter_type=FLOAT, range=[0.0, 1.0]), RangeParameter(name='x2', parameter_type=FLOAT, range=[0.0, 1.0]), RangeParameter(name='x3', parameter_type=FLOAT, range=[0.0, 1.0]), RangeParameter(name='x4', parameter_type=FLOAT, range=[0.0, 1.0]), RangeParameter(name='x5', parameter_type=FLOAT, range=[0.0, 1.0]), RangeParameter(name='x6', parameter_type=FLOAT, range=[0.0, 1.0])], parameter_constraints=[ParameterConstraint(1.0*x1 + 1.0*x2 <= 20.0)]).\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-26 20:09:11] ax.modelbridge.dispatch_utils: Using Bayesian optimization since there are more ordered parameters than there are categories for the unordered categorical parameters.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-26 20:09:11] ax.modelbridge.dispatch_utils: Using Bayesian Optimization generation strategy: GenerationStrategy(name='Sobol+GPEI', steps=[Sobol for 12 trials, GPEI for subsequent trials]). Iterations after 12 will take longer to generate due to model-fitting.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-26 20:09:11] ax.service.managed_loop: Started full optimization with 30 steps.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-26 20:09:11] ax.service.managed_loop: Running optimization trial 1...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-26 20:09:11] ax.service.managed_loop: Running optimization trial 2...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-26 20:09:11] ax.service.managed_loop: Running optimization trial 3...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-26 20:09:11] ax.service.managed_loop: Running optimization trial 4...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-26 20:09:11] ax.service.managed_loop: Running optimization trial 5...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-26 20:09:11] ax.service.managed_loop: Running optimization trial 6...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-26 20:09:11] ax.service.managed_loop: Running optimization trial 7...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-26 20:09:11] ax.service.managed_loop: Running optimization trial 8...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-26 20:09:11] ax.service.managed_loop: Running optimization trial 9...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-26 20:09:11] ax.service.managed_loop: Running optimization trial 10...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-26 20:09:11] ax.service.managed_loop: Running optimization trial 11...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-26 20:09:11] ax.service.managed_loop: Running optimization trial 12...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-26 20:09:11] ax.service.managed_loop: Running optimization trial 13...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/opt/hostedtoolcache/Python/3.7.12/x64/lib/python3.7/site-packages/gpytorch/lazy/lazy_tensor.py:1741: UserWarning:\n", "\n", "torch.triangular_solve is deprecated in favor of torch.linalg.solve_triangularand will be removed in a future PyTorch release.\n", "torch.linalg.solve_triangular has its arguments reversed and does not return a copy of one of the inputs.\n", "X = torch.triangular_solve(B, A).solution\n", "should be replaced with\n", "X = torch.linalg.solve_triangular(A, B). (Triggered internally at ../aten/src/ATen/native/BatchLinearAlgebra.cpp:1672.)\n", "\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-26 20:09:17] ax.service.managed_loop: Running optimization trial 14...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-26 20:09:23] ax.service.managed_loop: Running optimization trial 15...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-26 20:09:30] ax.service.managed_loop: Running optimization trial 16...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-26 20:09:36] ax.service.managed_loop: Running optimization trial 17...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-26 20:09:42] ax.service.managed_loop: Running optimization trial 18...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-26 20:09:48] ax.service.managed_loop: Running optimization trial 19...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-26 20:09:54] ax.service.managed_loop: Running optimization trial 20...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-26 20:10:01] ax.service.managed_loop: Running optimization trial 21...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-26 20:10:07] ax.service.managed_loop: Running optimization trial 22...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-26 20:10:13] ax.service.managed_loop: Running optimization trial 23...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-26 20:10:18] ax.service.managed_loop: Running optimization trial 24...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-26 20:10:23] ax.service.managed_loop: Running optimization trial 25...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-26 20:10:28] ax.service.managed_loop: Running optimization trial 26...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-26 20:10:35] ax.service.managed_loop: Running optimization trial 27...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-26 20:10:40] ax.service.managed_loop: Running optimization trial 28...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-26 20:10:44] ax.service.managed_loop: Running optimization trial 29...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 04-26 20:10:49] 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.4076336950751692,\n", " 'x2': 0.9025745948037075,\n", " 'x3': 0.18501790637296855,\n", " 'x4': 0.5539181749333645,\n", " 'x5': 0.44872971190026884,\n", " 'x6': 0.04304143492213628}" ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "best_parameters" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'l2norm': 1.2349385505454658, 'hartmann6': -3.071102782450379}" ] }, "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.32188106375532066, -0.3186844323488638, -0.3154686539679694, -0.31219842130004993, -0.30883053378253256, -0.30531599854156766, -0.301603011048045, -0.29764074556827436, -0.2933838117986718, -0.288797162573756, -0.28386117306883785, -0.2785765585326465, -0.2729687586117162, -0.26709139474860044, -0.2610284061153798, -0.25489449298236977, -0.24883354934329383, -0.2430148551052107, -0.237626928385112, -0.23286911431432133, -0.22894120564220577, -0.22603163783545566, -0.2243050461852849, -0.22389016685865082, -0.22486915197556834, -0.2272693052708421, -0.23105801800833659, -0.23614133223217593, -0.24236616282082424, -0.2495258715007065, -0.257368684427437, -0.265608408078994, -0.27393699317071896, -0.2820386415965943, -0.2896052413602672, -0.29635284832780706, -0.30203864849300555, -0.30647734383602976, -0.3095553345858437, -0.31124066204735024, -0.31158671563006557, -0.31072837647577756, -0.3088704896071863, -0.30626996427539455, -0.3032139201203461, -0.2999967860813635, -0.29689906995623416, -0.29416984562541315, -0.2920141381184731, -0.29058556046252604 ], [ -0.3202667738098859, -0.31718421609347214, -0.3141067713770209, -0.3109947067361949, -0.3077985804203309, -0.30446138740299067, -0.30092170893507686, -0.2971178054876107, -0.29299251097359424, -0.2884987058769781, -0.2836050728899886, -0.2783017749778436, -0.272605645885174, -0.26656445028800757, -0.26025975899608556, -0.25380799903419504, -0.24735928603219337, -0.24109373572585557, -0.23521509160186538, -0.2299417035333282, -0.22549514691691375, -0.22208706818669022, -0.21990514447512588, -0.21909929395321237, -0.21976939737310386, -0.22195572925466078, -0.22563302912276262, -0.23070871339987353, -0.237025241321692, -0.24436623251281153, -0.25246569195960267, -0.26101966598418835, -0.26969978982809173, -0.27816839398502835, -0.2860949847662737, -0.293173881813491, -0.2991424986559392, -0.3037991937067557, -0.30701893231578126, -0.30876446767821486, -0.30909072555338346, -0.3081408087696571, -0.3061334468341004, -0.3033433632657936, -0.3000773273707522, -0.2966491888913685, -0.2933569241384997, -0.2904639115960026, -0.28818565444167166, -0.28668224800569475 ], [ -0.31882824665831033, -0.31589435288659384, -0.31299427832911286, -0.31008371110074817, -0.3071066010147707, -0.30399732488589115, -0.3006839903133043, -0.29709282964755257, -0.2931535462536541, -0.28880538567703384, -0.28400361996917955, -0.2787260583040354, -0.2729791345696997, -0.26680307648740587, -0.26027563575707746, -0.2535138614935548, -0.2466734390274845, -0.2399452045561845, -0.23354859569443143, -0.2277220189205198, -0.2227104091057679, -0.2187506085487696, -0.21605556191997888, -0.21479863828482193, -0.21509956123112706, -0.21701337139536458, -0.22052353087475973, -0.22553975715958807, -0.23190057628869432, -0.23938007565668573, -0.24769804685273544, -0.25653268301923604, -0.26553518238794815, -0.2743458884539287, -0.2826118152588959, -0.29000541686777126, -0.2962441590058891, -0.30110982477137993, -0.30446567415210524, -0.3062689023551437, -0.3065757393271318, -0.3055373227922322, -0.3033860929739709, -0.30041436955359235, -0.2969482565787862, -0.2933205901218108, -0.2898462753921738, -0.28680239344078085, -0.28441431619244195, -0.28284805726646445 ], [ -0.3175906014817562, -0.3148430429629314, -0.3121628966665111, -0.30950116368726466, -0.30679485338297297, -0.3039691381333629, -0.30094079100252613, -0.29762287377572005, -0.2939305449859986, -0.28978775840066673, -0.2851345270365797, -0.27993434000788486, -0.2741812427473227, -0.26790602931903296, -0.261180954373742, -0.25412236031634583, -0.24689064435546126, -0.23968707531763056, -0.23274712805185827, -0.22633024836444582, -0.2207062989691364, -0.21613935238783855, -0.21286994382546576, -0.2110972911260265, -0.2109632166464479, -0.2125394598321786, -0.21581970191219568, -0.22071699336957007, -0.22706654417134842, -0.23463321546716442, -0.243122704732341, -0.2521953987585861, -0.261482115188751, -0.27060131567611245, -0.2791776724060411, -0.2868619335665554, -0.2933517356926145, -0.2984123208204259, -0.3018951736613329, -0.3037517626581059, -0.3040393692902479, -0.3029168330157277, -0.3006298740889297, -0.2974878549553621, -0.29383552799074897, -0.2900239165509413, -0.2863839932450505, -0.2832056839827011, -0.28072344097655777, -0.27910852902454075 ], [ -0.31657991715557676, -0.31405948810047235, -0.31164540679196784, -0.3092839345684659, -0.30690485528143174, -0.30442358317399965, -0.30174470751553684, -0.2987669611624426, -0.29538949407699366, -0.29151922378475525, -0.2870789276360368, -0.28201564009641, -0.2763088252685524, -0.26997771464010656, -0.263087139464961, -0.2557511568465738, -0.24813378354512405, -0.2404462308703028, -0.23294019909846253, -0.22589706005903976, -0.21961314135814303, -0.2143818121475003, -0.2104736075012934, -0.20811611682309006, -0.2074756613763089, -0.20864275760240392, -0.21162293716955616, -0.2163337361110218, -0.22260777687055677, -0.23020111300416923, -0.2388055937737137, -0.24806399945766544, -0.2575870134043152, -0.2669715540937041, -0.2758203798848482, -0.2837630051883522, -0.29047768093081006, -0.2957134443583387, -0.2993101697606053, -0.3012135542572576, -0.30148166183984637, -0.3002805367583401, -0.2978684571380499, -0.2945708971449761, -0.29075015960759854, -0.28677426128314987, -0.28298904123229285, -0.2796961512590117, -0.2771381599262952, -0.2754908223407211 ], [ -0.3158230281098773, -0.31357365693462014, -0.31147537920712187, -0.3094697299622997, -0.30747904248744007, -0.30540846633049656, -0.30314958450323526, -0.300585641196486, -0.2975982770863512, -0.29407555026345156, -0.2899209014289019, -0.28506260523409677, -0.27946313822690705, -0.2731277922185962, -0.2661117780413911, -0.2585250117368789, -0.2505337719654541, -0.2423584877216518, -0.23426708611204528, -0.2265636261213928, -0.21957238051060557, -0.21361809365431994, -0.2090037832083027, -0.20598805261016584, -0.2047642691334599, -0.20544396006426657, -0.2080462898383313, -0.21249457368675073, -0.2186197087463897, -0.22616949372488615, -0.2348223204881419, -0.2442037294480861, -0.253904715249472, -0.26350123226199296, -0.2725748382539488, -0.28073461032645763, -0.28764020111138544, -0.2930251061097142, -0.29671801444672563, -0.2986589498701173, -0.298906476887256, -0.2976331697620742, -0.2951088236079582, -0.29167368401319727, -0.2877060678991734, -0.2835893797795006, -0.2796827790935641, -0.2762982668829581, -0.2736853980980811, -0.2720235755845912 ], [ -0.31534727186081013, -0.3134159965036678, -0.3116868461345992, -0.3100967207485994, -0.3085603522717413, -0.30697218244490654, -0.3052100096986863, -0.3031404454747839, -0.3006260985550584, -0.2975342770611502, -0.29374686572441244, -0.28917090289091263, -0.28374924960406167, -0.277470616545862, -0.27037810306313137, -0.26257532200112843, -0.2542291578073357, -0.24556826284572342, -0.23687657127853456, -0.22848143290903145, -0.22073646145196935, -0.21399984541736905, -0.20860962654883464, -0.2048581784572805, -0.20296861178351455, -0.2030758666540209, -0.20521469406462445, -0.2093156491891175, -0.21520892799286595, -0.22263478794530145, -0.23125872117151247, -0.2406895765040944, -0.2504993119618859, -0.26024373814418755, -0.2694842082716462, -0.2778104813120812, -0.2848647453723734, -0.29036595252255815, -0.2941323042940833, -0.29609840118575614, -0.29632301477664846, -0.29498438806124416, -0.29236245816303885, -0.2888104773567961, -0.28472079300152786, -0.2804901801863664, -0.27648923580103846, -0.27303868901331674, -0.27039379997292556, -0.2687367086772452 ], [ -0.31518018514518675, -0.3136170865909951, -0.3123139093548708, -0.31120309972602334, -0.3101917271577097, -0.30916316392079723, -0.3079807092228086, -0.30649323293990105, -0.30454278532955636, -0.3019739807941417, -0.298644818844227, -0.2944384547213297, -0.28927527681029885, -0.28312449257077965, -0.27601428027867114, -0.2680394499091794, -0.2593655014942595, -0.25022800942829915, -0.24092643713984496, -0.23181183747839884, -0.22326844712538274, -0.21568993478810938, -0.209451951083921, -0.2048835032980203, -0.20224029723091097, -0.2016832710208254, -0.203264912212048, -0.20692467533339043, -0.2124932753994535, -0.21970433509130038, -0.22821119677020896, -0.23760676363964284, -0.24744482099726262, -0.25726209255538923, -0.2666009933578355, -0.27503338964037605, -0.2821854691187431, -0.287762961961022, -0.29157454529337623, -0.293549795853673, -0.2937473858653994, -0.29235017803430297, -0.2896465434560922, -0.2860005584998033, -0.28181618393968555, -0.2775011569356647, -0.2734353153338669, -0.2699462735326168, -0.26729358362007316, -0.26566115816107283 ], [ -0.3153491467905911, -0.3142072347299636, -0.31339028179069595, -0.31282656469462555, -0.3124155354345144, -0.31202923620196077, -0.3115158377392484, -0.31070541707574173, -0.3094179561158754, -0.3074733956925695, -0.30470342203629586, -0.30096449329395036, -0.2961514325386094, -0.29021072505350065, -0.2831524743590741, -0.27505981708874416, -0.2660945062078053, -0.25649738940071587, -0.2465826842130623, -0.23672533157129072, -0.22734132902986182, -0.21886180518915, -0.21170263222058838, -0.206232416282232, -0.2027424702195635, -0.20142251626907792, -0.20234515347429793, -0.2054606302988906, -0.21060163628570616, -0.21749629482823551, -0.22578676914084794, -0.23505097739235148, -0.24482561174736284, -0.2546295929152147, -0.26398791271657895, -0.27245624515818845, -0.2796465360732876, -0.2852529032949287, -0.28907569956979473, -0.2910400084611884, -0.29120407784864044, -0.2897541612473209, -0.28698504358358146, -0.28326905703451, -0.2790189648372381, -0.2746507077859015, -0.2705508927689593, -0.26705198585758816, -0.2644163079732642, -0.26282853880266854 ], [ -0.31588096705273516, -0.31521601148081735, -0.3149487622595526, -0.31500372647482755, -0.3152729070367979, -0.3156168775394943, -0.31586816021737096, -0.3158370704424305, -0.31532005265677143, -0.3141103785552921, -0.3120109084392555, -0.3088484278405992, -0.30448886168745415, -0.2988524414455813, -0.2919276715741381, -0.2837827386670786, -0.27457287215920845, -0.26454215327693653, -0.25401843907976196, -0.2434004789554325, -0.2331369944353272, -0.22369847461277836, -0.21554363994893921, -0.2090837586750296, -0.20464893065259382, -0.2024606697946163, -0.2026143186690279, -0.20507308943198121, -0.20967337919615736, -0.2161392151525685, -0.22410280227943424, -0.23312826616984883, -0.24273650371249067, -0.2524301302198926, -0.26171844844637593, -0.2701428716954135, -0.2773031020437611, -0.2828834844093451, -0.2866774323064032, -0.28860616297824526, -0.2887271463900136, -0.28722863574406343, -0.2844095397810209, -0.28064755127161267, -0.27636109602618286, -0.27197127174414715, -0.26786875853610015, -0.2643886879441464, -0.26179454078133624, -0.26027072889561054 ], [ -0.31680142516395615, -0.31667172779188824, -0.31702064521086837, -0.31776944355649883, -0.31880298615420344, -0.31997038378400555, -0.32108812502912887, -0.32194590480995156, -0.3223152288334099, -0.3219607123016426, -0.3206538101201202, -0.31818850694016265, -0.3143982540888788, -0.3091731700106122, -0.3024762380733601, -0.294356974393138, -0.28496084999869176, -0.27453270161255894, -0.2634125264418068, -0.2520224987657105, -0.2408448217401662, -0.2303911456374148, -0.22116566935987647, -0.21362548439070794, -0.20814283713967563, -0.204974285777493, -0.20424083979641328, -0.2059211612603007, -0.2098574080457163, -0.21577121985329684, -0.22328634343619114, -0.23195455242420904, -0.24128246587611057, -0.2507580891935064, -0.25987695463959604, -0.26816832339259555, -0.27522182149754904, -0.28071401242664495, -0.28443286877240737, -0.286296414822927, -0.2863609465012291, -0.28481519018283663, -0.2819596802757445, -0.27817433064160335, -0.27387984810698174, -0.2694992309048787, -0.2654243748324998, -0.2619907810825981, -0.2594614202997716, -0.25801938119367884 ], [ -0.3181347592458892, -0.318600858908032, -0.3196350701600257, -0.3211560882073583, -0.3230421052930299, -0.3251309424869282, -0.327222831786081, -0.3290861288869129, -0.3304660976899103, -0.3310967455343683, -0.3307154975066544, -0.3290802690233172, -0.3259882203997231, -0.3212951572343137, -0.3149341950701443, -0.3069319761422198, -0.2974204719063551, -0.28664230680993974, -0.2749476848776784, -0.26278147604315016, -0.2506598866671417, -0.239137410900641, -0.2287663538226361, -0.22005289484612733, -0.21341498231068456, -0.2091477427138415, -0.20740110215859642, -0.20817201489649917, -0.21131081218973802, -0.2165387947274482, -0.22347305553037722, -0.23165471898161516, -0.24057786325297137, -0.24971775994913825, -0.2585582362085681, -0.266618626958282, -0.2734807398551635, -0.2788154095926243, -0.28240669350515124, -0.28417008273954414, -0.28416024403588414, -0.28256474885402305, -0.279683127082224, -0.27589422972856803, -0.271617524398843, -0.26727453418279024, -0.2632554205575468, -0.25989369497062365, -0.2574501114570402, -0.2561053671678464 ], [ -0.31990311549403594, -0.32102742233574166, -0.32281831887639645, -0.32519275251238655, -0.32802288943807834, -0.3311356247729933, -0.3343149016991105, -0.33730719013405186, -0.3398303408805614, -0.34158586990722917, -0.3422745296548204, -0.3416147753150989, -0.3393634217743384, -0.3353374113701999, -0.3294351946987666, -0.32165581366671114, -0.3121134418739362, -0.30104497815992515, -0.28880841220373865, -0.2758701896161724, -0.26278077427962643, -0.25013905378006007, -0.23854806476370083, -0.22856645542190823, -0.22066164957526202, -0.2151711669566969, -0.2122774599063446, -0.21199900783749137, -0.2141971195568091, -0.21859517176565624, -0.22480573221994726, -0.2323612512009572, -0.24074522080419603, -0.24942221802610076, -0.2578665392140933, -0.26558987532629086, -0.27216848081153633, -0.27726948040556554, -0.2806744787279558, -0.2822970166459078, -0.28218960086103384, -0.280536955600557, -0.27763492651933475, -0.2738579806817456, -0.2696207972301099, -0.2653400243577049, -0.26140111883964967, -0.2581332265064935, -0.2557931663865245, -0.25455816849989765 ], [ -0.32212596654848324, -0.32397232071974225, -0.326593072077775, -0.3299044068668455, -0.3337733033638772, -0.338016308174498, -0.3424012632505009, -0.34665241235898314, -0.35045919033191897, -0.35348884231747246, -0.3554028187722378, -0.35587662437893397, -0.3546224478824971, -0.3514134622115497, -0.34610818288779477, -0.3386727625809254, -0.3291986688304269, -0.3179129559051359, -0.3051784309394232, -0.2914815547923937, -0.27740700274316454, -0.2635994590776314, -0.25071532100573113, -0.23936922301138597, -0.2300820850643437, -0.22323797766364617, -0.219055879408099, -0.21757944510458738, -0.2186841784100566, -0.222098330298939, -0.22743240758419514, -0.23421243996984797, -0.24191350310233206, -0.24999166486381985, -0.2579139386097191, -0.26518665263942, -0.2713827030921603, -0.27616740006612894, -0.2793212099422293, -0.2807561702943986, -0.2805220067319789, -0.2787988765175793, -0.2758762916449409, -0.2721210806790515, -0.26793966236269906, -0.2637404789006439, -0.25990136215301773, -0.256744746236764, -0.25452180879643804, -0.25340523567801765 ], [ -0.32481951208258764, -0.327452663981016, -0.3309776412760097, -0.3353110277496738, -0.3403156598683288, -0.34579854875397165, -0.3515118714867871, -0.3571575466228989, -0.36239579794851595, -0.3668579650181396, -0.3701636183155028, -0.3719417528846709, -0.371855442583483, -0.3696288309703155, -0.36507473827439485, -0.35812054016584804, -0.3488294270641914, -0.33741382072037496, -0.32423776572559726, -0.309805681565936, -0.2947360710164295, -0.27972065859493034, -0.26547184470272445, -0.2526639315398449, -0.2418756378652669, -0.2335421082769229, -0.22792326359121273, -0.22509201787134936, -0.22494170930738955, -0.22720865009852376, -0.2315040901732348, -0.23735017228596567, -0.24421593612512726, -0.2515512573487797, -0.25881815659621665, -0.2655198300204633, -0.27122787322827535, -0.27560747772084526, -0.2784390676311641, -0.27963344074790997, -0.2792368201113449, -0.27742308135861027, -0.27447285243338015, -0.2707422252653582, -0.2666260571769494, -0.2625214052392397, -0.25879567111652735, -0.25576230440982295, -0.2536651703698096, -0.2526713384536665 ], [ -0.3279960776832169, -0.3314810885104176, -0.33598519529431226, -0.3414267159437996, -0.34766561153473674, -0.3545004261869844, -0.3616683850926623, -0.3688492593095969, -0.37567351588574294, -0.38173514365188455, -0.38660935085376535, -0.3898750337419119, -0.39114148233714485, -0.3900782087405743, -0.38644607921406826, -0.3801271757655855, -0.3711501276880409, -0.3597072026846684, -0.3461594212742203, -0.33102654583877267, -0.31496014070606315, -0.2987000368420114, -0.2830173041144539, -0.26864978817866114, -0.2562386292173553, -0.2462749677155307, -0.23906451802882622, -0.2347139767292239, -0.23313857587751352, -0.23408625985427212, -0.23717216272806985, -0.24191735272098946, -0.24778742100020446, -0.2542284872266236, -0.2606998872387354, -0.26670382541160054, -0.2718124661615018, -0.2756923230989585, -0.2781246057009996, -0.27901892007006013, -0.2784171599208807, -0.27648523507105494, -0.2734924898494231, -0.2697814065398787, -0.2657322247467788, -0.261727657432552, -0.258122041024331, -0.2552176800346668, -0.25324951397940665, -0.2523779360389391 ], [ -0.3316635308340219, -0.3360650943568877, -0.34162300457443906, -0.3482588304728431, -0.3558311532939633, -0.36413139076163437, -0.3728828313524015, -0.3817435878187676, -0.390314117136048, -0.39814985090343225, -0.4047792998140416, -0.40972769051846325, -0.4125457195665374, -0.412842347901339, -0.4103197348838974, -0.40480750389970943, -0.3962926831286062, -0.3849410686836625, -0.3711056410563571, -0.35531826012263124, -0.33826234956987933, -0.3207267087664618, -0.3035437704635242, -0.28751902088807135, -0.27336100024337395, -0.2616221942358743, -0.2526594102379953, -0.24661808684706843, -0.24343981749717458, -0.24288812248522396, -0.2445854916793413, -0.24805500773162525, -0.2527616049684056, -0.25815019411523, -0.2636797339050978, -0.26885345968545904, -0.2732457518407363, -0.27652559747965655, -0.2784755232689171, -0.27900376125421156, -0.2781469442951805, -0.27606137964036015, -0.27300291149016664, -0.2692978085819351, -0.26530893133385547, -0.2614019593740169, -0.2579157421896361, -0.2551394235057216, -0.2532974819840026, -0.2525425957704748 ], [ -0.33582473499265486, -0.34120642391503675, -0.3478917294075108, -0.3558071670699685, -0.3648116672335928, -0.3746911461604656, -0.38515629484782377, -0.39584440099460716, -0.40632599374410905, -0.4161170318767229, -0.4246971982567609, -0.4315345563410016, -0.4361163121366036, -0.43798467866302726, -0.4367758822733854, -0.4322592708848727, -0.4243724450856854, -0.4132475605074233, -0.39922371451106176, -0.3828409118720275, -0.364812730357843, -0.3459775530443534, -0.32723188454732544, -0.30945318465316074, -0.29342275439843757, -0.27976022294763014, -0.26887924460435864, -0.26096938752805476, -0.25600346763819815, -0.2537648856155823, -0.2538872839326769, -0.2558991246216522, -0.259267680696583, -0.26343930706966234, -0.2678748817640335, -0.27208056029484906, -0.27563434721161006, -0.2782085521599045, -0.27958724866387774, -0.2796768820234141, -0.278507792882849, -0.27622510527540967, -0.273069143110225, -0.2693476463673756, -0.2654036555353514, -0.2615834271175277, -0.25820814465388375, -0.2555519452550816, -0.2538274077424447, -0.25317848735818016 ], [ -0.34047706411211376, -0.3469005073098428, -0.35478478033521954, -0.36406321264249186, -0.3745970444258031, -0.38616860606153813, -0.39847767093695463, -0.4111419077818885, -0.4237023776442581, -0.435634996290871, -0.4463687579989861, -0.4553112164935287, -0.46188117140163176, -0.46554767365440264, -0.4658733597882947, -0.46255885149109655, -0.45548369731455485, -0.444738350344283, -0.4306412870762468, -0.413735915206493, -0.39476367707293525, -0.37461284423370755, -0.3542466814616032, -0.3346191818767623, -0.3165901574983685, -0.3008526366137354, -0.28788332899712055, -0.2779217395624327, -0.270977150980229, -0.26685750345336956, -0.2652117142075603, -0.26557726922540326, -0.26742698210284344, -0.27021140948157396, -0.2733956281656711, -0.2764904631324867, -0.279078709704637, -0.280836550869231, -0.2815495447044021, -0.2811217185935304, -0.2795759977461274, -0.27704479999533893, -0.2737511025782773, -0.26998208873817364, -0.26605886309591886, -0.26230617945134305, -0.2590256345331965, -0.2564746994738065, -0.2548527248078336, -0.25429397594145353 ], [ -0.3456120002546972, -0.35313600022258207, -0.3622877798718662, -0.37300950860651705, -0.3851669206609061, -0.39854096565350194, -0.4128225293283372, -0.42761126335952837, -0.4424196365985009, -0.45668335195763055, -0.4697791936611888, -0.4810510868733844, -0.4898445754142804, -0.49554899793997165, -0.49764538178671813, -0.4957565831760926, -0.4896946909834865, -0.4794994798938015, -0.4654611177806418, -0.44812080133275667, -0.4282448684007809, -0.4067713830469577, -0.3847329676775362, -0.3631648913711716, -0.34301159460715414, -0.3250462079751477, -0.3098151541124814, -0.29761409790201143, -0.28849441676211596, -0.2822936104689371, -0.2786803285055699, -0.27720501447916956, -0.2773494360095341, -0.2785712134781282, -0.2803418826620494, -0.28217854751760685, -0.28366972647362787, -0.28449574446866244, -0.2844433112661542, -0.2834132060515018, -0.28141973314041646, -0.2785811352343486, -0.27510139627953945, -0.2712453847436256, -0.26731046491854826, -0.2635981131741554, -0.2603886793927339, -0.25792150400042546, -0.2563815016401296, -0.2558923314695587 ], [ -0.35121483599427616, -0.3598944390766716, -0.37037815413059394, -0.38261915584316886, -0.3964900635440234, -0.411772930738149, -0.4281521360238538, -0.4452113267426321, -0.46243570463650263, -0.4792210434455948, -0.4948908083903263, -0.5087224953832801, -0.519983711266641, -0.5279775010228744, -0.532094998169977, -0.531871744187794, -0.5270422258124392, -0.5175856588418486, -0.5037552299713328, -0.4860833627130141, -0.4653575351381032, -0.44256498824307955, -0.41881009766479216, -0.3952142453726697, -0.37281292476434547, -0.3524664853891921, -0.3347981564101763, -0.32016640611134495, -0.3086707347397528, -0.300183605231944, -0.2943982141440824, -0.2908822009172707, -0.2891299186745646, -0.288609017533227, -0.28879973111889456, -0.28922691509891596, -0.2894855217641019, -0.28926002706895826, -0.2883377164407259, -0.28661511468762724, -0.2840966278786521, -0.28088490221019446, -0.27716344081603395, -0.27317328203529523, -0.2691865314985955, -0.26547990070712246, -0.26231108562413663, -0.2599000264060962, -0.25841612106543166, -0.25797156509243324 ], [ -0.3572645009922679, -0.3671500361672635, -0.379024880724085, -0.3928554921526419, -0.408523947170899, -0.4258161468733521, -0.4444126831750326, -0.4638836271518956, -0.48368871231932675, -0.5031845689317545, -0.52164072075886, -0.5382658500489739, -0.5522452312594224, -0.5627891318071163, -0.5691903704412797, -0.5708872305511314, -0.5675258082505577, -0.5590140231132266, -0.5455584190407878, -0.5276750751378221, -0.5061679564338268, -0.48207219994944284, -0.45656597307912383, -0.4308615622139891, -0.40609213918323284, -0.38321273903741737, -0.36293090549854945, -0.34567498582228606, -0.3315990641594089, -0.32061639295249433, -0.3124499208638103, -0.30668904525578533, -0.3028445595157063, -0.30039720977845485, -0.29883814059527314, -0.29770129789344724, -0.2965885712071048, -0.2951883620103597, -0.2932877417248769, -0.29077782325400303, -0.287651776028939, -0.2839952689220828, -0.2799699730386558, -0.27579179231956874, -0.2717063096565988, -0.26796424617143844, -0.26479947427495687, -0.26241145377278086, -0.26095311424200185, -0.26052439606110034 ], [ -0.36373352846559626, -0.37486963345077684, -0.38818841539365945, -0.40367196934794936, -0.4212145473782196, -0.4406088687445766, -0.4615347756536585, -0.4835515979002747, -0.5060958865597787, -0.5284864564195988, -0.5499388250750377, -0.569590995639569, -0.5865419313408295, -0.5999028871979692, -0.6088599710630955, -0.6127440272202136, -0.6111014614425472, -0.6037573976444901, -0.5908611232325791, -0.5729037589751411, -0.550700099320468, -0.5253310653542538, -0.4980501005813265, -0.470164949067708, -0.4429131316953272, -0.4173520872434271, -0.3942815604867056, -0.3742073006525579, -0.35734491488128506, -0.3436547452625094, -0.3328951267859579, -0.32468211949879855, -0.31854703549403807, -0.31398687385516677, -0.31050586819928605, -0.3076482591354517, -0.3050231827597836, -0.3023225308291442, -0.2993321869534473, -0.29593656812584657, -0.29211621963852274, -0.28793848757905716, -0.28354197505523016, -0.2791163272895212, -0.2748795611651902, -0.27105541499220487, -0.267852985409049, -0.2654503512510151, -0.2639831496474072, -0.26353834581513036 ], [ -0.3705881723654221, -0.38301282842019413, -0.3978208142822923, -0.41501225157189947, -0.4344963853238535, -0.4560759055069541, -0.4794332201119791, -0.5041201357324319, -0.5295527920658463, -0.555014087042283, -0.57966608921255, -0.602574878902383, -0.622749686104378, -0.6391969392489232, -0.6509878560990824, -0.6573356207794627, -0.6576753220402727, -0.6517371752520671, -0.639601734397061, -0.6217255125529542, -0.5989273857061173, -0.5723309433873793, -0.5432656051941755, -0.5131386453928946, -0.4832984425792979, -0.4549126717251766, -0.4288814864339554, -0.40579601780244423, -0.3859408598563241, -0.3693302708345163, -0.3557640715358217, -0.34489024367285404, -0.33626491149353255, -0.3294045568597135, -0.32382863092466097, -0.31909273630986035, -0.31481338289997063, -0.3106853319713492, -0.30649215072947134, -0.3021101753897175, -0.29750590473003635, -0.29272705071849714, -0.2878880114821125, -0.2831512022574274, -0.27870622048606997, -0.2747490337518308, -0.2714632066179725, -0.2690047034683789, -0.26749116945498774, -0.26699595005533894 ], [ -0.37778868020405887, -0.3915322790304947, -0.40786606183650265, -0.42681054922221184, -0.44829284000133685, -0.4721288712029994, -0.4980071568361395, -0.525475540102071, -0.5539329861242164, -0.5826289572029535, -0.6106733039364469, -0.6370596598036458, -0.6607048009591449, -0.6805051227524427, -0.695409210267029, -0.7045025635183123, -0.7070972351590878, -0.7028160126920052, -0.6916585265701022, -0.6740360601459142, -0.6507636854292048, -0.6230033809164359, -0.5921602107809751, -0.5597442892727842, -0.5272209439490037, -0.4958758518037296, -0.46671801589229367, -0.4404323753987316, -0.4173805323183246, -0.3976380524848102, -0.381052827921158, -0.3673103712102386, -0.35599610532300874, -0.34664927073295826, -0.33880659536680713, -0.3320359695809376, -0.325961234370751, -0.320279239331025, -0.31476998253907573, -0.3093002616060132, -0.30382108977064815, -0.29835927230597004, -0.2930039551474217, -0.2878894853505185, -0.2831763518156112, -0.2790321427285076, -0.27561430984218505, -0.273056124065425, -0.2714566592037502, -0.27087507504391617 ], [ -0.3852897199615868, -0.4003741873771143, -0.41826060636970164, -0.4389921943642565, -0.4625167414881244, -0.4886667606644781, -0.5171405667215163, -0.5474858804890619, -0.5790881547972442, -0.6111664718482337, -0.6427804041635041, -0.6728514205181937, -0.7002019665120528, -0.7236140020238393, -0.7419064152668016, -0.7540274677375742, -0.759154647123323, -0.7567906537310806, -0.7468415088379364, -0.7296618030278462, -0.7060537931571612, -0.6772122801796406, -0.644616369268848, -0.609881257145374, -0.5745945975279103, -0.5401675409924149, -0.5077264812534164, -0.4780589885414188, -0.45161224766871855, -0.42853109343958273, -0.40871855101418486, -0.3919035951353904, -0.377705588925481, -0.3656898179053176, -0.3554122550231573, -0.3464538597108473, -0.3384456071281827, -0.3310855224242988, -0.3241486922068342, -0.31749087706864865, -0.3110461730534606, -0.304819256948494, -0.2988730643641895, -0.29331315763974786, -0.2882703742714563, -0.28388347373883116, -0.2802833726339504, -0.2775802124341502, -0.2758540321549756, -0.2751493213086287 ], [ -0.3930409528128398, -0.40947895424081593, -0.4289340968229114, -0.4514744541586393, -0.47707124666351586, -0.5055768608269966, -0.5367031753097156, -0.5700018303452112, -0.604848791105502, -0.6404363571949403, -0.6757764840446358, -0.7097196330591358, -0.7409930196586518, -0.7682607683422624, -0.7902059415111495, -0.805630778541778, -0.8135671887835502, -0.8133853089261955, -0.8048846569575165, -0.788351036976514, -0.7645638445103574, -0.7347437907159963, -0.7004409417643075, -0.6633764490496097, -0.6252646302027227, -0.5876490105573058, -0.5517818258228573, -0.5185623857939563, -0.48853252257971724, -0.46191482103364767, -0.43867492346553205, -0.4185914605106944, -0.4013224758476803, -0.38646255574696275, -0.3735887757815932, -0.3622958049892775, -0.35222142477656626, -0.3430638277770117, -0.33459179847317677, -0.3266485605263971, -0.31914989988357734, -0.31207721427126334, -0.3054663684526713, -0.29939354305484756, -0.2939595178145564, -0.28927392030279697, -0.28544085530672314, -0.2825470331062814, -0.28065310716863623, -0.279788496334459 ], [ -0.40098773700987533, -0.4187819892113023, -0.4398103057681355, -0.4641675691825009, -0.4918509883237965, -0.5227359955349555, -0.5565517632516517, -0.5928579935718172, -0.6310254639620068, -0.6702237717481903, -0.7094206225271548, -0.747397547853088, -0.7827867267780302, -0.8141322431749928, -0.8399764036009626, -0.8589677345266322, -0.8699824292110624, -0.8722461396521877, -0.865439130682511, -0.8497659877784449, -0.8259723475568961, -0.795296605020411, -0.759355095376691, -0.7199741552140152, -0.6789977282862403, -0.638107722170995, -0.5986903131173973, -0.5617657479875864, -0.5279799100467888, -0.4976420090186473, -0.47078809869817784, -0.44725282615509676, -0.42673768274128876, -0.40886973748358524, -0.39324890325434914, -0.3794840733405078, -0.36721941170480865, -0.3561522221089397, -0.3460435985853365, -0.3367227740019041, -0.3280859097932638, -0.32009007444646453, -0.31274331669101696, -0.3060919650564218, -0.30020647040771453, -0.295167165085235, -0.2910512036186892, -0.2879216918867171, -0.28581965811485754, -0.2847591375432401 ], [ -0.40907194259845214, -0.4282146544092684, -0.45080821578148167, -0.47697599417750913, -0.5067434776624176, -0.5400120892312872, -0.5765318782051094, -0.6158747337213681, -0.6574107102714571, -0.7002911786574697, -0.7434436225759667, -0.7855836567016028, -0.8252498029629134, -0.8608652714945472, -0.8908281434895488, -0.9136269683066819, -0.9279733465337539, -0.9329374916483765, -0.9280682184774016, -0.9134764921590071, -0.8898627225031647, -0.8584735883105102, -0.8209853533425255, -0.779326921042644, -0.735473124440974, -0.691249002790981, -0.648182072532361, -0.6074225015772541, -0.569729709920952, -0.5355085836056992, -0.5048735161129927, -0.477721566252832, -0.4538023819435688, -0.4327785839523648, -0.4142745344061838, -0.3979137700938906, -0.38334636834762237, -0.37026769943985594, -0.3584298423913057, -0.3476466882122795, -0.3377935860536898, -0.3288023628534231, -0.3206526475904876, -0.31336058834944724, -0.30696617781887037, -0.3015204301699017, -0.297073547092944, -0.29366498329146595, -0.291316013425722, -0.29002506763779157 ], [ -0.41723285213449346, -0.4377053143061127, -0.4618432395010035, -0.48979981030663833, -0.5216307296077831, -0.5572660220472105, -0.596479927602318, -0.6388604977724763, -0.683781561766089, -0.7303810198822612, -0.7775507442722146, -0.823944362155511, -0.8680093637833763, -0.9080487788475476, -0.9423147045602266, -0.9691312117634341, -0.9870380940809893, -0.9949405795842541, -0.9922448400039745, -0.9789562799426315, -0.9557184141533785, -0.9237758849645484, -0.8848569778953023, -0.8409885822659038, -0.7942756997462304, -0.7466896001755936, -0.6999054096046009, -0.6552115682087418, -0.6134902238518292, -0.5752508527397036, -0.54069400898565, -0.509785428734767, -0.4823274748914397, -0.4580212450978536, -0.4365170562251093, -0.41745346066411315, -0.4004860008601847, -0.3853071540593762, -0.37165879546956426, -0.3593382912635825, -0.34819917273120327, -0.33814729524658027, -0.32913343882983503, -0.3211434071213195, -0.31418676028187953, -0.3082853181035057, -0.3034624650952362, -0.2997340856104904, -0.2971016860040139, -0.29554796593191623 ], [ -0.4254081195003525, -0.4471804601606437, -0.4728285384255051, -0.5025362709885639, -0.5363910711553652, -0.574353736441874, -0.6162256156716384, -0.6616146060142594, -0.7099026932647355, -0.7602192033005398, -0.8114254789000416, -0.8621179497327102, -0.9106569697524082, -0.955227730758994, -0.9939365280039892, -1.0249405443211381, -1.0466026213313584, -1.0576553176576646, -1.0573524492076078, -1.045582853259208, -1.0229217170280833, -0.990600757370248, -0.9503910103955694, -0.9044108046288206, -0.8548923847842108, -0.8039543002194165, -0.7534239217467221, -0.7047351508121974, -0.658901270819368, -0.6165447203405714, -0.5779596304903114, -0.5431863614645245, -0.5120843050571191, -0.4843957976130382, -0.45979854265939135, -0.4379464981547092, -0.41850032510376334, -0.40114881778037814, -0.3856226748694478, -0.3717017944099621, -0.3592171271618121, -0.34804805837204755, -0.33811630217637556, -0.3293773453037936, -0.3218105139922407, -0.3154087150178444, -0.31016879573459466, -0.3060832824761448, -0.30313401595836775, -0.3012879413122149 ], [ -0.43353475746729186, -0.45656587538590343, -0.48367640213070273, -0.5150814382420925, -0.5509010851759835, -0.5911285444256598, -0.6355946724380328, -0.6839304582477814, -0.7355301510194654, -0.789519378450993, -0.8447343680267652, -0.899719908968379, -0.9527543666811857, -1.0019091704440395, -1.0451471351602861, -1.080458549485153, -1.1060266300133184, -1.1204059060261615, -1.12269009220319, -1.1126418732131174, -1.0907573805127897, -1.0582443619758437, -1.0169062665803672, -0.9689444544445137, -0.9167131424448217, -0.8624767807792582, -0.8082174408490376, -0.7555199027580294, -0.7055356348578696, -0.6590073974299728, -0.616329573537141, -0.5776225714710679, -0.5428067895385189, -0.5116683927583956, -0.48391387588250456, -0.45921308741983724, -0.4372316522241595, -0.41765415219266955, -0.4001994372838573, -0.38462930794481887, -0.37075167718527635, -0.358419243890447, -0.3475246914595056, -0.33799343841368734, -0.329774969422413, -0.32283373086571343, -0.3171404659905741, -0.31266469274718767, -0.30936881119179493, -0.30720409472649624 ], [ -0.4415501248388183, -0.46578780780998663, -0.49429964824793804, -0.5273318635165773, -0.5650376367089984, -0.6074435752414913, -0.6544118081244108, -0.7055990853716382, -0.7604155900280093, -0.8179879364432253, -0.8771328196416929, -0.9363495846506884, -0.9938409473487947, -1.0475704196193627, -1.0953619540072572, -1.1350416227627678, -1.1646132026823404, -1.1824506134974346, -1.1874821742521608, -1.1793367344368786, -1.1584218086213687, -1.1259104046363564, -1.0836273258280142, -1.0338468804576166, -0.9790375858672318, -0.9216056641569342, -0.8636876286588632, -0.8070221498560012, -0.7529039609664747, -0.7022019892953378, -0.6554164503441943, -0.6127524943622193, -0.5741950796364659, -0.5395766160972031, -0.5086338193344131, -0.4810530895774914, -0.4565051443418515, -0.4346701747090622, -0.41525489276673344, -0.39800275746289926, -0.3826985524364943, -0.36916840530831196, -0.35727629466843425, -0.3469180701235659, -0.33801398220003076, -0.3305006554378258, -0.32432332480549486, -0.3194289934853911, -0.31576097346759946, -0.3132550613582905 ], [ -0.4493928857273424, -0.47477411622635035, -0.5046130042704191, -0.5391862663403819, -0.5786799257937361, -0.6231542967882808, -0.6725038143976833, -0.7264129558513405, -0.7843109194455176, -0.8453296268383022, -0.9082718149406143, -0.9715980629547131, -1.0334428632237997, -1.091669408948627, -1.1439698062876795, -1.1880115054543818, -1.22162223909279, -1.2429959517307811, -1.2508931904481193, -1.244803645419766, -1.2250382438803802, -1.1927251421607625, -1.149699050924518, -1.0982956849139653, -1.0410878068072087, -0.9806162949388889, -0.9191686692166737, -0.8586375119696791, -0.8004633502735526, -0.7456451265189508, -0.6947930331175501, -0.6482007255771165, -0.6059207668487792, -0.567834051884802, -0.533709020282293, -0.5032495360157707, -0.4761319050834345, -0.45203218176029525, -0.430645107857198, -0.4116960059896668, -0.3949468574601547, -0.38019770829121113, -0.3672844833298843, -0.3560742395999128, -0.3464588355227054, -0.33834791207769355, -0.3316619639440892, -0.3263261235721231, -0.3222651000195167, -0.31939952477530764 ], [ -0.45700391652914774, -0.4834553616238322, -0.5145344348553795, -0.5505471657318803, -0.5917115105888027, -0.6381210404884634, -0.6897027251193902, -0.7461699300067648, -0.8069732276189542, -0.8712536417972131, -0.937805337763616, -1.0050571124375853, -1.071083603489087, -1.133656963630436, -1.190346898819026, -1.2386709108202818, -1.2762875868085133, -1.3012151360792794, -1.3120473085680189, -1.3081320848371727, -1.2896777871062866, -1.2577585758189294, -1.214207495793936, -1.1614088647811895, -1.1020273184410194, -1.0387281604696104, -0.9739429773959177, -0.9097148377359129, -0.8476295606057903, -0.7888175407826126, -0.7340013551960033, -0.6835658149399534, -0.6376335407212543, -0.5961359654469671, -0.5588748631925351, -0.5255727815350753, -0.49591254285748043, -0.4695668148771419, -0.4462190510456019, -0.42557714136400815, -0.407381051715094, -0.3914056443807328, -0.3774597935150539, -0.3653828377692139, -0.3550393356749435, -0.346312993741976, -0.33910051407105324, -0.33330595794987694, -0.32883605294211526, -0.325596697234356 ], [ -0.4643271401405229, -0.4917658177003732, -0.5239863824589437, -0.5613224229446245, -0.6040222467985625, -0.6522114589297743, -0.7058489443212332, -0.7646772427940982, -0.8281698349774461, -0.8954799787755189, -0.9653982984554305, -1.0363289125863795, -1.106295738892956, -1.1729907132101214, -1.233872966766868, -1.2863218725098675, -1.3278374728945532, -1.3562704001126913, -1.3700523049454187, -1.3683900414569492, -1.3513855532992243, -1.3200510402144656, -1.276206344288468, -1.2222704573289769, -1.1609852876261861, -1.0951272054002654, -1.0272612694005245, -0.9595738961062552, -0.8937923482218706, -0.8311772028082738, -0.7725638597159503, -0.7184296697144731, -0.6689690915844186, -0.624165935616737, -0.5838570377454406, -0.5477851862758663, -0.5156411175096527, -0.4870953973431096, -0.46182142209306654, -0.43951088156944196, -0.41988299818399644, -0.40268877709562934, -0.38771141331870984, -0.3747639121236097, -0.36368488418970313, -0.35433336824159567, -0.3465834056806645, -0.34031894451876443, -0.3354294904364292, -0.3318067619366587 ], [ -0.4713102715159121, -0.4996443802760786, -0.5328968944320831, -0.5714266593434478, -0.6155100939532299, -0.6653028483630821, -0.7207942483623397, -0.7817553888204881, -0.8476833060664322, -0.9177458609199423, -0.9907346701659467, -1.0650362199078, -1.1386334090033339, -1.2091501335340564, -1.2739490100583388, -1.3302861934362606, -1.3755175500390449, -1.4073383993613247, -1.4240269851590284, -1.4246530328818805, -1.4092107978916735, -1.3786438633969484, -1.3347474388440523, -1.2799602064887248, -1.2170846177245873, -1.1489917208154303, -1.0783658418756947, -1.0075258541966, -0.9383331567530413, -0.8721743855787143, -0.8099960915268548, -0.7523681700350294, -0.6995579483952424, -0.6516031955259799, -0.6083776331049235, -0.5696461796818306, -0.5351093561010778, -0.5044374525230559, -0.47729559610017414, -0.45336104434039637, -0.43233403892470945, -0.4139434880876869, -0.3979486517343773, -0.38413790064291575, -0.37232551166855865, -0.362347341201285, -0.3540560862532014, -0.3473166973728432, -0.3420023554850591, -0.3379912743445608 ], [ -0.47790546340012474, -0.5070353605649729, -0.5412006156072497, -0.5807825194945084, -0.6260827453693065, -0.6772842736459468, -0.7344045725905715, -0.797241782278964, -0.8653162430219579, -0.9378119722986591, -1.0135255137512285, -1.0908325515974866, -1.1676850245197818, -1.2416520770052146, -1.3100158628696972, -1.3699271234612325, -1.41861557982407, -1.4536376220125355, -1.4731308919287265, -1.4760355689810105, -1.462239520836706, -1.432612443660374, -1.388913614732047, -1.3335854081538923, -1.2694720785756486, -1.1995201352320677, -1.126515582981373, -1.0528952906438178, -0.9806441274837773, -0.9112678312619806, -0.8458202853482487, -0.7849624929441738, -0.7290348623515409, -0.6781303822906961, -0.6321615288261131, -0.5909175308358692, -0.5541110036967078, -0.5214143016969446, -0.4924866046834555, -0.46699302221087935, -0.4446170531255935, -0.4250676899023931, -0.40808236384412067, -0.39342681611910724, -0.38089285940171713, -0.3702948666023529, -0.3614656863822987, -0.3542525413698614, -0.3485133187194447, -0.34411352071327617 ], [ -0.48406984559793886, -0.5138891524927696, -0.5488396313907145, -0.5893217563001598, -0.6356590460076246, -0.6880584408794842, -0.7465624999166838, -0.8109940694024053, -0.8808956827567611, -0.9554682557904549, -1.033516542573596, -1.1134119181669377, -1.193085574206088, -1.2700660222248406, -1.341572661188082, -1.4046711686051825, -1.4564865078826854, -1.4944564330107195, -1.5165948153782032, -1.5217234714719934, -1.5096278549114028, -1.481099944507681, -1.4378519549194126, -1.3823130113157758, -1.3173485969521792, -1.2459589390982586, -1.1710111319889793, -1.0950423837281702, -1.0201473009040325, -0.9479411081775747, -0.8795791262188828, -0.8158105797740527, -0.7570482995227258, -0.7034413606348957, -0.6549428269154954, -0.6113686311330842, -0.5724461623588142, -0.5378526307568332, -0.5072440712283077, -0.48027620100082946, -0.4566184516246823, -0.4359624713831005, -0.41802630746476943, -0.402555362861694, -0.3893210958904172, -0.378118295852774, -0.36876162870950546, -0.3610820040592053, -0.3549231731691187, -0.3501388327943018 ], [ -0.48976595516010635, -0.5201627689762713, -0.5557641519704382, -0.5969861216471088, -0.6441701702797105, -0.6975432720685215, -0.7571693788427484, -0.8228929815190084, -0.8942769294026756, -0.9705390266242983, -1.0504948748283733, -1.132517616981075, -1.2145278818055305, -1.2940281949349721, -1.3681941500789045, -1.4340287621878458, -1.4885764685290475, -1.5291801325873944, -1.5537503766685845, -1.561005255735419, -1.5506344126259155, -1.5233497692436107, -1.480805626402604, -1.4254001550968805, -1.3599979431777578, -1.287629083762082, -1.2112186830757832, -1.133383959812321, -1.0563128991761088, -0.9817182462894303, -0.9108489509185156, -0.8445381704419922, -0.7832695942214074, -0.7272487753624626, -0.676471061459089, -0.6307815892431587, -0.589925467376764, -0.553587912470378, -0.5214250157008578, -0.49308625911837267, -0.4682300618602384, -0.4465336421972701, -0.42769840711452645, -0.41145196865061306, -0.39754775633683725, -0.3857630572964672, -0.3758961744201228, -0.36776325182491654, -0.3611951793081669, -0.3560348582804067 ], [ -0.49496205814869265, -0.5258202460286487, -0.5619330330975525, -0.6037280520990351, -0.6515605395420737, -0.7056731459309316, -0.7661470108800276, -0.8328446321399741, -0.9053466718166259, -0.9828871748973596, -1.0642946412466572, -1.1479496146113697, -1.2317721633942493, -1.3132536974245732, -1.389545727376258, -1.45761244416004, -1.5144441294380473, -1.5573152471181353, -1.584056777295274, -1.5933006198788204, -1.5846496610168883, -1.5587349579788337, -1.5171425366378308, -1.4622214804562816, -1.3968122548618944, -1.3239494089224273, -1.2465911199953805, -1.1674122415183605, -1.0886756936275575, -1.0121778200430445, -0.9392517131734593, -0.8708088637963948, -0.8074013379486192, -0.7492910026424053, -0.6965169322097767, -0.648955945119166, -0.6063739545956564, -0.5684675746011796, -0.5348964472869335, -0.5053072873094515, -0.47935085910625275, -0.4566931445826845, -0.4370219025801729, -0.420049716052908, -0.40551449427116104, -0.39317825904242776, -0.3828249028925321, -0.37425746781097824, -0.36729535940085256, -0.3617717870328423 ], [ -0.49963236609340633, -0.530832916586939, -0.5673141328011011, -0.6095111443729844, -0.6577884661588613, -0.7123997789361564, -0.7734388612239183, -0.8407821808719982, -0.914025262396656, -0.9924172655132795, -1.0748011608924708, -1.1595701003832195, -1.2446532973949667, -1.32754584724766, -1.4053951772934812, -1.4751512333388745, -1.5337777958423782, -1.5785092432275911, -1.607122747513997, -1.6181840129947935, -1.6112203355780366, -1.5867826396513829, -1.5463791105705746, -1.4922916945727462, -1.4273130392800188, -1.3544558844755583, -1.2766853998315852, -1.196710342724736, -1.11684863337054, -1.038964781735522, -0.9644651361808234, -0.894332736570652, -0.8291846313532351, -0.7693382074341717, -0.7148773349899767, -0.6657128286034157, -0.6216344861264329, -0.5823538138397324, -0.547537670153792, -0.5168336736534027, -0.489888503691557, -0.46636030331140765, -0.445926361581757, -0.4282871589377215, -0.41316773583174804, -0.40031720905617485, -0.389507120930737, -0.38052916985056373, -0.37319274065201036, -0.367322533508621 ], [ -0.5037571518753132, -0.5351795580756096, -0.5718845063351452, -0.614310419620947, -0.6628265174512905, -0.7176927304609028, -0.7790107615002906, -0.8466668095004155, -0.920268066891451, -0.9990773923837377, -1.081953465768141, -1.1673068856148308, -1.2530853389994636, -1.3368020734705914, -1.415620218506456, -1.4865000621215059, -1.5464068773376916, -1.5925640213783874, -1.6227218609251586, -1.6354013528830897, -1.6300669780053283, -1.6071917427670328, -1.568197584479543, -1.5152820062062873, -1.4511664848505552, -1.3788156772675106, -1.301175341335469, -1.2209637843319354, -1.1405331112932617, -1.0617995144974142, -0.9862306071880741, -0.91487315379684, -0.8484049014997475, -0.7871972693602468, -0.7313795017520118, -0.6808984170975632, -0.6355706225839521, -0.5951259705466032, -0.5592422384948519, -0.5275717064637042, -0.49976064960391997, -0.47546288902075395, -0.45434853906575134, -0.436109012250558, -0.42045922885553844, -0.4071378476684464, -0.3959061989033572, -0.3865464672738139, -0.3788595471341467, -0.37266287612829174 ], [ -0.5073227706905776, -0.5388464190603093, -0.5756304437796027, -0.6181123790356078, -0.6666615986718566, -0.7215395255716064, -0.7828510890627847, -0.8504879805883914, -0.9240658338639649, -1.0028597029192259, -1.0857450421661357, -1.1711544473510427, -1.2570629813094558, -1.3410159428903172, -1.4202112721744782, -1.4916434767085387, -1.5523066932160177, -1.5994419357673892, -1.6307997645760965, -1.6448783142668717, -1.6410929886873378, -1.619842432213848, -1.5824554488818798, -1.531029278799792, -1.4681921479604019, -1.3968352995806121, -1.3198592220431182, -1.2399675421433654, -1.159525457140193, -1.0804837558422078, -1.004358517047758, -0.9322515200867596, -0.8648960760214844, -0.8027154064112921, -0.7458841128427857, -0.6943865832502003, -0.648068856610738, -0.6066823986367071, -0.5699195110146584, -0.5374408578679604, -0.5088959971775062, -0.48393797531514515, -0.46223306943734044, -0.4434667058223165, -0.42734648087976845, -0.4136030890422999, -0.4019898320928521, -0.3922812561518685, -0.3842713409273981, -0.3777715546243361 ], [ -0.5103215921420889, -0.5418271311377074, -0.5785473562899046, -0.6209148562965534, -0.6692947596050941, -0.7239453985263548, -0.7849704235715684, -0.8522629756785551, -0.9254440752314731, -1.0037995752967528, -1.0862227569815297, -1.1711725619472075, -1.2566598723838474, -1.3402751697912023, -1.419269221695847, -1.4906932616475679, -1.5515961311938185, -1.5992636903393993, -1.6314725101075933, -1.646719240863179, -1.6443841790248757, -1.624796272384985, -1.5891861368042297, -1.5395371494667072, -1.4783644332685675, -1.4084624109567812, -1.332661872774162, -1.2536283930103758, -1.1737194703163754, -1.0949032317458953, -1.0187309028441893, -0.946349844950977, -0.8785430020694384, -0.8157823994145242, -0.7582872993386114, -0.706080664757954, -0.659040152785807, -0.6169417871663334, -0.5794957712177136, -0.5463747226023521, -0.5172350710621161, -0.4917325761615403, -0.46953298242493524, -0.45031879611159487, -0.433793082367959, -0.4196810696930884, -0.4077302266362357, -0.39770935326702417, -0.38940711338910017, -0.38263032670857977 ], [ -0.5127518496076038, -0.5441225127252154, -0.5806395183331303, -0.6227266752159117, -0.6707407348300143, -0.7249326698300946, -0.7854006982871696, -0.8520357378322263, -0.9244614937118129, -1.0019735003287848, -1.0834840424640015, -1.1674826290881786, -1.252023919332068, -1.3347557697646137, -1.4129983453377686, -1.483880171896837, -1.5445283168318165, -1.5922982097680267, -1.6250159989606758, -1.6411965982108239, -1.640198659277679, -1.6222869092898258, -1.5885907556787904, -1.540968959010214, -1.4818067802497912, -1.41378125097021, -1.3396312925472744, -1.26196260277603, -1.1831050354493047, -1.1050270311944663, -1.0293014061202985, -0.957111118671673, -0.8892820947489748, -0.8263313949148546, -0.7685215102074603, -0.7159143312009106, -0.6684207709564222, -0.6258439138206446, -0.5879148972434916, -0.5543215992588635, -0.5247307139040791, -0.49880405676977135, -0.47621003805896556, -0.45663123319204457, -0.439768913885332, -0.4253453038414656, -0.41310421059839797, -0.4028105698793354, -0.39424932797628154, -0.3872239857046922 ], [ -0.5146174130598771, -0.5457402719192967, -0.5819196746554895, -0.6235671239341418, -0.6710272333313192, -0.7245397796585346, -0.7841938803509659, -0.8498750706880346, -0.9212075364774505, -0.9974957868528616, -1.0776725138987449, -1.1602619351478276, -1.2433699228148054, -1.3247128135107566, -1.401695001855664, -1.4715404765852758, -1.5314751054299893, -1.578945370693341, -1.611847453165753, -1.6287318552297427, -1.6289478869736853, -1.612702013023925, -1.5810215180614238, -1.5356330705646493, -1.478779066943474, -1.4130021545288673, -1.3409301777611708, -1.26508929025853, -1.1877630936849286, -1.1109039343769604, -1.0360927054595694, -0.9645376113700238, -0.8971002911183115, -0.8343383352408263, -0.7765552737941824, -0.7238515645256074, -0.6761723814895739, -0.633349834041967, -0.5951385824765647, -0.5612447141211623, -0.5313482956186293, -0.5051203180244457, -0.4822348812101376, -0.46237748385025834, -0.4452502384674022, -0.4305747471429058, -0.41809327193314405, -0.40756872717583814, -0.39878391657215073, -0.39154034111317126 ], [ -0.515927491646808, -0.5466946162827802, -0.5824085224004529, -0.6234652603286197, -0.6701939990917204, -0.7228200105286033, -0.7814202306798462, -0.8458722719937344, -0.9157991938994917, -0.9905142689871359, -1.0689722820849943, -1.1497362307443122, -1.2309700633426606, -1.310468483178068, -1.385732983471062, -1.4540984602091185, -1.5129067736140702, -1.5597131752119473, -1.5925006424371349, -1.6098695943725452, -1.6111706557282197, -1.59655815869735, -1.566958386825436, -1.5239618970389528, -1.46965934896946, -1.406446077710195, -1.3368231245004076, -1.2632200793392283, -1.1878574556177512, -1.1126560729793242, -1.039191711915436, -0.9686873103103188, -0.9020324665927782, -0.8398201279032119, -0.7823919324630023, -0.7298858078579677, -0.6822815100515668, -0.6394415316090627, -0.601146124755322, -0.56712210010518, -0.5370656472957913, -0.5106597612620942, -0.4875870210299611, -0.4675385151907967, -0.4502196829441285, -0.4353537721092522, -0.4226835263127777, -0.4119716161159044, -0.4030002318063488, -0.39557016440512416 ], [ -0.5166962726934257, -0.5470057784064919, -0.5821340808105604, -0.6224590669239249, -0.6682916703720791, -0.7198399417899886, -0.7771662090371442, -0.8401383019118009, -0.9083771948927765, -0.9812052402428696, -1.057601287970114, -1.1361710879290627, -1.2151428845708478, -1.292398301369922, -1.3655466752489387, -1.4320463245644541, -1.4893686746495751, -1.535191437310123, -1.5675971909065283, -1.5852473311317121, -1.5875025377040402, -1.5744710599136487, -1.5469811384830423, -1.506486559622496, -1.4549215496496708, -1.3945254557276696, -1.3276605649460824, -1.2566458801226397, -1.1836241155899354, -1.1104704347321643, -1.0387429202222616, -0.9696687930662008, -0.904157536276674, -0.8428317186786467, -0.7860674705176709, -0.7340383697297657, -0.6867583747264466, -0.6441210758977614, -0.6059338168302164, -0.5719461545375129, -0.541872737192469, -0.51541104643522, -0.49225464523268614, -0.4721026464920821, -0.454666114390035, -0.4396720602466564, -0.42686561899754594, -0.4160109051955707, -0.40689095838927525, -0.3993071026697266 ], [ -0.5169425043946456, -0.5466994673644185, -0.5811309632291126, -0.6205944773454106, -0.6653804712098962, -0.7156776871627111, -0.7715321022189285, -0.8328006035196978, -0.8991017733092029, -0.9697678693011139, -1.0438040245303664, -1.1198625492206022, -1.1962414761455993, -1.2709164735000824, -1.3416132482154397, -1.4059230481520353, -1.4614567705617965, -1.5060242496559644, -1.537816540634994, -1.5555638348361431, -1.5586436479950319, -1.5471239426354535, -1.521739412298515, -1.4838094309296055, -1.4351110021850704, -1.377722949215835, -1.3138606856583688, -1.2457217861039747, -1.175358840771077, -1.10458881371336, -1.034940380038814, -0.967634891912013, -0.9035935108683348, -0.8434622712304682, -0.7876475868201779, -0.7363561960296383, -0.6896351984015557, -0.6474093469175997, -0.6095139830903136, -0.5757229090404905, -0.5457711135343488, -0.5193726621887831, -0.49623428324848384, -0.47606528007075677, -0.45858442006340305, -0.44352441750454163, -0.4306345660206312, -0.41968200041187576, -0.41045198698268326, -0.40274756305395876 ] ], "zauto": true, "zmax": 1.646719240863179, "zmin": -1.646719240863179 }, { "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.6467209397089912, 0.6455858769497501, 0.6443845295755062, 0.6430931169975889, 0.6416808509342204, 0.6401106793054672, 0.6383407075888653, 0.6363262717045389, 0.6340225961164001, 0.6313879485608322, 0.628387197704705, 0.624995682566872, 0.6212032946859641, 0.6170186315513801, 0.612472977577644, 0.6076236900853451, 0.6025563177581607, 0.5973845026239818, 0.5922465126839945, 0.5872972745696516, 0.5826952012899819, 0.5785840624838119, 0.5750715769090133, 0.5722080019001075, 0.5699691764870346, 0.56824861392131, 0.5668620018152649, 0.565565096503559, 0.5640832695557652, 0.5621487876518224, 0.559540826383813, 0.5561231754728485, 0.5518750818658549, 0.5469111396887935, 0.5414863425560256, 0.5359826757172393, 0.5308747704014518, 0.5266751649212866, 0.5238650107387778, 0.5228224349197078, 0.5237650995968095, 0.5267221519511002, 0.5315425822168949, 0.5379352908815536, 0.5455268803209657, 0.5539205875487584, 0.562743655395135, 0.5716773082717344, 0.5804696895684952, 0.5889357738744329 ], [ 0.6455006545487925, 0.6442956149777695, 0.6430296078286483, 0.6416771064304445, 0.6402042510956419, 0.6385695279013492, 0.6367252115618598, 0.6346195503575104, 0.6321996285960031, 0.62941482242897, 0.6262207667243148, 0.6225837622848281, 0.6184855516973297, 0.6139283481583667, 0.608939882106456, 0.6035780107554349, 0.5979341152594099, 0.5921341348245096, 0.5863357703184399, 0.5807203224431412, 0.5754780505111099, 0.5707870434894065, 0.5667873815001737, 0.5635544687236617, 0.5610770864807972, 0.5592460619360917, 0.5578579520920206, 0.5566350903266115, 0.5552598055625301, 0.5534178811358054, 0.5508451193123409, 0.5473710903870238, 0.5429550129109977, 0.5377094119569462, 0.5319073656337969, 0.525969126818693, 0.5204247591811662, 0.5158525516969062, 0.5127991706032864, 0.5116955825264734, 0.512788810802073, 0.5161085530618966, 0.5214776425080903, 0.5285604565089066, 0.5369316978035121, 0.5461451330548057, 0.5557872916700728, 0.5655099352006996, 0.5750425760021941, 0.5841903682078935 ], [ 0.6441936421821834, 0.6429148930949191, 0.6415818207456545, 0.6401671865621279, 0.638633962818461, 0.6369359294742526, 0.6350191287552099, 0.6328241583943912, 0.6302892393539811, 0.6273539773969573, 0.6239637485777716, 0.6200746623809076, 0.6156590659389466, 0.6107115114264985, 0.6052549750578127, 0.5993468556143735, 0.5930838836758949, 0.5866045820178226, 0.5800874581507288, 0.5737429109224881, 0.5677972082296286, 0.5624681386645007, 0.5579341301902665, 0.5543013678792266, 0.5515757679223587, 0.5496473396959847, 0.5482926842412569, 0.5471974506706323, 0.5459959731291733, 0.5443218391277607, 0.5418618258796054, 0.5384062493341343, 0.5338901850201276, 0.5284210677945165, 0.5222883104110223, 0.5159501880696526, 0.509993642788792, 0.5050657437310871, 0.5017826322378707, 0.5006318151498506, 0.5018918335789875, 0.5055928609933662, 0.5115295916345407, 0.5193190938531209, 0.5284817882260396, 0.5385207247301674, 0.5489817152990228, 0.5594879730341955, 0.5697517487914295, 0.5795698036378304 ], [ 0.6427993050142861, 0.6414427493830195, 0.6400398683241111, 0.6385617743566053, 0.6369682064843993, 0.6352080282989009, 0.6332206847680301, 0.6309386001985213, 0.6282904513956925, 0.6252052372239244, 0.6216170871180464, 0.6174707900332602, 0.6127280501010776, 0.607374441577193, 0.6014268926038059, 0.5949412285380522, 0.5880188291198806, 0.5808108332063868, 0.5735176910747752, 0.5663814836597881, 0.559668700007473, 0.553642517381772, 0.548526262587778, 0.5444632549012899, 0.5414814345334976, 0.539472357559296, 0.5381920510992956, 0.5372861788475192, 0.5363359745811072, 0.5349169891191582, 0.5326612860714312, 0.5293149118279981, 0.5247846421333099, 0.5191695397686513, 0.5127729826333416, 0.5060899766373398, 0.4997643677077364, 0.4945134290417156, 0.49102523064921344, 0.4898464028349142, 0.49128864280127726, 0.4953826957379563, 0.5018939591954813, 0.5103907260129101, 0.5203383084617818, 0.5311893008000523, 0.5424500287546578, 0.5537169281412283, 0.5646868400825691, 0.5751497404473048 ], [ 0.6413182914430177, 0.6398794412524306, 0.6384036119187223, 0.6368603616064509, 0.6352061682126989, 0.6333848123771852, 0.6313288276608934, 0.628962000125672, 0.6262028466925496, 0.6229689926856643, 0.6191824026898088, 0.6147754763361203, 0.6096980651935575, 0.6039254467877408, 0.5974671456652351, 0.5903761595048977, 0.5827575922815607, 0.5747749349516524, 0.5666513951641979, 0.5586630585366689, 0.5511207576897819, 0.544338927014809, 0.5385928204127332, 0.5340699338055084, 0.5308258344117638, 0.5287565254230586, 0.5275970939873427, 0.5269499309471053, 0.5263379932485255, 0.5252729539496943, 0.5233266108218505, 0.5201959444962884, 0.515755426031184, 0.5100923510868042, 0.5035211233420764, 0.49657103647289336, 0.4899411424405886, 0.4844182429499138, 0.4807626919928184, 0.4795811929109815, 0.48121946331453463, 0.48570918890300724, 0.49278654831251784, 0.5019714668577624, 0.5126753921891188, 0.5243025836721947, 0.536322512156996, 0.5483074793523451, 0.5599411773966154, 0.5710084771446297 ], [ 0.6397526825306367, 0.6382266378951916, 0.6366742666597108, 0.635063701084797, 0.6333481735323988, 0.6314662688612735, 0.6293433601807623, 0.6268942077255095, 0.6240266420548627, 0.6206462476317325, 0.616662010468141, 0.6119929727403706, 0.6065760064458536, 0.6003748179771271, 0.5933901540940941, 0.5856708225269838, 0.5773245093566127, 0.5685264667207103, 0.5595230724740295, 0.5506263455255287, 0.5421953234617132, 0.5346015689277819, 0.5281796261432813, 0.5231688192735533, 0.5196586415874741, 0.5175530019755717, 0.5165659759344023, 0.5162534715901147, 0.5160750233634863, 0.5154727361642768, 0.513952920113429, 0.5111591295520301, 0.5069298896545316, 0.5013373953169848, 0.4947036608135761, 0.48758862972104905, 0.48074290140990783, 0.4750195859373476, 0.4712490030008038, 0.47009672035925193, 0.47194230455603337, 0.476819139395443, 0.48443592918933653, 0.4942670653458631, 0.5056739134320084, 0.5180166568055823, 0.5307320283764819, 0.5433716632139935, 0.5556086627608039, 0.5672244219273056 ], [ 0.638106160511751, 0.6364875953004736, 0.6348545771509423, 0.6331739765171621, 0.6313958450355689, 0.6294535229784675, 0.6272650540039076, 0.6247358819690483, 0.6217627387278789, 0.6182386302031532, 0.6140588908267794, 0.6091283803090007, 0.6033699951487422, 0.5967346937028126, 0.5892131057117368, 0.5808484248833137, 0.5717495859493125, 0.5621026724654291, 0.5521771755096503, 0.5423224464659355, 0.5329491319497736, 0.5244915705679831, 0.5173510879289301, 0.5118269527780768, 0.5080495129073817, 0.5059345960982432, 0.5051755280411632, 0.5052786797223031, 0.5056351730959252, 0.5056121785098893, 0.5046458336113815, 0.5023225582993872, 0.49844186092619397, 0.49305774239645583, 0.486496062566009, 0.4793426105006123, 0.4723937866774196, 0.4665629285001484, 0.46274487157188593, 0.4616602388297978, 0.46372101560210593, 0.4689635404559715, 0.47707283065795053, 0.48748344859806125, 0.49951333136773396, 0.5124851266690669, 0.525808413763585, 0.5390183441959207, 0.5517801509907507, 0.5638732124521207 ], [ 0.6363841476013499, 0.6346673019552035, 0.6329489644835737, 0.6311949445683899, 0.6293522325832346, 0.6273489495708929, 0.625095735739536, 0.6224885448367736, 0.619412736512825, 0.6157483600838322, 0.6113766019906757, 0.6061875002600129, 0.6000891612552908, 0.5930187734454936, 0.5849556077168169, 0.5759358186410292, 0.5660681112507615, 0.5555481443031107, 0.5446679491015283, 0.5338149528920474, 0.523454146474663, 0.5140877965959324, 0.5061913508301795, 0.500132380702724, 0.49608951582897304, 0.49399503191703276, 0.49352213524428645, 0.49412485808573536, 0.4951212299958708, 0.49579863990509, 0.49551911401968524, 0.4938090783065199, 0.49042669698255303, 0.48540507799969723, 0.47906994807295467, 0.4720270714640126, 0.4651108384519545, 0.45928577214566585, 0.45550242499313676, 0.4545298218656774, 0.4568095522959485, 0.4623827392607537, 0.47091675933558347, 0.48181513436494094, 0.4943619904693209, 0.5078512153845759, 0.5216721529197736, 0.535348215176027, 0.5485395221155059, 0.5610246356157954 ], [ 0.6345939028200968, 0.6327725825652147, 0.630963631838032, 0.6291320363769667, 0.6272219041547485, 0.6251562461521578, 0.6228383345944024, 0.6201545952676497, 0.6169789045057056, 0.6131781648116839, 0.6086191285390832, 0.6031765991250917, 0.5967433084131072, 0.5892418668525435, 0.5806391099569209, 0.5709627998588592, 0.5603198554478844, 0.5489139685688951, 0.5370586066543407, 0.5251792573368713, 0.5137971106286495, 0.503486710702837, 0.494804467926069, 0.4881945449774151, 0.4838915703886738, 0.48184922896962384, 0.48172163710852456, 0.48290806338967507, 0.4846492653117762, 0.48614874050975904, 0.48669141077768013, 0.48574185236933487, 0.48301541429982037, 0.4785221053682616, 0.4725834468833279, 0.46581840543474845, 0.45908968182412213, 0.45340117317966194, 0.4497471393329824, 0.4489355828126826, 0.45143352721962077, 0.45728928255955437, 0.46616083587969354, 0.4774323948215938, 0.49036662237830964, 0.5042393877180464, 0.5184278085690756, 0.532448686568082, 0.5459597163284844, 0.5587395468312231 ], [ 0.6327445645145557, 0.6308121470843154, 0.6289066159519863, 0.6269924062990934, 0.6250109857671645, 0.6228804570131271, 0.6204968826257204, 0.6177372760245914, 0.6144641028136139, 0.6105311414225228, 0.6057906639456142, 0.6001020884032642, 0.5933424623253245, 0.5854192793131021, 0.5762860968651231, 0.5659610833297654, 0.5545478207897591, 0.5422562753751685, 0.5294197383819035, 0.5165009184609956, 0.5040779894226383, 0.49280099647589015, 0.4833132444488919, 0.476143303073868, 0.4715895089766749, 0.4696322123608878, 0.46990789453013326, 0.47175916854110717, 0.4743460720806403, 0.47678507544261123, 0.4782821290051881, 0.47823920342358855, 0.4763282490077095, 0.4725344833049463, 0.4671711393054981, 0.46086292125660144, 0.45448966770616533, 0.44908058446493937, 0.4456589830544885, 0.44506011242578697, 0.44777112253264684, 0.4538503794383936, 0.4629565328547129, 0.4744685604766308, 0.4876421411775894, 0.501747339319138, 0.516157816827799, 0.5303891075776814, 0.5440990516210099, 0.5570670200412999 ], [ 0.6308471271247728, 0.62879657324856, 0.6267877727253128, 0.624784916661571, 0.6227271402398755, 0.6205279395478347, 0.6180764605335181, 0.6152405885689347, 0.611871652848486, 0.607810563937563, 0.6028953310338084, 0.5969701264258058, 0.5898963143205858, 0.5815660497307101, 0.5719190665650205, 0.5609629704573815, 0.548796555955873, 0.5356341817152732, 0.521826905654415, 0.5078729795164171, 0.49440712886415006, 0.4821566887154061, 0.47185643598891425, 0.4641262089243065, 0.45933536627947863, 0.4574962803557319, 0.4582296989957035, 0.46082041355760744, 0.46434529900393823, 0.4678318851620564, 0.47040655780958707, 0.47140905214055784, 0.4704681666197901, 0.46754308907850267, 0.46293470935440967, 0.4572655571634437, 0.4514204726155778, 0.44643846881712007, 0.4433555767728803, 0.4430210960772413, 0.44593625395150616, 0.45217258405428246, 0.4614004971734214, 0.4730091869682557, 0.4862630285901791, 0.5004392896453225, 0.5149173203092594, 0.5292167943569795, 0.542998159178124, 0.5560419664456434 ], [ 0.6289143427214026, 0.6267382128716266, 0.6246186874061614, 0.6225200496465783, 0.620379477099898, 0.6181062667419537, 0.6155830850390887, 0.6126691545636944, 0.6092051579298744, 0.6050196422265203, 0.5999368506051392, 0.5937861586341843, 0.5864135837681941, 0.5776960731126205, 0.5675593398121187, 0.5559997625239362, 0.5431100919654714, 0.5291071836022937, 0.5143574589071539, 0.49939223841466357, 0.48490107062208265, 0.4716886747841887, 0.46058408332134226, 0.45230377948859857, 0.44729460112102176, 0.4456061505293949, 0.44684580624022363, 0.4502403213137683, 0.45478227338229615, 0.4594098072850309, 0.4631705275398067, 0.4653433834432236, 0.46551496294199957, 0.46361751411089996, 0.45993556408156266, 0.45508137807916205, 0.4499323381370659, 0.44552135378776514, 0.4428804154993232, 0.4428593123280719, 0.44596706813194326, 0.4522914214759085, 0.46152568488175466, 0.47308479587514524, 0.48625756307239926, 0.5003414704802989, 0.5147306616312194, 0.528954298137999, 0.542677839222078, 0.5556834358244879 ], [ 0.6269605410195698, 0.6246510154924277, 0.6224125032807484, 0.6202097410548282, 0.6179783897013054, 0.6156240637189773, 0.6130235380605872, 0.6100280270710765, 0.6064682807848873, 0.6021612432805273, 0.5969181750567181, 0.5905544207953476, 0.5829013342274174, 0.5738211566517022, 0.5632257651723936, 0.5511000071478014, 0.5375296106320165, 0.5227321288851821, 0.507086721560162, 0.4911546039840968, 0.47567712338399565, 0.461534611213823, 0.44965096272177785, 0.44084267145781364, 0.43563915342835, 0.4341320107461767, 0.4359180857473884, 0.44016706413920453, 0.4457877069736442, 0.45163001350077614, 0.45666501007341637, 0.46011327611172226, 0.46152063628393597, 0.46079166339132854, 0.4581905420349463, 0.45431129701942824, 0.45001175411956384, 0.4463034883107708, 0.4441985778812411, 0.4445345239020274, 0.44782215542142534, 0.45416802901515313, 0.46329847784113737, 0.47466845396464796, 0.48760580894779626, 0.5014404562116237, 0.5155899878454252, 0.5295982277604968, 0.5431380589471554, 0.5559937591310723 ], [ 0.6250013659974162, 0.6225502676012195, 0.6201836675907473, 0.6178671356178616, 0.6155353206438304, 0.613090781312501, 0.61040514302218, 0.6073224597044972, 0.6036644898614354, 0.5992375915350232, 0.5938411099763862, 0.5872774369494242, 0.579364287560198, 0.5699500710859605, 0.5589334065810228, 0.5462876966783551, 0.532091005507499, 0.5165599783842627, 0.5000837958520366, 0.4832498331168471, 0.46684700359577713, 0.45182755931395385, 0.4392084257892396, 0.42990701069511567, 0.42453856858746536, 0.4232407312496948, 0.42560309752383313, 0.43074066281395496, 0.4374807328330626, 0.4445882315458503, 0.4509611994401296, 0.455765063595784, 0.4585066340606728, 0.4590621097575379, 0.4576714275122436, 0.4549028179759552, 0.45158346807660654, 0.4486900535051484, 0.4472009051294774, 0.4479302160543035, 0.45138534496538246, 0.45769354872178863, 0.46662237075606045, 0.4776786408574318, 0.490241700053392, 0.5036845815261817, 0.5174561465817161, 0.5311197612504006, 0.5443581945624846, 0.5569586109967393 ], [ 0.6230534327853839, 0.6204522514818045, 0.6179475993915124, 0.6155062696034328, 0.6130624626451894, 0.6105164156223956, 0.6077354994807483, 0.6045576476584174, 0.6007967918327963, 0.5962499701678973, 0.5907059519111583, 0.5839555492669958, 0.575804186347888, 0.5660876671100149, 0.5546923115252255, 0.5415805575517445, 0.5268225305536887, 0.5106326237703497, 0.49340734690987165, 0.475756099530316, 0.4585100832379023, 0.44268794219081553, 0.4293952674283482, 0.4196485287481833, 0.4141498554255258, 0.41308592369234953, 0.416042805736618, 0.42208474053036804, 0.42996198352197323, 0.43835932031869207, 0.4461066723694808, 0.4523181371669864, 0.45646337855290164, 0.45838947868337265, 0.45830838412981956, 0.45675570908528773, 0.45451848370741926, 0.4525273277117009, 0.45171582002856886, 0.4528662153895181, 0.45647810557341656, 0.4627004012387353, 0.4713475334660061, 0.48198689777554277, 0.49405887425210454, 0.5069882281364579, 0.5202617433748778, 0.533466773891244, 0.546298481384508, 0.5585479780825409 ], [ 0.6211339148581366, 0.6183738343890258, 0.615720290919002, 0.6131416933396562, 0.61057240879132, 0.6079111890442574, 0.6050221934362806, 0.6017384602711688, 0.5978674728539856, 0.5931984498230998, 0.5875111742502566, 0.580586519841772, 0.572219256871314, 0.5622341278527943, 0.5505064596119628, 0.5369885738454594, 0.5217427437641444, 0.5049800596166868, 0.487101782080846, 0.4687349570570159, 0.45074696714091916, 0.4342156979152788, 0.42032862006126775, 0.41019658737662684, 0.4046072019810475, 0.4037979787054477, 0.40735553019501464, 0.41429885794563603, 0.42330761670925493, 0.4329931462926331, 0.44212319132380035, 0.44976474458732824, 0.45535218494297236, 0.4587026891647311, 0.4599967780487912, 0.45973164226216623, 0.4586465878031161, 0.45761784566644587, 0.4575264265220707, 0.45911663787171547, 0.4628770712083099, 0.4689782576737193, 0.47728449011590995, 0.48742894166526274, 0.4989193293487303, 0.511238351428738, 0.5239159472873302, 0.5365673177505063, 0.5489025046582972, 0.5607179290969241 ], [ 0.6192600782790172, 0.6163320058272274, 0.613517861224132, 0.6107880534280322, 0.6080777730042001, 0.6052852147824189, 0.602272506668981, 0.5988691900629938, 0.594877875559773, 0.5900816745526004, 0.5842531950795319, 0.5771652444278419, 0.5686038222624551, 0.5583844222906682, 0.5463729808345821, 0.5325128733031982, 0.5168589349156848, 0.4996181907755732, 0.48119423849787885, 0.4622272861717675, 0.44361420135049895, 0.4264836579622218, 0.4120961109801696, 0.4016494809465148, 0.39601301372467757, 0.3954755341175069, 0.3996284888122159, 0.407452607529731, 0.41756523563347325, 0.4285124455850536, 0.43900655475336575, 0.4480718940357146, 0.45510935743069864, 0.45990546117316294, 0.46260635345387147, 0.46366623637770904, 0.46377126803096386, 0.46373786482272833, 0.46438978881800014, 0.46642989236110616, 0.4703335335454429, 0.4762919166835267, 0.48421963057513995, 0.49381749506059414, 0.504663628663124, 0.5163023577953348, 0.5283104395495959, 0.5403340476925464, 0.552100462782718, 0.5634130094393305 ], [ 0.6174487861679939, 0.6143433874137948, 0.6113560876372495, 0.6084596610848216, 0.6055908078927135, 0.6026481726524784, 0.5994931535450067, 0.5959533474268939, 0.5918282419590026, 0.5868967365523344, 0.5809262607556943, 0.5736836152984166, 0.5649481085666218, 0.5545280116014728, 0.5422817112903818, 0.5281450704925661, 0.5121661775381402, 0.4945474894948735, 0.4756927089541317, 0.45625072153879365, 0.43714083155672534, 0.41953312759485717, 0.4047505137347418, 0.3940684446162732, 0.38843179433974284, 0.38817985734537674, 0.39291325485382655, 0.40158253854393705, 0.41275247253826763, 0.42491312204320164, 0.4367286305091679, 0.44718518563625975, 0.4556519565172376, 0.46188421719477585, 0.4659914721613263, 0.4683817549351578, 0.46968479938071483, 0.4706544937094225, 0.4720554501295112, 0.47454769820736686, 0.4785919755947804, 0.48439846429744726, 0.4919303536032689, 0.5009550895222059, 0.5111213418821083, 0.5220363773836187, 0.5333258293080341, 0.5446691238761029, 0.5558128792328689, 0.5665690382936267 ], [ 0.6157160019135722, 0.6124237453719219, 0.6092499461769925, 0.6061700783671489, 0.6031230520238041, 0.6000090282244108, 0.596690077195095, 0.5929935326742554, 0.5887176537623433, 0.5836391711754093, 0.5775224767974099, 0.5701305651748826, 0.5612382764348831, 0.5506488428862195, 0.5382151247040811, 0.523867114363637, 0.5076470714895074, 0.4897526066621351, 0.4705854797269329, 0.4507988486950854, 0.43132726848529723, 0.413372341156756, 0.39830779630569985, 0.38747545666898975, 0.3818880383621723, 0.3819332543342426, 0.3872250564980104, 0.39669257181905093, 0.40885859588556067, 0.42216705203119154, 0.43524137458285445, 0.44703411925961345, 0.45688453228863984, 0.4645164052300604, 0.4700011608235206, 0.47369891395055297, 0.47618169088078066, 0.4781404678525344, 0.4802810569501101, 0.4832209633511638, 0.4874055732332812, 0.49306181329509485, 0.5001981779546619, 0.5086454571588285, 0.5181206182215556, 0.5282930871074197, 0.5388379077807871, 0.5494691326918473, 0.5599544337296344, 0.5701160727085062 ], [ 0.6140763231133529, 0.6105875392224186, 0.6072131954041123, 0.6039317570833397, 0.6006850411686379, 0.597375829202274, 0.5938683380281042, 0.5899914172997189, 0.5855441007953792, 0.5803031014934649, 0.5740320136147882, 0.5664923172394982, 0.5574566995925583, 0.5467256454266586, 0.5341486461636482, 0.5196516349819562, 0.5032721578029659, 0.4852029084116468, 0.46584185198846395, 0.44584216495691503, 0.42614651469819714, 0.4079779464814136, 0.3927488441028856, 0.381855218861412, 0.3763685553196058, 0.3767218598293053, 0.3825461193624755, 0.3927579047534707, 0.40584894097541935, 0.42022701974730625, 0.43448231095190964, 0.44753822416775774, 0.4587060461710864, 0.46767834616465814, 0.47448795937698857, 0.47944670974295994, 0.4830693590048094, 0.48598544129531046, 0.48884399002733947, 0.4922214652810075, 0.4965476413636062, 0.5020636321417926, 0.5088188823615778, 0.5167026532235119, 0.5254961459267764, 0.5349284638691393, 0.5447232451685557, 0.5546296415535343, 0.5644376203620833, 0.5739813193849612 ], [ 0.6125425790719423, 0.608847540941186, 0.6052580386136737, 0.6017557651231621, 0.598286117432469, 0.5947556116239943, 0.5910321255169861, 0.5869478635645037, 0.5823047045875078, 0.5768815571680488, 0.5704435087849002, 0.5627528583802037, 0.5535824998702537, 0.5427325271460158, 0.5300513261974066, 0.5154627374048534, 0.4990009098198097, 0.48085378238097654, 0.4614139166273446, 0.441330491246015, 0.42154735943131594, 0.4032990618485389, 0.38802436160540676, 0.3771607931006058, 0.3718286703968718, 0.37250219836411924, 0.37883237169256073, 0.38973166591535974, 0.4036713900746413, 0.4190330039649887, 0.4343807058281391, 0.44861326274494134, 0.4610162549174768, 0.4712519088520037, 0.4793149242643655, 0.4854697036877713, 0.4901755842599052, 0.494003488920971, 0.4975488200385589, 0.5013492215769757, 0.5058189078483888, 0.5112104846972547, 0.5176094122242711, 0.5249575801614025, 0.533095137483322, 0.5418071137743888, 0.5508638091209336, 0.560049112570154, 0.5691760065525256, 0.5780918132579237 ], [ 0.6111255223870727, 0.6072145561496821, 0.6033948960666512, 0.5996516311794576, 0.595934365794171, 0.592154443461022, 0.5881849186119882, 0.5838632054075438, 0.5789961177042846, 0.5733669854732676, 0.5667446801932324, 0.5588946446693446, 0.5495923389412934, 0.5386398562156761, 0.5258868343992048, 0.511257159849034, 0.49478315212709734, 0.4766484680537183, 0.4572390018114025, 0.4371962791381375, 0.41745877787696817, 0.3992629200028659, 0.38406175947997545, 0.3733215362073038, 0.3682008402088121, 0.36921002231987815, 0.37602205889293217, 0.38755297074139444, 0.4022637026284539, 0.41851878378346946, 0.4348635672294585, 0.45017678919792353, 0.4637209772950971, 0.47512957451844534, 0.4843605051194084, 0.4916326640570972, 0.4973528507717035, 0.5020371125385766, 0.5062310295589543, 0.5104360604130903, 0.5150510999857393, 0.5203375603477215, 0.5264117852980009, 0.533261997744741, 0.5407813073619049, 0.54880606803675, 0.5571504580502331, 0.565632019497613, 0.5740869457619392, 0.5823767328534228 ], [ 0.6098336395317289, 0.6056972726073274, 0.6016323119727814, 0.5976273311584894, 0.5936366992620689, 0.5895776243170643, 0.5853298108256755, 0.5807377041301333, 0.5756151097887763, 0.5697519629202825, 0.5629231554623182, 0.5548995399610209, 0.5454614597938457, 0.5344154065877309, 0.5216147258770296, 0.5069857054994069, 0.4905607445900945, 0.47252013645000657, 0.45324235436866994, 0.433358149265004, 0.41379458685613313, 0.39578082720449176, 0.38077243298828084, 0.37025147569117284, 0.36540367771914356, 0.36676941662398327, 0.3740443912437877, 0.38615473737749945, 0.40156033819138737, 0.41861779166879953, 0.4358606586736917, 0.45215248081619075, 0.46673586628815456, 0.4792177097352591, 0.48952131503016766, 0.4978227947044539, 0.5044800075224095, 0.5099583744225822, 0.5147577565460085, 0.5193461998123583, 0.5241076192752105, 0.529309662243894, 0.5350945090998024, 0.541490364682195, 0.5484370372630992, 0.5558171238315848, 0.563485308401866, 0.5712911205972215, 0.5790936742852117, 0.5867692763114633 ], [ 0.6086730966338731, 0.6043022516360217, 0.5999770104225468, 0.5956894282708305, 0.591399101870941, 0.5870300474218849, 0.5824700032129034, 0.5775721794224751, 0.5721593386838706, 0.5660301040767823, 0.5589675125940319, 0.5507499802457346, 0.5411649662048553, 0.5300257466020664, 0.5171919413252113, 0.5025948742132231, 0.4862693970501109, 0.4683939851045678, 0.44933966807226866, 0.429724056071035, 0.41045746583687726, 0.3927532085769463, 0.3780578571025123, 0.3678562658267695, 0.36334937007673385, 0.3651001700215361, 0.37282640255436966, 0.385469726647247, 0.40149756389638763, 0.4192673228499315, 0.43730791676307845, 0.4544728726736834, 0.4699885295027359, 0.48343808711721253, 0.4947130247415544, 0.5039499680672964, 0.5114618425316453, 0.5176678932939268, 0.523026389652982, 0.5279746998441637, 0.5328821374359302, 0.538020197380741, 0.5435521233915473, 0.5495399763705707, 0.5559640492361622, 0.5627479272050201, 0.5697830785780694, 0.5769489246372793, 0.5841267882865222, 0.5912080713214904 ], [ 0.6076478255570487, 0.6030340658769939, 0.598434101216211, 0.5938433646610504, 0.589227023887168, 0.5845167147231438, 0.5796094527759014, 0.5743688006141845, 0.5686282897467948, 0.562197149939698, 0.5548685144401639, 0.5464303473841174, 0.5366793248535789, 0.5254378546939291, 0.5125745193970781, 0.4980286574706504, 0.48184054481274685, 0.464189216599781, 0.44543922396488994, 0.42619368793308493, 0.4073417381476267, 0.39007287274936353, 0.37581335591134646, 0.36603735044052316, 0.3619479925554541, 0.3641219388376419, 0.3722967046418087, 0.385433736956334, 0.40201605119857453, 0.4204105649581817, 0.43914896232662487, 0.45708037801010043, 0.4734190487110811, 0.48772785969568777, 0.499869733645923, 0.5099454527334087, 0.5182271805730074, 0.5250924063805227, 0.530961775975899, 0.5362445644590383, 0.5412958649670592, 0.5463888560983274, 0.551703460783377, 0.5573298784708417, 0.5632829487349759, 0.5695220515903642, 0.5759715725483471, 0.582538443932342, 0.5891251461981702, 0.5956381322310108 ], [ 0.606759742979818, 0.6018955731433957, 0.5970074218045067, 0.592093886753406, 0.5871259071152496, 0.58204337878195, 0.5767536463121132, 0.571132005391251, 0.5650243491268532, 0.5582522018332321, 0.5506205052129819, 0.5419285250588974, 0.5319840701428484, 0.5206209519010002, 0.5077195220645784, 0.4932305071987796, 0.4772033002147128, 0.4598209090047434, 0.44144362439202467, 0.4226600292725118, 0.4043347497892176, 0.3876262122076603, 0.37392912667714784, 0.3646927940273059, 0.3611081168681213, 0.363754617146937, 0.3723856405972839, 0.3859855903845603, 0.40306074259828395, 0.42199636267346347, 0.44133473667121115, 0.4599267282773295, 0.4769791267744606, 0.49203830778708174, 0.5049422236271416, 0.5157596215961914, 0.524726056846014, 0.532181497155054, 0.5385126658983135, 0.5441031203272425, 0.5492941005966053, 0.5543585490513863, 0.5594891332014463, 0.5647989878265199, 0.5703319844218994, 0.576078334578551, 0.5819914900226046, 0.5880033587053108, 0.5940362727914302, 0.600011406218455 ], [ 0.6060090828089191, 0.6008883025705081, 0.5956999869175662, 0.5904455708903052, 0.5851018017304593, 0.5796172679266939, 0.573910451799676, 0.567869494818572, 0.5613539582352951, 0.5541990487109628, 0.5462229205821213, 0.537237596155219, 0.5270636838121079, 0.5155485426802405, 0.5025871916939462, 0.4881455330617195, 0.472286579558837, 0.45520193027109734, 0.4372513314870711, 0.41901035610361725, 0.4013171743471413, 0.3852927151287909, 0.3722889276343361, 0.36371520960613385, 0.3607341509612427, 0.36391535146398246, 0.3730222682487416, 0.38706432621753584, 0.4045783831748398, 0.4239770902137997, 0.44382162006148473, 0.4629711857920465, 0.48063022419799534, 0.4963327415763374, 0.509895506566147, 0.5213590789630693, 0.5309264264572033, 0.5389039606116545, 0.5456478691517146, 0.5515181407256464, 0.5568425160099914, 0.5618920336285899, 0.5668686429153471, 0.5719037745395522, 0.5770653243661511, 0.5823697141145938, 0.5877957473929685, 0.5932977262472309, 0.5988163565475807, 0.6042869678120971 ], [ 0.6053948113689255, 0.6000129173615638, 0.5945145046202546, 0.588903402104866, 0.5831620214127521, 0.5772478354965758, 0.5710909827609644, 0.5645932358312129, 0.5576287780924708, 0.5500475167129275, 0.5416818441217026, 0.5323576235062145, 0.521909607770985, 0.5102006489339347, 0.497143364412763, 0.48272300941599317, 0.46702156442759696, 0.4502451591443034, 0.43275840592696174, 0.4151272250911825, 0.3981629947273156, 0.38294374291383104, 0.3707675764097013, 0.36298808085791867, 0.36072178562711854, 0.3645135619245466, 0.37412943605213833, 0.38860470539587616, 0.4065136398776167, 0.4263053846725413, 0.44656864586806755, 0.46617804029709037, 0.4843411296628082, 0.500583964351489, 0.5147060488627819, 0.5267235770748434, 0.5368107694319852, 0.5452441543507005, 0.5523524584489293, 0.558474039900493, 0.5639234916669982, 0.5689685353661325, 0.5738174092325701, 0.5786157746089676, 0.5834510882451888, 0.5883617677211065, 0.5933484744535296, 0.598385362550827, 0.6034299348254364, 0.6084309287399281 ], [ 0.6049150866939446, 0.5992697096426934, 0.5934539080962522, 0.587473348719842, 0.5813157725352335, 0.5749474618661318, 0.5683103975021545, 0.5613203871630076, 0.5538667752534008, 0.5458147510970206, 0.5370115226797753, 0.5272974349215459, 0.5165223278969603, 0.5045662037809596, 0.49136215154077384, 0.4769192709572782, 0.4613446725625647, 0.44486632115190416, 0.4278609339010959, 0.41089017553586715, 0.39474016222401426, 0.380441886702186, 0.3692288791751481, 0.3623823452548679, 0.3609535445052111, 0.36544594521255236, 0.3756187619920859, 0.39053257615136255, 0.4088050658013423, 0.42893072347055194, 0.4495345677242398, 0.4695139768981792, 0.48808543275236516, 0.5047716843327825, 0.5193590068754605, 0.5318430174416415, 0.542372856727814, 0.5511985765464177, 0.5586242427932434, 0.5649683472969609, 0.5705327064807297, 0.5755805644434709, 0.580323908441298, 0.5849191245149227, 0.5894693146403888, 0.5940311153058991, 0.5986238244503593, 0.603239009172887, 0.6078493555386665, 0.6124161303374738 ], [ 0.6045677188974282, 0.5986590784126067, 0.592521847718444, 0.5861628703493933, 0.5795746873760115, 0.572732031050541, 0.5655885465910291, 0.5580740539367935, 0.5500931275422106, 0.5415263240428935, 0.5322357331499117, 0.5220763096350918, 0.5109134389821384, 0.4986455403906304, 0.48522886638748897, 0.4707010391383435, 0.45520117537969595, 0.43898771133676406, 0.42245859917344347, 0.4061788464308354, 0.3909129409621882, 0.37764225954325087, 0.36752569568099486, 0.36175522736941945, 0.3612965791161663, 0.36659358125497304, 0.3773874548867661, 0.3927617492810604, 0.4113822300883684, 0.43179686009979745, 0.4526755405251482, 0.47294588403901555, 0.49183932993196977, 0.5088802103836834, 0.523845741469631, 0.5367147562793182, 0.5476148591957187, 0.5567728240295978, 0.5644706431194666, 0.5710085821618575, 0.5766760976801664, 0.5817310453652568, 0.586387049499838, 0.5908082435065064, 0.5951099883901568, 0.5993638043902128, 0.6036047052750497, 0.6078393787968208, 0.6120540930949824, 0.6162216808603524 ], [ 0.6043505885624424, 0.5981819419619671, 0.5917230887165896, 0.5849812977949976, 0.5779531920108584, 0.5706213035648817, 0.5629503802247223, 0.5548837719534097, 0.5463408402082361, 0.5372170497917798, 0.5273888756201641, 0.5167254391272951, 0.505107568696351, 0.49245286891366385, 0.47874311906077666, 0.46404915094197896, 0.44854950765757395, 0.43254295548221433, 0.4164596999817978, 0.40087800817658376, 0.3865466927912262, 0.37439677736189503, 0.36550349634952767, 0.3609529286253492, 0.3616044532497909, 0.3678228803653391, 0.37931857001662833, 0.3951937383834978, 0.414165099005419, 0.4348409490782538, 0.4559440336699317, 0.4764395567523287, 0.4955801001143933, 0.5128966830913263, 0.5281618019666593, 0.5413413587162387, 0.5525449091945952, 0.5619790137756449, 0.5699060353525381, 0.5766095837517535, 0.5823672441420675, 0.5874308174847424, 0.5920138511301212, 0.5962857377025613, 0.600371208188275, 0.6043537599094514, 0.6082815114056391, 0.6121741527490895, 0.6160299830009991, 0.619832392140441 ], [ 0.6042619844156765, 0.5978400415472894, 0.5910637662294342, 0.5839400306953165, 0.5764686474208077, 0.568639014953917, 0.5604260338328662, 0.5517856271892243, 0.5426509639791597, 0.5329313842436274, 0.5225166564705688, 0.511289014563704, 0.4991440056119209, 0.486018586092431, 0.47192193326991383, 0.4569625662783174, 0.44136618315280995, 0.42548277843278054, 0.4097876555755687, 0.39488465810817697, 0.3815153900607286, 0.3705618840224402, 0.36300804255690483, 0.3598179533491549, 0.3617237852554252, 0.3689912525079701, 0.3812855240838552, 0.39772108440325865, 0.4170662593829084, 0.43799482424044356, 0.45928932982009607, 0.47995955955050135, 0.49928544613048875, 0.516809986015162, 0.5323054845122852, 0.5457288751447307, 0.5571751628465536, 0.5668336962809845, 0.5749495761842708, 0.5817913060596559, 0.5876251823908738, 0.5926965214873681, 0.5972174450587647, 0.6013605616149922, 0.6052575397307658, 0.6090013506281418, 0.6126509115971985, 0.6162369847671574, 0.619768425815655, 0.6232381607645919 ], [ 0.6043008297636161, 0.5976361030742475, 0.5905514613355938, 0.5830525123873629, 0.5751412174843383, 0.5668126455379121, 0.5580505264728839, 0.5488219309862795, 0.5390723184863714, 0.5287232929904541, 0.5176762240474049, 0.5058247810797367, 0.4930778492609074, 0.4793912152177684, 0.46480266666259284, 0.4494624249988408, 0.43365108095127597, 0.41778153814187596, 0.402388750027583, 0.38811691095081796, 0.3757115702506901, 0.3660094227632948, 0.3598968883219802, 0.35820077341935197, 0.36150546784837, 0.3699572567948587, 0.3831606872041472, 0.40023415038913107, 0.41999593120920387, 0.4411884214300782, 0.4626596268941493, 0.4834702791130917, 0.5029337345980267, 0.5206103651173623, 0.536276984013021, 0.5498856476490565, 0.5615203592731149, 0.5713562471453713, 0.5796234911289543, 0.5865770542909, 0.5924726350040188, 0.5975488584883808, 0.6020154021833651, 0.6060464454603309, 0.6097785739402543, 0.6133121008474429, 0.6167147271739589, 0.6200265488261386, 0.6232655983412032, 0.6264333295566965 ], [ 0.6044667783904223, 0.5975738371095624, 0.5901950778141786, 0.5823339603634322, 0.5739934392398398, 0.5651728311585196, 0.5558630326415354, 0.5460403980681631, 0.5356606498804677, 0.5246554932158793, 0.5129356337577156, 0.5004039019464677, 0.4869804865857608, 0.472638738473859, 0.457445452827207, 0.44159582743743736, 0.42543272907034424, 0.40944409161757617, 0.3942405915127117, 0.38052403513173644, 0.36905791676038496, 0.36063964681848076, 0.3560535078795128, 0.3559744910480372, 0.3608190684127021, 0.37059389496617057, 0.38482688519204195, 0.40263045337293074, 0.42286907890768866, 0.44435486645887384, 0.4660054270241364, 0.4869379649794292, 0.5065050068224419, 0.5242896735895292, 0.5400780807942781, 0.5538215983806538, 0.5655968319044289, 0.5755676919727574, 0.5839517798549427, 0.5909921198079651, 0.5969346127096781, 0.6020111906001249, 0.6064283605238807, 0.6103605784553227, 0.6139476917654948, 0.6172955588800065, 0.6204789201256504, 0.6235456552920994, 0.6265216987935741, 0.6294160563970788 ], [ 0.6047601736437422, 0.5976577733339657, 0.5900045183969704, 0.5818008534074385, 0.5730494975959739, 0.563752415779971, 0.5539057232407945, 0.5434928127894145, 0.5324771911711315, 0.5207980133589173, 0.5083725529032325, 0.4951099993028315, 0.4809392071818166, 0.46584906996475156, 0.44993484223477703, 0.43343894137772015, 0.41677310986123023, 0.4005124239838518, 0.3853605875923565, 0.37209674338128007, 0.36151931098427154, 0.35439489666320895, 0.3514022522777419, 0.3530504453414492, 0.3595682408268566, 0.3708029497672093, 0.3861899503183781, 0.4048250106376808, 0.4256134607722491, 0.4474363933909286, 0.4692836374201084, 0.49033337332023796, 0.5099825057312575, 0.5278420708129238, 0.543712241724846, 0.5575479089598682, 0.5694218969855037, 0.5794898985057424, 0.5879592783800669, 0.5950627583366421, 0.6010373412147296, 0.6061084419228481, 0.6104789234383392, 0.6143225271235354, 0.6177810252467918, 0.6209643217897106, 0.6239526986599447, 0.6268004490961234, 0.6295402434861728, 0.6321877097601268 ], [ 0.605181877894129, 0.59789294194647, 0.5899901792506752, 0.5814702008221085, 0.5723342361857346, 0.5625851822653561, 0.55222221327674, 0.5412332170419433, 0.5295866468804462, 0.5172260702224843, 0.5040721704445396, 0.490037287083278, 0.47505580650498946, 0.45912943561842057, 0.4423803132070301, 0.4250990075140933, 0.4077714629921746, 0.39107141752731717, 0.3758136874408887, 0.3628768000736152, 0.35311414293563703, 0.3472723790980994, 0.34592219611759956, 0.34939251864466275, 0.35770475959980047, 0.37052803767779974, 0.3871902303374596, 0.4067599631136156, 0.42817726477855034, 0.45039009693203674, 0.47246167896023866, 0.49363452979018924, 0.5133543902467884, 0.5312649508231265, 0.5471849776395081, 0.5610769736220889, 0.5730135265343048, 0.5831450581144038, 0.5916710100261273, 0.5988154509823349, 0.6048074596342894, 0.6098662547507917, 0.6141907916956083, 0.6179533616792127, 0.621296597518043, 0.6243332081169418, 0.6271477397934049, 0.6297996957517805, 0.6323274252992459, 0.6347523039749405 ], [ 0.6057329920494966, 0.5982844298108703, 0.5901623002543337, 0.581358642532288, 0.5718719652017532, 0.5617043338832716, 0.5508556983980987, 0.5393157067938634, 0.5270546860512662, 0.5140173332310312, 0.500124351686981, 0.48528778691405816, 0.46944409560353306, 0.4526044825438624, 0.4349153610710483, 0.4167148325301737, 0.39856656973746823, 0.3812531612213595, 0.3657187126378211, 0.35296514891625574, 0.3439238842564309, 0.339334763453819, 0.33965826008024913, 0.34502824837398627, 0.35523913916934063, 0.36976436927176604, 0.38781123033668774, 0.40841192731535436, 0.4305350941193478, 0.453192580431199, 0.4755209185050376, 0.4968291268988881, 0.5166152987172141, 0.5345598634538455, 0.5505042877870684, 0.5644225002906765, 0.5763902073606257, 0.5865553756882497, 0.5951117558810469, 0.6022763875917052, 0.6082714377076894, 0.6133103557112275, 0.6175880919985262, 0.6212749613310845, 0.6245136209311956, 0.6274185657585878, 0.6300775232972204, 0.632554155471008, 0.6348915387249368, 0.6371159821208863 ], [ 0.6064144950633793, 0.5988368516587838, 0.5905302241829173, 0.5814814484923887, 0.5716851522178674, 0.5611408315319064, 0.5498469039664081, 0.5377919767174579, 0.5249450922305349, 0.5112487224647817, 0.4966201660701191, 0.48096771442728536, 0.46422633612513764, 0.4464130366363949, 0.4276949569915408, 0.40845542384402617, 0.3893370560711701, 0.3712392723138636, 0.3552527326435183, 0.3425280071891995, 0.3341003020665314, 0.33071781661281624, 0.3327286173030134, 0.34005556008845234, 0.35224655085933415, 0.3685639331665521, 0.38808419283599016, 0.40979602650721964, 0.43269142683517536, 0.4558428021341823, 0.47845889137301895, 0.49991615989419774, 0.5197674726873928, 0.5377332182332296, 0.5536810365367243, 0.5675996420803623, 0.5795708933439067, 0.5897428915579367, 0.5983057797634489, 0.6054711159952975, 0.611455162523608, 0.6164660892998813, 0.6206948661955971, 0.6243094696961425, 0.6274519315048294, 0.6302376999910971, 0.6327567682032528, 0.635076041929838, 0.6372424723231586, 0.6392865505581093 ], [ 0.607226840375355, 0.5995537850549808, 0.5911016282837126, 0.5818514991129625, 0.5717930995565135, 0.560921715327328, 0.5492320023976721, 0.5367087953657294, 0.523316775570448, 0.5089929593433227, 0.4936480056366967, 0.4771832300455626, 0.45952874075087247, 0.440703556728471, 0.4208912931839713, 0.4005165254460165, 0.38029932978704084, 0.3612607681442953, 0.3446530434377397, 0.33180056910800804, 0.3238700230351799, 0.3216347791116358, 0.3253280224927102, 0.33464470282074965, 0.3488676000816461, 0.3670356730446021, 0.3880881953989124, 0.4109661907032756, 0.4346811601108265, 0.45836276766787926, 0.4812900122437923, 0.5029065540449872, 0.5228212449266623, 0.5407966177528042, 0.5567291422870158, 0.570625063624858, 0.5825749728217593, 0.5927293697184537, 0.6012766510494465, 0.6084243075685865, 0.6143836512066644, 0.6193580808517863, 0.6235346887539777, 0.627078873527759, 0.6301315385921911, 0.632808406104932, 0.6352009615491305, 0.6373785599727387, 0.6393912667141064, 0.6412730662034386 ], [ 0.6081695493110719, 0.60043722115635, 0.5918817955617705, 0.5824783332991605, 0.572210718643678, 0.5610685496039031, 0.5490406706279697, 0.5361056180994502, 0.5222208891517031, 0.5073151421085456, 0.4912895856547894, 0.47403584665877735, 0.455476303796575, 0.4356284805303433, 0.4146878857973325, 0.39311494778946804, 0.3717028445621156, 0.3515950316725462, 0.3342162671424934, 0.3210879362999515, 0.3135362102464325, 0.3123773604956274, 0.3177270389255893, 0.32903548125666654, 0.345304182118248, 0.365340943259627, 0.3879460327706631, 0.4120119116362537, 0.4365673264579565, 0.46079607291512725, 0.48404472481478644, 0.5058227071265449, 0.525794807991625, 0.5437667397647357, 0.5596655052032589, 0.5735168771232816, 0.5854221935805995, 0.5955362013281119, 0.604047119800331, 0.611159598283936, 0.6170808530549033, 0.6220099966053361, 0.6261303843590085, 0.6296046809559025, 0.6325722703993354, 0.6351485916944374, 0.6374259686222539, 0.6394755153474174, 0.6413497344968269, 0.6430854756162616 ], [ 0.6092408404383288, 0.6014870812027463, 0.5928729897608527, 0.5833673460985399, 0.5729475061991138, 0.5615961245566613, 0.5492944550604474, 0.5360125443963517, 0.521698298893826, 0.5062696387255203, 0.4896161593888479, 0.4716178550543523, 0.4521873302421643, 0.4313377980318061, 0.4092722713720451, 0.386480734449558, 0.3638224507819568, 0.34255932685092255, 0.32429382528340406, 0.3107625026911241, 0.30347669801664845, 0.30331289606023265, 0.3102669849049698, 0.32352996236444354, 0.3418109255240204, 0.36368494222341274, 0.38781660013116, 0.4130520623097124, 0.4384364318671482, 0.4632045907831621, 0.4867672582896802, 0.5086970273952711, 0.5287132882218329, 0.5466647609755717, 0.5625096499735533, 0.5762944165166742, 0.5881325110924203, 0.5981842890144949, 0.6066390109700573, 0.6136994739793604, 0.6195695121958389, 0.624444374548409, 0.6285038221984466, 0.6319076788952578, 0.6347934982835247, 0.637275974883999, 0.6394477142723266, 0.641380989117014, 0.6431301374764036, 0.6447343035820052 ], [ 0.6104373289867213, 0.6027008414703413, 0.5940739878469359, 0.5845192041235051, 0.5740068090459682, 0.5625115252192326, 0.5500055847964893, 0.536448797223349, 0.5217776284023307, 0.5058975683166076, 0.4886852722745709, 0.4700081470018067, 0.44976808905392923, 0.4279722946095899, 0.4048276852872072, 0.3808473696651126, 0.35694767106669223, 0.3345001780547646, 0.31528256879835476, 0.3012562403397382, 0.29413699241839864, 0.29487633226218474, 0.3033497958589242, 0.3184805245022542, 0.33868267930486695, 0.36230492498528377, 0.38788467186641445, 0.41422659529424694, 0.44039206740574344, 0.46566377523481606, 0.48951230783465755, 0.5115696637175668, 0.5316072368614833, 0.5495153781871059, 0.5652831042203208, 0.5789778495931608, 0.5907258480243897, 0.6006938938314402, 0.6090731167117532, 0.6160651780285903, 0.6218710692990171, 0.6266825056799481, 0.6306757681642984, 0.6340077528246573, 0.6368139252777449, 0.639207846347411, 0.6412819256102676, 0.643109069453247, 0.6447449161002267, 0.6462303880155834 ], [ 0.6117538223939838, 0.6040732980406238, 0.5954798080262184, 0.5859295254759261, 0.5753854358466849, 0.5638136416754088, 0.5511763280359668, 0.5374218473444162, 0.522474038391645, 0.5062250781880057, 0.4885383223290217, 0.46926877535330536, 0.4483080110915328, 0.4256569560342519, 0.40152423196882614, 0.3764404113248018, 0.3513688960590408, 0.32777788406097425, 0.3076088927565681, 0.2930454010915399, 0.28601533710589006, 0.2875545799441336, 0.2974212121429287, 0.31427269333908353, 0.3362383080070727, 0.3614559172544902, 0.38834894977928774, 0.4156869541962851, 0.4425474956908702, 0.46825712262984465, 0.49234102681657643, 0.5144856899342438, 0.5345107053469657, 0.552345526521982, 0.5680085670087264, 0.5815876532297073, 0.5932217720649172, 0.603084441060563, 0.6113690768111331, 0.6182766282086077, 0.6240055877290362, 0.6287443508000958, 0.6326657805596978, 0.6359237555146532, 0.6386514267754685, 0.6409608846630855, 0.6429439273847558, 0.6446736338808249, 0.6462064658822174, 0.6475846575200193 ], [ 0.6131832278922243, 0.6055964886557355, 0.5970816520021813, 0.5875888446951358, 0.5770736390703276, 0.5654931485598967, 0.5527989279947655, 0.5389272330684555, 0.5237888144237981, 0.5072625267069213, 0.4891990919733106, 0.4694424950478385, 0.44787578115951154, 0.4244950111159766, 0.39951013577035893, 0.3734651479627702, 0.3473608342828058, 0.32274576334324956, 0.3017047119668902, 0.28662472817094575, 0.27963630823056723, 0.28186013068494564, 0.292945390195866, 0.31130213455509825, 0.33480103212846946, 0.3613945888591887, 0.38940916398584424, 0.4175859505219672, 0.445017860780636, 0.4710703094834746, 0.495316721928629, 0.5174920228365197, 0.5374590946800235, 0.5551829175792323, 0.5707089425491566, 0.5841439942884699, 0.5956391131427184, 0.60537429227818, 0.6135452462529991, 0.6203523367846179, 0.6259916953754354, 0.630648482694124, 0.6344921387297459, 0.637673414306341, 0.6403229336099308, 0.6425510161877726, 0.644448482376377, 0.64608817557966, 0.6475269557064909, 0.6488079477182461 ], [ 0.6147165770425125, 0.6072597739142137, 0.5988670598140654, 0.5894828558523633, 0.579055454016324, 0.5675329340263825, 0.5548560930452824, 0.5409490484936021, 0.5257097422875125, 0.5090045713498832, 0.49067329208120136, 0.47055139878574453, 0.448516554308421, 0.4245630127059904, 0.3989036956841035, 0.37209412837865685, 0.3451641417042506, 0.3197247100577304, 0.29797489308163444, 0.28246944208397884, 0.27551042872101666, 0.27829185070005996, 0.29037003168082864, 0.3099459316379399, 0.33467595424066104, 0.3623620585275881, 0.39125296477414734, 0.4200677584010052, 0.44791257358048314, 0.4741854553870695, 0.4985006006430973, 0.52063433414663, 0.5404869646503405, 0.558054524431377, 0.573406321956412, 0.586666067480742, 0.5979955495793362, 0.6075804986744334, 0.6156185554503587, 0.622309333360154, 0.6278465380390668, 0.6324120474473194, 0.6361717972270434, 0.6392732691234176, 0.6418443497782288, 0.643993312128518, 0.6458096701741592, 0.6473656679588108, 0.6487181831553449, 0.6499108524445965 ], [ 0.6163431615414217, 0.6090500659161964, 0.6008202567741732, 0.5915929019931473, 0.5813093489713178, 0.5699089157710238, 0.5573219611512581, 0.5434610044150204, 0.5282121652483971, 0.511431058648584, 0.49294903904373066, 0.4725966268593431, 0.4502503888573226, 0.4259072469442104, 0.3997865570514662, 0.3724556621137456, 0.3449669461792517, 0.3189753273602627, 0.2967585403463003, 0.2809869864855612, 0.27408136738576255, 0.2772846299552223, 0.290084009112672, 0.3105300672422931, 0.3361263020545474, 0.364566734971159, 0.3940433944555286, 0.4232586145462412, 0.45132833037642867, 0.4776758747438202, 0.5019478576137191, 0.5239541765681884, 0.5436259661080706, 0.5609851299839093, 0.5761209930104614, 0.5891714427166777, 0.6003071959055676, 0.6097185545390049, 0.6176043726645037, 0.6241630937884187, 0.6295857436184978, 0.6340507415656246, 0.6377203606314266, 0.6407386354896364, 0.6432304987469001, 0.6453019167935303, 0.6470407986397531, 0.6485184623294774, 0.649791462334629, 0.6509036059734021 ], [ 0.6180507655795852, 0.6109521807591881, 0.6029226569303898, 0.5938966597723714, 0.5838091158906409, 0.5725911504333181, 0.5601634193662888, 0.5464279170472413, 0.5312605567371578, 0.5145085382565785, 0.4959980950580359, 0.47555902268346845, 0.45307186643558267, 0.42854164187425514, 0.4021988562483445, 0.3746245494521849, 0.3468887097502862, 0.32067181458900734, 0.29829032775684394, 0.2824663587700572, 0.27566916328173136, 0.2791557300534101, 0.29237373870682165, 0.3132974016136053, 0.33935102613900753, 0.3681687287662938, 0.39790783839680166, 0.42725878451491406, 0.45534314848214763, 0.48160160218664283, 0.505704320481624, 0.5274864953870354, 0.5469030272542443, 0.5639960357805106, 0.5788705474054923, 0.5916754697987413, 0.6025882238863629, 0.6118021705639753, 0.6195163798339263, 0.6259274805138673, 0.6312233984781944, 0.6355788036105067, 0.6391520759848995, 0.6420835884292543, 0.6444950936239262, 0.6464900020870477, 0.6481543431893455, 0.6495582140841674, 0.6507575400278441, 0.6517959926295525 ], [ 0.6198259733539583, 0.612949283118052, 0.6051534776024331, 0.5963689563148965, 0.58652491701955, 0.5755451262792638, 0.5633416398898913, 0.5498074568347541, 0.5348104142142072, 0.5181921882776241, 0.4997776559338984, 0.47940054389707565, 0.45695078648630344, 0.4324472406089504, 0.4061366811122608, 0.37861625463691606, 0.3509691292868076, 0.32488288873616433, 0.30267086859416786, 0.2870378523207022, 0.2804242067047061, 0.2840612069379159, 0.2973880791117807, 0.3183822060624884, 0.34446714190608074, 0.37326764656925565, 0.4029294220073214, 0.43213633257981904, 0.4600117432981708, 0.4860059092157168, 0.5098038148043254, 0.5312576487673005, 0.5503388897821497, 0.5671040046698979, 0.5816691401542682, 0.5941907797757247, 0.6048505439275582, 0.6138430848558717, 0.6213664728158805, 0.6276147003505981, 0.6327720384393498, 0.6370090202793622, 0.6404798410376897, 0.6433209642860412, 0.645650727511129, 0.6475697441838827, 0.6491619097219558, 0.6504958333142303, 0.6516265363705784, 0.6525972803376007 ], [ 0.621654526462006, 0.6150233870319676, 0.6074904154570943, 0.5989826516851671, 0.5894244001989778, 0.5787331280053921, 0.5668136952574488, 0.553551993026945, 0.538810285026961, 0.5224279437034896, 0.504232470823852, 0.4840662268040955, 0.4618337849893867, 0.43757321728199217, 0.411552112649572, 0.38438540629263596, 0.3571642325275462, 0.33156429354288885, 0.3098544613773808, 0.2946558519287071, 0.28830697569501307, 0.2919759891469271, 0.3051214256249557, 0.32579706898609284, 0.3515000067181603, 0.3798954502505214, 0.40914173227673795, 0.43792315985772506, 0.46536250387605255, 0.4909129674125994, 0.5142663533885938, 0.5352840153961042, 0.5539470566982778, 0.570320486319368, 0.5845269392527049, 0.5967269116823338, 0.607103567696741, 0.6158509260779735, 0.6231646954228401, 0.6292352852214163, 0.6342426570182973, 0.638352747409877, 0.641715227219933, 0.6444623782665916, 0.6467088810971305, 0.6485523189944556, 0.6500742175985958, 0.6513414562604188, 0.6524079065827276, 0.6533161749004555 ], [ 0.623521704876415, 0.6171558768850588, 0.6099103359922154, 0.6017095241676053, 0.5924738029220691, 0.5821155745445471, 0.5705341331451649, 0.5576103941723728, 0.5432037658915221, 0.5271546550585438, 0.5092971133036621, 0.48948652714445495, 0.46764672308563404, 0.4438393391995865, 0.4183558776832464, 0.39182891932395286, 0.3653505022233807, 0.34056475269005615, 0.3196577345366672, 0.3051101904991209, 0.2991002628601036, 0.3027039306270684, 0.3154197399247914, 0.33543524315150297, 0.3603833642952115, 0.3880154253040228, 0.41652743846652224, 0.4446136175025433, 0.47139622882403653, 0.49632674658354414, 0.5190972037336484, 0.5395712275901989, 0.557733182415901, 0.5736511513785353, 0.587449787232466, 0.5992900821941641, 0.6093540655394009, 0.6178331387010543, 0.6249192141108237, 0.6307981001180286, 0.6356447330751945, 0.6396199464133797, 0.6428685165620028, 0.6455182559677666, 0.6476799450612002, 0.6494479135380663, 0.6509010995421908, 0.652104434391582, 0.6531104206193588, 0.6539607920418096 ] ] }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "text": [ "Arm 0_0
hartmann6: -0.177779 (SEM: 0)
x1: 0.398423
x2: 0.767501
x3: 0.985177
x4: 0.739179
x5: 0.28668
x6: 0.895158", "Arm 1_0
hartmann6: -0.0536031 (SEM: 0)
x1: 0.490791
x2: 0.319897
x3: 0.262714
x4: 0.599394
x5: 0.798092
x6: 0.401669", "Arm 2_0
hartmann6: -0.0172144 (SEM: 0)
x1: 0.962786
x2: 0.240473
x3: 0.585971
x4: 0.012025
x5: 0.417127
x6: 0.108675", "Arm 3_0
hartmann6: -0.392451 (SEM: 0)
x1: 0.79478
x2: 0.205626
x3: 0.063052
x4: 0.3554
x5: 0.217532
x6: 0.355469", "Arm 4_0
hartmann6: -0.143018 (SEM: 0)
x1: 0.357024
x2: 0.0243729
x3: 0.258409
x4: 0.0155311
x5: 0.791306
x6: 0.55288", "Arm 5_0
hartmann6: -0.0590564 (SEM: 0)
x1: 0.20969
x2: 0.892688
x3: 0.785224
x4: 0.00995163
x5: 0.992038
x6: 0.772372", "Arm 6_0
hartmann6: -0.91023 (SEM: 0)
x1: 0.213147
x2: 0.560835
x3: 0.954924
x4: 0.248569
x5: 0.387296
x6: 0.773546", "Arm 7_0
hartmann6: -0.0219373 (SEM: 0)
x1: 0.38589
x2: 0.36064
x3: 0.111445
x4: 0.637104
x5: 0.764981
x6: 0.689943", "Arm 8_0
hartmann6: -2.67815 (SEM: 0)
x1: 0.389215
x2: 0.78592
x3: 0.0981495
x4: 0.552126
x5: 0.860386
x6: 0.0149064", "Arm 9_0
hartmann6: -0.00128769 (SEM: 0)
x1: 0.860403
x2: 0.28761
x3: 0.50627
x4: 0.701542
x5: 0.906839
x6: 0.560025", "Arm 10_0
hartmann6: -0.242474 (SEM: 0)
x1: 0.863283
x2: 0.389635
x3: 0.464657
x4: 0.0582119
x5: 0.158668
x6: 0.496087", "Arm 11_0
hartmann6: -0.0980761 (SEM: 0)
x1: 0.0544792
x2: 0.446555
x3: 0.727651
x4: 0.684284
x5: 0.806846
x6: 0.523842", "Arm 12_0
hartmann6: -1.68057 (SEM: 0)
x1: 0.468914
x2: 0.665032
x3: 0.0652667
x4: 0.469641
x5: 0.745872
x6: 0.0681874", "Arm 13_0
hartmann6: -2.04775 (SEM: 0)
x1: 0.454339
x2: 0.718178
x3: 0.0722093
x4: 0.471481
x5: 0.781005
x6: 0.0572178", "Arm 14_0
hartmann6: -2.02872 (SEM: 0)
x1: 0.454816
x2: 0.714113
x3: 0.0702674
x4: 0.472493
x5: 0.777158
x6: 0.0574868", "Arm 15_0
hartmann6: -2.59202 (SEM: 0)
x1: 0.398306
x2: 0.755947
x3: 0.0143918
x4: 0.555892
x5: 0.705888
x6: 0.0179569", "Arm 16_0
hartmann6: -2.75562 (SEM: 0)
x1: 0.377738
x2: 0.804521
x3: 0.000338175
x4: 0.574505
x5: 0.656819
x6: 1.81822e-16", "Arm 17_0
hartmann6: -1.97162 (SEM: 0)
x1: 0.26208
x2: 0.815253
x3: 2.30907e-18
x4: 0.538183
x5: 0.665566
x6: 2.21194e-18", "Arm 18_0
hartmann6: -2.82433 (SEM: 0)
x1: 0.387343
x2: 0.85686
x3: 0.0402197
x4: 0.516549
x5: 0.623467
x6: 7.81084e-18", "Arm 19_0
hartmann6: -2.63814 (SEM: 0)
x1: 0.382419
x2: 0.866178
x3: 7.02691e-18
x4: 0.4794
x5: 0.693406
x6: 1.20092e-18", "Arm 20_0
hartmann6: -2.92621 (SEM: 0)
x1: 0.393236
x2: 0.845492
x3: 0.0843073
x4: 0.558285
x5: 0.584994
x6: 4.17018e-08", "Arm 21_0
hartmann6: -2.9469 (SEM: 0)
x1: 0.394943
x2: 0.848788
x3: 0.100135
x4: 0.578934
x5: 0.574615
x6: 2.73128e-09", "Arm 22_0
hartmann6: -2.90201 (SEM: 0)
x1: 0.374751
x2: 0.841434
x3: 0.160252
x4: 0.575449
x5: 0.59524
x6: 0", "Arm 23_0
hartmann6: -2.92463 (SEM: 0)
x1: 0.411299
x2: 0.835806
x3: 0.128652
x4: 0.562756
x5: 0.586708
x6: 0", "Arm 24_0
hartmann6: -3.0158 (SEM: 0)
x1: 0.398095
x2: 0.859741
x3: 0.112079
x4: 0.578565
x5: 0.574823
x6: 0.0557957", "Arm 25_0
hartmann6: -3.00769 (SEM: 0)
x1: 0.397592
x2: 0.854616
x3: 0.107131
x4: 0.56879
x5: 0.570605
x6: 0.0567597", "Arm 26_0
hartmann6: -2.97156 (SEM: 0)
x1: 0.404703
x2: 0.882664
x3: 0.124501
x4: 0.569074
x5: 0.470929
x6: 0.0882684", "Arm 27_0
hartmann6: -0.73788 (SEM: 0)
x1: 0.410855
x2: 0.984604
x3: 0.0192436
x4: 0.51246
x5: 0.430491
x6: 0.349133", "Arm 28_0
hartmann6: -3.06918 (SEM: 0)
x1: 0.4036
x2: 0.877685
x3: 0.139064
x4: 0.57802
x5: 0.493861
x6: 0.0468415" ], "type": "scatter", "x": [ 0.398422509431839, 0.49079069774597883, 0.9627859489992261, 0.7947803363204002, 0.357024222612381, 0.20968967210501432, 0.21314695850014687, 0.3858902435749769, 0.38921523094177246, 0.8604028560221195, 0.8632825557142496, 0.054479227401316166, 0.468913975680222, 0.45433885341758296, 0.45481581076403454, 0.3983060652101834, 0.3777378557967659, 0.26207974201063744, 0.3873426991820172, 0.38241877000881197, 0.39323576303391006, 0.3949434343528842, 0.37475076651087674, 0.4112991785644187, 0.3980949155656093, 0.39759185661081237, 0.4047033747879519, 0.4108553325505108, 0.4036002687011182 ], "xaxis": "x", "y": [ 0.7675012350082397, 0.3198970640078187, 0.24047255888581276, 0.20562615152448416, 0.024372917599976063, 0.8926876690238714, 0.5608351789414883, 0.36064003594219685, 0.785920275375247, 0.2876096526160836, 0.3896352918818593, 0.44655546452850103, 0.6650318449510528, 0.718177894489421, 0.7141131330980965, 0.7559474302658782, 0.8045209799269514, 0.8152532627504008, 0.8568596593455997, 0.8661775124799345, 0.8454919763834396, 0.8487881594728477, 0.8414337791322379, 0.8358058309559664, 0.8597405091467616, 0.8546155852400952, 0.8826638442360016, 0.9846035063951003, 0.8776847910126038 ], "yaxis": "y" }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "showlegend": false, "text": [ "Arm 0_0
hartmann6: -0.177779 (SEM: 0)
x1: 0.398423
x2: 0.767501
x3: 0.985177
x4: 0.739179
x5: 0.28668
x6: 0.895158", "Arm 1_0
hartmann6: -0.0536031 (SEM: 0)
x1: 0.490791
x2: 0.319897
x3: 0.262714
x4: 0.599394
x5: 0.798092
x6: 0.401669", "Arm 2_0
hartmann6: -0.0172144 (SEM: 0)
x1: 0.962786
x2: 0.240473
x3: 0.585971
x4: 0.012025
x5: 0.417127
x6: 0.108675", "Arm 3_0
hartmann6: -0.392451 (SEM: 0)
x1: 0.79478
x2: 0.205626
x3: 0.063052
x4: 0.3554
x5: 0.217532
x6: 0.355469", "Arm 4_0
hartmann6: -0.143018 (SEM: 0)
x1: 0.357024
x2: 0.0243729
x3: 0.258409
x4: 0.0155311
x5: 0.791306
x6: 0.55288", "Arm 5_0
hartmann6: -0.0590564 (SEM: 0)
x1: 0.20969
x2: 0.892688
x3: 0.785224
x4: 0.00995163
x5: 0.992038
x6: 0.772372", "Arm 6_0
hartmann6: -0.91023 (SEM: 0)
x1: 0.213147
x2: 0.560835
x3: 0.954924
x4: 0.248569
x5: 0.387296
x6: 0.773546", "Arm 7_0
hartmann6: -0.0219373 (SEM: 0)
x1: 0.38589
x2: 0.36064
x3: 0.111445
x4: 0.637104
x5: 0.764981
x6: 0.689943", "Arm 8_0
hartmann6: -2.67815 (SEM: 0)
x1: 0.389215
x2: 0.78592
x3: 0.0981495
x4: 0.552126
x5: 0.860386
x6: 0.0149064", "Arm 9_0
hartmann6: -0.00128769 (SEM: 0)
x1: 0.860403
x2: 0.28761
x3: 0.50627
x4: 0.701542
x5: 0.906839
x6: 0.560025", "Arm 10_0
hartmann6: -0.242474 (SEM: 0)
x1: 0.863283
x2: 0.389635
x3: 0.464657
x4: 0.0582119
x5: 0.158668
x6: 0.496087", "Arm 11_0
hartmann6: -0.0980761 (SEM: 0)
x1: 0.0544792
x2: 0.446555
x3: 0.727651
x4: 0.684284
x5: 0.806846
x6: 0.523842", "Arm 12_0
hartmann6: -1.68057 (SEM: 0)
x1: 0.468914
x2: 0.665032
x3: 0.0652667
x4: 0.469641
x5: 0.745872
x6: 0.0681874", "Arm 13_0
hartmann6: -2.04775 (SEM: 0)
x1: 0.454339
x2: 0.718178
x3: 0.0722093
x4: 0.471481
x5: 0.781005
x6: 0.0572178", "Arm 14_0
hartmann6: -2.02872 (SEM: 0)
x1: 0.454816
x2: 0.714113
x3: 0.0702674
x4: 0.472493
x5: 0.777158
x6: 0.0574868", "Arm 15_0
hartmann6: -2.59202 (SEM: 0)
x1: 0.398306
x2: 0.755947
x3: 0.0143918
x4: 0.555892
x5: 0.705888
x6: 0.0179569", "Arm 16_0
hartmann6: -2.75562 (SEM: 0)
x1: 0.377738
x2: 0.804521
x3: 0.000338175
x4: 0.574505
x5: 0.656819
x6: 1.81822e-16", "Arm 17_0
hartmann6: -1.97162 (SEM: 0)
x1: 0.26208
x2: 0.815253
x3: 2.30907e-18
x4: 0.538183
x5: 0.665566
x6: 2.21194e-18", "Arm 18_0
hartmann6: -2.82433 (SEM: 0)
x1: 0.387343
x2: 0.85686
x3: 0.0402197
x4: 0.516549
x5: 0.623467
x6: 7.81084e-18", "Arm 19_0
hartmann6: -2.63814 (SEM: 0)
x1: 0.382419
x2: 0.866178
x3: 7.02691e-18
x4: 0.4794
x5: 0.693406
x6: 1.20092e-18", "Arm 20_0
hartmann6: -2.92621 (SEM: 0)
x1: 0.393236
x2: 0.845492
x3: 0.0843073
x4: 0.558285
x5: 0.584994
x6: 4.17018e-08", "Arm 21_0
hartmann6: -2.9469 (SEM: 0)
x1: 0.394943
x2: 0.848788
x3: 0.100135
x4: 0.578934
x5: 0.574615
x6: 2.73128e-09", "Arm 22_0
hartmann6: -2.90201 (SEM: 0)
x1: 0.374751
x2: 0.841434
x3: 0.160252
x4: 0.575449
x5: 0.59524
x6: 0", "Arm 23_0
hartmann6: -2.92463 (SEM: 0)
x1: 0.411299
x2: 0.835806
x3: 0.128652
x4: 0.562756
x5: 0.586708
x6: 0", "Arm 24_0
hartmann6: -3.0158 (SEM: 0)
x1: 0.398095
x2: 0.859741
x3: 0.112079
x4: 0.578565
x5: 0.574823
x6: 0.0557957", "Arm 25_0
hartmann6: -3.00769 (SEM: 0)
x1: 0.397592
x2: 0.854616
x3: 0.107131
x4: 0.56879
x5: 0.570605
x6: 0.0567597", "Arm 26_0
hartmann6: -2.97156 (SEM: 0)
x1: 0.404703
x2: 0.882664
x3: 0.124501
x4: 0.569074
x5: 0.470929
x6: 0.0882684", "Arm 27_0
hartmann6: -0.73788 (SEM: 0)
x1: 0.410855
x2: 0.984604
x3: 0.0192436
x4: 0.51246
x5: 0.430491
x6: 0.349133", "Arm 28_0
hartmann6: -3.06918 (SEM: 0)
x1: 0.4036
x2: 0.877685
x3: 0.139064
x4: 0.57802
x5: 0.493861
x6: 0.0468415" ], "type": "scatter", "x": [ 0.398422509431839, 0.49079069774597883, 0.9627859489992261, 0.7947803363204002, 0.357024222612381, 0.20968967210501432, 0.21314695850014687, 0.3858902435749769, 0.38921523094177246, 0.8604028560221195, 0.8632825557142496, 0.054479227401316166, 0.468913975680222, 0.45433885341758296, 0.45481581076403454, 0.3983060652101834, 0.3777378557967659, 0.26207974201063744, 0.3873426991820172, 0.38241877000881197, 0.39323576303391006, 0.3949434343528842, 0.37475076651087674, 0.4112991785644187, 0.3980949155656093, 0.39759185661081237, 0.4047033747879519, 0.4108553325505108, 0.4036002687011182 ], "xaxis": "x2", "y": [ 0.7675012350082397, 0.3198970640078187, 0.24047255888581276, 0.20562615152448416, 0.024372917599976063, 0.8926876690238714, 0.5608351789414883, 0.36064003594219685, 0.785920275375247, 0.2876096526160836, 0.3896352918818593, 0.44655546452850103, 0.6650318449510528, 0.718177894489421, 0.7141131330980965, 0.7559474302658782, 0.8045209799269514, 0.8152532627504008, 0.8568596593455997, 0.8661775124799345, 0.8454919763834396, 0.8487881594728477, 0.8414337791322379, 0.8358058309559664, 0.8597405091467616, 0.8546155852400952, 0.8826638442360016, 0.9846035063951003, 0.8776847910126038 ], "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": [ { "fillpattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 }, "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": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "render(plot_contour(model=model, param_x='x1', param_y='x2', metric_name='hartmann6'))" ] }, { "cell_type": "code", "execution_count": 8, "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": [ [ 1.032093061202139, 1.027542322541607, 1.0233026141326345, 1.0193888254732202, 1.015815492678032, 1.0125967233260824, 1.0097461186354748, 1.007276693208765, 1.0052007926417903, 1.0035300093482555, 1.0022750970256133, 1.0014458842764036, 1.0010511880051278, 1.001098727335119, 1.0015950389308126, 1.0025453947671688, 1.0039537235509983, 1.005822537161989, 1.008152863628612, 1.0109441882712982, 1.0141944047121252, 1.0178997774490874, 1.0220549176066054, 1.0266527732914617, 1.0316846357021006, 1.0371401617681721, 1.0430074136537155, 1.049272914973355, 1.0559217230794045, 1.0629375163188626, 1.0703026947650136, 1.077998492626417, 1.0860051003391205, 1.094301794258914, 1.1028670718786842, 1.111678790583025, 1.1207143080941335, 1.1299506229351435, 1.139364513416341, 1.1489326738198213, 1.1586318466071959, 1.1684389495997871, 1.178331197182372, 1.1882862146670845, 1.1982821450317012, 1.2082977473250534, 1.2183124861206893, 1.228306611502001, 1.2382612291809527, 1.2481583604864488 ], [ 1.0289844489388436, 1.0244061150460937, 1.0201429816491001, 1.0162101748533316, 1.0126224619482536, 1.0093941751084874, 1.0065391324055806, 1.004070556358415, 1.0020009902916418, 1.000342212824822, 0.9991051508820876, 0.9982997916970456, 0.9979350943923876, 0.9980189018418091, 0.9985578536722393, 0.999557301435531, 1.001021227165696, 1.002952166729841, 1.0053511395636177, 1.0082175865371985, 1.0115493178012205, 1.0153424724913256, 1.0195914921022742, 1.0242891091620379, 1.0294263525374534, 1.0349925702930405, 1.0409754705256202, 1.0473611800435938, 1.0541343201967246, 1.061278098633799, 1.0687744153175658, 1.076603980786427, 1.0847464444412844, 1.0931805305517384, 1.1018841797072059, 1.110834693559621, 1.1200088808869846, 1.129383203219365, 1.138933918484778, 1.1486372213315095, 1.1584693789531066, 1.1684068613797969, 1.178426465307104, 1.1885054306181948, 1.1986215488317715, 1.2087532627826498, 1.2188797569276026, 1.228981037770629, 1.2390380040219442, 1.2490325062426708 ], [ 1.0262081445041913, 1.0216075553625203, 1.0173262640723582, 1.01337962184734, 1.0097826147450073, 1.0065497862309871, 1.0036951570640462, 1.0012321427162214, 0.999173468576017, 0.9975310832273336, 0.9963160701563127, 0.9955385583162593, 0.9952076320834626, 0.9953312412645394, 0.9959161119744169, 0.9969676593893939, 0.9984899035895886, 1.0004853899283983, 1.002955115588201, 1.00589846417984, 1.009313150390334, 1.0131951767503282, 1.01753880455024, 1.0223365407601621, 1.027579142493059, 1.0332556400995818, 1.0393533794200793, 1.0458580830878343, 1.0527539301297992, 1.0600236525051672, 1.0676486467104496, 1.0756090982004465, 1.0838841161482209, 1.0924518759926447, 1.1012897672827808, 1.1103745444910336, 1.1196824786976327, 1.1291895083075227, 1.1388713872177563, 1.1487038290839637, 1.1586626465264704, 1.168723884266009, 1.178863945290439, 1.1890597092389585, 1.1992886422609197, 1.2095288976771572, 1.219759406853017, 1.2299599597924051, 1.2401112750823244, 1.25019505895847 ], [ 1.0237750663071694, 1.0191577862322962, 1.0148638284486835, 1.0109087575021065, 1.00730776541459, 1.004075593098066, 1.0012264491261482, 0.9987739260685382, 0.9967309146175709, 0.9951095157710048, 0.9939209513847932, 0.9931754734792215, 0.9928822727774922, 0.9930493870828525, 0.9936836102623208, 0.9947904028034287, 0.996373805142069, 0.9984363552151598, 1.0009790119554238, 1.0040010866917075, 1.0075001846166578, 1.011472158595776, 1.0159110775827993, 1.0208092117446532, 1.0261570360689034, 1.0319432537316298, 1.0381548398704221, 1.0447771056862134, 1.0517937820538081, 1.0591871211259627, 1.0669380138329403, 1.0750261207571699, 1.0834300136224748, 1.092127324578131, 1.1010949005547706, 1.1103089601826623, 1.1197452510484547, 1.1293792053778964, 1.1391860925338189, 1.1491411669832228, 1.1592198106017106, 1.1693976683440797, 1.179650776425015, 1.1899556822353587, 1.2002895552848498, 1.2106302885260725, 1.220956589490843, 1.2312480607670018, 1.2414852694641592, 1.2516498054594904 ], [ 1.021695618140986, 1.0170674192932112, 1.012766494274898, 1.0088086090507495, 1.0052091485543015, 1.0019830369100968, 0.9991446550778607, 0.9967077561193334, 0.9946853783033419, 0.9930897562879444, 0.99193223065648, 0.9912231561426899, 0.9909718089668094, 0.9911862938260692, 0.9918734512461839, 0.9930387662082607, 0.9946862792174302, 0.9968185012671946, 0.9994363344607013, 1.0025390003497976, 1.0061239783086127, 1.010186956425037, 1.0147217974266858, 1.0197205220149503, 1.0251733116396036, 1.0310685322049573, 1.037392779487825, 1.0441309462260344, 1.051266309983276, 1.0587806400994786, 1.0666543213748851, 1.074866491666758, 1.0833951903266965, 1.0922175143686714, 1.1013097793994868, 1.1106476826170018, 1.1202064655290316, 1.129961074416852, 1.1398863169164724, 1.1499570133914485, 1.1601481420069994, 1.170434976586441, 1.1807932164472514, 1.1911991074910888, 1.2016295538794366, 1.2120622196831652, 1.2224756199637399, 1.2328492008370455, 1.243163408190143, 1.2533997448656151 ], [ 1.0199796494133826, 1.0153464929476268, 1.0110444888106356, 1.0070895924787582, 1.0034973686511628, 1.000282910207531, 0.9974607546778467, 0.9950447984273862, 0.9930482087650206, 0.9914833341936625, 0.990361613046775, 0.989693480799229, 0.9894882764153717, 0.9897541482097421, 0.9904979598562557, 0.9917251973949, 0.9934398783542511, 0.9956444644261506, 0.9983397794807973, 1.001524935067144, 1.0051972658631634, 1.0093522777714008, 1.0139836114391052, 1.0190830238673105, 1.0246403904248875, 1.0306437289952306, 1.0370792471879322, 1.0439314126143087, 1.051183045249694, 1.058815429996325, 1.0668084468125025, 1.07514071525643, 1.0837897500348044, 1.092732124136956, 1.1019436363321913, 1.1113994801498257, 1.1210744118798697, 1.130942915566501, 1.1409793633667427, 1.1511581699831415, 1.1614539401359545, 1.171841608220807, 1.1822965694127434, 1.1927948015482641, 1.2033129771651565, 1.2138285651272183, 1.224319921322799, 1.234766368014962, 1.2451482615384981, 1.2554470481839843 ], [ 1.0186364183737773, 1.0140044332833962, 1.0097074054613675, 1.0057614681360514, 1.0021823526924816, 0.9989853062585161, 0.996185006916193, 0.9937954767524743, 0.9918299929577798, 0.9903009971792387, 0.9892200033456424, 0.9885975042098917, 0.9884428769140948, 0.988764287982276, 0.9895685982985247, 0.9908612688428431, 0.9926462682385833, 0.9949259835114526, 0.9977011358551886, 1.0009707036149524, 1.0047318550888398, 1.0089798940502657, 1.0137082210398762, 1.0189083133970187, 1.0245697266513654, 1.0306801192605888, 1.0372253017940318, 1.0441893106052849, 1.0515545049258532, 1.059301685277248, 1.0674102302581403, 1.0758582481963328, 1.084622739894857, 1.093679768729886, 1.103004634619626, 1.1125720488031194, 1.1223563068633995, 1.1323314579306005, 1.1424714684531165, 1.1527503792957907, 1.1631424552005125, 1.173622325830775, 1.1841651177340857, 1.1947465766184344, 1.205343179376484, 1.2159322353281423, 1.2264919762062891, 1.2370016344933101, 1.2474415098316693, 1.2577930233766996 ], [ 1.0176745587980491, 1.0130500185712947, 1.0087641658222133, 1.0048333000511447, 1.0012733064709058, 0.998099572077366, 0.9953268994780559, 0.9929694187129297, 0.9910404972862695, 0.9895526486144679, 0.9885174390888207, 0.9879453939644469, 0.9878459023273622, 0.9882271214755067, 0.9890958811898611, 0.9904575885819373, 0.9923161344929092, 0.9946738027883897, 0.997531184328794, 1.0008870978703708, 1.0047385206141277, 1.0090805315019176, 1.0139062705752937, 1.0192069176810095, 1.02497169346331, 1.031187884904464, 1.0378408966932917, 1.0449143285124516, 1.0523900770765915, 1.060248460584129, 1.068468362305502, 1.0770273894165736, 1.085902042928567, 1.095067894642007, 1.104499767388378, 1.1141719153281482, 1.124058201651981, 1.1341322716018152, 1.1443677192323118, 1.1547382467369083, 1.1652178154550674, 1.1757807878676325, 1.1864020599939944, 1.1970571836572228, 1.2077224781094325, 1.218375130535639, 1.2289932849998857, 1.2395561194749398, 1.2500439107091552, 1.2604380868287535 ], [ 1.0171020505700061, 1.0124913478537336, 1.0082229859771856, 1.0043134196272716, 1.0007786753510377, 0.9976342659293451, 0.9948951026554967, 0.9925754057835243, 0.9906886133869799, 0.9892472888429622, 0.9882630271348285, 0.9877463601606902, 0.9877066612560642, 0.9881520492022309, 0.9890892921158516, 0.9905237118149862, 0.9924590895463332, 0.9948975743437487, 0.9978395957596151, 1.0012837832418815, 1.0052268949663894, 1.0096637593995077, 1.0145872331619499, 1.0199881787891236, 1.0258554656537155, 1.0321759965966897, 1.0389347617346592, 1.0461149195830206, 1.0536979042186931, 1.0616635558954195, 1.0699902714825869, 1.0786551704396221, 1.0876342717923224, 1.0969026777100854, 1.106434759702869, 1.1162043440536786, 1.1261848937647505, 1.1363496849344945, 1.146671976034392, 1.1571251689881406, 1.1676829612605268, 1.1783194883542811, 1.189009456213028, 1.1997282630700457, 1.2104521102963501, 1.221158101816772, 1.2318243317002904, 1.2424299596018937, 1.2529552738426362, 1.2633817420582918 ], [ 1.0169261945587682, 1.0123358141100431, 1.0080913476340205, 1.0042093944024153, 1.0007061102889017, 0.9975971202278222, 0.9948974287322851, 0.992621328778341, 0.9907823093307746, 0.9893929617491135, 0.9884648852767702, 0.9880085917910559, 0.9880334099914767, 0.9885473892449872, 0.9895572034083551, 0.9910680551320625, 0.9930835814327554, 0.9956057617149301, 0.9986348299223735, 1.0021691930812424, 1.0062053591054516, 1.010737877285537, 1.0157592952629266, 1.021260136380706, 1.0272289009945728, 1.0336520945738428, 1.0405142842488266, 1.04779818399001, 1.0554847670286578, 1.063553402671415, 1.0719820135198361, 1.0807472484063454, 1.0898246661327367, 1.099188925294993, 1.1088139759885014, 1.1186732498791383, 1.1287398458725888, 1.1389867093184298, 1.1493868032817813, 1.1599132708723996, 1.1705395879356613, 1.181239705597773, 1.1919881822497322, 1.2027603045833548, 1.2135321972961035, 1.2242809210854557, 1.2349845585833676, 1.2456222879468721, 1.2561744439271383, 1.2666225663808368 ], [ 1.0171535921264998, 1.012590082427793, 1.0083759746308236, 1.0045280025282382, 1.0010624398888264, 0.9979950107485476, 0.9953407979156357, 0.9931141500497179, 0.9913285876391028, 0.9899967081548042, 0.9891300906108718, 0.9887391997175873, 0.9888332897921315, 0.9894203086074917, 0.9905068014372437, 0.9920978157154782, 0.9941968069999042, 0.996805547318546, 0.9999240374988141, 1.0035504257003316, 1.0076809350463294, 1.0123098038814424, 1.01742924265095, 1.0230294115552838, 1.0290984228576956, 1.0356223709416754, 1.0425853919523977, 1.0499697532473173, 1.0577559711461588, 1.0659229538720192, 1.0744481653381412, 1.0833078047038038, 1.09247699642503, 1.1019299857953269, 1.1116403355752258, 1.1215811200943409, 1.131725114036727, 1.1420449738837857, 1.1525134106223407, 1.1631033528018566, 1.1737880993428846, 1.1845414616832666, 1.195337894930029, 1.206152617703611, 1.2169617203527487, 1.2277422612139959, 1.2384723506120263, 1.2491312223578754, 1.2596992926048345, 1.2701582060612175 ], [ 1.0177901295077225, 1.013260073521536, 1.0090828152709466, 1.0052752135551228, 1.001853649231817, 0.9988339330578672, 0.996231211889907, 0.994059873670307, 0.9923334515855033, 0.9910645277326062, 0.9902646365700756, 0.9899441683696117, 0.9901122728427805, 0.99077676310688, 0.9919440202032981, 0.9936188985158985, 0.9958046326839228, 0.9985027469848344, 1.0017129686877717, 1.0054331475289442, 1.0096591841876736, 1.0143849713481252, 1.0196023514814923, 1.0253010957140025, 1.031468907906747, 1.0380914572754472, 1.0451524415383595, 1.0526336808436447, 1.060515240846728, 1.0687755815779052, 1.0773917274204423, 1.086339452765004, 1.0955934777444278, 1.105127668796123, 1.1149152394945965, 1.1249289479689835, 1.1351412881194751, 1.145524672659951, 1.156051606676892, 1.1666948508830055, 1.1774275740630122, 1.1882234943862795, 1.1990570093336252, 1.2099033139932895, 1.2207385074644423, 1.2315396870943183, 1.2422850302920996, 1.2529538637189452, 1.2635267197537268, 1.273985380270004 ], [ 1.018840967175127, 1.0143509528133436, 1.0102170308184886, 1.0064561759930064, 1.0030848661030447, 1.0001189869612874, 0.9975737359986955, 0.9954635248263045, 0.993801881252382, 0.992601351166007, 0.9918734006311751, 0.9916283184628829, 0.9918751194943227, 0.9926214487099305, 0.9938734864380824, 0.9956358549002049, 0.9979115266301215, 1.0007017356376644, 1.0040058927073163, 1.0078215068870988, 1.0121441159867604, 1.0169672296697578, 1.0222822893451666, 1.0280786493631946, 1.0343435838200783, 1.0410623224734064, 1.0482181178689676, 1.0557923439377692, 1.0637646243159469, 1.072112986801001, 1.0808140389712597, 1.0898431592303597, 1.0991746974164829, 1.1087821795317816, 1.118638511925287, 1.1287161812117041, 1.1389874471665016, 1.1494245266891916, 1.1599997676095493, 1.1706858116053487, 1.181455745816385, 1.1922832429089605, 1.2031426894086599, 1.2140093021194165, 1.2248592324225889, 1.2356696582333027, 1.246418863403777, 1.2570863044172051, 1.2676526643122676, 1.278099893912587 ], [ 1.020310534145074, 1.015867125120948, 1.0117829903132345, 1.0080752119422596, 1.0047603550718969, 1.0018543696111601, 0.9993724909064639, 0.9973291395128028, 0.9957378207016621, 0.994611024210831, 0.9939601246709345, 0.9937952830617399, 0.9941253494726483, 0.9949577673838597, 0.9962984796741486, 0.9981518366294958, 1.0005205064075564, 1.0034053887411885, 1.0068055331583416, 1.0107180636544801, 1.0151381125327779, 1.020058766931113, 1.0254710322299676, 1.031363816890196, 1.0377239431109913, 1.0445361869008685, 1.0517833497161462, 1.0594463619055041, 1.06750441610329, 1.0759351267970627, 1.0847147108661161, 1.0938181831251907, 1.1032195608263458, 1.1128920715518076, 1.1228083597770315, 1.1329406883918223, 1.1432611324667208, 1.153741763428878, 1.1643548225030975, 1.1750728827674615, 1.1858689994828677, 1.196716848517677, 1.2075908527451191, 1.2184662962857795, 1.2293194264395915, 1.2401275431327896, 1.2508690757160907, 1.2615236470021651, 1.272072124524954, 1.2824966591341178 ], [ 1.0222025269784494, 1.0178122347865965, 1.0137842716369883, 1.0101358188496605, 1.0068835196297927, 1.0040433776572462, 1.0016306543329343, 0.9996597653668299, 0.9981441773718662, 0.9970963050816861, 0.9965274097414012, 0.9964474991344939, 0.9968652296183381, 0.9977878104629578, 0.9992209107482563, 1.0011685691067642, 1.0036331067385602, 1.0066150444095345, 1.0101130246007675, 1.0141237406078947, 1.0186418751589108, 1.0236600519326686, 1.0291688040648839, 1.0351565641219218, 1.0416096799001153, 1.0485124596283726, 1.0558472487062271, 1.0635945381601253, 1.0717331028626134, 1.080240165606385, 1.0890915816839761, 1.0982620378775765, 1.1077252597211118, 1.1174542214263128, 1.127421353758635, 1.1375987461937382, 1.1479583407076572, 1.1584721154382598, 1.169112257146956, 1.179851321896215, 1.1906623836605355, 1.2015191707435096, 1.2123961899254212, 1.2232688382583032, 1.2341135023973533, 1.2449076453391505, 1.2556298804481518, 1.2662600327048688, 1.2767791872011613, 1.2871697250358964 ], [ 1.0245199130021676, 1.0201891708251685, 1.0162236684849102, 1.012640678142416, 1.0094569122648382, 1.0066884184760236, 1.0043504730860133, 1.0024574740892966, 1.0010228344152665, 1.000058876179565, 0.9995767266235283, 0.9995862163445004, 1.0000957803226334, 1.0011123621567544, 1.0026413218561374, 1.004686347530531, 1.0072493714135922, 1.0103304908870916, 1.0139278955742843, 1.0180378021518282, 1.0226543992596229, 1.027769805679875, 1.0333740456583311, 1.0394550456499934, 1.0459986566761397, 1.0529887057298444, 1.060407078246513, 1.0682338317260363, 1.0764473384681306, 1.0850244534465148, 1.0939407019286445, 1.1031704807318516, 1.1126872669976824, 1.1224638289256863, 1.1324724338235894, 1.1426850498855867, 1.1530735391320923, 1.1636098398206864, 1.1742661373173229, 1.1850150228917267, 1.1958296401935884, 1.2066838193161278, 1.2175521984034996, 1.2284103327530878, 1.2392347913390358, 1.2500032406682344, 1.2606945158945382, 1.271288679168979, 1.2817670652954571, 1.2921123148851759 ], [ 1.0272649370192874, 1.0230000763800646, 1.0191032025703985, 1.0155916701315135, 1.012482251953843, 1.0097910300773933, 1.0075332851422303, 1.0057233853905356, 1.0043746761342016, 1.0034993705839563, 1.00310844288848, 1.0032115241554362, 1.003816802129763, 1.0049309251018572, 1.0065589105309432, 1.0087040588284686, 1.0113678727900652, 1.014549983333164, 1.018248082527628, 1.0224578654112235, 1.0271729827404599, 1.0323850075602117, 1.038083419138348, 1.044255608208544, 1.0508869073846914, 1.0579606499031635, 1.0654582584910834, 1.073359364303858, 1.081641953829348, 1.09028253979269, 1.099256350738767, 1.108537533297194, 1.118099361151031, 1.127914445296829, 1.1379549410906693, 1.1481927486098162, 1.1585997038564508, 1.1691477591805635, 1.1798091519555187, 1.1905565609984254, 1.2013632505101315, 1.2122032014561814, 1.2230512303625223, 1.2338830954998021, 1.2446755904122884, 1.255406624739764, 1.2660552922997153, 1.2766019264520434, 1.2870281428589871, 1.29731686987408 ], [ 1.030439130500915, 1.026246361459548, 1.0224241400315988, 1.018989894167349, 1.0159604480917988, 1.013351908772166, 1.0111795509505983, 1.0094577017599766, 1.0081996259761257, 1.0074174129652618, 1.0071218663574943, 1.007322397416259, 1.0080269229854015, 1.0092417687903326, 1.0109715787658557, 1.0132192310102832, 1.0159857609563716, 1.0192702924474446, 1.023069977647016, 1.0273799471137253, 1.0321932719255935, 1.0375009403718418, 1.043291852315468, 1.0495528346841012, 1.0562686814699984, 1.063422220967003, 1.0709944117165024, 1.0789644669135403, 1.0873100051247522, 1.0960072234387623, 1.105031087914243, 1.114355535576593, 1.1239536822470224, 1.1337980310363631, 1.1438606772028097, 1.15411350605812, 1.1645283815530503, 1.1750773239803574, 1.1857326758572453, 1.196467255486296, 1.2072544979671394, 1.218068583576159, 1.2288845534904564, 1.2396784128413225, 1.2504272210761087, 1.2611091696088776, 1.2717036467667433, 1.2821912900969652, 1.2925540261907704, 1.3027750982969684 ], [ 1.0340433219753997, 1.0299287176000709, 1.0261870106285298, 1.0228356925930422, 1.0198916293778526, 1.0173709431131013, 1.0152888924898456, 1.0136597526330027, 1.0124966957322625, 1.011811673664655, 1.0116153038410487, 1.0119167594716496, 1.0127236653733298, 1.0140420003421242, 1.0158760070016803, 1.0182281099354271, 1.0210988428487782, 1.0244867855251765, 1.0283885114736406, 1.0327985474401145, 1.0377093463658975, 1.043111275870563, 1.048992624804523, 1.0553396306968097, 1.062136530838192, 1.0693656391538406, 1.0770074499036113, 1.0850407677214966, 1.0934428618162861, 1.1021896406169338, 1.1112558420292222, 1.1206152339291586, 1.1302408195589593, 1.1401050429986856, 1.1501799906827808, 1.1604375858367046, 1.1708497735805916, 1.1813886951936543, 1.1920268506143552, 1.2027372486627448, 1.213493544734507, 1.2242701658633635, 1.2350424231159127, 1.2457866113058524, 1.2564800960220843, 1.2671013879787858, 1.2776302047311598, 1.2880475198633545, 1.2983355998461257, 1.3084780288759665 ], [ 1.0380776470660271, 1.0340471327857943, 1.0303916279426888, 1.0271286765973262, 1.0242751756601431, 1.0218472520255948, 1.0198601379240955, 1.0183280457475212, 1.01726404369969, 1.0166799336891876, 1.0165861329149037, 1.0169915605870492, 1.017903531180213, 1.0193276555296746, 1.021267750968695, 1.0237257615776092, 1.0267016895012215, 1.030193538221954, 1.0341972686874665, 1.0387067693106444, 1.0437138410944282, 1.0492081994471243, 1.0551774945657302, 1.0616073524414762, 1.0684814384372439, 1.0757815448796793, 1.08348770317073, 1.0915783196427982, 1.1000303329652206, 1.1088193896146286, 1.1179200329803536, 1.1273059012211302, 1.1369499290307874, 1.1468245489158302, 1.1569018882860944, 1.1671539594589504, 1.1775528404525641, 1.1880708451140767, 1.1986806816579483, 1.2093555990720057, 1.220069521101386, 1.2307971676714264, 1.241514163690021, 1.2521971352094932, 1.2628237929515695, 1.273373003227693, 1.2838248463319901, 1.294160662552725, 1.3043630860399413, 1.3144160668769966 ], [ 1.0425415563969642, 1.0386009046672346, 1.0350371084423708, 1.0318677516503363, 1.029109750244482, 1.0267792244589216, 1.0248913690213484, 1.0234603226968095, 1.0224990386661195, 1.022019157346564, 1.0220308833338292, 1.0225428681751167, 1.023562100670273, 1.025093806336654, 1.0271413575677966, 1.0297061958717493, 1.0327877674107073, 1.0363834729025183, 1.0404886328189296, 1.045096468755257, 1.0501981018687176, 1.0557825693778324, 1.061836860232103, 1.0683459711092478, 1.075292983762134, 1.082659164323953, 1.0904240844517588, 1.0985657632033616, 1.1070608274497948, 1.1158846876204456, 1.1250117248427354, 1.1344154851823007, 1.1440688767279394, 1.1539443656317632, 1.164014167793263, 1.1742504335455748, 1.1846254233614533, 1.1951116731770295, 1.205682148400753, 1.2163103860242375, 1.2269706244941698, 1.2376379211599153, 1.2482882572057308, 1.2588986300335987, 1.2694471331055892, 1.2799130232978495, 1.290276775874769, 1.3005201272659934, 1.3106261059210582, 1.3205790516233489 ], [ 1.0474338194126283, 1.0435886498927773, 1.0401218869853912, 1.0370511398426039, 1.0343933297294807, 1.0321645573584652, 1.0303799678703458, 1.0290536149491039, 1.02819832572507, 1.0278255682664303, 1.027945323572617, 1.0285659640592943, 1.0296941405520466, 1.0313346797783214, 1.0334904942585526, 1.0361625063448845, 1.0393495879457517, 1.0430485172203943, 1.0472539532533625, 1.051958429457621, 1.0571523662353497, 1.0628241032653223, 1.0689599516742136, 1.075544266241725, 1.082559537616996, 1.0899865042128534, 1.0978042829544026, 1.1059905174094877, 1.1145215411013283, 1.1233725531264263, 1.1325178026966798, 1.1419307789786133, 1.1515844026357647, 1.1614512157549965, 1.1715035672793266, 1.1817137915923568, 1.1920543784280992, 1.202498132760731, 1.2130183237309702, 1.2235888219802709, 1.2341842249948374, 1.244779970222532, 1.255352435835314, 1.265879029086583, 1.2763382622739632, 1.2867098163774635, 1.2969745925097707, 1.307114751395255, 1.3171137411864147, 1.3269563140297445 ], [ 1.05275252205832, 1.0490083072204084, 1.0456437261267761, 1.042676396177498, 1.0401232280841757, 1.0380002883267294, 1.036322658903968, 1.0351042959741585, 1.034357889186941, 1.0340947236960665, 1.0343245470024511, 1.0350554429013776, 1.0362937148824964, 1.038043781345332, 1.0403080849309563, 1.0430870181196807, 1.0463788669962004, 1.0501797747383725, 1.0544837259579798, 1.0592825525426626, 1.0645659611604117, 1.0703215821404977, 1.0765350390718802, 1.0831900381744155, 1.090268476277748, 1.0977505660423115, 1.1056149768291887, 1.113838989342149, 1.1223986618391761, 1.1312690053881742, 1.140424165387917, 1.1498376064476115, 1.1594822977450623, 1.1693308961598274, 1.1793559247722274, 1.1895299446836665, 1.1998257185038605, 1.21021636422317, 1.2206754985216448, 1.2311773688420007, 1.241696973773276, 1.252210171457643, 1.26269377585763, 1.27312564081628, 1.2834847319220983, 1.2937511862646243, 1.3039063602433325, 1.3139328656767828, 1.3238145945507498, 1.3335367328430336 ], [ 1.0584950562744855, 1.0548571320408744, 1.0515997165137794, 1.048740415723095, 1.0462961114728475, 1.0442828190531284, 1.042715541863849, 1.0416081246487834, 1.040973107282465, 1.0408215812821813, 1.0411630514254302, 1.0420053050271068, 1.0433542915570153, 1.045214015340808, 1.047586444060191, 1.0504714356308722, 1.0538666857602985, 1.057767698059256, 1.0621677780003889, 1.0670580513108976, 1.0724275066121534, 1.0782630613559707, 1.084549649444663, 1.0912703284330278, 1.098406403929897, 1.1059375687298685, 1.113842054254829, 1.122096791992036, 1.1306775827131443, 1.1395592713108322, 1.148715925099232, 1.1581210134195796, 1.167747586413272, 1.177568450899332, 1.1875563414361743, 1.1976840848515728, 1.2079247567719946, 1.2182518289474225, 1.2286393064289727, 1.2390618538942508, 1.249494910620998, 1.2599147937796555, 1.270298789852085, 1.2806252340967959, 1.29087357807468, 1.3010244453371345, 1.3110596754625283, 1.3209623567142443, 1.3307168476847027, 1.3403087883830787 ], [ 1.0646580993839914, 1.06113168004243, 1.0579862657134056, 1.0552394285484614, 1.0529080002963622, 1.0510079254933302, 1.0495541111685476, 1.0485602748596472, 1.048038793013271, 1.0480005521172757, 1.0484548051639788, 1.0494090362670292, 1.0508688364341368, 1.0528377936097335, 1.055317400120262, 1.058306980539037, 1.0618036426993243, 1.0658022540863201, 1.0702954451143702, 1.0752736398649971, 1.0807251137890956, 1.0866360767788315, 1.092990779035375, 1.0997716364411616, 1.106959371788189, 1.11453316823481, 1.1224708316972027, 1.1307489593922881, 1.1393431122856663, 1.1482279896366452, 1.157377604110451, 1.166765456049291, 1.1763647055089486, 1.1861483406427704, 1.196089341009166, 1.20616083442543, 1.2163362460999765, 1.2265894389348093, 1.2368948440812366, 1.2472275810310856, 1.2575635667162206, 1.2678796132596106, 1.2781535141677431, 1.2883641188788129, 1.2984913956877961, 1.3085164831660472, 1.3184217302822026, 1.3281907255203182, 1.3378083153791318, 1.3472606127240419 ], [ 1.0712375817185233, 1.0678277780032792, 1.064799073055461, 1.062168979580104, 1.0599542550951244, 1.0581707509098401, 1.056833257224485, 1.0559553462355595, 1.0555492154466473, 1.0556255336934677, 1.0561932926855444, 1.0572596671360357, 1.0588298867787973, 1.0609071237362113, 1.063492398767024, 1.0665845098424984, 1.07017998621435, 1.074273070590119, 1.0788557311835807, 1.0839177042646697, 1.0894465664659625, 1.0954278346582034, 1.101845089889881, 1.1086801209132515, 1.1159130823622345, 1.1235226627632016, 1.1314862581731797, 1.1397801481585643, 1.148379671807425, 1.1572594022961935, 1.166393319079047, 1.175754977016175, 1.1853176717693006, 1.195054600674886, 1.2049390181615756, 1.2149443846787267, 1.2250445080852153, 1.2352136765095885, 1.2454267818183975, 1.255659432990621, 1.2658880588692234, 1.2760899999276802, 1.286243588839607, 1.2963282197712538, 1.3063244064302677, 1.316213829004811, 1.3259793702191964, 1.335605140818957, 1.3450764948826812, 1.3543800354393043 ], [ 1.0782286412508149, 1.0749404801282172, 1.0720330885088503, 1.0695238909466211, 1.0674295433797865, 1.0657657782868653, 1.0645472455892155, 1.0637873512705445, 1.063498096029746, 1.063689916624988, 1.064371532895891, 1.0655498037562081, 1.0672295957198372, 1.0694136677329726, 1.0721025762002285, 1.0752946040542433, 1.0789857174540562, 1.0831695531258207, 1.0878374384168823, 1.0929784448047206, 1.098579473956327, 1.1046253736433151, 1.111099079147235, 1.117981774536239, 1.1252530676076002, 1.132891172475532, 1.1408730946606558, 1.1491748148523202, 1.1577714689324619, 1.1666375230605248, 1.1757469434319319, 1.1850733606967294, 1.1945902290408255, 1.20427097973485, 1.2140891686902817, 1.224018617336929, 1.2340335460060552, 1.2441086989799242, 1.2542194604337846, 1.264341960620578, 1.2744531718003416, 1.2845309935735565, 1.294554327425129, 1.3045031404166971, 1.3143585180794046, 1.324102706659529, 1.3337191449590473, 1.3431924860963602, 1.352508609590744, 1.361654624248386 ], [ 1.0856255645777662, 1.0824640089591266, 1.079682454253126, 1.0772982050501114, 1.0753277851461864, 1.0737867793334037, 1.0726896705997508, 1.0720496747919455, 1.071878575167813, 1.0721865596334152, 1.0729820638150251, 1.0742716234482996, 1.0760597398671436, 1.0783487626216368, 1.0811387934127512, 1.0844276155406316, 1.088210652835978, 1.0924809614776434, 1.097229257100076, 1.1024439781192137, 1.1081113843135924, 1.1142156875782112, 1.1207392097404407, 1.1276625607705801, 1.1349648299677437, 1.1426237829191863, 1.150616058136166, 1.1589173589542812, 1.1675026381194098, 1.176346274059397, 1.185422238913373, 1.194704258891747, 1.204165967573667, 1.2137810524917645, 1.2235233949945674, 1.2333672030497709, 1.2432871364313205, 1.2532584236370556, 1.2632569698958311, 1.273259455708277, 1.2832434254927465, 1.2931873660469688, 1.3030707746726946, 1.3128742169327199, 1.3225793741182499, 1.3321690805977782, 1.3416273513031411, 1.3509393996837828, 1.3600916465319464, 1.3690717201477545 ], [ 1.0934217143332887, 1.0903916806852845, 1.087740428465485, 1.0854851075209704, 1.0836420758053245, 1.0822267383137016, 1.0812533811445433, 1.0807350028235096, 1.0806831454229293, 1.081107728398931, 1.0820168884395145, 1.083416828962312, 1.0853116832151846, 1.087703395200348, 1.0905916228338388, 1.0939736678068042, 1.0978444364373032, 1.1021964352703486, 1.107019804171788, 1.112302388094807, 1.1180298466102812, 1.1241857978796472, 1.1307519913753599, 1.1377085017775683, 1.1450339355213859, 1.1527056416669583, 1.1606999200449695, 1.1689922216353275, 1.1775573383478526, 1.1863695812964115, 1.1954029479777137, 1.2046312794038279, 1.214028408308099, 1.223568299260729, 1.2332251811100399, 1.2429736717675086, 1.2527888950673038, 1.2626465892764869, 1.2725232067953158, 1.282396004633047, 1.2922431253394822, 1.3020436681863083, 1.3117777505074821, 1.3214265592140604, 1.3309723925923205, 1.3403986925769527, 1.3496900677637442, 1.3588323074931936, 1.3678123873989472, 1.3766184668730543 ], [ 1.1016094439823185, 1.098715815643595, 1.0961992919031416, 1.0940768303702295, 1.0923645865148015, 1.0910777502957636, 1.090230377701039, 1.0898352194196066, 1.0899035492841935, 1.0904449955269062, 1.091467378266273, 1.0929765569887628, 1.094976292096804, 1.0974681248632037, 1.1004512803381807, 1.103922597845788, 1.1078764935863352, 1.1123049593913104, 1.1171976007013575, 1.122541715242552, 1.1283224116598507, 1.1345227647189537, 1.1411240009984989, 1.148105706796463, 1.1554460487808833, 1.1631219980295695, 1.1711095494846604, 1.179383931100272, 1.187919799492378, 1.196691421130415, 1.2056728396695682, 1.2148380308102924, 1.2241610462132273, 1.2336161477281493, 1.2431779327556476, 1.2528214511266877, 1.26252231355334, 1.2722567915045206, 1.2820019082774197, 1.2917355210386778, 1.301436393663828, 1.3110842602823027, 1.3206598795202134, 1.3301450795134444, 1.3395227938367633, 1.3487770885599313, 1.3578931807005843, 1.3668574483993035, 1.3756574331941471, 1.384281834822286 ], [ 1.1101800019290715, 1.1074276359007955, 1.1050502390916068, 1.103064537021323, 1.1014864434095508, 1.1003308950679622, 1.099611681569133, 1.0993412720010265, 1.0995306415535222, 1.1001891010952893, 1.101324133271635, 1.1029412389813205, 1.105043798373161, 1.1076329507474787, 1.1107074979441083, 1.1142638359097103, 1.1182959190722408, 1.122795261762529, 1.127750980030014, 1.1331498756438827, 1.1389765618095353, 1.1452136273228213, 1.151841832935153, 1.1588403311966622, 1.1661868995797757, 1.1738581766463443, 1.181829892406364, 1.1900770864199683, 1.1985743099651494, 1.2072958110873588, 1.216215703136496, 1.2253081183584835, 1.234547348363504, 1.2439079730881373, 1.2533649794553392, 1.2628938705012593, 1.272470765385282, 1.2820724904633032, 1.291676661477227, 1.3012617568671863, 1.3108071822196692, 1.3202933258984684, 1.3297016059504898, 1.3390145084261171, 1.348215617299566, 1.3572896362181712, 1.366222402351872, 1.3750008926555408, 1.3836132228984506, 1.3920486398571161 ], [ 1.1191234279180808, 1.1165171530010651, 1.1142832572813086, 1.1124381924283833, 1.110997588941891, 1.109976089885993, 1.109387179353412, 1.1092430080632207, 1.1095542189507137, 1.1103297760232893, 1.1115768001164477, 1.1133004154783837, 1.1155036113482688, 1.1181871228859839, 1.121349335970606, 1.1249862204924903, 1.1290912967440412, 1.1336556392208397, 1.1386679213753044, 1.1441145034189941, 1.14997956305293, 1.1562452661333618, 1.1628919711469266, 1.169898458590377, 1.1772421745943507, 1.184899477863181, 1.1928458802812123, 1.2010562739718058, 1.2095051405100148, 1.218166740691376, 1.2270152852714435, 1.2360250882556287, 1.2451707047390428, 1.2544270552113472, 1.2637695379025258, 1.2731741303436799, 1.2826174809612236, 1.2920769912582895, 1.3015308889621915, 1.3109582924163232, 1.320339266443432, 1.3296548698876614, 1.3388871950406482, 1.3480193991646228, 1.357035728339514, 1.3659215338791353, 1.374663281584701, 1.3832485541304953, 1.3916660469071966, 1.3999055576815385 ], [ 1.1284284457548666, 1.125973050174623, 1.123886997729308, 1.1221864230868133, 1.12088663036522, 1.1200019262828156, 1.1195454480846179, 1.1195289887517061, 1.1199628224689944, 1.1208555337440318, 1.122213853908551, 1.1240425089843677, 1.1263440830643634, 1.1291189014742948, 1.1323649380727112, 1.1360777511217672, 1.140250452168749, 1.14487371218194, 1.1499358085685607, 1.1554227154306886, 1.1613182373336433, 1.1676041840305489, 1.1742605803620816, 1.1812659025550154, 1.1885973300922563, 1.196231001762971, 1.2041422655578473, 1.2123059144116075, 1.2206964027453657, 1.229288041608562, 1.2380551724460733, 1.2469723209163226, 1.2560143328251934, 1.265156494331193, 1.2743746383585122, 1.2836452388151283, 1.2929454938706126, 1.3022533992581595, 1.3115478123419035, 1.3208085075273055, 1.3300162234774018, 1.3391527025168568, 1.348200722550467, 1.357144121786417, 1.365967816532418, 1.3746578123244484, 1.3832012086492858, 1.3915861975339638, 1.3998020562941393, 1.407839134758818 ], [ 1.1380823573469434, 1.1357825644485546, 1.1338486452047443, 1.1322963733038702, 1.1311406822048131, 1.1303954982613413, 1.130073568767305, 1.130186287537524, 1.1307435211235313, 1.1317534391785598, 1.1332223527992968, 1.1351545648661028, 1.1375522364876407, 1.1404152736687485, 1.1437412383137513, 1.1475252876900983, 1.1517601464871252, 1.1564361154982286, 1.1615411205121366, 1.1670608039526638, 1.1729786599448615, 1.179276210800221, 1.1859332197012025, 1.1929279312250298, 1.200237329015389, 1.207837398997339, 1.2157033872578262, 1.2238100438242918, 1.232131846448938, 1.2406432014325461, 1.249318620947559, 1.2581328779820136, 1.26706114093047, 1.2760790901733587, 1.2851630189256997, 1.294289920383879, 1.303437562881758, 1.3125845544551078, 1.3217103979381524, 1.330795537486658, 1.33982139723744, 1.348770412668137, 1.3576260551092376, 1.36637284977647, 1.3749963876329896, 1.3834833313530115, 1.3918214156394302, 1.399999442143499, 1.4080072692431684, 1.4158357969535194 ], [ 1.1480709438806813, 1.1459313750802187, 1.1441537927849852, 1.142753565484057, 1.141745211197381, 1.141142231112865, 1.1409569383868374, 1.141200284837266, 1.141881688757312, 1.1430088674885037, 1.1445876786757114, 1.1466219742564083, 1.1491134712224151, 1.1520616430823694, 1.155463635821959, 1.1593142120786584, 1.1636057272347513, 1.1683281411000161, 1.173469068593481, 1.1790138720484487, 1.1849457961923355, 1.1912461444065108, 1.197894491772912, 1.204868927209864, 1.2121463144217524, 1.2197025600966043, 1.2275128781000553, 1.2355520401875, 1.2437946064534249, 1.252215131676109, 1.2607883463174914, 1.2694893128745655, 1.278293559479534, 1.2871771932203961, 1.2961169957794023, 1.3050905038406413, 1.314076076434597, 1.323052951056924, 1.3320012900720457, 1.340902218615188, 1.3497378549515255, 1.3584913340383513, 1.3671468248670955, 1.3756895420306101, 1.3841057518650426, 1.3923827734493266, 1.4005089747048616, 1.4084737638181954, 1.4162675762069987, 1.4238818572589154 ], [ 1.1583783805114969, 1.1564035054365616, 1.1547863298780263, 1.1535417732453521, 1.152683893465877, 1.1522257216490155, 1.1521790922546005, 1.1525544716130505, 1.1533607881562933, 1.1546052681244723, 1.1562932807634299, 1.1584281970883152, 1.1610112661667282, 1.1640415126268104, 1.1675156588187805, 1.1714280748603683, 1.1757707597345068, 1.180533356630592, 1.1857032056339587, 1.19126543636261, 1.1972031019128186, 1.2034973533410733, 1.210127651013488, 1.2170720059667408, 1.2243072416509846, 1.2318092647594732, 1.2395533337059867, 1.247514314671036, 1.2556669175756365, 1.26398590722977, 1.2724462876445553, 1.2810234596981034, 1.2896933538502449, 1.2984325404489683, 1.307218320497722, 1.3160287997240045, 1.3248429485487905, 1.3336406502127438, 1.3424027389414435, 1.3511110296709903, 1.3597483405321902, 1.3682985090156783, 1.3767464025154068, 1.385077923771225, 1.3932800115988468, 1.401340637202052, 1.409248796300327, 1.4169944972713993, 1.424568745493655, 1.4319635240767594 ], [ 1.16898717116891, 1.1671812457639963, 1.1657283518458643, 1.1646429167636032, 1.163938494445841, 1.163627601582976, 1.1637215497502904, 1.1642302764405998, 1.1651621784961599, 1.1665239518282373, 1.1683204415271908, 1.1705545064534486, 1.1732269021645625, 1.176336185638706, 1.1798786448191965, 1.1838482556698682, 1.1882366692982167, 1.1930332317606427, 1.198225039237722, 1.2037970310431958, 1.2097321220486794, 1.216011374332186, 1.2226142052292621, 1.2295186258697461, 1.2367015013758051, 1.2441388218896372, 1.2518059729979878, 1.25967799503273, 1.2677298228543687, 1.275936500505864, 1.2842733679578704, 1.292716219596766, 1.3012414358950257, 1.3098260908149006, 1.3184480380224535, 1.327085979081717, 1.3357195166075604, 1.3443291950085454, 1.3528965310387706, 1.3614040359617274, 1.3698352307456305, 1.3781746553770151, 1.3864078731035578, 1.3945214701990976, 1.4025030516781958, 1.4103412332677556, 1.418025629863264, 1.425546840647835, 1.4328964310290813, 1.4400669115433753 ], [ 1.1798781098915776, 1.1782451041451991, 1.1769600995060248, 1.176036989708933, 1.1754887821277313, 1.1753274359448218, 1.175563696792285, 1.1762069309532222, 1.1772649627402403, 1.1787439190561757, 1.1806480853187105, 1.18297977684411, 1.1857392294360116, 1.1889245123808205, 1.1925314664513746, 1.196553669038174, 1.2009824283080157, 1.2058068083598437, 1.2110136875616295, 1.2165878522925937, 1.222512127789332, 1.2287675463976293, 1.2353335512110624, 1.2421882301320142, 1.2493085724160407, 1.2566707374756902, 1.2642503247020938, 1.272022633542377, 1.279962904869056, 1.2880465373058039, 1.2962492750411259, 1.3045473662610758, 1.3129176933545803, 1.3213378773859459, 1.3297863600388953, 1.338242466446606, 1.346686452187548, 1.3550995373871149, 1.3634639304279628, 1.3717628433147133, 1.379980500306318, 1.3881021410497394, 1.396114019130325, 1.4040033966998693, 1.4117585356487414, 1.4193686856455325, 1.4268240692696421, 1.4341158643997742, 1.4412361839881578, 1.4481780533371276 ], [ 1.1910302744656427, 1.1895737922622835, 1.188459936078299, 1.1877020263984615, 1.1873124834122175, 1.1873026676238283, 1.1876827175541322, 1.1884613877396921, 1.1896458907659218, 1.191241747443998, 1.193252649378807, 1.1956803380143486, 1.1985245037828218, 1.2017827082933086, 1.205450331734251, 1.209520547031531, 1.2139843219867619, 1.2188304506843637, 1.224045615783838, 1.2296144835920004, 1.235519833619005, 1.2417427232963063, 1.2482626865394417, 1.2550579620835063, 1.2621057445459232, 1.2693824486889749, 1.2768639759994995, 1.2845259728058527, 1.2923440706338907, 1.3002941019513516, 1.3083522872856126, 1.3164953923927116, 1.3247008563386053, 1.3329468928716475, 1.3412125683255962, 1.3494778596106232, 1.3577236957747791, 1.3659319862997377, 1.374085638849894, 1.3821685687122498, 1.3901657016994577, 1.3980629718742181, 1.4058473151025863, 1.4135066591604415, 1.4210299108984576, 1.4284069408082574, 1.435628565218851, 1.4426865262770927, 1.4495734698236524, 1.4562829212554087 ], [ 1.2024210570377434, 1.2011442513691093, 1.2002043678024958, 1.1996141163115952, 1.1993852917494385, 1.1995286173417878, 1.200053585976659, 1.2009683026069204, 1.2022793316094016, 1.2039915532998213, 1.2061080338964054, 1.2086299129940759, 1.2115563120438677, 1.2148842665071755, 1.2186086834385625, 1.2227223254739512, 1.2272158217801388, 1.2320777065623294, 1.237294486138885, 1.242850736073142, 1.2487292299616393, 1.2549111007997615, 1.2613760341708373, 1.2681024899679996, 1.2750679464451835, 1.2822491578063104, 1.2896224149513573, 1.2971637988068259, 1.3048494168757967, 1.3126556158928657, 1.320559166214317, 1.3285374162722356, 1.336568417680209, 1.3446310232036667, 1.352704960776841, 1.3607708871556712, 1.3688104247824089, 1.3768061851524196, 1.3847417815402125, 1.3926018334544452, 1.4003719647125876, 1.4080387965911292, 1.415589937136231, 1.4230139674158584, 1.4303004252572908, 1.4374397868354358, 1.4444234463498788, 1.4512436939430566, 1.457893691959544, 1.4643674496196941 ], [ 1.214026234850744, 1.2129317221615294, 1.2121681125257306, 1.2117474709499514, 1.2116809318037418, 1.211978545636188, 1.212649124570303, 1.2137000896937096, 1.2151373243809112, 1.216965037812856, 1.2191856430106467, 1.2217996533985271, 1.224805601248978, 1.2281999804148187, 1.2319772146991725, 1.2361296523026823, 1.2406475862621207, 1.245519300796307, 1.2507311439416267, 1.2562676275024305, 1.2621115557084068, 1.2682441836044362, 1.2746454048271545, 1.2812939661166327, 1.2881677031126526, 1.2952437893832145, 1.3024989889186185, 1.3099099019380138, 1.3174531948454922, 1.3251058072246822, 1.33284513136086, 1.340649162399733, 1.3484966194971562, 1.3563670399720045, 1.3642408495028895, 1.37209941188195, 1.3799250618833583, 1.387701124563323, 1.3954119239029688, 1.4030427832327075, 1.410580019400699, 1.4180109322098007, 1.4253237902670106, 1.432507814075033, 1.4395531569466535, 1.4464508841323354, 1.453192950413726, 1.4597721763203182, 1.4661822230659773, 1.4724175662681538 ], [ 1.2258200823958902, 1.2249098601261819, 1.2243242181647265, 1.2240745453097304, 1.2241712838118914, 1.2246237799573794, 1.2254401340786727, 1.2266270535004316, 1.2281897124263268, 1.2301316230743653, 1.2324545223720091, 1.235158278157019, 1.2382408180816689, 1.2416980833655862, 1.2455240083702095, 1.2497105259359695, 1.254247597797588, 1.2591232693418848, 1.2643237484620922, 1.2698335090243242, 1.2756354200391171, 1.2817109015340837, 1.288040107031686, 1.2946021304675996, 1.3013752327466444, 1.3083370806025747, 1.3154649886965162, 1.3227361554066006, 1.3301278835933876, 1.3376177794879422, 1.3451839252609048, 1.352805023299647, 1.3604605123690754, 1.368130657450577, 1.3757966160912154, 1.383440484604835, 1.391045327562789, 1.3985951938207404, 1.4060751219657575, 1.4134711376260929, 1.4207702446313069, 1.4279604115824283, 1.4350305550155174, 1.4419705200260993, 1.4487710589679526, 1.4554238086429638, 1.4619212662534018, 1.4682567642847828, 1.47442444441981, 1.4804192305431025 ], [ 1.2377755242218513, 1.2370508956029722, 1.2366442302720344, 1.2365662131871962, 1.2368265668404266, 1.2374339060583102, 1.2383955931382908, 1.2397175968983856, 1.241404359693534, 1.2434586767167168, 1.2458815918595878, 1.2486723139823594, 1.2518281566216936, 1.2553445030291472, 1.2592147971643435, 1.2634305601342712, 1.2679814308517174, 1.2728552295704398, 1.278038043438369, 1.2835143340459774, 1.2892670676828466, 1.2952778691438978, 1.3015271990870017, 1.307994553116841, 1.3146586783355272, 1.3214978007180533, 1.32848985501623, 1.3356127084019416, 1.3428443697887489, 1.3501631784522934, 1.3575479677642492, 1.364978202113251, 1.3724340870711902, 1.3798966543827538, 1.3873478243545796, 1.3947704487412227, 1.402148337359551, 1.4094662715241748, 1.4167100070862002, 1.4238662694609179, 1.4309227426097302, 1.437868053538307, 1.4446917535114725, 1.4513842968770874, 1.4579370181389975, 1.4643421077211793, 1.4705925867151124, 1.476682280794234, 1.482605793405264, 1.4883584782998098 ], [ 1.2498643255533919, 1.2493258354079149, 1.249098405208812, 1.2491919924317245, 1.2496155766194903, 1.2503770188624168, 1.251482922564826, 1.2529384991267196, 1.25474744261197, 1.2569118176984402, 1.2594319651136097, 1.2623064282800422, 1.2655319040169173, 1.2691032189434226, 1.2730133318926846, 1.2772533614324977, 1.2818126367896638, 1.286678770288598, 1.2918377498651912, 1.2972740510808367, 1.3029707689032834, 1.3089097698260617, 1.3150718642856472, 1.321436997757627, 1.327984456725605, 1.3346930835506476, 1.3415414927674618, 1.3485082808938642, 1.3555722225030349, 1.3627124468178546, 1.3699085910436795, 1.3771409286672887, 1.3843904727237402, 1.391639055406858, 1.398869386321433, 1.4060650921801385, 1.4132107409083692, 1.4202918530295956, 1.4272949029494932, 1.4342073124139116, 1.4410174380407519, 1.4477145544569698, 1.4542888342356455, 1.460731325534868, 1.46703392809701, 1.473189368072128, 1.4791911719782174, 1.4850336400005575, 1.4907118187534567, 1.496221473576325 ], [ 1.262057315926013, 1.261704700641577, 1.2616559628969994, 1.2619203133896824, 1.2625059703835888, 1.2634200243378129, 1.264668304800132, 1.266255253220476, 1.2681838057428692, 1.2704552902120227, 1.273069341490701, 1.2760238386573195, 1.2793148667319911, 1.282936704338057, 1.2868818373250863, 1.2911409971137926, 1.295703221656883, 1.300555936651982, 1.305685055034338, 1.3110750936257471, 1.3167093067072912, 1.3225698367180208, 1.3286378818718585, 1.3348938791680458, 1.3413176993716776, 1.3478888486489984, 1.3545866702478628, 1.3613905392671701, 1.3682800441781102, 1.375235150102464, 1.3822363405646896, 1.3892647361787027, 1.396302190268008, 1.4033313626168165, 1.41033577337047, 1.4172998395701488, 1.4242088969787212, 1.431049209805067, 1.437807970734572, 1.4444732933872317, 1.4510341990010123, 1.457480598810956, 1.4638032732903927, 1.4699938491496158, 1.476044774758623, 1.4819492944729262, 1.4877014221943783, 1.493295914387259, 1.4987282426887945, 1.503994566198311 ], [ 1.2743246394022982, 1.2741567934488915, 1.2742853710233877, 1.2747188214187322, 1.275464588500993, 1.2765289809553262, 1.27791704578541, 1.27963244872014, 1.2816773655395486, 1.2840523884595925, 1.2867564515277652, 1.289786778415421, 1.293138855042042, 1.296806428207508, 1.3007815300088885, 1.3050545265263864, 1.3096141883469998, 1.3144477801673318, 1.31954116703083, 1.3248789355454929, 1.3304445293176443, 1.336220398353768, 1.3421881619554443, 1.3483287835883488, 1.3546227546337823, 1.3610502823573318, 1.3675914763760635, 1.374226527669942, 1.3809358747649534, 1.387700352892409, 1.3945013233930774, 1.4013207821102183, 1.4081414468089615, 1.414946824672342, 1.4217212616267902, 1.428449975663971, 1.4351190764948156, 1.4417155738537588, 1.448227376620681, 1.454643284698005, 1.4609529753079782, 1.4671469850951535, 1.473216689150047, 1.4791542778270237, 1.4849527320187357, 1.490605797374342, 1.4961079578074448, 1.5014544085305352, 1.506641028771421, 1.5116643542689998 ], [ 1.2866360237309535, 1.286650984152233, 1.286954651074976, 1.2875547027019154, 1.2884578008621919, 1.2896694673325386, 1.2911939643910326, 1.293034183226792, 1.2951915441359059, 1.297665912509993, 1.3004555343909452, 1.303556994766262, 1.306965200815588, 1.3106733910602524, 1.3146731699764878, 1.318954566337565, 1.323506112605465, 1.3283149423005407, 1.3333669025002761, 1.338646679317161, 1.3441379350477147, 1.3498234562434634, 1.3556853118914765, 1.3617050201294498, 1.3678637206994664, 1.3741423491153546, 1.3805218077213253, 1.386983128696725, 1.3935076246047715, 1.400077023094478, 1.4066735835906763, 1.4132801950219052, 1.4198804546933848, 1.4264587292397406, 1.4330001991723476, 1.4394908888871718, 1.4459176841537038, 1.4522683391088365, 1.4585314746705018, 1.4646965701051746, 1.470753949262508, 1.4766947627555913, 1.4825109671349583, 1.4881953018908862, 1.4937412649306627, 1.4991430870164397, 1.5043957055179038, 1.5094947377292236, 1.514436453920084, 1.5192177502318807 ], [ 1.2989610601239638, 1.2991560094439012, 1.2996316958040643, 1.3003950217719071, 1.301451865149587, 1.3028069618028693, 1.3044637936723462, 1.3064244855295353, 1.3086897142923704, 1.311258634739058, 1.3141288251834076, 1.3172962560524912, 1.3207552833420138, 1.3244986676862982, 1.3285176184173892, 1.3328018607122412, 1.3373397229710875, 1.3421182411216905, 1.3471232766670298, 1.3523396458791979, 1.3577512583024887, 1.3633412632995658, 1.3690922034569977, 1.374986173183894, 1.3810049799758926, 1.3871303049385755, 1.3933438586210518, 1.3996275281952175, 1.405963512514007, 1.4123344424341193, 1.4187234847880186, 1.4251144293640292, 1.4314917590918816, 1.4378407042840449, 1.444147282244296, 1.4503983238377778, 1.4565814887499697, 1.4626852711748188, 1.4686989975951161, 1.474612818180277, 1.480417693151437, 1.48610537527211, 1.4916683894300586, 1.4971000100937115, 1.5023942372614867, 1.5075457713791285, 1.5125499875800035, 1.5174029095053947, 1.5221011828856925, 1.5266420490056345 ], [ 1.3112694851816766, 1.3116407722177887, 1.312284587669937, 1.3132070591773646, 1.314413284228074, 1.315907219886589, 1.3176915786052397, 1.3197677335901463, 1.3221356373891258, 1.3247937573422206, 1.3277390312214248, 1.3309668457489046, 1.3344710397282444, 1.3382439323200377, 1.3422763756777305, 1.3465578299216752, 1.3510764574785084, 1.3558192333169827, 1.3607720676363484, 1.3659199380220155, 1.3712470287454273, 1.3767368754462515, 1.3823725136456544, 1.3881366293215527, 1.3940117092622115, 1.3999801883725496, 1.4060245908045281, 1.4121276618632992, 1.4182724880939546, 1.424442603654419, 1.430622081874643, 1.4367956116591545, 1.4429485590327218, 1.4490670146249438, 1.4551378282382532, 1.4611486318603464, 1.4670878525863247, 1.47294471692987, 1.4787092479477963, 1.4843722564981565, 1.4899253278156177, 1.4953608044349114, 1.5006717663357023, 1.505852009030036, 1.510896020172331, 1.515798955147214, 1.5205566119829803, 1.525165405849386, 1.5296223433275031, 1.5339249965836124 ], [ 1.3235314568590746, 1.3240746340977014, 1.324881908419552, 1.32595863850417, 1.3273091508705264, 1.3289366368383944, 1.3308430564075717, 1.333029052406292, 1.3354938784007826, 1.338235343782128, 1.341249779101141, 1.3445320240766223, 1.3480754397693617, 1.351871945258054, 1.3559120778978815, 1.3601850750561868, 1.364678974286216, 1.3693807283681023, 1.3742763315793352, 1.3793509538927862, 1.3845890803593586, 1.3899746534732755, 1.3954912166368472, 1.4011220568616092, 1.406850344641826, 1.4126592686991275, 1.4185321632100225, 1.424452625292452, 1.4304046209386454, 1.4363725781484136, 1.442341466630497, 1.4482968640084026, 1.4542250089398099, 1.4601128419164682, 1.46594803476013, 1.4717190099825583, 1.477414951249888, 1.4830258062003405, 1.488542282821585, 1.4939558405154219, 1.4992586768717115, 1.5044437110537296, 1.5095045645708611, 1.514435540089922, 1.5192315988186476, 1.5238883368883511, 1.5284019610690482, 1.5327692640713004, 1.53698759962386, 1.5410548574645782 ] ], "zauto": true, "zmax": 1.5410548574645782, "zmin": -1.5410548574645782 }, { "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.11873293940133132, 0.1166674349282973, 0.11460230632252744, 0.11253951786511938, 0.11048131131876698, 0.10843025397375505, 0.10638928652009154, 0.10436176896506448, 0.10235152250141293, 0.10036286492685353, 0.0984006369419052, 0.0964702164385598, 0.09457751777544321, 0.09272897306340647, 0.09093149271472818, 0.08919240299982976, 0.08751935916409681, 0.08592023382627428, 0.08440298191934514, 0.08297548530601317, 0.08164538229718106, 0.08041988943848229, 0.0793056248456957, 0.07830844375047132, 0.07743329744156818, 0.07668412619039809, 0.07606379490070649, 0.07557407718024906, 0.0752156895727002, 0.07498837327857034, 0.07489101641734325, 0.07492180632571079, 0.0750783990221561, 0.07535809206752961, 0.0757579876444124, 0.07627513457199839, 0.07690664081221589, 0.07764975137330554, 0.078501889947756, 0.07946066576569528, 0.0805238497355595, 0.08168932582443285, 0.08295502474635075, 0.0843188474079862, 0.08577858529875966, 0.08733184423824257, 0.0889759767587953, 0.09070802706020414, 0.09252469106875892, 0.09442229278785332 ], [ 0.11658213118114073, 0.11447416124444093, 0.11236578561772252, 0.11025879273629019, 0.10815525171781595, 0.10605756763969466, 0.10396853768702846, 0.1018914063185162, 0.09982991722273317, 0.09778835945668345, 0.09577160479068382, 0.09378513295728234, 0.09183504125703366, 0.08992803486456225, 0.08807139427216727, 0.08627291668443827, 0.08454082892023779, 0.08288367056344018, 0.08131014777950753, 0.07982896037627557, 0.07844860724766999, 0.07717717810655879, 0.07602214208005872, 0.07499014590126941, 0.07408683563220358, 0.07331671567893444, 0.07268305704476426, 0.0721878632918003, 0.07183189783634904, 0.07161477057424584, 0.0715350762041869, 0.07159057181529363, 0.07177837801778753, 0.07209518653107773, 0.07253745776459102, 0.0731015942727604, 0.07378407954616063, 0.07458157581995035, 0.07549097885895106, 0.07650943153938866, 0.07763430116168236, 0.07886312762315743, 0.08019355081595506, 0.08162322595978716, 0.08314973516820395, 0.08477050255660548, 0.0864827188214586, 0.08828327963834612, 0.09016874060750472, 0.09213528995495515 ], [ 0.11444322062517732, 0.11229460028514748, 0.11014487845721205, 0.10799564775577226, 0.10584878111203047, 0.10370649446164219, 0.10157141151418236, 0.09944662871434054, 0.09733577807210439, 0.09524308508217096, 0.09317341848683779, 0.09113232818712, 0.08912606721369483, 0.08716159338929562, 0.08524654622556212, 0.08338919479777743, 0.08159835294475104, 0.07988325926616112, 0.07825342113584555, 0.07671842436637301, 0.07528771320498844, 0.07397034883691282, 0.07277475817699444, 0.07170848793883007, 0.07077798116077859, 0.06998839391310199, 0.06934346833000106, 0.06884547423906015, 0.06849522576686012, 0.06829217210395822, 0.06823455417399187, 0.06831961244036515, 0.06854382650931562, 0.06890316516878, 0.06939332615442023, 0.07000994789820889, 0.07074878010008989, 0.07160580533860325, 0.0725773093142383, 0.07365990207762106, 0.07485049633365419, 0.07614625145043125, 0.07754449313586001, 0.07904261899958047, 0.08063799959317428, 0.08232788325234845, 0.08410931138898092, 0.0859790490189614, 0.08793353345172626, 0.0899688423567601 ], [ 0.11231843978138484, 0.11013115502485804, 0.1079421875335198, 0.10575291578714938, 0.10356499421761689, 0.10138042336766001, 0.09920162350080233, 0.09703150977448517, 0.09487356660348972, 0.09273191831130058, 0.09061139260321702, 0.0885175728164946, 0.08645683434506596, 0.08443636015603476, 0.08246412999539207, 0.08054887783579208, 0.07870001249451311, 0.07692749731112987, 0.07524168648868348, 0.07365311829736866, 0.07217226885093321, 0.07080927446730235, 0.06957363536752662, 0.06847391804877889, 0.06751747726414875, 0.06671022023420532, 0.06605643469857181, 0.06555869826370221, 0.06521787939110908, 0.06503323116115196, 0.06500256906897096, 0.06512251523370924, 0.06538878502434416, 0.06579648916917794, 0.06634042512038446, 0.06701533528074749, 0.06781611567243914, 0.06873796556083392, 0.06977647535823896, 0.07092765601126003, 0.07218791754453972, 0.07355400732396969, 0.07502291998004125, 0.0765917910111998, 0.07825778515729852, 0.08001798900332699, 0.08186931523722069, 0.08380842379932878, 0.08583166303352394, 0.08793503203642618 ], [ 0.11020991739961111, 0.1079861124240677, 0.10576018897561304, 0.10353329542781234, 0.10130684736934117, 0.09908260516594287, 0.09686275648589876, 0.0946500019457206, 0.09244764150387337, 0.09025965863691265, 0.08809079867653373, 0.08594663697915426, 0.08383363186845834, 0.08175915658619992, 0.07973150389022056, 0.0777598565759462, 0.07585421724065243, 0.07402529127637707, 0.07228431861371855, 0.07064285237982011, 0.06911248653497144, 0.06770453969245256, 0.06642970840188409, 0.06529770951317754, 0.06431693678499448, 0.06349416034896478, 0.06283429770275487, 0.062340280715638914, 0.062013034640951537, 0.06185157332940449, 0.06185320164967472, 0.06201380395668504, 0.06232818853853582, 0.06279045376757979, 0.06339434250436266, 0.0641335564075546, 0.06500200972603447, 0.0659940112003557, 0.0671043713827616, 0.06832843994535524, 0.06966208283773864, 0.07110161236542618, 0.07264368457517614, 0.07428517810483201, 0.07602306729361036, 0.07785430025552169, 0.07977569014803444, 0.08178382531184697, 0.08387500153896632, 0.08604517760196514 ], [ 0.10811966468399488, 0.10586162464600866, 0.10360120854501345, 0.10133932172570499, 0.09907712334710468, 0.09681611114554874, 0.09455821279578645, 0.09230588211424179, 0.09006219778729273, 0.08783096166235191, 0.08561679290381813, 0.08342521348909138, 0.08126271961567164, 0.07913683264598455, 0.0770561223060377, 0.07503019410228604, 0.07306963251997593, 0.07118589178140136, 0.06939112710883209, 0.0676979619230321, 0.06611919054139792, 0.0646674218793011, 0.06335467722788991, 0.06219196369908783, 0.06118885311080425, 0.06035310212849528, 0.05969035139928075, 0.059203937631757, 0.058894842587736626, 0.058761787814184265, 0.058801466240766105, 0.05900888499898765, 0.0593777813555662, 0.059901067721439716, 0.06057126280403917, 0.06138087297201644, 0.06232269860275753, 0.06339005212257025, 0.06457688555254582, 0.06587783429501147, 0.06728819005555892, 0.06880381921434822, 0.07042104402796909, 0.07213650331167426, 0.07394700729140544, 0.07584939863518926, 0.07784042869002278, 0.07991665498251349, 0.08207436331657, 0.08430951546765696 ], [ 0.10604956259095033, 0.10375969144317604, 0.10146739847473427, 0.09917333683336141, 0.09687839522555551, 0.09458378954576964, 0.09229116283441735, 0.09000269193701504, 0.08772119865655177, 0.08545026251078605, 0.08319433140845661, 0.08095882562855998, 0.07875022942128757, 0.07657616336456824, 0.07444542936093151, 0.07236801895804813, 0.0703550747188123, 0.06841879395655209, 0.06657226471018622, 0.06482922588807526, 0.0632037476125742, 0.06170983438546254, 0.06036096284435934, 0.05916957701794829, 0.058146575642909995, 0.05730083587736852, 0.0566388226687068, 0.056164330401645514, 0.0558783919304532, 0.05577937065565629, 0.055863227408141994, 0.056123930673444435, 0.05655396125550754, 0.05714485426679071, 0.057887723080236084, 0.058773719773588855, 0.05979440127956527, 0.06094198631669591, 0.06220950235559674, 0.06359083271017087, 0.06508068081110395, 0.06667447210949398, 0.0683682145851703, 0.07015833733055758, 0.07204152391528419, 0.0740145538349415, 0.07607416177781873, 0.07821692103569926, 0.080439154354458, 0.08273687299305489 ], [ 0.10400135142132924, 0.10168214457164242, 0.09936071592001976, 0.09703746167575954, 0.09471299042134197, 0.09238822114793094, 0.09006449141779432, 0.08774367419019997, 0.08542830126282014, 0.08312169058388862, 0.08082807385341853, 0.0785527198243625, 0.07630204751104049, 0.07408372210200219, 0.07190672478100635, 0.0697813859659697, 0.06771936986147611, 0.06573359700442424, 0.06383809116210239, 0.06204773820827779, 0.060377948291558126, 0.05884421954636344, 0.05746161228321349, 0.056244156760179964, 0.05520423374602084, 0.05435198207043738, 0.05369479691377971, 0.05323698228509902, 0.0529796081846488, 0.05292059793660372, 0.05305503874468072, 0.05337567622453157, 0.05387352934554754, 0.05453855111709676, 0.05536026347147718, 0.05632830914289435, 0.057432883715017057, 0.05866503211481198, 0.060016811791530816, 0.06148133769727864, 0.0630527317092976, 0.06472600207608849, 0.06649687802909889, 0.0683616220823161, 0.07031683873950252, 0.072359294075866, 0.07448575645367488, 0.0766928647823662, 0.07897702742321455, 0.08133435215361248 ], [ 0.10197662358223482, 0.099630635258123, 0.0972829042060505, 0.09493356998625398, 0.0925829564650974, 0.0902316756862183, 0.08788074370437132, 0.08553170711205384, 0.08318677841445167, 0.08084897771531045, 0.07852227732648624, 0.07621174486075236, 0.07392367906081777, 0.07166573101317836, 0.06944700147439145, 0.06727810283431924, 0.0651711718928634, 0.06313981743575686, 0.06119898510336016, 0.05936472210149631, 0.05765382706166383, 0.056083377155208086, 0.05467013655411615, 0.053429867830751356, 0.05237658954491299, 0.05152184534727686, 0.050874066370433915, 0.05043811247171495, 0.050215063824892166, 0.05020230212265638, 0.05039387642985845, 0.050781103750921194, 0.05135332066406506, 0.05209868787976358, 0.05300495543546096, 0.05406011740974974, 0.05525291342701862, 0.05657316214161812, 0.05801193425181682, 0.059561587378006216, 0.06121569267082595, 0.06296888485752741, 0.06481666546661587, 0.06675518484271628, 0.06878102349881153, 0.07089098815513525, 0.07308193296096029, 0.0753506121435783, 0.0776935667949451, 0.08010704572107899 ], [ 0.09997682050430076, 0.0976066258939291, 0.09523547825673477, 0.09286326632605298, 0.0904900303655882, 0.08811607121360511, 0.0857420731355697, 0.0833692394296345, 0.0809994391779033, 0.07863536286668432, 0.0762806837640645, 0.07394022088026389, 0.07162009797013542, 0.06932789128599474, 0.06707275657990151, 0.06486552315695772, 0.06271873965752302, 0.0606466529402461, 0.0586650984880491, 0.056791279133618894, 0.055043410090148466, 0.05344021423850508, 0.05200026442701957, 0.050741190501151806, 0.04967879713135954, 0.0488261699901855, 0.0481928741563433, 0.04778435903794225, 0.04760166951760114, 0.047641521354686495, 0.04789673839135369, 0.04835698658341237, 0.04900969369580752, 0.04984102548372417, 0.05083680018119608, 0.05198325456653017, 0.05326761424097899, 0.05467845713168602, 0.056205886290340665, 0.057841544158644, 0.059578507073662794, 0.06141109863882632, 0.0633346564357642, 0.06534528052817888, 0.06743958571403845, 0.06961447331608986, 0.07186693285775765, 0.07419387940390373, 0.07659202867844557, 0.07905780926270253 ], [ 0.09800323478089308, 0.09561138724532701, 0.09321971574898576, 0.09082786992190839, 0.08843561372875677, 0.0860429389529532, 0.08365019432159312, 0.0812582294417088, 0.07886855220023484, 0.07648349765120399, 0.0741064056198005, 0.07174180321774196, 0.06939558708799719, 0.06707519835698365, 0.06478978083697756, 0.06255030987535493, 0.06036967534946954, 0.058262697790945804, 0.05624605196119518, 0.05433806841317326, 0.05255838246302185, 0.050927404234274026, 0.04946559628781654, 0.04819256963936181, 0.04712604513419157, 0.046280770747267684, 0.04566752542707674, 0.04529236055324401, 0.045156215847020786, 0.04525499250056328, 0.04558008348058886, 0.04611927456820471, 0.046857867587144116, 0.04777985650231154, 0.048869007156507, 0.05010973784697108, 0.05148775171768748, 0.052990418137400484, 0.05460693164477559, 0.05632829323400445, 0.05814716307184942, 0.06005763053688022, 0.06205494048528201, 0.06413520643331456, 0.06629513336725161, 0.06853176583588169, 0.0708422710782132, 0.07322376219147751, 0.07567316266004884, 0.07818711082488917 ], [ 0.09605701863376379, 0.09364600253479152, 0.09123665563768335, 0.08882840630547935, 0.08642075600824464, 0.08401339646479526, 0.08160634422693433, 0.07920009210618512, 0.07679577636509788, 0.07439535802055035, 0.07200181587637006, 0.06961934792999702, 0.06725357646022545, 0.06491175023944872, 0.06260293472776446, 0.06033817758672792, 0.05813063222343172, 0.0559956163154884, 0.05395057569828888, 0.05201491759892378, 0.050209673017010945, 0.04855694951163996, 0.04707914749463551, 0.045797940302539066, 0.04473306331167801, 0.04390101613381348, 0.04331384038781048, 0.04297817036429021, 0.04289474109922364, 0.043058467853393685, 0.04345909792743097, 0.044082317757034695, 0.044911116905373, 0.04592718946157452, 0.04711218844318947, 0.048448716089076714, 0.049921004506974884, 0.05151529769053271, 0.05321998035200952, 0.05502551336750537, 0.056924235994362256, 0.05891008768996765, 0.06097829203316355, 0.06312503473436863, 0.06534715836539969, 0.0676418886866305, 0.07000660128697579, 0.0724386324945461, 0.07493513494382795, 0.07749297560133857 ], [ 0.09413919979268671, 0.09171137974639629, 0.0892871057175331, 0.08686560879037596, 0.08444614836143613, 0.08202813212523345, 0.07961125526360797, 0.07719565846434485, 0.07478210396026329, 0.07237216826780106, 0.06996844965513897, 0.06757478748857097, 0.06519648935201204, 0.06284056001043171, 0.060515923633784025, 0.058233626898397076, 0.05600700530863849, 0.05385178810039069, 0.051786108492623086, 0.04983037667225945, 0.0480069648959948, 0.04633965164142538, 0.04485278129968683, 0.043570125213881816, 0.042513484515338, 0.04170115244505181, 0.04114643610577796, 0.04085649184591496, 0.04083171806204884, 0.04106585678113758, 0.04154680215281346, 0.04225795579796466, 0.04317986629178057, 0.04429187352944178, 0.04557353684393661, 0.047005720313143116, 0.04857130058094064, 0.05025552852107596, 0.0520461110209503, 0.05393308916646951, 0.05590858379032295, 0.05796646703430214, 0.060102004696762225, 0.06231150146594486, 0.0645919706885223, 0.06694084216193621, 0.06935571525898163, 0.07183416010531703, 0.07437356619345822, 0.07697103546694077 ], [ 0.0922507057941892, 0.08980827342887066, 0.08737166081344455, 0.08493993175779292, 0.08251213053716697, 0.08008740388931519, 0.07766514393238963, 0.0752451518470701, 0.07282782177376253, 0.07041434392936424, 0.0680069253901355, 0.06560902621825501, 0.06322560747516086, 0.06086338593558704, 0.058531087671984415, 0.05623968869855785, 0.05400262504830079, 0.051835946526826195, 0.049758377729519326, 0.047791237275572974, 0.04595815375146047, 0.044284509406114746, 0.04279654856894273, 0.04152011827522547, 0.040479073542307245, 0.03969347879427356, 0.03917784874599867, 0.03893975102538074, 0.03897908504980653, 0.03928823013831049, 0.0398530509762426, 0.040654541907014265, 0.0416707679900162, 0.042878756861809024, 0.04425608617290024, 0.04578203895762165, 0.047438312038583653, 0.04920933525347475, 0.05108229123231766, 0.05304692843776295, 0.055095247782333746, 0.057221125459421436, 0.05941991738245898, 0.06168807620712872, 0.06402280078214148, 0.06642172964597226, 0.06888268423400151, 0.07140346320267182, 0.07398168627187729, 0.07661468392353858 ], [ 0.09039239754892707, 0.08793731710273296, 0.08549073301025707, 0.08305157752589191, 0.08061871301041308, 0.07819105509202538, 0.07576771842422178, 0.07334818509166394, 0.07093249535981683, 0.06852146008131137, 0.06611689360797404, 0.06372186541191831, 0.06134096762752913, 0.05898059413316526, 0.05664922422121839, 0.05435769983350801, 0.05211947909101965, 0.04995083967134723, 0.04787099290261567, 0.04590205341237583, 0.04406879177637108, 0.042398084252505505, 0.04091797475846887, 0.03965629504212292, 0.03863886483156416, 0.03788741785035355, 0.03741754646976625, 0.0372370660136004, 0.03734519334697027, 0.03773277473707123, 0.038383529656598595, 0.039276016236693106, 0.040385884247245644, 0.041688001256755265, 0.043158170565414995, 0.044774323443234974, 0.04651719950522693, 0.04837060385813807, 0.050321354621204475, 0.05235902814676199, 0.054475589099889705, 0.05666496974397895, 0.05892264275871783, 0.061245216349930104, 0.06363006908248922, 0.0660750339028501, 0.06857813529733188, 0.07113737972131481, 0.07375059681882691, 0.07641532719915713 ], [ 0.0885651127940903, 0.08609906711979302, 0.08364459504338388, 0.08120053824941904, 0.07876561620214169, 0.07633854960442754, 0.07391820809426813, 0.07150378242899375, 0.06909498108089769, 0.06669225084204136, 0.06429702066182075, 0.06191196742009136, 0.05954130149979747, 0.057191068589714525, 0.05486946169382546, 0.05258713322828469, 0.050357490499308044, 0.048196947740814206, 0.04612509325970061, 0.04416471078283191, 0.04234157151558427, 0.040683893556454465, 0.039221360668533906, 0.03798362285710535, 0.036998288562930845, 0.03628857027682735, 0.03587093175695689, 0.03575322510386525, 0.03593379721007695, 0.03640183707804875, 0.037138893777359974, 0.038121178600767615, 0.039322118411604635, 0.040714683257456745, 0.04227319367265404, 0.043974512687845704, 0.04579867207718518, 0.04772905367901634, 0.04975226110804514, 0.051857800417232154, 0.05403766057284256, 0.0562858574859967, 0.05859798341228574, 0.06097078749511387, 0.06340180215138327, 0.06588902256142982, 0.0684306415749827, 0.0710248390400314, 0.07366962235345606, 0.07636271358485777 ], [ 0.08676971973499092, 0.08429405847538515, 0.08183343757785522, 0.07938665384259104, 0.07695232809259131, 0.07452902803488266, 0.07211541697117978, 0.06971042880158854, 0.06731346945738599, 0.06492464461888471, 0.06254501328048588, 0.06017686632098718, 0.05782402854811039, 0.055492181416087846, 0.05318920129411365, 0.05092550407829861, 0.04871438007285349, 0.04657229209846495, 0.04451909330894692, 0.04257809839413002, 0.040775914053082354, 0.039141908077263955, 0.0377071857546442, 0.03650297239953729, 0.035558400590577105, 0.034897882760552675, 0.03453847791583527, 0.03448783228779274, 0.034743255846935155, 0.03529223007850998, 0.03611422217098832, 0.03718331551081789, 0.03847102704517547, 0.039948785949581345, 0.041589782061403895, 0.04337012231398378, 0.045269383548993174, 0.047270712473768586, 0.04936062534162002, 0.05152863281439821, 0.053766781371024516, 0.05606917243982189, 0.05843149755888595, 0.06085061198974312, 0.06332415873272013, 0.06585024814916392, 0.0684271940738893, 0.07105330450807117, 0.07372672316304017, 0.07644531695827965 ], [ 0.08500718078911955, 0.08252287264005224, 0.0800574406149049, 0.07760968635798249, 0.07517818088065137, 0.0727613858841625, 0.0703578025187377, 0.06796614821571637, 0.06558556192879718, 0.06321583787329357, 0.060857687623696324, 0.05851303012784182, 0.05618530864148193, 0.053879832466706176, 0.05160413917914892, 0.04936836895398501, 0.04718563547116134, 0.04507236610860109, 0.04304856590301903, 0.04113793375986213, 0.03936772661411203, 0.03776823433794691, 0.03637171206632595, 0.035210647166114835, 0.034315351490687186, 0.03371108276266356, 0.03341516789514028, 0.03343479765334378, 0.03376612547412183, 0.03439497053824932, 0.03529892900546919, 0.03645029702444865, 0.037819093041959115, 0.03937562566223634, 0.04109233479102555, 0.04294488415581456, 0.04491263085628878, 0.04697864711271178, 0.0491294581569307, 0.051354624138725206, 0.0536462551635424, 0.05599851671727304, 0.05840715981043815, 0.06086909493381133, 0.06338201925331223, 0.06594410048253573, 0.06855371716769319, 0.07120925279896916, 0.07390893968834313, 0.07665074762770242 ], [ 0.0832786258784726, 0.08078621696438373, 0.07831685869516414, 0.0758694106095761, 0.07344244659777754, 0.07103437368397417, 0.06864357980552427, 0.06626861142438828, 0.06390838150016542, 0.06156240812394097, 0.05923108393114903, 0.05691597619153126, 0.05462015703015088, 0.052348562234564675, 0.050108374994837335, 0.04790942682371961, 0.045764600487238134, 0.04369020720543016, 0.041706290479471574, 0.039836779925826384, 0.038109381191108224, 0.03655504957986923, 0.03520687470478387, 0.03409823616745998, 0.03326021875580509, 0.032718519476424006, 0.03249038368767165, 0.03258231968868503, 0.03298927485149451, 0.03369555489132429, 0.034677207561216644, 0.03590517689990124, 0.037348455725378496, 0.03897667780742431, 0.040761909671206034, 0.04267966114926558, 0.04470927171650166, 0.04683386454259834, 0.049040037332402184, 0.05131741629113132, 0.05365815810152031, 0.05605645255787846, 0.05850805622595747, 0.06100987319640338, 0.06355959022690641, 0.06615536830898959, 0.06879558954863153, 0.07147865633693955, 0.07420283860267082, 0.07696616421021947 ], [ 0.0815854341726279, 0.07908501462295046, 0.07661211892706492, 0.07416572012079842, 0.0717444507884615, 0.06934671823013552, 0.06697085015030999, 0.06461527191516783, 0.06227871609984947, 0.05996046481713732, 0.057660625166013404, 0.055380437975635376, 0.053122619657494895, 0.05089173606278258, 0.04869460517416148, 0.04654072127813734, 0.04444268549971281, 0.04241661418159645, 0.04048247507714846, 0.03866426965048299, 0.036989938619736276, 0.035490825197554116, 0.03420050798205286, 0.03315285265743751, 0.03237927646712462, 0.031905491341497796, 0.03174832361437293, 0.031913422161954925, 0.03239456085589313, 0.03317477547186772, 0.03422897097316095, 0.035527227716862404, 0.03703800366871431, 0.038730691241348536, 0.04057732838381885, 0.042553519980956675, 0.04463874919524268, 0.04681627917681477, 0.04907281368936806, 0.051398038446284676, 0.05378412266126084, 0.05622522873046018, 0.05871705679644117, 0.06125643771543223, 0.06384098004605326, 0.06646877206970804, 0.06913813717537028, 0.07184743936123597, 0.07459493465239739, 0.0773786636615441 ], [ 0.07992932256592591, 0.07742050340251572, 0.0749439301644468, 0.07249874672313963, 0.07008370254920572, 0.06769726311241966, 0.06533775227548606, 0.06300352795878483, 0.06069319199407771, 0.058405834837893876, 0.0561413156682659, 0.053900578257639324, 0.051686002700666166, 0.04950179220012754, 0.04735439202990453, 0.04525293345327495, 0.04320968718456945, 0.04124049670560258, 0.03936513869272435, 0.03760752377850388, 0.03599560673112174, 0.0345608298815582, 0.03333690146713081, 0.03235775491658835, 0.031654696834815026, 0.03125304663726072, 0.0311689178061496, 0.03140699133569805, 0.03195997985397695, 0.032809962848736496, 0.033931150684103774, 0.0352932561673161, 0.03686467029322754, 0.03861493517532758, 0.04051635502134456, 0.04254483033501977, 0.04468010775138512, 0.046905646769673036, 0.04920826691265789, 0.0515776905855858, 0.054006055299228264, 0.05648743871907274, 0.05901742019521027, 0.061592690281589785, 0.06421071263622122, 0.06686943863283097, 0.06956707271297555, 0.07230188518607149, 0.07507206840916066, 0.07787563182464594 ], [ 0.07831243847621604, 0.07579434090328166, 0.07331340088626247, 0.07086899132829921, 0.06846003838295123, 0.06608512586770098, 0.06374263306556889, 0.061430907445635986, 0.05914847342697967, 0.05689427802726486, 0.05466797407343438, 0.05247024152686462, 0.05030314717762903, 0.04817054208561086, 0.046078493987977746, 0.044035747321060845, 0.042054194808952616, 0.0401493293743881, 0.03834062062094805, 0.03665172416236132, 0.03511038596846148, 0.03374785796620275, 0.0325976220070268, 0.03169327323461873, 0.03106559202495765, 0.030739145226822452, 0.030729105566704516, 0.03103915149888806, 0.03166111036510233, 0.03257645510889209, 0.03375914962280906, 0.03517900247849456, 0.03680475168541303, 0.03860641871497149, 0.04055681066157951, 0.0426322753519736, 0.04481290533074007, 0.047082386575854375, 0.04942764726720358, 0.05183841426850158, 0.05430674516908074, 0.05682657536505072, 0.05939330130473767, 0.06200340989990089, 0.06465415766569015, 0.06734329953297713, 0.07006886526486246, 0.07282898028181231, 0.07562172705594482, 0.07844504286928679 ], [ 0.0767374537794732, 0.07420871290392421, 0.07172216248274133, 0.06927746253312056, 0.0668737764611611, 0.0645098682286876, 0.06218423419061767, 0.059895271415115955, 0.057641483831893076, 0.055421727214821755, 0.05323549380152625, 0.051083237206718056, 0.04896673797498767, 0.046889509204078805, 0.04485723938947302, 0.04287826477854559, 0.040964054259902974, 0.039129673680377425, 0.03739417065999921, 0.035780783543836465, 0.034316831163060495, 0.03303309540593841, 0.031962495021387156, 0.03113791428781344, 0.030589242823114943, 0.03034000236625039, 0.030404271954362565, 0.030784758798970423, 0.03147261975506426, 0.032449071620325176, 0.03368824354267744, 0.035160441218834465, 0.03683509152969602, 0.03868295577243123, 0.04067752228815423, 0.04279569360370202, 0.045017959873887806, 0.0473282444938817, 0.04971356699705936, 0.052163622838498416, 0.05467034237631395, 0.057227465067526205, 0.059830147992499576, 0.06247461763130487, 0.06515786795068279, 0.06787740459064322, 0.07063103314603249, 0.07341668855270832, 0.0762323020391123, 0.0790757018012005 ], [ 0.07520765585012179, 0.07266644073690692, 0.07017249371026774, 0.06772581876302626, 0.06532587695125092, 0.06297167505799534, 0.060661890057611356, 0.05839503150475031, 0.05616964343149603, 0.05398454692043413, 0.0518391242543573, 0.04973364535031869, 0.04766963683570538, 0.04565029314403781, 0.04368092657455658, 0.04176944806984664, 0.03992686060912253, 0.038167730072592436, 0.03651057148424255, 0.034978050185140476, 0.03359685077668413, 0.03239702505331803, 0.03141062414369983, 0.030669497294367045, 0.030202343685054655, 0.030031422348760314, 0.030169636628403957, 0.030618802322927113, 0.03136963201811222, 0.032403407383426994, 0.033694773046892175, 0.03521485537959223, 0.03693403355907929, 0.03882400094919168, 0.040859052443005986, 0.043016715259698676, 0.04527790516945406, 0.04762678104110064, 0.05005043154287263, 0.05253848549337012, 0.05508270301874387, 0.057676580541586094, 0.06031498712788097, 0.0629938403724143, 0.06570982462364752, 0.06846015135789847, 0.07124235988177552, 0.07405415565786043, 0.07689328306674893, 0.07975742915852656 ], [ 0.07372703077940215, 0.07117108253464821, 0.06866744102888274, 0.06621650858363379, 0.06381810300652467, 0.061471536563720924, 0.05917573168551733, 0.05692937587179044, 0.054731117636686304, 0.05257980482005537, 0.05047476623620515, 0.04841613736561032, 0.046405230384435454, 0.04444494776509113, 0.0425402360842499, 0.040698571153888995, 0.038930455157891834, 0.03724988860744443, 0.03567475209541321, 0.034226994109978405, 0.032932475745737926, 0.03182028607243814, 0.030921344834907095, 0.0302661980187381, 0.029882122960151695, 0.0297899691315678, 0.030001439291867806, 0.03051756436655071, 0.031328825713260115, 0.03241684053345173, 0.03375704463066892, 0.03532162651085866, 0.037082105165828876, 0.03901123642795172, 0.041084201688423014, 0.04327919283244246, 0.04557756181737805, 0.04796369312213381, 0.05042472118755221, 0.052950176414277156, 0.05553161208761717, 0.05816224264025438, 0.060836609507593856, 0.06355028225457753, 0.06629959769547894, 0.06908143696285123, 0.0718930389755538, 0.07473184794452364, 0.07759539211792532, 0.08048119073511692 ], [ 0.07230033293540794, 0.06972702216505267, 0.06721092838552094, 0.06475290258793158, 0.062353175772234426, 0.06001142719170283, 0.05772689001926076, 0.05549849727215524, 0.053325070107079986, 0.05120554996874951, 0.04913927560218396, 0.04712630557645072, 0.04516778647823462, 0.04326636578665998, 0.04142664569369407, 0.039655668316427035, 0.0379634118055893, 0.036363258295408804, 0.03487236620722134, 0.033511840880654474, 0.032306554264363914, 0.0312844329435154, 0.030475046188618054, 0.029907424911728122, 0.029607256214393893, 0.029593891387465363, 0.029877845915325645, 0.03045947759665117, 0.03132921776279987, 0.03246922794877342, 0.033855933251545046, 0.0354627474770792, 0.03726244871770626, 0.03922893264032344, 0.04133830985178274, 0.04356945349723976, 0.045904149862796555, 0.04832699482356737, 0.050825146542599925, 0.0533880103212841, 0.056006903496092005, 0.058674728451073875, 0.06138566894440535, 0.0641349170889119, 0.06691843374827569, 0.06973274253839126, 0.07257475621604052, 0.07544163347771214, 0.07833066378357685, 0.0812391776046323 ], [ 0.07093313418479542, 0.06833953863881935, 0.0658078487930583, 0.06333940890713878, 0.06093491530407041, 0.058594473100893274, 0.056317690762743934, 0.05410381570607705, 0.0519519133466631, 0.049861091221996175, 0.047830769202048, 0.04586099631565714, 0.04395281413783671, 0.0421086654577075, 0.04033284408557012, 0.038631975614271605, 0.03701550761623701, 0.03549616869749348, 0.034090327112184085, 0.03281814178694036, 0.03170335823695519, 0.03077257666306743, 0.030053841298477584, 0.029574507632656073, 0.029358556156576277, 0.029423792870924528, 0.02977957778269306, 0.030425694437087526, 0.03135266152521294, 0.03254332811836864, 0.03397523276813598, 0.03562310764247464, 0.03746105072012246, 0.039464130927677386, 0.04160940096668057, 0.043876413913904073, 0.04624737984845825, 0.04870708991503831, 0.051242706765966886, 0.05384348990867803, 0.05650049961975147, 0.05920630533487957, 0.06195471278971466, 0.06474051701183643, 0.06755928404058621, 0.07040716185418512, 0.07328071965881382, 0.07617681397363728, 0.07909247955488173, 0.082024842990223 ], [ 0.06963184544000257, 0.06701484785581878, 0.06446412887722297, 0.06198156296624269, 0.059568357652753715, 0.0572250983256298, 0.05495183092840888, 0.05274818618006323, 0.05061354799997745, 0.048547267894278975, 0.04654892627414636, 0.044618641039148574, 0.042757423070499234, 0.040967576991159535, 0.03925314263111933, 0.037620366474325616, 0.03607818080134206, 0.03463864891584806, 0.03331730616890324, 0.03213328976755761, 0.031109113344259833, 0.030269923559620465, 0.029642106479701245, 0.029251225033824057, 0.029119475128694453, 0.029263094526619293, 0.02969032052635903, 0.030400435081560703, 0.03138413172070398, 0.03262502620248184, 0.03410182789230153, 0.03579062002237134, 0.03766683248602569, 0.039706705177302626, 0.04188822212480916, 0.0441916013646018, 0.046599460309058295, 0.04909676898841748, 0.051670679048570645, 0.054310289945845955, 0.05700639194788098, 0.059751209799336354, 0.06253816047579851, 0.0653616319380703, 0.06821678591976182, 0.07109938554946102, 0.07400564735866284, 0.07693211653521123, 0.07987556389921768, 0.08283290286385006 ], [ 0.06840370290341316, 0.06576010794567043, 0.06318675659832891, 0.06068608077004847, 0.058259836667615625, 0.05590913769161225, 0.05363452498271378, 0.05143607961974262, 0.04931357941359677, 0.04726670214565156, 0.045295276113308955, 0.043399578028084244, 0.0415806775035576, 0.039840826042173795, 0.03818388552738185, 0.03661578508465449, 0.03514498358776386, 0.03378289576807537, 0.03254421159045384, 0.031447003334399655, 0.030512481458563192, 0.029764248000340433, 0.029226934358789626, 0.028924227428201315, 0.02887648527495181, 0.02909836310955869, 0.029596995491663117, 0.030371200690296772, 0.03141188303643284, 0.032703444700911674, 0.03422576488024953, 0.03595625981008104, 0.037871663326167725, 0.039949355242326415, 0.04216822150862097, 0.04450911983381639, 0.046955054641635775, 0.049491159387736086, 0.052104563553448974, 0.05478419895476438, 0.05752058106142897, 0.0603055871960232, 0.06313224421219368, 0.06599453239423163, 0.06888720878080155, 0.07180565104896967, 0.07474572191463003, 0.07770365333826632, 0.08067594944409817, 0.08365930683683705 ], [ 0.06725671167817945, 0.06458337940377203, 0.06198376187565768, 0.059460864040470976, 0.057017017578615416, 0.054653902513096535, 0.05237260589501372, 0.0501737219072178, 0.04805749655178435, 0.046024018799449305, 0.04407345886423524, 0.04220635323674845, 0.040423935166069264, 0.038728507933769064, 0.037123855463929, 0.03561567884974657, 0.034212036007810635, 0.032923742665040376, 0.03176466531649868, 0.030751803391022525, 0.029905028296328594, 0.029246340722362936, 0.02879855203723112, 0.028583413922125715, 0.028619405957009056, 0.028919582733968052, 0.029489973685269767, 0.030328932259551224, 0.031427559661552806, 0.032771011026652495, 0.0343402846647028, 0.03611406977907083, 0.03807034374985162, 0.04018757231934277, 0.04244549940182371, 0.04482558945099425, 0.04731121134780204, 0.04988764834236416, 0.05254200134919987, 0.05526303371590256, 0.058040989361106264, 0.06086740419427735, 0.06373492259207225, 0.06663712549479411, 0.06956837348935552, 0.07252366634429804, 0.07549851935254479, 0.078488856192309, 0.08149091763303684, 0.08450118517666545 ], [ 0.06619954056526951, 0.06349353204528754, 0.06086414021757301, 0.05831494533917821, 0.05584886856322961, 0.05346818349550709, 0.05117456398713498, 0.048969172778131086, 0.046852794304178116, 0.04482601347937437, 0.04288944078930649, 0.04104398274777284, 0.039291155667927506, 0.03763343935363396, 0.03607466470968181, 0.03462042366883975, 0.03327847895535905, 0.03205913285653518, 0.03097548770330588, 0.030043499483438794, 0.029281700304960294, 0.028710464696273735, 0.028350744206734727, 0.028222312089932394, 0.028341731699276815, 0.02872042641372794, 0.0293632903631166, 0.030268171377570707, 0.03142630777465311, 0.032823528294350646, 0.03444185838360854, 0.03626116624693682, 0.03826058665558381, 0.040419599361018556, 0.04271875122288585, 0.045140075134553245, 0.0476672810006345, 0.05028579076774312, 0.052982675385928005, 0.055746535596145876, 0.058567354750669806, 0.06143634163833725, 0.06434577424581973, 0.06728885081314194, 0.07025955168822477, 0.0732525137539946, 0.07626291816459643, 0.07928639150269635, 0.08231892008316559, 0.08535677687635523 ], [ 0.06524136411808823, 0.0625000928361884, 0.059837711124076626, 0.05725836242652339, 0.054765556895992835, 0.052362174762353116, 0.05005050493041974, 0.047832323601767555, 0.04570901627479572, 0.043681744737683256, 0.0417516588837804, 0.03992015159657331, 0.038189153650106465, 0.03656146423321085, 0.03504111037637463, 0.033633723516261024, 0.03234691135366982, 0.031190585868828287, 0.030177183403461098, 0.029321683901595907, 0.028641314611579097, 0.02815482788289247, 0.027881295860132604, 0.027838479166578795, 0.02804098307759761, 0.028498551528353115, 0.02921488386652039, 0.03018724454313469, 0.031406909646018014, 0.032860264511539686, 0.03453023709966649, 0.036397754442603764, 0.03844300301491136, 0.04064639133164808, 0.04298920627474666, 0.04545400749049375, 0.048024822709266016, 0.0506872044778553, 0.05342819738884376, 0.05623625179206307, 0.05910110862161112, 0.06201367138289327, 0.06496587535826927, 0.067950560142238, 0.07096134910913829, 0.0739925378586457, 0.07703899272373252, 0.08009605982469771, 0.08315948476323799, 0.08622534278332789 ], [ 0.06439165155115138, 0.061613032199923534, 0.05891490640302975, 0.05630195409984816, 0.053778258639384784, 0.051347304389672124, 0.049012008539179384, 0.046774791963943484, 0.04463769242885465, 0.04260252137381486, 0.04067106338715316, 0.03884531551275937, 0.03712776197254433, 0.03552167853002675, 0.034031458732965744, 0.03266294997798025, 0.031423778404452284, 0.030323625859864114, 0.029374399269826112, 0.028590206835486166, 0.02798703775784741, 0.027582051127283933, 0.027392435159113927, 0.02743390720297231, 0.027719064249551294, 0.02825590346450548, 0.029046842920230673, 0.03008845491506903, 0.03137192290963989, 0.032884043734669494, 0.03460849975729344, 0.03652713830915838, 0.03862107849165245, 0.04087156345326947, 0.04326055222188325, 0.04577108787434302, 0.04838749382454863, 0.05109544825573448, 0.05388197764661389, 0.05673539980461468, 0.059645237597667794, 0.06260211751950426, 0.06559766224044744, 0.06862438295629263, 0.0716755751827744, 0.074745220263897, 0.07782789398221188, 0.08091868308645588, 0.08401311016181857, 0.08710706698813576 ], [ 0.06365990689202887, 0.06084249155876648, 0.058106488909754915, 0.05545707510480422, 0.05289887587828767, 0.05043596122338459, 0.04807187337005251, 0.0458096929088644, 0.04365214611243546, 0.041601754160589796, 0.03966102238799601, 0.037832665243994285, 0.036119860716797965, 0.034526526523002546, 0.03305760872712274, 0.03171937007815467, 0.030519657926708816, 0.02946811792590943, 0.02857629956453162, 0.027857577253826562, 0.02732679738731709, 0.026999574985584047, 0.026891220069328918, 0.027015375876856963, 0.027382571279773272, 0.027998972565559894, 0.028865609177206066, 0.029978230723549465, 0.031327777507126266, 0.03290129570023635, 0.03468306044353331, 0.03665569066596153, 0.03880111182891301, 0.041101303020731436, 0.043538825294871915, 0.04609716161258783, 0.04876091040065074, 0.05151587332941554, 0.054349070805753935, 0.057248710388648295, 0.06020412603019063, 0.06320570039691487, 0.0662447784853236, 0.06931357798907704, 0.07240510004851392, 0.07551304281418135, 0.07863171946290645, 0.08175598176474666, 0.08488114991471588, 0.08800294905352397 ], [ 0.06305537054256362, 0.06019846146063989, 0.05742320954250157, 0.0547352355999539, 0.05213966368759013, 0.04964111588044772, 0.04724373974550207, 0.044951273263734666, 0.042767149928985386, 0.040694644019138394, 0.03873705291744791, 0.036897910327104884, 0.03518122174750341, 0.033591711874632085, 0.03213507222265443, 0.03081819489728063, 0.0296493729125548, 0.028638436586572533, 0.027796779133383527, 0.027137206872600943, 0.026673541300561293, 0.02641991749101949, 0.026389779205597777, 0.026594663019408354, 0.027042962406266944, 0.0277389182619181, 0.028682053258837735, 0.029867154449586823, 0.03128476142791376, 0.032922002814357594, 0.03476358188936678, 0.03679273860909182, 0.03899207739299184, 0.04134421403184099, 0.04383224154938979, 0.0464400399711206, 0.049152463457188565, 0.05195543700605534, 0.05483598946179526, 0.05778224322348491, 0.06078337545106924, 0.06382956119101989, 0.0669119056739065, 0.07002237083171577, 0.07315369958302026, 0.07629934041675607, 0.07945337410352966, 0.08261044386301761, 0.08576568994199334, 0.08891468926446652 ], [ 0.06258669853793049, 0.05969042703764243, 0.05687541905089655, 0.054147680684447065, 0.051512780222822366, 0.048975845937961816, 0.04654159640932847, 0.044214407982576504, 0.041998421704817705, 0.03989768890644917, 0.03791635085642907, 0.03605884411963509, 0.03433012001171545, 0.0327358643237798, 0.03128270217549047, 0.029978371458734367, 0.02883184499230475, 0.027853374270386828, 0.02705441633141875, 0.02644739378886229, 0.026045236213346555, 0.02586067224098118, 0.02590529502717964, 0.026188501869577923, 0.026716482486853054, 0.027491458183013007, 0.028511329697811148, 0.029769787325716647, 0.03125681986785705, 0.03295947949408149, 0.03486274033715081, 0.036950318757098796, 0.03920537504235315, 0.041611065302712795, 0.04415094625909922, 0.046809253308285975, 0.04957107787580491, 0.05242246884741139, 0.055350478755066886, 0.05834317073206133, 0.06138959813599144, 0.06447976550366155, 0.06760457712150597, 0.07075577780203259, 0.07392588926912204, 0.07710814471665174, 0.0802964234981495, 0.08348518745064268, 0.08666941999878273, 0.08984456889475798 ], [ 0.062261641272844524, 0.05932700462901547, 0.05647266015041071, 0.053704936480503875, 0.05102978646242626, 0.04845279058852621, 0.045979193235233695, 0.04361397619067029, 0.0413619714214533, 0.039228011387463124, 0.037217110765901285, 0.03533466872879644, 0.0335866766629291, 0.03197991312231634, 0.03052210615241174, 0.029222042454933612, 0.02808960188269983, 0.027135692994619518, 0.026372060789874065, 0.02581093467739162, 0.025464491038933165, 0.025344129959675107, 0.02545961358033844, 0.025818173156745283, 0.026423736356372518, 0.027276425890875353, 0.028372424923684407, 0.02970421461084422, 0.03126110465191882, 0.033029931586014194, 0.03499579945288169, 0.03714276880773515, 0.039454441315465556, 0.04191442234894543, 0.04450666685567706, 0.04721572493398376, 0.050026906681472805, 0.05292638463274764, 0.05590124911652145, 0.05893952861859423, 0.06203018440016725, 0.06516308637908015, 0.0683289756024998, 0.0715194174110091, 0.07472674849692713, 0.07794402039328957, 0.08116494142079618, 0.08438381871511742, 0.08759550162408984, 0.09079532748124533 ], [ 0.06208674709401187, 0.05911559868718804, 0.05622327280193581, 0.05341635915601046, 0.05070113498405128, 0.04808357621993955, 0.045569402145199424, 0.043164157924172226, 0.040873336627441505, 0.03870253823964005, 0.03665765795908923, 0.03474509033977756, 0.03297193029469264, 0.03134614758577233, 0.02987670889980008, 0.02857362118492451, 0.02744787122855579, 0.026511238954639547, 0.025775965983482797, 0.025254269158543546, 0.024957705647959676, 0.024896425635612278, 0.025078387674568884, 0.025508646820399036, 0.02618883611485041, 0.02711693370565254, 0.028287346415763876, 0.029691270783789983, 0.03131724290069182, 0.03315177322088273, 0.035179977510547564, 0.03738614508028051, 0.03975421580348722, 0.04226816002829856, 0.0449122686779322, 0.047671366519349626, 0.05053096261045168, 0.05347735067536122, 0.05649767010811419, 0.059579936245253026, 0.06271304678683266, 0.06588676984937576, 0.06909171806291749, 0.07231931230552062, 0.07556173803517263, 0.07881189667461437, 0.08206335409082112, 0.08531028785991834, 0.0885474347038094, 0.09177003921534212 ], [ 0.062067116774292434, 0.059062109999556855, 0.056134049254884466, 0.05328972947267334, 0.050535696546145016, 0.04787826773932848, 0.0453235865109903, 0.04287771611854873, 0.04054677332528197, 0.03833709900132681, 0.0362554565008014, 0.03430924185097846, 0.032506682794133136, 0.030856997638750036, 0.029370480871223622, 0.028058481629812983, 0.02693324437944814, 0.026007589420082917, 0.025294425523456808, 0.02480610947053689, 0.02455369756570454, 0.0245461679116224, 0.02478971837357477, 0.02528724898033201, 0.026038109521939225, 0.027038138638648977, 0.02827996006972277, 0.029753458410549008, 0.031446343064781786, 0.03334472155893107, 0.035433629036973356, 0.03769748682147348, 0.04012048232912838, 0.0426868739793504, 0.04538122977759703, 0.048188609478934025, 0.051094699625716694, 0.05408590951853389, 0.05714943490654757, 0.06027329509058547, 0.06344634825353082, 0.06665828913640354, 0.0698996326172815, 0.07316168628300443, 0.07643651468205918, 0.07971689759013345, 0.08299628429764995, 0.08626874563221783, 0.0895289251568996, 0.09277199073373114 ], [ 0.062206231731358815, 0.059170723620344035, 0.056209973811532005, 0.053330935457585237, 0.050540375763551776, 0.04784490653936982, 0.04525105018806482, 0.042765345440946, 0.04039449393067726, 0.03814554380493056, 0.036026100033178694, 0.03404454316570211, 0.03221022977393865, 0.030533639756346993, 0.02902642967679748, 0.02770134931876927, 0.026571983248335748, 0.025652293466691303, 0.02495596603387283, 0.024495604119099214, 0.024281856163398202, 0.02432260564517914, 0.02462235790841431, 0.02518192605066696, 0.025998448628797816, 0.027065694783871753, 0.028374559777971986, 0.029913642020033174, 0.03166981442874599, 0.033628738634942715, 0.035775302416977135, 0.038093980915686575, 0.0405691310270997, 0.043185230003619776, 0.04592706772468549, 0.04877989985250818, 0.05172956726192906, 0.05476258596364006, 0.057866211095096654, 0.06102847822603413, 0.06423822504531675, 0.06748509635822901, 0.0707595351762946, 0.07405276250562443, 0.07735674823597766, 0.08066417530648004, 0.08396839908602756, 0.08726340366455722, 0.09054375651319387, 0.09380456274191024 ], [ 0.06250587191793577, 0.05944379741504869, 0.05645407449057331, 0.05354377817921194, 0.05071986039934269, 0.04798919107000857, 0.04535863555425003, 0.04283517263134165, 0.04042605384855793, 0.03813899994319906, 0.035982422950646506, 0.03396565379843637, 0.032099145192131535, 0.03039460951931757, 0.02886504316710993, 0.02752458499538756, 0.026388162128288383, 0.02547089637455725, 0.024787284324612715, 0.024350222515208964, 0.024170012562033553, 0.024253522185359606, 0.024603666215289567, 0.025219297152623672, 0.02609548461573031, 0.02722406844371561, 0.02859433195065383, 0.030193663563970113, 0.03200812929856928, 0.034022932153605676, 0.03622276882507702, 0.03859210730896346, 0.04111540827914605, 0.04377730676077486, 0.046562763911424596, 0.049457193891424625, 0.05244656811349017, 0.05551749806873819, 0.05865729776183803, 0.06185402703767879, 0.06509651743048725, 0.06837438245628302, 0.07167801444542343, 0.07499857006921992, 0.07832794667376128, 0.08165875142016038, 0.08498426506858968, 0.0882984020532825, 0.09159566829241911, 0.09487111797141168 ], [ 0.06296612948034484, 0.05988186065668514, 0.05686740060766872, 0.053929920802891586, 0.05107653257775905, 0.04831433885190272, 0.04565052275342807, 0.0430924771328624, 0.04064797550081317, 0.038325379568989515, 0.03613387110600545, 0.03408368625783196, 0.032186319220760574, 0.03045465019180211, 0.02890294190351495, 0.027546643567630032, 0.026401946959109635, 0.025485065044890343, 0.024811256057054986, 0.02439369288935675, 0.024242357782065172, 0.024363184695683094, 0.024757637030725976, 0.025422792941699177, 0.026351863461700323, 0.02753496310963807, 0.028959932660239628, 0.030613067732976226, 0.03247968825418797, 0.034544550177899126, 0.03679213489135925, 0.0392068580243285, 0.04177323073834615, 0.04447599401538882, 0.047300235948889664, 0.050231495340563155, 0.05325585159406085, 0.05635999984748018, 0.059531310452906196, 0.06275787256304866, 0.06602852231003144, 0.06933285666177852, 0.07266123445882347, 0.07600476637177478, 0.07935529560945322, 0.08270537118799623, 0.08604821547661658, 0.08937768759315297, 0.0926882440541283, 0.09597489790353989 ], [ 0.0635855132242912, 0.06048371867262978, 0.057449124065575036, 0.05448898168946221, 0.05161054726838029, 0.04882114202317163, 0.046128251772955264, 0.04353966669140724, 0.04106366179945578, 0.038709212787472046, 0.036486234019587, 0.03440581546307788, 0.032480423034487435, 0.03072401335521304, 0.02915200137461075, 0.027781012307658517, 0.02662835580670329, 0.025711191096485696, 0.025045415879470182, 0.024644405184947097, 0.024517819868201698, 0.024670745599891835, 0.025103365671864785, 0.02581121944239834, 0.02678592246326428, 0.028016114272563817, 0.029488398755833662, 0.03118812311845617, 0.03309994325843879, 0.03520819764743251, 0.03749714429592251, 0.03995111591116131, 0.042554633746669686, 0.045292503648644, 0.048149904602294784, 0.05111247204396409, 0.05416637440309866, 0.057298380258240945, 0.06049591383521332, 0.06374709747287985, 0.06704078064920427, 0.07036655597251672, 0.0737147631317674, 0.07707648217137979, 0.0804435176489166, 0.0838083752916999, 0.08716423273198735, 0.09050490580214604, 0.09382481173564662, 0.09711893046503736 ], [ 0.06436112868211831, 0.06124664673692915, 0.05819674617003333, 0.05521875242439492, 0.05232005877290742, 0.04950819820993272, 0.04679095200137744, 0.04417649796133895, 0.04167359791573421, 0.039291818232109414, 0.03704176938210503, 0.034935340037725804, 0.032985888280460215, 0.031208337947665976, 0.029619114330111114, 0.02823584560347821, 0.027076763883113482, 0.02615977536642357, 0.025501242662450633, 0.0251146280607383, 0.025009248303894435, 0.025189428099629468, 0.02565426184312864, 0.02639801424805819, 0.027410996601060587, 0.028680646259710438, 0.03019255224864465, 0.031931270432734235, 0.03388088648084843, 0.03602536340796665, 0.0383487412774316, 0.04083525324369037, 0.043469403668524434, 0.046236034210730144, 0.049120388803544, 0.052108179421959507, 0.055185650293036875, 0.05833963698783986, 0.061557617206403285, 0.06482775107114491, 0.0681389098412369, 0.07148069290219067, 0.07484343358874049, 0.07821819486822378, 0.08159675618372439, 0.08497159287823586, 0.08833584963475449, 0.09168330930956345, 0.09500835843185133, 0.09830595051316006 ], [ 0.0652889110022011, 0.062166646723573415, 0.059106379382116304, 0.05611550573544832, 0.05320155548131456, 0.05037227224597032, 0.047635730296509186, 0.04500048933392363, 0.04247578603587229, 0.040071755371459634, 0.037799666707388824, 0.03567214907902291, 0.03370336673375484, 0.03190909098765426, 0.03030660014505186, 0.028914331527306575, 0.027751218890550475, 0.02683568843846567, 0.026184367213847835, 0.025810670349525073, 0.02572353758753026, 0.025926618799987082, 0.026418114662376143, 0.02719128365899247, 0.0282354255251552, 0.029537046996970722, 0.031080942550205142, 0.03285103424378791, 0.03483093558040156, 0.037004284398534336, 0.039354919583973004, 0.041866971132752735, 0.04452491284545477, 0.04731360564165758, 0.05021834342531185, 0.053224903686833254, 0.056319600321495314, 0.05948933467806687, 0.06272164111780347, 0.0660047243529834, 0.06932748696903297, 0.07267954653808995, 0.07605124250603225, 0.07943363357227791, 0.08281848661492912, 0.0861982583886954, 0.08956607128144481, 0.09291568439383754, 0.09624146113293541, 0.09953833440538812 ], [ 0.0663638841615672, 0.0632387351326542, 0.060173066893526604, 0.057174349515427485, 0.05425025139364293, 0.051408728375258436, 0.048658147133737104, 0.046007444293002346, 0.043466319034371245, 0.04104545122816106, 0.03875672910962449, 0.03661345985218676, 0.034630523098505145, 0.03282441248187926, 0.03121309622789742, 0.029815621337018417, 0.028651397489093212, 0.027739140521761435, 0.02709553992844098, 0.026733829072916993, 0.026662536929987324, 0.02688472017263765, 0.02739787051113469, 0.028194492202717254, 0.029263146372936005, 0.030589661718221552, 0.03215824411482962, 0.03395233176792181, 0.03595516351951047, 0.03815010761671583, 0.040520827886907355, 0.04305135909616191, 0.04572614298081111, 0.048530054848921186, 0.051448434089589094, 0.054467121630823845, 0.05757250219610872, 0.06075154738661122, 0.06399185565521656, 0.06728168611128574, 0.07060998418849436, 0.0739663982209314, 0.07734128678042557, 0.08072571721028256, 0.08411145617171265, 0.08749095323829559, 0.09085731867203997, 0.09420429652747789, 0.09752623418550262, 0.10081804933734165 ], [ 0.06758042039191633, 0.06445723139503953, 0.0613911029639777, 0.058389582741794704, 0.05546048163526072, 0.052611969911140165, 0.04985270555358938, 0.047191995424691525, 0.04463998592296013, 0.04220787412206945, 0.03990812239693116, 0.03775464900853673, 0.03576295409983987, 0.03395012608759046, 0.03233466060419245, 0.03093601952750527, 0.029773872148555727, 0.028867007216684764, 0.028231990249240967, 0.027881751321470576, 0.027824380092020835, 0.028062414783660557, 0.028592803198518, 0.02940751845684824, 0.030494624276378317, 0.031839495749917554, 0.033425935790187745, 0.03523703758758135, 0.037255760026039954, 0.039465260802304496, 0.04184906224424703, 0.044391121283165434, 0.04707585613510928, 0.04988816130148148, 0.052813425926239624, 0.055837559863570745, 0.05894702612550178, 0.06212887611475412, 0.06537078376396609, 0.06866107537002074, 0.07198875290106861, 0.07534350952704603, 0.07871573693638226, 0.08209652460936988, 0.08547765163595937, 0.08885157192226609, 0.09221139376490987, 0.09555085481716655, 0.09886429345435206, 0.1021466174882559 ], [ 0.06893247758845875, 0.06581602009112622, 0.06275432267180119, 0.059755015909160054, 0.05682605724597318, 0.05397583268799311, 0.05121328831876028, 0.04854809114584887, 0.04599081488001968, 0.043553140545498865, 0.04124805396075913, 0.03909001187423265, 0.037095036075248805, 0.03528068136032562, 0.03366581215290705, 0.03227012055329523, 0.03111333611941375, 0.030214126291194507, 0.02958877030698743, 0.029249792884271365, 0.02920482376480947, 0.029455949578258537, 0.029999716127264247, 0.030827755594417378, 0.03192784075634404, 0.03328508790768229, 0.03488306199092936, 0.03670463898512687, 0.03873258951336665, 0.040949922346918806, 0.04334005769853072, 0.045886899318392425, 0.04857485794446968, 0.05138885912736073, 0.05431435230443808, 0.05733732711275015, 0.06044433678357423, 0.06362252570809535, 0.06685965758367078, 0.07014414094360599, 0.07346504969864019, 0.07681213721127525, 0.08017584321079697, 0.08354729347328903, 0.0869182926318642, 0.09028131077209238, 0.093629464634339, 0.09695649432095811, 0.10025673641674364, 0.10352509439735083 ], [ 0.07041379864290997, 0.06730876833113304, 0.06425633909438687, 0.06126423008527613, 0.05834054859678456, 0.05549389582954792, 0.052733499627855104, 0.05006937264612675, 0.047512490446610635, 0.04507497837410307, 0.04277028838874861, 0.040613337214109514, 0.038620565511077516, 0.0368098657715364, 0.03520031776656448, 0.03381167129750673, 0.03266353632352287, 0.03177428983757865, 0.03115978869005162, 0.030832070783377748, 0.03079829365613633, 0.031060151521578157, 0.03161390778632136, 0.03245101291266764, 0.03355912330335564, 0.03492326482905521, 0.03652691171538104, 0.038352841591818315, 0.04038372653425706, 0.0426024905125389, 0.04499249577448357, 0.04753762299566211, 0.050222296687207006, 0.05303148983727912, 0.05595072645049368, 0.058966089785989814, 0.062064237564440565, 0.0652324221706737, 0.06845851275908212, 0.07173101623562077, 0.0750390947018445, 0.07837257772079963, 0.08172196849729611, 0.08507844367077858, 0.08843384687313958, 0.09178067651820286, 0.09511206848582009, 0.09842177446842075, 0.10170413678532002, 0.10495406045955256 ], [ 0.07201806371968182, 0.06892908823601765, 0.06589071660523171, 0.06291076180181221, 0.05999748287888815, 0.05715969313449606, 0.054406892058364784, 0.05174941847471343, 0.049198618317669814, 0.04676701491839931, 0.04446846230056956, 0.042318252739078854, 0.04033313924758796, 0.03853122337885586, 0.03693165238215764, 0.03555407366190908, 0.03441781709775596, 0.033540824455901494, 0.032938418934179176, 0.032622089279167224, 0.032598516110738024, 0.032869053621502976, 0.033429782999103506, 0.03427210563543502, 0.03538370922300698, 0.036749675776398656, 0.03835352196365129, 0.04017803944118135, 0.04220589078240044, 0.04441998211228362, 0.04680366616420783, 0.04934083501046214, 0.052015951855616915, 0.05481405621480675, 0.05772076269679316, 0.060722263020275835, 0.06380533411221678, 0.06695735144691192, 0.07016630521748536, 0.07342081663711861, 0.07671015202692213, 0.08002423296553773, 0.08335364142677691, 0.08668961940502407, 0.09002406298164552, 0.09334951111598937, 0.09665912966484337, 0.09994669126564616, 0.10320655178112235, 0.10643362401612205 ] ] }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "text": [ "Arm 0_0
l2norm: 1.77433 (SEM: 0)
x1: 0.398423
x2: 0.767501
x3: 0.985177
x4: 0.739179
x5: 0.28668
x6: 0.895158", "Arm 1_0
l2norm: 1.25291 (SEM: 0)
x1: 0.490791
x2: 0.319897
x3: 0.262714
x4: 0.599394
x5: 0.798092
x6: 0.401669", "Arm 2_0
l2norm: 1.23049 (SEM: 0)
x1: 0.962786
x2: 0.240473
x3: 0.585971
x4: 0.012025
x5: 0.417127
x6: 0.108675", "Arm 3_0
l2norm: 0.988899 (SEM: 0)
x1: 0.79478
x2: 0.205626
x3: 0.063052
x4: 0.3554
x5: 0.217532
x6: 0.355469", "Arm 4_0
l2norm: 1.06156 (SEM: 0)
x1: 0.357024
x2: 0.0243729
x3: 0.258409
x4: 0.0155311
x5: 0.791306
x6: 0.55288", "Arm 5_0
l2norm: 1.74305 (SEM: 0)
x1: 0.20969
x2: 0.892688
x3: 0.785224
x4: 0.00995163
x5: 0.992038
x6: 0.772372", "Arm 6_0
l2norm: 1.44292 (SEM: 0)
x1: 0.213147
x2: 0.560835
x3: 0.954924
x4: 0.248569
x5: 0.387296
x6: 0.773546", "Arm 7_0
l2norm: 1.32609 (SEM: 0)
x1: 0.38589
x2: 0.36064
x3: 0.111445
x4: 0.637104
x5: 0.764981
x6: 0.689943", "Arm 8_0
l2norm: 1.3506 (SEM: 0)
x1: 0.389215
x2: 0.78592
x3: 0.0981495
x4: 0.552126
x5: 0.860386
x6: 0.0149064", "Arm 9_0
l2norm: 1.64544 (SEM: 0)
x1: 0.860403
x2: 0.28761
x3: 0.50627
x4: 0.701542
x5: 0.906839
x6: 0.560025", "Arm 10_0
l2norm: 1.17798 (SEM: 0)
x1: 0.863283
x2: 0.389635
x3: 0.464657
x4: 0.0582119
x5: 0.158668
x6: 0.496087", "Arm 11_0
l2norm: 1.45791 (SEM: 0)
x1: 0.0544792
x2: 0.446555
x3: 0.727651
x4: 0.684284
x5: 0.806846
x6: 0.523842", "Arm 12_0
l2norm: 1.20331 (SEM: 0)
x1: 0.468914
x2: 0.665032
x3: 0.0652667
x4: 0.469641
x5: 0.745872
x6: 0.0681874", "Arm 13_0
l2norm: 1.25018 (SEM: 0)
x1: 0.454339
x2: 0.718178
x3: 0.0722093
x4: 0.471481
x5: 0.781005
x6: 0.0572178", "Arm 14_0
l2norm: 1.24591 (SEM: 0)
x1: 0.454816
x2: 0.714113
x3: 0.0702674
x4: 0.472493
x5: 0.777158
x6: 0.0574868", "Arm 15_0
l2norm: 1.24013 (SEM: 0)
x1: 0.398306
x2: 0.755947
x3: 0.0143918
x4: 0.555892
x5: 0.705888
x6: 0.0179569", "Arm 16_0
l2norm: 1.24556 (SEM: 0)
x1: 0.377738
x2: 0.804521
x3: 0.000338175
x4: 0.574505
x5: 0.656819
x6: 1.81822e-16", "Arm 17_0
l2norm: 1.21076 (SEM: 0)
x1: 0.26208
x2: 0.815253
x3: 2.30907e-18
x4: 0.538183
x5: 0.665566
x6: 2.21194e-18", "Arm 18_0
l2norm: 1.24153 (SEM: 0)
x1: 0.387343
x2: 0.85686
x3: 0.0402197
x4: 0.516549
x5: 0.623467
x6: 7.81084e-18", "Arm 19_0
l2norm: 1.26773 (SEM: 0)
x1: 0.382419
x2: 0.866178
x3: 7.02691e-18
x4: 0.4794
x5: 0.693406
x6: 1.20092e-18", "Arm 20_0
l2norm: 1.23713 (SEM: 0)
x1: 0.393236
x2: 0.845492
x3: 0.0843073
x4: 0.558285
x5: 0.584994
x6: 4.17018e-08", "Arm 21_0
l2norm: 1.24571 (SEM: 0)
x1: 0.394943
x2: 0.848788
x3: 0.100135
x4: 0.578934
x5: 0.574615
x6: 2.73128e-09", "Arm 22_0
l2norm: 1.24883 (SEM: 0)
x1: 0.374751
x2: 0.841434
x3: 0.160252
x4: 0.575449
x5: 0.59524
x6: 0", "Arm 23_0
l2norm: 1.24307 (SEM: 0)
x1: 0.411299
x2: 0.835806
x3: 0.128652
x4: 0.562756
x5: 0.586708
x6: 0", "Arm 24_0
l2norm: 1.25637 (SEM: 0)
x1: 0.398095
x2: 0.859741
x3: 0.112079
x4: 0.578565
x5: 0.574823
x6: 0.0557957", "Arm 25_0
l2norm: 1.2459 (SEM: 0)
x1: 0.397592
x2: 0.854616
x3: 0.107131
x4: 0.56879
x5: 0.570605
x6: 0.0567597", "Arm 26_0
l2norm: 1.22955 (SEM: 0)
x1: 0.404703
x2: 0.882664
x3: 0.124501
x4: 0.569074
x5: 0.470929
x6: 0.0882684", "Arm 27_0
l2norm: 1.30708 (SEM: 0)
x1: 0.410855
x2: 0.984604
x3: 0.0192436
x4: 0.51246
x5: 0.430491
x6: 0.349133", "Arm 28_0
l2norm: 1.23805 (SEM: 0)
x1: 0.4036
x2: 0.877685
x3: 0.139064
x4: 0.57802
x5: 0.493861
x6: 0.0468415" ], "type": "scatter", "x": [ 0.398422509431839, 0.49079069774597883, 0.9627859489992261, 0.7947803363204002, 0.357024222612381, 0.20968967210501432, 0.21314695850014687, 0.3858902435749769, 0.38921523094177246, 0.8604028560221195, 0.8632825557142496, 0.054479227401316166, 0.468913975680222, 0.45433885341758296, 0.45481581076403454, 0.3983060652101834, 0.3777378557967659, 0.26207974201063744, 0.3873426991820172, 0.38241877000881197, 0.39323576303391006, 0.3949434343528842, 0.37475076651087674, 0.4112991785644187, 0.3980949155656093, 0.39759185661081237, 0.4047033747879519, 0.4108553325505108, 0.4036002687011182 ], "xaxis": "x", "y": [ 0.7675012350082397, 0.3198970640078187, 0.24047255888581276, 0.20562615152448416, 0.024372917599976063, 0.8926876690238714, 0.5608351789414883, 0.36064003594219685, 0.785920275375247, 0.2876096526160836, 0.3896352918818593, 0.44655546452850103, 0.6650318449510528, 0.718177894489421, 0.7141131330980965, 0.7559474302658782, 0.8045209799269514, 0.8152532627504008, 0.8568596593455997, 0.8661775124799345, 0.8454919763834396, 0.8487881594728477, 0.8414337791322379, 0.8358058309559664, 0.8597405091467616, 0.8546155852400952, 0.8826638442360016, 0.9846035063951003, 0.8776847910126038 ], "yaxis": "y" }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "showlegend": false, "text": [ "Arm 0_0
l2norm: 1.77433 (SEM: 0)
x1: 0.398423
x2: 0.767501
x3: 0.985177
x4: 0.739179
x5: 0.28668
x6: 0.895158", "Arm 1_0
l2norm: 1.25291 (SEM: 0)
x1: 0.490791
x2: 0.319897
x3: 0.262714
x4: 0.599394
x5: 0.798092
x6: 0.401669", "Arm 2_0
l2norm: 1.23049 (SEM: 0)
x1: 0.962786
x2: 0.240473
x3: 0.585971
x4: 0.012025
x5: 0.417127
x6: 0.108675", "Arm 3_0
l2norm: 0.988899 (SEM: 0)
x1: 0.79478
x2: 0.205626
x3: 0.063052
x4: 0.3554
x5: 0.217532
x6: 0.355469", "Arm 4_0
l2norm: 1.06156 (SEM: 0)
x1: 0.357024
x2: 0.0243729
x3: 0.258409
x4: 0.0155311
x5: 0.791306
x6: 0.55288", "Arm 5_0
l2norm: 1.74305 (SEM: 0)
x1: 0.20969
x2: 0.892688
x3: 0.785224
x4: 0.00995163
x5: 0.992038
x6: 0.772372", "Arm 6_0
l2norm: 1.44292 (SEM: 0)
x1: 0.213147
x2: 0.560835
x3: 0.954924
x4: 0.248569
x5: 0.387296
x6: 0.773546", "Arm 7_0
l2norm: 1.32609 (SEM: 0)
x1: 0.38589
x2: 0.36064
x3: 0.111445
x4: 0.637104
x5: 0.764981
x6: 0.689943", "Arm 8_0
l2norm: 1.3506 (SEM: 0)
x1: 0.389215
x2: 0.78592
x3: 0.0981495
x4: 0.552126
x5: 0.860386
x6: 0.0149064", "Arm 9_0
l2norm: 1.64544 (SEM: 0)
x1: 0.860403
x2: 0.28761
x3: 0.50627
x4: 0.701542
x5: 0.906839
x6: 0.560025", "Arm 10_0
l2norm: 1.17798 (SEM: 0)
x1: 0.863283
x2: 0.389635
x3: 0.464657
x4: 0.0582119
x5: 0.158668
x6: 0.496087", "Arm 11_0
l2norm: 1.45791 (SEM: 0)
x1: 0.0544792
x2: 0.446555
x3: 0.727651
x4: 0.684284
x5: 0.806846
x6: 0.523842", "Arm 12_0
l2norm: 1.20331 (SEM: 0)
x1: 0.468914
x2: 0.665032
x3: 0.0652667
x4: 0.469641
x5: 0.745872
x6: 0.0681874", "Arm 13_0
l2norm: 1.25018 (SEM: 0)
x1: 0.454339
x2: 0.718178
x3: 0.0722093
x4: 0.471481
x5: 0.781005
x6: 0.0572178", "Arm 14_0
l2norm: 1.24591 (SEM: 0)
x1: 0.454816
x2: 0.714113
x3: 0.0702674
x4: 0.472493
x5: 0.777158
x6: 0.0574868", "Arm 15_0
l2norm: 1.24013 (SEM: 0)
x1: 0.398306
x2: 0.755947
x3: 0.0143918
x4: 0.555892
x5: 0.705888
x6: 0.0179569", "Arm 16_0
l2norm: 1.24556 (SEM: 0)
x1: 0.377738
x2: 0.804521
x3: 0.000338175
x4: 0.574505
x5: 0.656819
x6: 1.81822e-16", "Arm 17_0
l2norm: 1.21076 (SEM: 0)
x1: 0.26208
x2: 0.815253
x3: 2.30907e-18
x4: 0.538183
x5: 0.665566
x6: 2.21194e-18", "Arm 18_0
l2norm: 1.24153 (SEM: 0)
x1: 0.387343
x2: 0.85686
x3: 0.0402197
x4: 0.516549
x5: 0.623467
x6: 7.81084e-18", "Arm 19_0
l2norm: 1.26773 (SEM: 0)
x1: 0.382419
x2: 0.866178
x3: 7.02691e-18
x4: 0.4794
x5: 0.693406
x6: 1.20092e-18", "Arm 20_0
l2norm: 1.23713 (SEM: 0)
x1: 0.393236
x2: 0.845492
x3: 0.0843073
x4: 0.558285
x5: 0.584994
x6: 4.17018e-08", "Arm 21_0
l2norm: 1.24571 (SEM: 0)
x1: 0.394943
x2: 0.848788
x3: 0.100135
x4: 0.578934
x5: 0.574615
x6: 2.73128e-09", "Arm 22_0
l2norm: 1.24883 (SEM: 0)
x1: 0.374751
x2: 0.841434
x3: 0.160252
x4: 0.575449
x5: 0.59524
x6: 0", "Arm 23_0
l2norm: 1.24307 (SEM: 0)
x1: 0.411299
x2: 0.835806
x3: 0.128652
x4: 0.562756
x5: 0.586708
x6: 0", "Arm 24_0
l2norm: 1.25637 (SEM: 0)
x1: 0.398095
x2: 0.859741
x3: 0.112079
x4: 0.578565
x5: 0.574823
x6: 0.0557957", "Arm 25_0
l2norm: 1.2459 (SEM: 0)
x1: 0.397592
x2: 0.854616
x3: 0.107131
x4: 0.56879
x5: 0.570605
x6: 0.0567597", "Arm 26_0
l2norm: 1.22955 (SEM: 0)
x1: 0.404703
x2: 0.882664
x3: 0.124501
x4: 0.569074
x5: 0.470929
x6: 0.0882684", "Arm 27_0
l2norm: 1.30708 (SEM: 0)
x1: 0.410855
x2: 0.984604
x3: 0.0192436
x4: 0.51246
x5: 0.430491
x6: 0.349133", "Arm 28_0
l2norm: 1.23805 (SEM: 0)
x1: 0.4036
x2: 0.877685
x3: 0.139064
x4: 0.57802
x5: 0.493861
x6: 0.0468415" ], "type": "scatter", "x": [ 0.398422509431839, 0.49079069774597883, 0.9627859489992261, 0.7947803363204002, 0.357024222612381, 0.20968967210501432, 0.21314695850014687, 0.3858902435749769, 0.38921523094177246, 0.8604028560221195, 0.8632825557142496, 0.054479227401316166, 0.468913975680222, 0.45433885341758296, 0.45481581076403454, 0.3983060652101834, 0.3777378557967659, 0.26207974201063744, 0.3873426991820172, 0.38241877000881197, 0.39323576303391006, 0.3949434343528842, 0.37475076651087674, 0.4112991785644187, 0.3980949155656093, 0.39759185661081237, 0.4047033747879519, 0.4108553325505108, 0.4036002687011182 ], "xaxis": "x2", "y": [ 0.7675012350082397, 0.3198970640078187, 0.24047255888581276, 0.20562615152448416, 0.024372917599976063, 0.8926876690238714, 0.5608351789414883, 0.36064003594219685, 0.785920275375247, 0.2876096526160836, 0.3896352918818593, 0.44655546452850103, 0.6650318449510528, 0.718177894489421, 0.7141131330980965, 0.7559474302658782, 0.8045209799269514, 0.8152532627504008, 0.8568596593455997, 0.8661775124799345, 0.8454919763834396, 0.8487881594728477, 0.8414337791322379, 0.8358058309559664, 0.8597405091467616, 0.8546155852400952, 0.8826638442360016, 0.9846035063951003, 0.8776847910126038 ], "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": [ { "fillpattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 }, "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": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "render(plot_contour(model=model, param_x='x1', param_y='x2', metric_name='l2norm'))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We also plot optimization trace, which shows best hartmann6 objective value seen by each iteration of the optimization:" ] }, { "cell_type": "code", "execution_count": 9, "metadata": {}, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "linkText": "Export to plot.ly", "plotlyServerURL": "https://plot.ly", "showLink": false }, "data": [ { "hoverinfo": "none", "legendgroup": "", "line": { "width": 0 }, "mode": "lines", "showlegend": false, "type": "scatter", "x": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30 ], "y": [ -0.17777887653515262, -0.17777887653515262, -0.17777887653515262, -0.3924509204188384, -0.3924509204188384, -0.3924509204188384, -0.9102299778697502, -0.9102299778697502, -2.6781519140114445, -2.6781519140114445, -2.6781519140114445, -2.6781519140114445, -2.6781519140114445, -2.6781519140114445, -2.6781519140114445, -2.6781519140114445, -2.755621017605993, -2.755621017605993, -2.8243286935606835, -2.8243286935606835, -2.9262056948652106, -2.94689745360203, -2.94689745360203, -2.94689745360203, -3.0158047303233477, -3.0158047303233477, -3.0158047303233477, -3.0158047303233477, -3.0691832760440874, -3.0711104607888906 ] }, { "fill": "tonexty", "fillcolor": "rgba(128,177,211,0.3)", "legendgroup": "objective value", "line": { "color": "rgba(128,177,211,1)" }, "mode": "lines", "name": "objective value", "type": "scatter", "x": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30 ], "y": [ -0.17777887653515262, -0.17777887653515262, -0.17777887653515262, -0.3924509204188384, -0.3924509204188384, -0.3924509204188384, -0.9102299778697502, -0.9102299778697502, -2.6781519140114445, -2.6781519140114445, -2.6781519140114445, -2.6781519140114445, -2.6781519140114445, -2.6781519140114445, -2.6781519140114445, -2.6781519140114445, -2.755621017605993, -2.755621017605993, -2.8243286935606835, -2.8243286935606835, -2.9262056948652106, -2.94689745360203, -2.94689745360203, -2.94689745360203, -3.0158047303233477, -3.0158047303233477, -3.0158047303233477, -3.0158047303233477, -3.0691832760440874, -3.0711104607888906 ] }, { "fill": "tonexty", "fillcolor": "rgba(128,177,211,0.3)", "hoverinfo": "none", "legendgroup": "", "line": { "width": 0 }, "mode": "lines", "showlegend": false, "type": "scatter", "x": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30 ], "y": [ -0.17777887653515262, -0.17777887653515262, -0.17777887653515262, -0.3924509204188384, -0.3924509204188384, -0.3924509204188384, -0.9102299778697502, -0.9102299778697502, -2.6781519140114445, -2.6781519140114445, -2.6781519140114445, -2.6781519140114445, -2.6781519140114445, -2.6781519140114445, -2.6781519140114445, -2.6781519140114445, -2.755621017605993, -2.755621017605993, -2.8243286935606835, -2.8243286935606835, -2.9262056948652106, -2.94689745360203, -2.94689745360203, -2.94689745360203, -3.0158047303233477, -3.0158047303233477, -3.0158047303233477, -3.0158047303233477, -3.0691832760440874, -3.0711104607888906 ] }, { "line": { "color": "rgba(253,180,98,1)", "dash": "dash" }, "mode": "lines", "name": "Optimum", "type": "scatter", "x": [ 1, 30 ], "y": [ -3.32237, -3.32237 ] } ], "layout": { "showlegend": true, "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": [ { "fillpattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 }, "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 } } }, "title": { "text": "Model performance vs. # of iterations" }, "xaxis": { "title": { "text": "Iteration" } }, "yaxis": { "title": { "text": "Hartmann6" } } } }, "text/html": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "# `plot_single_method` expects a 2-d array of means, because it expects to average means from multiple \n", "# optimization runs, so we wrap out best objectives array in another array.\n", "best_objectives = np.array([[trial.objective_mean for trial in experiment.trials.values()]])\n", "best_objective_plot = optimization_trace_single_method(\n", " y=np.minimum.accumulate(best_objectives, axis=1),\n", " optimum=hartmann6.fmin,\n", " title=\"Model performance vs. # of iterations\",\n", " ylabel=\"Hartmann6\",\n", ")\n", "render(best_objective_plot)" ] } ], "metadata": { "kernelspec": { "display_name": "python3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.7.12" } }, "nbformat": 4, "nbformat_minor": 2 }