{ "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 07-17 16:16:28] ipy_plotting: Injecting Plotly library into cell. Do not overwrite or delete cell.\n" ] }, { "data": { "text/html": [ " \n", " " ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "import numpy as np\n", "\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 07-17 16:16:29] ax.modelbridge.dispatch_utils: Using Bayesian Optimization generation strategy: GenerationStrategy(name='Sobol+GPEI', steps=[Sobol for 6 trials, GPEI for subsequent trials]). Iterations after 6 will take longer to generate due to model-fitting.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-17 16:16:29] ax.service.managed_loop: Started full optimization with 30 steps.\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-17 16:16:29] ax.service.managed_loop: Running optimization trial 1...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-17 16:16:29] ax.service.managed_loop: Running optimization trial 2...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-17 16:16:29] ax.service.managed_loop: Running optimization trial 3...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-17 16:16:29] ax.service.managed_loop: Running optimization trial 4...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-17 16:16:29] ax.service.managed_loop: Running optimization trial 5...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-17 16:16:29] ax.service.managed_loop: Running optimization trial 6...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-17 16:16:29] ax.service.managed_loop: Running optimization trial 7...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-17 16:16:34] ax.service.managed_loop: Running optimization trial 8...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-17 16:16:38] ax.service.managed_loop: Running optimization trial 9...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-17 16:16:42] ax.service.managed_loop: Running optimization trial 10...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-17 16:16:46] ax.service.managed_loop: Running optimization trial 11...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-17 16:16:49] ax.service.managed_loop: Running optimization trial 12...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-17 16:16:53] ax.service.managed_loop: Running optimization trial 13...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-17 16:16:56] ax.service.managed_loop: Running optimization trial 14...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-17 16:16:59] ax.service.managed_loop: Running optimization trial 15...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-17 16:17:03] ax.service.managed_loop: Running optimization trial 16...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-17 16:17:07] ax.service.managed_loop: Running optimization trial 17...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-17 16:17:09] ax.service.managed_loop: Running optimization trial 18...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-17 16:17:13] ax.service.managed_loop: Running optimization trial 19...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-17 16:17:16] ax.service.managed_loop: Running optimization trial 20...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-17 16:17:19] ax.service.managed_loop: Running optimization trial 21...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-17 16:17:23] ax.service.managed_loop: Running optimization trial 22...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-17 16:17:26] ax.service.managed_loop: Running optimization trial 23...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-17 16:17:28] ax.service.managed_loop: Running optimization trial 24...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-17 16:17:32] ax.service.managed_loop: Running optimization trial 25...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-17 16:17:35] ax.service.managed_loop: Running optimization trial 26...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-17 16:17:40] ax.service.managed_loop: Running optimization trial 27...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-17 16:17:44] ax.service.managed_loop: Running optimization trial 28...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-17 16:17:47] ax.service.managed_loop: Running optimization trial 29...\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "[INFO 07-17 16:17: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.2403674503513192,\n", " 'x2': 0.10916491767214283,\n", " 'x3': 0.40270476416006157,\n", " 'x4': 0.2877790755838589,\n", " 'x5': 0.30654770184123803,\n", " 'x6': 0.675540406880727}" ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "best_parameters" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'l2norm': 0.9300578758959749, 'hartmann6': -3.240279406772178}" ] }, "execution_count": 5, "metadata": {}, "output_type": "execute_result" } ], "source": [ "means, covariances = values\n", "means" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "For comparison, minimum of Hartmann6 is:" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "-3.32237" ] }, "execution_count": 6, "metadata": {}, "output_type": "execute_result" } ], "source": [ "hartmann6.fmin" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 3. Plot results\n", "Here we arbitrarily select \"x1\" and \"x2\" as the two parameters to plot for both metrics, \"hartmann6\" and \"l2norm\"." ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "linkText": "Export to plot.ly", "plotlyServerURL": "https://plot.ly", "showLink": false }, "data": [ { "autocolorscale": false, "autocontour": true, "colorbar": { "tickfont": { "size": 8 }, "ticksuffix": "", "x": 0.45, "y": 0.5 }, "colorscale": [ [ 0.0, "rgb(247,252,253)" ], [ 0.125, "rgb(229,245,249)" ], [ 0.25, "rgb(204,236,230)" ], [ 0.375, "rgb(153,216,201)" ], [ 0.5, "rgb(102,194,164)" ], [ 0.625, "rgb(65,174,118)" ], [ 0.75, "rgb(35,139,69)" ], [ 0.875, "rgb(0,109,44)" ], [ 1.0, "rgb(0,68,27)" ] ], "contours": { "coloring": "heatmap" }, "hoverinfo": "x+y+z", "ncontours": 25, "type": "contour", "x": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "xaxis": "x", "y": [ 0.0, 0.02040816326530612, 0.04081632653061224, 0.061224489795918366, 0.08163265306122448, 0.1020408163265306, 0.12244897959183673, 0.14285714285714285, 0.16326530612244897, 0.18367346938775508, 0.2040816326530612, 0.22448979591836732, 0.24489795918367346, 0.26530612244897955, 0.2857142857142857, 0.3061224489795918, 0.32653061224489793, 0.3469387755102041, 0.36734693877551017, 0.3877551020408163, 0.4081632653061224, 0.42857142857142855, 0.44897959183673464, 0.4693877551020408, 0.4897959183673469, 0.5102040816326531, 0.5306122448979591, 0.5510204081632653, 0.5714285714285714, 0.5918367346938775, 0.6122448979591836, 0.6326530612244897, 0.6530612244897959, 0.673469387755102, 0.6938775510204082, 0.7142857142857142, 0.7346938775510203, 0.7551020408163265, 0.7755102040816326, 0.7959183673469387, 0.8163265306122448, 0.836734693877551, 0.8571428571428571, 0.8775510204081632, 0.8979591836734693, 0.9183673469387754, 0.9387755102040816, 0.9591836734693877, 0.9795918367346939, 1.0 ], "yaxis": "y", "z": [ [ -2.4196083348683786, -2.4781513006184297, -2.5337584521407956, -2.585977785485453, -2.634362963192865, -2.6784820849361166, -2.7179269009773352, -2.7523220935720314, -2.781334203625522, -2.8046797626365114, -2.8221322088717447, -2.833527223874415, -2.838766217955297, -2.837817812633945, -2.8307173005979216, -2.8175641939941425, -2.7985180852334386, -2.77379312981177, -2.7436515111570987, -2.7083962613930943, -2.6683637925859793, -2.62391644840349, -2.5754353265096532, -2.52331355765895, -2.467950166393024, -2.4097445855099173, -2.3490918542457475, -2.2863784984520477, -2.221979068794302, -2.156253298425437, -2.089543832919939, -2.022174480894764, -1.9544489323885463, -1.8866498927194502, -1.8190385814644545, -1.75185454888691, -1.6853157652418955, -1.6196189416866098, -1.5549400448773474, -1.4914349706613155, -1.4292403455214784, -1.3684744275758154, -1.309238081951337, -1.2516158082336581, -1.1956768004252147, -1.1414760224193232, -1.089055284405138, -1.0384443078529806, -0.9896617687855288, -0.9427163109150007 ], [ -2.4369634873771506, -2.4967986479620365, -2.5536618825072255, -2.6070806178004546, -2.6565871612190515, -2.701728184371153, -2.7420747360269857, -2.777232357101383, -2.806850814910267, -2.8306329555029572, -2.848342197202076, -2.859808257102883, -2.864930811400776, -2.863680929796714, -2.8561002778536535, -2.8422982303636766, -2.822447166275626, -2.7967763085377593, -2.7655645228740906, -2.729132496830008, -2.68783468970412, -2.642051385871814, -2.592181111570622, -2.538633600576454, -2.4818234261905188, -2.4221643604505023, -2.360064477968182, -2.2959219905218053, -2.2301217775842908, -2.1630325650887383, -2.095004697787945, -2.026368447765406, -1.9574328016125908, -1.8884846704855527, -1.8197884699831575, -1.751586020077781, -1.6840967188768343, -1.6175179476182064, -1.5520256679005966, -1.4877751756649351, -1.424901979846696, -1.3635227768952116, -1.30373649549576, -1.2456253888244473, -1.1892561545057303, -1.1346810651185013, -1.081939094598948, -1.0310570282091251, -0.9820505458718616, -0.9349252706122947 ], [ -2.450715523035461, -2.5117365173060784, -2.569754268363108, -2.6242758730298847, -2.6748124401103497, -2.7208893343313987, -2.76205704416161, -2.7979021833401827, -2.828058072990907, -2.8522143345205464, -2.8701249575319974, -2.8816143912267096, -2.8865813365509227, -2.8850000776615436, -2.8769193668900415, -2.862459045748241, -2.841804725595405, -2.8152009504156794, -2.7829433126575926, -2.745369991074045, -2.702853134853761, -2.655790445052906, -2.604597218472265, -2.549699034568323, -2.4915251919831385, -2.430502942148469, -2.367052523688159, -2.3015829712777234, -2.23448865354235, -2.1661464837105804, -2.0969137416625094, -2.027126444792476, -1.9570982063221563, -1.8871195223532493, -1.81745743237718, -1.7483555017443553, -1.680034078490336, -1.6126907807846222, -1.5465011750431152, -1.481619608398336, -1.418180162743272, -1.3562977009508992, -1.2960689791186863, -1.2375738017897833, -1.180876200049491, -1.1260256151762746, -1.0730580731279982, -1.0219973375554552, -0.9728560312474119, -0.9256367179193373 ], [ -2.460684358856252, -2.5227693732049605, -2.58182462448858, -2.6373373039542343, -2.6887976750879883, -2.7357101308943212, -2.7776049779921634, -2.814050379719233, -2.844663820847842, -2.869122446759957, -2.8871716810335677, -2.8986316319017833, -2.9034009504339906, -2.901457987606386, -2.8928592941927245, -2.877735693308705, -2.856286308037359, -2.828771028869055, -2.7955019490661877, -2.756834281820863, -2.713157212361619, -2.6648850488059797, -2.61244893658028, -2.5562893079006797, -2.4968491592787627, -2.4345681896468503, -2.3698777888284743, -2.3031968379469134, -2.2349282665623513, -2.1654563026462506, -2.095144348296952, -2.024333414376354, -1.953341049589107, -1.882460702986644, -1.811961462860945, -1.7420881191447724, -1.6730615005672138, -1.6050790418370522, -1.538315540011854, -1.472924062954178, -1.409036976384819, -1.3467670595213546, -1.2862086826381078, -1.2274390230935601, -1.1705192994300166, -1.1154960060424912, -1.062402133621914, -1.0112583630873164, -0.9620742230204232, -0.9148492026970085 ], [ -2.4667082692822833, -2.529719983429388, -2.589680133741858, -2.646056630328796, -2.6983194573562415, -2.7459526040222766, -2.788466834986844, -2.8254126341640875, -2.8563925806974355, -2.881072421542854, -2.8991901853764266, -2.910562821818437, -2.915090031148151, -2.912755156544579, -2.903623224957563, -2.8878364214072447, -2.8656074412468087, -2.8372112668517477, -2.802975950117866, -2.763272953243497, -2.7185075224240522, -2.669109464048816, -2.6155245823829927, -2.5582069375584084, -2.497612001484857, -2.4341907291244214, -2.3683845215065893, -2.300621031169004, -2.231310746367373, -2.160844283877471, -2.0895903187464966, -2.0178940809339605, -1.946076352048995, -1.874432899468119, -1.8032342894839233, -1.7327260255101289, -1.6631289616216574, -1.5946399457990856, -1.5274326511784668, -1.4616585573991419, -1.3974480478133593, -1.3349115918814656, -1.274140985524218, -1.2152106255275226, -1.158178797275362, -1.1030889581015382, -1.0499710013767454, -0.998842489065019, -0.9497098428765832, -0.902569486303757 ], [ -2.468646952093981, -2.532432775389911, -2.593149802518568, -2.6502475041511717, -2.7031763804652016, -2.7514008343400063, -2.7944130097113713, -2.8317468019715157, -2.862991167717456, -2.8878018950970885, -2.905911124627125, -2.917134098575744, -2.921372833673116, -2.918616638196093, -2.908939617233765, -2.8924955121260028, -2.86951037951626, -2.8402737118871975, -2.80512862486393, -2.764461691930517, -2.71869291300401, -2.6682661847313884, -2.6136405208548377, -2.5552821665667476, -2.4936576688597762, -2.4292279061715494, -2.362443042009432, -2.293738344189056, -2.22353079936883, -2.1522164479929993, -2.0801683647626397, -2.0077352123724723, -1.9352403001913177, -1.8629810840363077, -1.7912290477561454, -1.7202299117865965, -1.6502041181003473, -1.581347545046496, -1.5138324094955626, -1.4478083175118561, -1.3834034284927266, -1.3207257013538136, -1.259864194894282, -1.200890397926394, -1.1438595680710368, -1.0888120612739414, -1.035774637055113, -0.9847617272407783, -0.9357766584237426, -0.8888128206419385 ], [ -2.4663843428929417, -2.5307769596422274, -2.5920879051973875, -2.64974929212283, -2.703193181623898, -2.751865474709613, -2.795240913772598, -2.8328382351818315, -2.86423442928452, -2.889077145688458, -2.907094488107731, -2.918101704301712, -2.9220045365880734, -2.918799236107464, -2.9085694599137435, -2.8914804606133613, -2.867771126798694, -2.837744517660495, -2.8017575453403483, -2.76021039952942, -2.7135362015403777, -2.662191247003247, -2.6066460716734507, -2.5473774690195756, -2.484861507436007, -2.4195675385611226, -2.3519531522516393, -2.282460013208806, -2.2115105043696257, -2.139505099179147, -2.0668203859716403, -1.9938076710117383, -1.920792091075975, -1.8480721710864276, -1.7759197668806954, -1.7045803375742092, -1.6342734961241716, -1.5651937906826243, -1.497511673187549, -1.431374615436379, -1.3669083366445194, -1.3042181102172816, -1.2433901211409901, -1.1844928489949704, -1.1275784550611272, -1.0726841553178597, -1.019833564211543, -0.9690379969679737, -0.9202977208153483, -0.8736031478251383 ], [ -2.4598310558884395, -2.5246492843372557, -2.5863770631400818, -2.6444304982500277, -2.698224535289217, -2.7471879474562786, -2.7907796093052513, -2.828504878652735, -2.859930816815047, -2.884699133774182, -2.902536073687266, -2.9132588252308187, -2.9167783512196115, -2.913098763791889, -2.9023135555083153, -2.8845991552509593, -2.8602064029483505, -2.829450606011452, -2.7927008379987717, -2.7503690709102866, -2.7028996180518057, -2.6507592325150044, -2.594428080890798, -2.5343917073761637, -2.471134025048654, -2.4051313174155298, -2.336847199886541, -2.2667284722987775, -2.1952017852808186, -2.122671041323014, -2.049515453204901, -1.9760881860973387, -1.9027155140779597, -1.8296964263480775, -1.757302622828857, -1.6857788429649676, -1.6153434755074814, -1.5461894008620767, -1.4784850213527378, -1.4123754385215896, -1.347983740388293, -1.2854123654204814, -1.224744513789148, -1.1660455802505103, -1.1093645866530455, -1.0547355955581335, -1.0021790897355483, -0.9517033053107875, -0.9033055090721677, -0.8569732128765948 ], [ -2.4489263492229796, -2.5139763091957543, -2.5759308313880753, -2.634191677204025, -2.6881583207033355, -2.7372441057491987, -2.7808939097308976, -2.8186018523100973, -2.8499274773931513, -2.874509104790464, -2.8920735664670825, -2.9024420687101413, -2.905532281391441, -2.9013569469533085, -2.890019417624713, -2.871706633001967, -2.846680141519767, -2.8152658199193183, -2.7778429336604784, -2.7348331091280533, -2.6866896746669955, -2.633887698315779, -2.576914928305691, -2.5162637415898854, -2.4524241304624415, -2.385877706187772, -2.317092666990053, -2.2465196605703177, -2.1745884638674595, -2.1017054013798018, -2.0282514253653057, -1.9545807848788952, -1.881020214819666, -1.8078685803896428, -1.7353969163855354, -1.6638488045342381, -1.5934410357193738, -1.5243645075371772, -1.4567853112581735, -1.3908459660132164, -1.326666761883406, -1.2643471775284647, -1.2039673419860544, -1.1455895142447212, -1.089259558060925, -1.0350083931846101, -0.9828534076158653, -0.9327998186908947, -0.8848419736569484, -0.8389645829272069 ], [ -2.43363954859342, -2.498716133590457, -2.5606957237633052, -2.6189677569886034, -2.672918260713544, -2.72194722816037, -2.765487783987459, -2.803025319758363, -2.8341146263052845, -2.8583934735391456, -2.8755918973541212, -2.8855372081071495, -2.888155125630769, -2.8834675319784413, -2.8715873345417107, -2.85271096449749, -2.8271090911374985, -2.7951161678401353, -2.7571194116097315, -2.7135477512676127, -2.664861174411163, -2.6115407831581194, -2.5540797543363887, -2.492975304266401, -2.428721686456701, -2.3618042013762883, -2.2926941669856387, -2.2218447820753955, -2.149687807219698, -2.0766309867198536, -2.003056136687523, -1.9293178276706449, -1.855742593939477, -1.7826286052215874, -1.7102457401397757, -1.6388360038991376, -1.5686142360079223, -1.499769057133227, -1.432464007686237, -1.366838834452063, -1.3030108855211573, -1.2410765778949508, -1.1811129063475871, -1.1231789663337666, -1.0673174678426345, -1.0135562210204299, -0.9619095780470898, -0.9123798190998025, -0.8649584732354436, -0.8196275676580548 ], [ -2.4139709068938786, -2.4788595722926505, -2.540652686897051, -2.598729792722306, -2.652465955419421, -2.70125036276919, -2.744507066630712, -2.7817156244142334, -2.812429149951325, -2.836287894216542, -2.853027726307955, -2.8624839732276843, -2.8645914351614348, -2.8593812635374123, -2.8469752316716903, -2.827577893205282, -2.801467154882677, -2.768983817350314, -2.7305206272947777, -2.68651132959526, -2.637420118744159, -2.5837317827793402, -2.5259427288964473, -2.464552990698372, -2.4000592484584535, -2.3329488459416825, -2.2636947571467707, -2.1927514395196046, -2.1205515025471375, -2.0475031186797756, -1.9739881046664094, -1.900360603909453, -1.8269463033721387, -1.754042121446318, -1.681916305913047, -1.6108088837882792, -1.540932407599715, -1.4724729456386836, -1.4055912670705992, -1.3404241765019196, -1.277085956656409, -1.215669882129281, -1.1562497716499336, -1.098881550767878, -1.0436048012605026, -0.9904442777376149, -0.9394113758015084, -0.8905055396516252, -0.8437156001638608, -0.7990210372118305 ], [ -2.389951920257872, -2.4544308276110263, -2.5158181148267786, -2.5734862908675953, -2.626802491928837, -2.675148232861198, -2.717941704833513, -2.7546599289338314, -2.784857658245261, -2.8081806893120556, -2.8243731480064223, -2.8332798910528254, -2.834845341028954, -2.8291095704481775, -2.816202122801938, -2.7963339943229872, -2.7697882296039467, -2.736909610637899, -2.6980939153390326, -2.6537771827973278, -2.6044253524482603, -2.5505245553861196, -2.4925722439463676, -2.431069263336334, -2.366512903604608, -2.299390923251824, -2.230176505345953, -2.159324089491999, -2.0872660145076876, -2.0144099037637737, -1.941136725283964, -1.867799460164593, -1.7947223147199243, -1.7222004135943147, -1.650499912873665, -1.5798584741191959, -1.5104860424322009, -1.4425658743001755, -1.3762557641597208, -1.3116894223436462, -1.248977961287379, -1.188211451430298, -1.129460513006662, -1.0727779147198064, -1.0182001549819972, -0.9657490058548653, -0.915433003944581, -0.8672488762259857, -0.8211828920542276, -0.7772121354608094 ], [ -2.361645159238873, -2.4254877415476805, -2.486244548800331, -2.5432843390996016, -2.5959699646424275, -2.6436791216917603, -2.6858280131810925, -2.7218948491725277, -2.751439457926785, -2.774116040946555, -2.78967891662053, -2.797983354483306, -2.798983322897816, -2.792726954101558, -2.779350094372149, -2.759068270955005, -2.7321674527250184, -2.6989940100398693, -2.659944282585625, -2.6154541412121484, -2.56598887960439, -2.512033700452261, -2.454084981218691, -2.392642429427781, -2.3282021750661848, -2.2612508014621264, -2.1922602851425923, -2.121683796740492, -2.0499523054170545, -1.9774719251546942, -1.9046219401038018, -1.8317534462607157, -1.7591885472248463, -1.6872200423232582, -1.6161115460481223, -1.546097978734982, -1.4773863699465937, -1.410156918281914, -1.3445642543672527, -1.2807388575680614, -1.21878858136494, -1.1588002471905265, -1.100841271625268, -1.0449612970010307, -0.9911938004831946, -0.9395576614492219, -0.8900586713462898, -0.8426909741233802, -0.7974384287592581, -0.7542758883411766 ], [ -2.329143730658629, -2.3921217356251008, -2.4520212154487786, -2.508210807967886, -2.560053330352029, -2.606927303804067, -2.648251577387221, -2.683509716416119, -2.712269996688341, -2.7341973502834156, -2.749057438430756, -2.756716045086278, -2.757135971975635, -2.7503720984794837, -2.7365648327319665, -2.7159321997358967, -2.6887608741942755, -2.655396496068246, -2.6162336163534965, -2.571705611852691, -2.52227487543192, -2.4684235335230227, -2.410644875170608, -2.349435609048223, -2.285289006072642, -2.2186889401620578, -2.1501048086756804, -2.0799872948573936, -2.008764923864077, -1.936841358471887, -1.8645933778204107, -1.7923694809761506, -1.720489055892148, -1.6492420533199919, -1.5788891045475681, -1.5096620217711376, -1.4417646207226928, -1.3753738070190291, -1.310640870603611, -1.2476929365211333, -1.186634524915308, -1.1275491783346492, -1.0705011199173562, -1.0155369115624109, -0.9626870865718904, -0.911967736304256, -0.8633820349932622, -0.8169216909907999, -0.772568316253734, -0.730294708915046 ], [ -2.2925706118241496, -2.354457622473288, -2.413274555727307, -2.4683938166970236, -2.519182915450172, -2.5650264934747806, -2.605351342058316, -2.6396509045406584, -2.6675049835245193, -2.688590722069545, -2.70268533653152, -2.709664479112754, -2.7094985608600743, -2.7022475901223784, -2.6880546588722734, -2.6671382516306874, -2.63978362113541, -2.6063335093923694, -2.567178509308825, -2.5227473649155607, -2.473497490046915, -2.419905944286593, -2.3624610483633672, -2.301654760564728, -2.237975881077749, -2.1719041080085115, -2.1039049383522856, -2.034425387625102, -1.9638904901708103, -1.8927005352520472, -1.8212289895384772, -1.749821053071771, -1.678792792605069, -1.6084307933657307, -1.5389922680617953, -1.4707055607074007, -1.4037709828651466, -1.3383619213268663, -1.2746261590486645, -1.2126873551560724, -1.1526466347787592, -1.0945842450569812, -1.038561239569386, -0.9846211593804746, -0.9327916846549071, -0.8830862361542122, -0.8355055107947094, -0.7900389397331841, -0.7466660611340196, -0.7053578028675169 ], [ -2.252078281948126, -2.3126536462110963, -2.3701689477472963, -2.4240044471424236, -2.473537334180035, -2.5181639165278904, -2.5573243840576536, -2.59052651697177, -2.617364220645696, -2.6375275135713454, -2.650804635794485, -2.65707994318609, -2.6563299251774453, -2.6486179641526726, -2.634087952757139, -2.6129568887862695, -2.585506633240453, -2.5520750591223984, -2.5130468437369347, -2.468844168982714, -2.4199175858855577, -2.3667372687431483, -2.3097848366943845, -2.2495458669266086, -2.1865031738838256, -2.12113088860494, -2.0538893433005554, -1.9852207470308763, -1.9155456260403054, -1.8452599940385328, -1.7747332113151004, -1.7043064858247574, -1.6342919639333837, -1.5649723535779116, -1.496601018628003, -1.4294024806946921, -1.3635732638145082, -1.299283018439326, -1.2366758638788569, -1.1758718925175324, -1.1169687844123122, -1.060043486887369, -1.0051539201004362, -0.9523406759329063, -0.9016286836827224, -0.8530288217179751, -0.8065394593523512, -0.7621479176627087, -0.719831841768003, -0.6795604802465975 ], [ -2.2078490586309156, -2.266902132647751, -2.3229077715841706, -2.3752583245945633, -2.423345617371127, -2.4665828701774344, -2.5044285296799584, -2.5364084073056277, -2.5621324664208402, -2.5813038836649382, -2.593721116931297, -2.59927586586441, -2.597949077138377, -2.5898057681578504, -2.574988850531162, -2.5537120500871553, -2.526252063679381, -2.4929401393751696, -2.4541532996422495, -2.4103054451005628, -2.3618385741751866, -2.309214329921705, -2.252906044914429, -2.193391408097043, -2.131145833042697, -2.0666365707758714, -2.000317583760074, -1.9326251794942872, -1.8639743896833356, -1.7947560714534425, -1.7253346986753646, -1.6560468032661695, -1.5872000183630421, -1.5190726680078939, -1.4519138421131232, -1.3859438915494395, -1.3213552765133039, -1.2583137019287136, -1.196959476315036, -1.1374090349485217, -1.0797565738110175, -1.0240757472853574, -0.9704213893846196, -0.9188312251134702, -0.8693275450599374, -0.8219188222942724, -0.7766012559782226, -0.7333602307015944, -0.69217168445623, -0.6530033813615526 ], [ -2.1600959767671544, -2.217430516911537, -2.2717343743267664, -2.3224161903424525, -2.368886994749346, -2.4105813609320736, -2.446979718633794, -2.477628483519849, -2.5021550057335884, -2.5202758228894218, -2.5317989207310174, -2.536622106703757, -2.5347292949870717, -2.5261855605198904, -2.51113124474409, -2.489775228846619, -2.462387493838648, -2.4292911268902566, -2.390853969252838, -2.347480121876206, -2.2996015253169, -2.2476698104973716, -2.1921485819642776, -2.1335062544107304, -2.07220952457694, -2.0087175291559527, -1.9434767161924553, -1.8769164411444323, -1.809445286594126, -1.741448094043887, -1.673283685761758, -1.605283243822084, -1.5377493027572064, -1.4709553024743032, -1.4051456401979483, -1.340536154830092, -1.2773149745714627, -1.215643658873958, -1.15565856847638, -1.0974724019339108, -1.0411758431289007, -0.9868392711900561, -0.9345144915453155, -0.8842364540707118, -0.8360249311544836, -0.7898861347520326, -0.7458142570354775, -0.7037929239872014, -0.6637965552546152, -0.6257916268174528 ], [ -2.1090631906226993, -2.164501523537213, -2.2169316103169465, -2.265782255230565, -2.310487533426441, -2.3505067340790307, -2.3853447870798967, -2.4145702835160403, -2.4378287548638746, -2.4548502533497847, -2.4654518444193947, -2.46953652907495, -2.4670900108940828, -2.458176134594483, -2.4429313542062188, -2.4215583891578554, -2.3943191919781097, -2.3615273757179067, -2.323540280966789, -2.2807508817723012, -2.233579730130619, -2.1824671205481847, -2.1278656253397426, -2.0702331160140535, -2.0100263534335383, -1.9476952033702226, -1.883677515101324, -1.8183946868648682, -1.7522479305366072, -1.6856152364606478, -1.6188490268109796, -1.552274472273165, -1.4861884331874422, -1.4208589738936825, -1.356525389032322, -1.2933986737404313, -1.2316623663032051, -1.1714736917248048, -1.112964937417542, -1.0562449971620287, -1.0014010259950268, -0.948500156093864, -0.8975912314811382, -0.8487065270133884, -0.8018634243027617, -0.7570660237259564, -0.7143066773756496, -0.6735674326621546, -0.6348213802946319, -0.5980339036182392 ], [ -2.0550246439319744, -2.1084110869707664, -2.158818628502689, -2.205699476122261, -2.248513666467992, -2.2867474828718803, -2.31993186207252, -2.347658410919486, -2.369591250187545, -2.3854740456013555, -2.3951327116095875, -2.3984748884307865, -2.39548727795924, -2.386231568109048, -2.370839330936565, -2.349506092873823, -2.322484719451416, -2.2900782640919153, -2.252632453087897, -2.210527993242576, -2.164172886541384, -2.1139949183291376, -2.060434457641935, -2.0039376780654807, -1.9449502807840764, -1.8839117811826496, -1.8212504060536352, -1.7573786376266134, -1.6926894302573046, -1.6275531134721368, -1.5623149804278773, -1.4972935444022364, -1.4327794292625577, -1.3690348447567762, -1.3062935853879574, -1.244761483413533, -1.1846172423642896, -1.1260135771203967, -1.0690785894125936, -1.0139173128848353, -0.9606133687833793, -0.9092306812010303, -0.8598152089856584, -0.8123966594265983, -0.76699015630763, -0.7235978416322406, -0.6822103961677853, -0.6428084688876678, -0.6053640094442112, -0.5698415010496636 ], [ -1.9982804424606124, -2.0494835571666816, -2.0977447120723953, -2.142541956537125, -2.18336325319256, -2.2197232187381912, -2.251179546179798, -2.2773472076790644, -2.2979090768653743, -2.31262250251558, -2.32132218655848, -2.323920164088247, -2.3204037114161498, -2.310831796432695, -2.2953304470874842, -2.274087261124704, -2.247345220066873, -2.215395964874736, -2.1785727026259933, -2.137242920746763, -2.0918010792545454, -2.042661432823834, -1.9902511089116008, -1.9350035424431784, -1.8773523466123276, -1.8177256848923464, -1.7565411999797718, -1.6942015478703303, -1.6310905762265553, -1.5675701734894476, -1.5039777985013156, -1.4406246810800505, -1.3777946642690433, -1.3157436411968249, -1.2546995253615074, -1.1948626836179752, -1.1364067563193498, -1.079479788510132, -1.0242055990264807, -0.9706853199431533, -0.918999046133775, -0.8692075429864469, -0.8213539688717977, -0.7754655772792983, -0.7315553712535661, -0.6896236896484531, -0.6496597106625239, -0.6116428631039637, -0.57554413989841, -0.5413273115817037 ], [ -1.9391513041334205, -1.9880648647702994, -2.0340811465922144, -2.076705653631472, -2.1154553842032158, -2.149873879499169, -2.1795457937280402, -2.2041094898379416, -2.22326661111579, -2.236788254017468, -2.2445179736951806, -2.246372192996165, -2.2423386396696, -2.232473316714694, -2.2168963526725873, -2.1957869641806598, -2.16937770922005, -2.1379481968507332, -2.101818421820451, -2.0613418921493643, -2.0168987072444677, -1.9688887242274309, -1.917724926365037, -1.8638270858516208, -1.8076157976893243, -1.7495069526736424, -1.689906713108388, -1.6292070508286123, -1.5677818995905626, -1.5059839607454952, -1.4441421824542553, -1.3825599105361952, -1.321513686344539, -1.2612526466795757, -1.2019984647203137, -1.1439457602270615, -1.0872629018605682, -1.032093123770975, -0.9785558817092325, -0.9267483797891606, -0.8767472067064958, -0.8286100288449901, -0.7823772965644619, -0.7380739285352714, -0.695710946884983, -0.6552870429319646, -0.6167900592949997, -0.580198379177584, -0.5454822176846177, -0.512604813230066 ], [ -1.8779719829259083, -1.9245148166782429, -1.9682124902515392, -2.0085988311394494, -2.045220282657334, -2.077649336089193, -2.1054974239807605, -2.1284261029117637, -2.146155704618995, -2.1584711355123756, -2.165224955312683, -2.1663381331611156, -2.161798949143906, -2.1516604503319976, -2.136036771454214, -2.1150985501087693, -2.089067623088132, -2.058211175074629, -2.0228355065363237, -1.9832795807935752, -1.9399084955068404, -1.893107002735535, -1.843273179455245, -1.7908123324809893, -1.7361312112764695, -1.6796325988184604, -1.621710351174394, -1.5627449559099469, -1.5030996735558695, -1.4431173129215593, -1.3831176705432184, -1.3233956396975977, -1.2642199688876803, -1.2058326269181934, -1.1484487139162816, -1.0922568458846476, -1.0374199344864459, -0.9840762829712053, -0.9323409223801352, -0.8823071182863981, -0.8340479862827103, -0.7876181633197747, -0.7430554910943883, -0.7003826764345087, -0.6596089016553897, -0.620731364944997, -0.5837367368841193, -0.5486025242166441, -0.5152983360226477, -0.48378705061137084 ], [ -1.8150845672683773, -1.8591995589930892, -1.9005283442435765, -1.93863332935401, -1.973090274103568, -2.003500232935005, -2.0295009562071695, -2.0507768320257473, -2.067066716491499, -2.078169369032693, -2.0839465462629057, -2.084324022415236, -2.0792908819541474, -2.0688974120667956, -2.053251866890332, -2.032516323354447, -2.0069018164843384, -1.9766629267314186, -1.942091982735936, -1.9035130309242352, -1.8612757052275435, -1.8157491081661212, -1.7673157937072688, -1.716365927690229, -1.6632916956959596, -1.6084820299271692, -1.5523177317501562, -1.4951670694191526, -1.4373819263043883, -1.3792945613618486, -1.3212150214653902, -1.2634292179318405, -1.2061976515000232, -1.1497547450950378, -1.0943087244415128, -1.0400419739415094, -0.9871117889480668, -0.935651444691504, -0.8857715054329875, -0.8375613037028014, -0.7910905276220399, -0.7464108633694048, -0.7035576490901553, -0.6625515053952356, -0.6233999156881145, -0.5860987366689394, -0.5506336254120179, -0.5169813744015557, -0.48511114991271187, -0.4549856322482655 ], [ -1.7508322813890689, -1.7924848447064383, -1.8314162202549453, -1.8672171737808285, -1.8994922589644698, -1.927870413128852, -1.9520150429342455, -1.9716328740404874, -1.9864810391614212, -1.996372149655163, -2.001177348644652, -2.0008275170186263, -1.9953128831387534, -1.9846812960565563, -1.969035397154201, -1.948528895346243, -1.923362129341416, -1.8937770867161163, -1.8600520375657383, -1.8224959248802697, -1.7814426332447764, -1.737245234907238, -1.690270292810339, -1.6408922885131687, -1.5894882410116744, -1.5364325885942998, -1.4820924151302086, -1.4268231082508982, -1.3709645343801746, -1.3148378020365525, -1.258742661425989, -1.202955559016524, -1.1477283355726384, -1.0932875294047357, -1.0398342260751279, -0.9875443824290017, -0.9365695461951526, -0.8870378914248722, -0.8390554933717334, -0.7927077727634207, -0.7480610476326073, -0.7051641400007227, -0.664049993988858, -0.6247372708033232, -0.5872318941335333, -0.5515285265944114, -0.5176119638602013, -0.485458438085403, -0.4550368261664455, -0.4263097614762559 ], [ -1.685554107780831, -1.724730365568535, -1.761255684168099, -1.7947486185893513, -1.824841715541757, -1.8511909104373196, -1.8734844576098386, -1.8914508154830802, -1.9048650574814623, -1.9135535785373414, -1.9173970579958752, -1.9163317802492854, -1.9103494915383656, -1.8994959969967287, -1.8838686986483222, -1.8636132620715138, -1.8389195866523118, -1.810017242855445, -1.7771705266257989, -1.740673263201426, -1.7008434706207398, -1.6580179705958256, -1.6125470163539328, -1.5647889979316714, -1.5151052868677455, -1.46385529213121, -1.411391811985078, -1.3580567754007449, -1.3041774657749592, -1.25006330645513, -1.1960032633244273, -1.1422638888747003, -1.0890880003590466, -1.036693956521076, -0.9852754759163662, -0.9350019258828495, -0.8860190042805915, -0.8384497349899076, -0.7923957014109789, -0.7479384485034393, -0.7051409920731215, -0.6640493830911194, -0.6246942840574827, -0.5870925232378379, -0.5512486006320321, -0.5171561265670945, -0.48479917976266185, -0.4541535766092628, -0.42518804730675974, -0.3978653175437563 ], [ -1.619580318190791, -1.6562851605628504, -1.690413710234182, -1.7216114919392396, -1.7495380542002075, -1.7738753058044021, -1.7943354317612619, -1.8106679235868066, -1.822665369332888, -1.830167795907045, -1.833065501495944, -1.8313004301554376, -1.824866212685599, -1.8138070328642395, -1.798215488996924, -1.778229619878518, -1.754029258586794, -1.725831868531657, -1.693888002648675, -1.6584765077854953, -1.6198995737742405, -1.5784777044695475, -1.5345446713322515, -1.4884425031815716, -1.4405165699136355, -1.3911108308591116, -1.3405633342049776, -1.2892020652021574, -1.2373412415448022, -1.185278141603184, -1.1332905266296842, -1.08163468640015, -1.0305441049202124, -0.9802287138365068, -0.930874679033414, -0.8826446514716506, -0.8356784060720805, -0.7900937910829346, -0.7459879134252857, -0.7034384916249622, -0.6625053159339409, -0.6232317641590979, -0.5856463307935569, -0.5497641357272292, -0.5155883867264897, -0.48311177680548867, -0.4523178034824673, -0.42318200173717835, -0.3956730863362503, -0.3697540021825316 ], [ -1.553228868941043, -1.5874839924839408, -1.6192410785081441, -1.6481716308684502, -1.6739610830212543, -1.696316199045396, -1.7149720981177297, -1.7296985244604315, -1.7403050669497693, -1.7466451421855165, -1.7486186663320697, -1.7461734342454538, -1.739305290005789, -1.7280572121467723, -1.7125174565242731, -1.6928169072117552, -1.6691257855646298, -1.6416498610371948, -1.6106262943625287, -1.5763192248267053, -1.5390151910326946, -1.4990184531456072, -1.4566462692875812, -1.4122241735787207, -1.3660813095293731, -1.31854588749829, -1.2699408527505764, -1.2205798637433776, -1.17076368227749, -1.1207770652512083, -1.070886223481371, -1.0213368813127532, -0.9723529376037506, -0.9241356993070811, -0.8768636363227115, -0.8306925915162678, -0.7857563722042761, -0.7421676477130668, -0.700019080352074, -0.6593846229405229, -0.6203209237227836, -0.5828687881481769, -0.5470546558252396, -0.5128920594344155, -0.4803830401241136, -0.44951950070967306, -0.4202844837577131, -0.39265336637942405, -0.3665949673469162, -0.3420725650934904 ], [ -1.4868025604994344, -1.5186445469381264, -1.5480696322939482, -1.5747741964464035, -1.598468362012464, -1.6188825706278887, -1.635773822035288, -1.6489312658026516, -1.6581808969034655, -1.6633891888823367, -1.6644655848169745, -1.6613638426431154, -1.6540822900653795, -1.642663084280957, -1.6271905961656121, -1.6077890513016948, -1.5846195638908167, -1.5578766952336214, -1.527784656546823, -1.4945932577087633, -1.4585736820472595, -1.4200141470547116, -1.3792154969880341, -1.3364867695839875, -1.2921407867028836, -1.24648983498971, -1.1998415216470404, -1.1524949046492972, -1.104736999842228, -1.0568397565024743, -1.0090575695549964, -0.9616253655835717, -0.9147572670545658, -0.8686458099546731, -0.8234616674191398, -0.7793538168878584, -0.7364500803696217, -0.6948579652755725, -0.6546657355704715, -0.6159436483463623, -0.5787452982022654, -0.5431090200750539, -0.5090593096711558, -0.47660822884614484, -0.44575677079720943, -0.41649616655483834, -0.3888091198935315, -0.36267096242920327, -0.33805072439780126, -0.3149121195154425 ], [ -1.4205868502967158, -1.4500653143968358, -1.4772102352155982, -1.5017416960714405, -1.5233932677414408, -1.541917856853182, -1.5570932511668032, -1.5687271049018998, -1.5766611535527986, -1.5807745104674598, -1.5809859652988791, -1.5772552672966562, -1.569583428186565, -1.5580121180996274, -1.5426222544128982, -1.5235318990847755, -1.5008935863526949, -1.4748912001612122, -1.4457365101159756, -1.4136654578045973, -1.3789342652052532, -1.341815418156615, -1.3025935653574772, -1.261561370786827, -1.2190153657826797, -1.1752518637324918, -1.1305630196513985, -1.0852331316268127, -1.0395352850419557, -0.993728430827805, -0.9480549670526547, -0.9027388634942437, -0.8579843372296042, -0.8139750587243176, -0.7708738454989538, -0.7288227852723154, -0.6879437221484321, -0.6483390367899369, -0.6100926532524698, -0.5732712099546673, -0.5379253390119612, -0.5040910059506722, -0.47179086991377184, -0.44103563232726084, -0.4118253492435582, -0.3841506889931623, -0.35799412225850213, -0.333331036227444, -0.3101307681424763, -0.2883575564269554 ], [ -1.354848218137973, -1.3820240389493366, -1.4069513014935306, -1.4293725817736609, -1.4490436368694388, -1.465738609705877, -1.4792549597547635, -1.4894179052692238, -1.4960841979416417, -1.4991450993725055, -1.4985284825619778, -1.4942000336543415, -1.4861635744690558, -1.4744605625462546, -1.4591688519458341, -1.440400815083407, -1.4183009337580472, -1.3930429665215005, -1.3648267904182196, -1.3338749997365746, -1.3004293260084543, -1.2647469264659923, -1.2270965770996447, -1.187754804781723, -1.1470020015040638, -1.105118580197543, -1.0623812504592287, -1.0190595070533988, -0.9754124285042322, -0.9316858747354703, -0.8881101526345068, -0.8448981907540891, -0.8022442344612348, -0.760323045432661, -0.7192895675134097, -0.6792790057779041, -0.6404072569438186, -0.602771626110685, -0.566451765887126, -0.531510778120323, -0.4979964245781783, -0.4659424001665362, -0.43536962987828165, -0.40628755813181483, -0.3786954060889369, -0.35258337871902246, -0.327933808687326, -0.3047222285718232, -0.2829183664979318, -0.2624870631043863 ], [ -1.2898330007369243, -1.314776642681538, -1.3375578046301468, -1.3579403291652106, -1.375700894816202, -1.3906336504389374, -1.4025546001469555, -1.4113055585806193, -1.4167575235726977, -1.4188133512323953, -1.4174096616760354, -1.4125179469057367, -1.404144891727233, -1.3923319516499109, -1.3771542571528794, -1.35871893091194, -1.337162913247669, -1.3126503911942795, -1.285369918920502, -1.2555313035995892, -1.223362314370232, -1.18910525687434, -1.1530134462312467, -1.1153476103117597, -1.076372263565371, -1.0363521071825912, -0.9955485291265384, -0.9542162914133774, -0.9126004966990182, -0.870933919175206, -0.8294347668379218, -0.7883049169648573, -0.7477286389163006, -0.7078717925169352, -0.668881469205661, -0.6308860281277093, -0.5939954703600294, -0.5583020907170226, -0.5238813469868349, -0.4907928898795546, -0.45908170241667623, -0.42877930409846665, -0.39990498225947313, -0.3724670200351745, -0.3464638969402727, -0.32188544396761043, -0.298713940234586, -0.2769251425003194, -0.2564892423802809, -0.23737174886504797 ], [ -1.2257666285962252, -1.2485565558884857, -1.2692706941505825, -1.2876929278118463, -1.3036196023143982, -1.3168636518484906, -1.3272584985690214, -1.3346615709275207, -1.3389573101546064, -1.3400595640747859, -1.337913302507119, -1.3324956246852788, -1.3238160632282967, -1.3119162188750124, -1.2968687838770814, -1.2787760285626115, -1.257767834463599, -1.23399935837877, -1.2076484054546037, -1.1789125775593439, -1.1480062488281406, -1.1151574070429278, -1.0806043912849075, -1.044592555804345, -1.007370897922578, -0.9691887019857429, -0.9302922675713581, -0.8909218028970817, -0.851308569025074, -0.8116723546389568, -0.7722193454837145, -0.7331404300253924, -0.6946099576716539, -0.6567849419123066, -0.6198046807468083, -0.5837907521010954, -0.5488473327588617, -0.5150617850583783, -0.48250545530860967, -0.45123463055439506, -0.42129160503103047, -0.39270581357950385, -0.36549499577791456, -0.33966636106612036, -0.31521773132722775, -0.29213864300083814, -0.27041139570673, -0.25001203850857867, -0.23091128836026042, -0.2130753780077841 ], [ -1.1628532117828905, -1.1835743988845109, -1.2023066667987776, -1.218852730823549, -1.2330273691916234, -1.244661099824529, -1.2536036465163292, -1.2597270651074643, -1.2629284172759636, -1.2631319038535047, -1.2602903983403064, -1.254386351683997, -1.2454320688123734, -1.2334693837408883, -1.2185687816502422, -1.2008280318887832, -1.1803704045546293, -1.1573425448772883, -1.1319120745987878, -1.1042649795510022, -1.0746028302963841, -1.043139871410541, -1.0101000080842795, -0.9757137185820343, -0.9402149282222394, -0.9038378931576587, -0.866814156562708, -0.8293696512219698, -0.7917220269140339, -0.7540782762755157, -0.7166327193681238, -0.6795653874114689, -0.643040823604166, -0.607207297069507, -0.5721964072722634, -0.5381230421254868, -0.505085643768626, -0.47316673126976694, -0.4424336285361017, -0.41293934763441054, -0.38472358167300946, -0.3578137666195902, -0.33222617728863035, -0.3079670287281906, -0.28503356000066726, -0.26341508263992863, -0.2430939807357586, -0.22404665358599152, -0.20624439516794046, -0.18965420735422178 ], [ -1.1012754305915569, -1.1200179714245666, -1.1368582489460513, -1.1516166213755268, -1.164125093817471, -1.1742305928347672, -1.1817980460428712, -1.186713156335627, -1.1888847741908537, -1.1882467913232522, -1.1847595027715636, -1.1784104101424628, -1.1692144640692583, -1.157213767088701, -1.1424767774855507, -1.1250970689077482, -1.1051917088202594, -1.0828993208208586, -1.0583778919593465, -1.0318023779145595, -1.0033621485446735, -0.9732583068745944, -0.9417009088996429, -0.908906111672401, -0.8750932834017793, -0.8404821201942223, -0.8052898264262419, -0.7697284256317951, -0.7340022727876964, -0.6983058351114596, -0.6628217971090027, -0.627719528553925, -0.5931539342432852, -0.5592646847001423, -0.5261758097738194, -0.49399562367598926, -0.46281694084370284, -0.4327175369465801, -0.4037608077804131, -0.37599657997761415, -0.3494620306584175, -0.32418267764971365, -0.3001734071126161, -0.2774395108665264, -0.2559777110159156, -0.23577715442725777, -0.2168203640169557, -0.19908413762238464, -0.182540388424711, -0.16715692349961486 ], [ -1.0411946932044, -1.0580525119034965, -1.0730941527129367, -1.0861564588920944, -1.097087490779848, -1.1057494411608237, -1.1120213693994203, -1.1158016599124778, -1.1170101219511346, -1.1155896640419065, -1.1115074963264595, -1.1047558357424958, -1.0953521107677546, -1.0833386826524403, -1.06878211720979, -1.0517720540830995, -1.0324197280934404, -1.0108561994705085, -0.9872303468871955, -0.9617066705117978, -0.9344629438024085, -0.9056877450087983, -0.8755778947455635, -0.844335826219906, -0.8121669200472647, -0.779276844781883, -0.7458689546938279, -0.7121418047041884, -0.6782868458883622, -0.6444863619495909, -0.6109116975608713, -0.5777218149426868, -0.5450621978219559, -0.5130641044717397, -0.4818441558875448, -0.45150423260706907, -0.422131644777723, -0.3937995347852965, -0.36656746966953824, -0.34048218106924, -0.31557841290699673, -0.2918798408158785, -0.2694000318754528, -0.24814341810936202, -0.22810626205113937, -0.2092775972619323, -0.19164013082289544, -0.1751710984427548, -0.15984306588858122, -0.14562467297852422 ], [ -0.9827515261486389, -0.9978211918835024, -1.011159871109186, -1.0226197696884527, -1.0320638706105152, -1.0393685281561198, -1.0444258931414585, -1.0471460882749883, -1.0474590621936566, -1.0453160644325017, -1.0406907003102095, -1.0335795431449188, -1.0240022999140739, -1.0120015440142667, -0.9976420438347013, -0.9810097273047721, -0.962210329616972, -0.9413677736604392, -0.9186223306803952, -0.8941286033870857, -0.8680533669133155, -0.8405732967712313, -0.8118726092966027, -0.7821406403464277, -0.7515693924727327, -0.7203510883735892, -0.6886757769861356, -0.6567290455120385, -0.6246898936116925, -0.5927288235845767, -0.5610061924723562, -0.5296708597684474, -0.4988591496343391, -0.46869413124134707, -0.4392852068277502, -0.41072798548712286, -0.3831044121850482, -0.3564831161290394, -0.3309199401270744, -0.30645861249714335, -0.2831315248841111, -0.260960582451218, -0.2399580968413355, -0.22012769662540466, -0.20146523433813246, -0.18395967339977748, -0.16759394207363565, -0.15234574501705334, -0.13818832590901642, -0.12509117707915607 ], [ -0.926066165513836, -0.9394458132616033, -0.9511784787073166, -0.9611306474545689, -0.9691791353452901, -0.9752133951735, -0.9791376656662408, -0.9808728931879965, -0.9803583647021977, -0.9775530020723505, -0.9724362819424515, -0.965008761130662, -0.9552922035116653, -0.9433293195325402, -0.9291831426446197, -0.9129360770446094, -0.8946886575016757, -0.8745580644406279, -0.8526764361593933, -0.8291890160015477, -0.8042521669370514, -0.778031281067615, -0.7506986087033914, -0.72243103194388, -0.6934078113207208, -0.6638083401730976, -0.6338099483244666, -0.6035858022156799, -0.5733029510335512, -0.5431205663910887, -0.5131884166027887, -0.48364560634125, -0.4546195998873639, -0.4262255329401079, -0.39856580551874554, -0.3717299379576411, -0.34579466397419156, -0.3208242294652568, -0.296870862914679, -0.27397538272751043, -0.25216790799715905, -0.23146864168820036, -0.21188869853514536, -0.19343095372884034, -0.17609089237387865, -0.15985744351437936, -0.14471378607670737, -0.1306381172638007, -0.11760437670543866, -0.10558292200959518 ], [ -0.871239318256171, -0.8830276764021466, -0.8932516049560089, -0.9017908291218492, -0.9085349534585204, -0.9133855112208451, -0.9162578662683981, -0.917082907732716, -0.9158084845577149, -0.9124005368519095, -0.9068438930339423, -0.8991427151455885, -0.8893205884594737, -0.8774202645870625, -0.8635030786994984, -0.847648070351254, -0.8299508431442779, -0.8105222008683244, -0.7894865970632866, -0.766980431942118, -0.7431502264882905, -0.7181506997148563, -0.692142772857748, -0.6652915245378679, -0.6377641238074505, -0.6097277728246036, -0.5813476963376556, -0.5527852195562943, -0.5241959778297391, -0.4957282998799313, -0.4675218009511162, -0.43970621368943164, -0.4124004739454401, -0.3857120673099417, -0.35973663128826927, -0.3345577985496837, -0.3102472592517995, -0.2868650152748182, -0.26445979625951477, -0.24306960638425346, -0.22272237148558927, -0.20343665802910293, -0.18522243818426998, -0.1680818785010163, -0.15201013313599532, -0.13699612600629862, -0.12302330949395834, -0.11007039027869503, -0.09811201547900006, -0.08711941450997407 ], [ -0.8183530640183118, -0.8286485884228227, -0.8374605478462822, -0.8446809120266429, -0.8502110779062817, -0.8539636884909229, -0.8558643138588806, -0.8558529428384221, -0.8538852398626452, -0.8499335299242425, -0.8439874848405702, -0.836054495488819, -0.826159726458501, -0.8143458608204684, -0.8006725525828555, -0.7852156121682773, -0.7680659553992668, -0.7493283488422059, -0.7291199841556958, -0.707568911954983, -0.6848123626148621, -0.6609949785250802, -0.6362669806280976, -0.6107822922893877, -0.5846966457870035, -0.5581657004404368, -0.5313432055910186, -0.504379245011134, -0.47741860066614383, -0.4505992722929584, -0.42405118478463355, -0.3978951082596969, -0.3722418067667781, -0.3471914218618972, -0.32283308781440967, -0.29924476677782463, -0.27649328545944907, -0.25463454990763523, -0.2337139120315963, -0.21376666021944635, -0.19481860665510586, -0.17688674533152526, -0.1599799569841185, -0.14409973991783076, -0.12924094870862146, -0.11539252581300663, -0.10253821405859331, -0.09065724070455583, -0.0797249661876962, -0.0697134927751979 ], [ -0.7674718690729475, -0.7763719818955936, -0.7838674966246448, -0.789861679218556, -0.7942667719657441, -0.7970056059610053, -0.7980130847187572, -0.7972374945836158, -0.7946416028225826, -0.7902035115280919, -0.7839172442799028, -0.7757930523178372, -0.7658574370794772, -0.7541528956250747, -0.7407374039963505, -0.7256836603302097, -0.7090781141561714, -0.69101981060515, -0.6716190784343175, -0.65099608934666, -0.6292793138387567, -0.6066038966463876, -0.5831099735953245, -0.5589409518355297, -0.5342417771309835, -0.5091572146987495, -0.48383017324495325, -0.45840010434102285, -0.43300151019019717, -0.4077625915157894, -0.38280406355729646, -0.35823816224127936, -0.3341678551089644, -0.31068626333679594, -0.2878762930018479, -0.26581046632707017, -0.2445509374939634, -0.2241496730114012, -0.20464877365105028, -0.1860809135136936, -0.16846987167861127, -0.15183113285214733, -0.13617253519455286, -0.12149494579936926, -0.107792946890229, -0.09505551848973415, -0.08326670595269903, -0.07240626323216448, -0.06245026499126283, -0.05337168264809056 ], [ -0.7186436854406648, -0.7262441156814455, -0.7325168337536531, -0.7373755013721491, -0.7407423093423033, -0.7425494052941444, -0.7427402010279328, -0.7412705212708502, -0.7381095602258789, -0.7332406185601879, -0.7266616010614191, -0.7183852635971809, -0.7084392066729275, -0.6968656211858085, -0.6837207993257515, -0.669074429479952, -0.6530086981115433, -0.6356172237967705, -0.6170038490701095, -0.5972813148630247, -0.5765698407501734, -0.5549956326454895, -0.5326893386584031, -0.5097844739411446, -0.48641583660577004, -0.4627179388671292, -0.4388234798741102, -0.414861888469674, -0.3909579646501318, -0.36723064726806154, -0.3437919323577254, -0.3207459615196342, -0.2981882935318729, -0.27620536537914164, -0.25487414186666757, -0.23426194650315302, -0.2144264608397577, -0.19541587521112302, -0.17726917094262817, -0.16001651252723859, -0.1436797278977282, -0.12827285552413104, -0.11380273842571609, -0.10026964707295827, -0.08766791536061724, -0.07598657617934856, -0.0652099854589614, -0.05531842579509427, -0.04628868283066656, -0.03809458940048316 ], [ -0.6719011100020786, -0.6782953315008109, -0.6834364883586689, -0.6872477860111501, -0.6896605175467264, -0.6906153261570966, -0.6900633552183619, -0.6879672530874129, -0.6843020037335017, -0.679055559763644, -0.6722292609329554, -0.6638380284496965, -0.6539103328124838, -0.6424879400466317, -0.6296254475494933, -0.615389625900705, -0.5998585866660202, -0.5831207983345696, -0.5652739732040732, -0.5464238475989909, -0.5266828767617617, -0.506168864648755, -0.4850035481848529, -0.46331115560473624, -0.44121695939651717, -0.4188458458459041, -0.39632092480494685, -0.37376220450761544, -0.35128535647158565, -0.3290005943616927, -0.30701168798459033, -0.28541512943874947, -0.26429946318825315, -0.24374478593765048, -0.22382241618173326, -0.20459472767393327, -0.18611513618445552, -0.16842822505725885, -0.1515699923408913, -0.13556820066221986, -0.12044281044167748, -0.10620647736278621, -0.09286509602393811, -0.08041837322631262, -0.06886041620749661, -0.05818032315777555, -0.04836276542364448, -0.039388552810814215, -0.031235175273996107, -0.02387731597721654 ], [ -0.627262580505271, -0.6325413421032269, -0.6366393158865045, -0.6394884475199856, -0.6410283366487195, -0.6412073515756187, -0.639983639172208, -0.6373260016604327, -0.6332146154697522, -0.6276415721072905, -0.6206112266192043, -0.6121403454278376, -0.6022580517058156, -0.591005572573333, -0.5784357978791819, -0.5646126648127605, -0.549610385872392, -0.5335125397124019, -0.5164110452086079, -0.498405038979308, -0.47959967595789554, -0.4601048718600014, -0.44003400590393693, -0.41950260217625046, -0.3986270086371999, -0.3775230937745213, -0.3563049820046509, -0.33508384965833726, -0.31396680335322724, -0.29305586143722717, -0.2724470568463093, -0.25222967622234393, -0.23248564572037012, -0.21328906896197064, -0.1947059174745709, -0.17679386909082417, -0.15960228549505762, -0.14317231662332164, -0.12753711707282722, -0.11272215807888375, -0.09874561791816094, -0.08561883368394163, -0.07334679810793521, -0.0619286863166042, -0.0513583989540678, -0.041625109838479224, -0.03271380812693203, -0.024605826749759085, -0.017279350569775476, -0.010709899276690305 ], [ -0.5847335876960982, -0.5889845294472771, -0.5921244815090165, -0.5940933745313743, -0.5948383689838521, -0.594314837826081, -0.5924872516213844, -0.5893299416572895, -0.584827719796303, -0.5789763379090547, -0.5717827746204629, -0.5632653424438658, -0.5534536138572694, -0.542388170144124, -0.5301201815496488, -0.5167108312201614, -0.5022305983175217, -0.48675841757703964, -0.4703807334813157, -0.45319046735892976, -0.43528591537831574, -0.4167695949222252, -0.39774705648894515, -0.37832567826518226, -0.35861346089666024, -0.3387178406339364, -0.3187445397063109, -0.2987964731575692, -0.2789727311471917, -0.2593676546386061, -0.2400700203501811, -0.22116234787237388, -0.202720338130308, -0.18481244817045162, -0.16749960289473398, -0.15083504017594063, -0.1348642820378383, -0.11962522147473709, -0.10514831213698583, -0.09145684656128861, -0.07856730784781596, -0.06648977960195013, -0.05522839945375102, -0.04478184241590255, -0.03514382161111218, -0.026303595371943933, -0.018246471284100174, -0.010954299321616956, -0.004405947742692318, 0.0014222431702699545 ], [ -0.5443078852830252, -0.5476152340194873, -0.5498788277905666, -0.5510458745696598, -0.5510703990251862, -0.5499141073789959, -0.5475471615411263, -0.5439488414721512, -0.5391080775270356, -0.5330238381423278, -0.5257053624553831, -0.5171722320525778, -0.5074542807580829, -0.49659134591193177, -0.4846328686761967, -0.47163735433060716, -0.45767170612858177, -0.4428104480343784, -0.42713485261051787, -0.41073199062760435, -0.3936937188518801, -0.37611562217937466, -0.3580959260532015, -0.33973439507140446, -0.3211312339046508, -0.30238600701844276, -0.28359659405436455, -0.2648581978340694, -0.246262421573332, -0.22789643084598166, -0.2098422140315097, -0.19217595243561814, -0.17496750811907025, -0.15828003391432466, -0.1421697064040892, -0.1266855790363799, -0.1118695492852364, -0.0977564310086918, -0.08437412101862418, -0.07174384740721429, -0.059880486362747565, -0.048792933998914156, -0.03848452003115588, -0.028953450858920204, -0.020193270646179373, -0.012193330230852117, -0.0049392550439919525, 0.0015865953968650093, 0.007404682501110038, 0.012537862927093801 ], [ -0.5059686819950242, -0.5084130191964533, -0.5098782101678558, -0.5103180791408028, -0.5096928662524189, -0.5079699873681918, -0.5051247096501545, -0.5011407247443518, -0.49601060395055674, -0.48973612289486024, -0.4823284468939675, -0.4738081721791787, -0.464205222211562, -0.45355860223294253, -0.44191601874091235, -0.4293333735707776, -0.41587414459526495, -0.40160866667450623, -0.3866133274471788, -0.3709696929674411, -0.3547635782325531, -0.33808407750358627, -0.32102256916727434, -0.30367170983545244, -0.28612443246400376, -0.2684729634419303, -0.25080787372542024, -0.2332171790004176, -0.21578550337527846, -0.19859332009487196, -0.18171628115900829, -0.1652246455344375, -0.14918281296446612, -0.1336489673624648, -0.11867483062004558, -0.10430552457256903, -0.09057953603014579, -0.0775287773505291, -0.0651787331028344, -0.053548681997627856, -0.04265198244312396, -0.032496409793595804, -0.023084533520618677, -0.014414123080290553, -0.006478572080987233, 0.0007326686100095348, 0.007233657028117735, 0.013041532542502843, 0.018176100358137104, 0.022659432741428454 ], [ -0.469689802514476, -0.47134789728602744, -0.4720887867495156, -0.4718722956654662, -0.4706642773206884, -0.4684372798099763, -0.46517113417708966, -0.46085344881079515, -0.45547999670457107, -0.44905498495569374, -0.44159119906761735, -0.4331100180612819, -0.4236412999087782, -0.4132231401838151, -0.40190150989853834, -0.38972978111987144, -0.37676815103450756, -0.36308297662569644, -0.3487460330681076, -0.333833709427539, -0.3184261554000638, -0.30260639278453616, -0.2864594052832059, -0.27007122015714113, -0.2535279952551557, -0.23691512495268174, -0.22031637848938868, -0.20381308395873732, -0.18748337065057274, -0.17140148147762946, -0.15563716577503683, -0.1402551608571443, -0.12531476841804468, -0.11086952929153893, -0.09696699739532866, -0.08364861103514354, -0.07094965728957536, -0.058899323061121445, -0.04752082465321461, -0.03683160646607364, -0.026843598607882102, -0.017563522870145176, -0.00899323657094353, -0.0011301041639473208, 0.006032612827187922, 0.01250535613310122, 0.018301868924276432, 0.02343879841556329, 0.0279353083910987, 0.031812706124680235 ], [ -0.4354368064935543, -0.4363815064908896, -0.4364682517426359, -0.43566229565465364, -0.4339345470486955, -0.43126215323713835, -0.42762901072364246, -0.42302619010224474, -0.41745226369540145, -0.41091352689974747, -0.40342410698317255, -0.39500595605884836, -0.38568872799518505, -0.3755095419471859, -0.36451263786768684, -0.3527489316583865, -0.3402754794704079, -0.32715486203360267, -0.3134545008028715, -0.29924591822424906, -0.2846039546410324, -0.2696059543886855, -0.25433093356724656, -0.23885874189931533, -0.22326923100710916, -0.20764144135166696, -0.1920528199082321, -0.17657848031653423, -0.1612905166508607, -0.14625738102810426, -0.131543333973146, -0.11720797479644585, -0.10330585726111985, -0.08988619361874917, -0.07699264779281623, -0.06466321621502225, -0.052930192695938905, -0.04182021184247975, -0.031354363998375545, -0.021548373527238596, -0.012412831496538379, -0.003953473443861988, 0.0038285071193282505, 0.010936118535340489, 0.01737621270748524, 0.023159116530628632, 0.02829826005907221, 0.03280980752521545, 0.03671229639691176, 0.04002628874971159 ], [ -0.4031680571360432, -0.4034682304597361, -0.40296700439041566, -0.4016345312649747, -0.39944626064805355, -0.39638344848282925, -0.39243359929548105, -0.38759082990467086, -0.38185614483831043, -0.375237615793121, -0.36775045989149735, -0.359417014078002, -0.35026660562576595, -0.3403353212606215, -0.32966567973837013, -0.31830621473094034, -0.30631097652494743, -0.2937389622848865, -0.28065348549557534, -0.2671214957230512, -0.2532128600910435, -0.23899961794478175, -0.22455522013939966, -0.20995376430150836, -0.19526923729151013, -0.1805747759291616, -0.16594195679300383, -0.15144012550447106, -0.13713577529414644, -0.12309198376786679, -0.10936791561597947, -0.09601839754643415, -0.08309357001121831, -0.07063861840837693, -0.05869358446975048, -0.047293256590765775, -0.03646713602164353, -0.026239474207175206, -0.016629375200495122, -0.0076509560288327005, 0.0006864428264252709, 0.00837800506127051, 0.015423152601791612, 0.021825234204551958, 0.027591196326427925, 0.03273124340979883, 0.03725849403117598, 0.04118863858853605, 0.044539603395555405, 0.04733122524454525 ] ], "zauto": true, "zmax": 2.9220045365880734, "zmin": -2.9220045365880734 }, { "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.24846017519358524, 0.23871551459339946, 0.22920593794155233, 0.21998223218098167, 0.21113642414979794, 0.20280961041574072, 0.19519680062642744, 0.18854623533732026, 0.1831499057614711, 0.17932213562064614, 0.17736529506093926, 0.17752673716364245, 0.17995736550791894, 0.1846854058477909, 0.19161476544434836, 0.20054715254488395, 0.2112178955831777, 0.22333297389282675, 0.23659864449355686, 0.25074073642189965, 0.2655146878341089, 0.2807089711342746, 0.29614451359999117, 0.31167205733226866, 0.32716869437066226, 0.3425342739796393, 0.3576880303289611, 0.3725655755156033, 0.38711629419942717, 0.4013011232594101, 0.41509067765812363, 0.42846367722175627, 0.44140563000842703, 0.45390773197808565, 0.4659659476220296, 0.4775802410688709, 0.4887539315718513, 0.49949315110901177, 0.5098063851315321, 0.5197040803612749, 0.5291983060566567, 0.5383024574139789, 0.5470309918078107, 0.5553991904364269, 0.5634229396460958, 0.5711185277647107, 0.5785024546736447, 0.5855912525723436, 0.5924013174264549, 0.598948751421968 ], [ 0.23381233664005976, 0.22423767397367458, 0.2149038032094102, 0.20584838058379615, 0.1971532731609177, 0.18895419814256267, 0.18144733233893381, 0.17488997410112422, 0.16959125997007488, 0.16588878134477353, 0.164109420939826, 0.16451910308493034, 0.1672745600753299, 0.1723943552157524, 0.17976032345834575, 0.18914675696167113, 0.20026340750130245, 0.21279697945335557, 0.22644201079112247, 0.24091926449439077, 0.2559839967170428, 0.2714276059758967, 0.2870756419982816, 0.3027841823855751, 0.3184357444700014, 0.3339353296611832, 0.34920686052042127, 0.36419009056306806, 0.37883797944953224, 0.39311448937954435, 0.4069927471336419, 0.42045351662127123, 0.4334839319496621, 0.4460764475203903, 0.4582279679922207, 0.46993912656571435, 0.48121368483488414, 0.49205803148779503, 0.5024807605566501, 0.5124923128586827, 0.5221046668519185, 0.5313310674473878, 0.5401857834352443, 0.5486838861346646, 0.5568410436821198, 0.5646733270282732, 0.5721970252067847, 0.5794284687480702, 0.5863838612150248, 0.5930791197159515 ], [ 0.21928872375135164, 0.20994054707135304, 0.20084561850528712, 0.19202651303202764, 0.18355301131800744, 0.17555370330777756, 0.1682244798154802, 0.16183060367592528, 0.15669757723131536, 0.15318550416217283, 0.151644417373798, 0.15235609236263295, 0.1554788258540914, 0.16101669589304352, 0.168825888834582, 0.17865235673814972, 0.19018214094872316, 0.20308640299760547, 0.2170523506744763, 0.2317998155861482, 0.2470872944937389, 0.2627117131910784, 0.27850510231507813, 0.29433013742219016, 0.3100755767212728, 0.32565206739405406, 0.34098848707647694, 0.35602883886194586, 0.37072965481509423, 0.38505784199310267, 0.3989889033360491, 0.4125054718643739, 0.42559610491330363, 0.4382542932782822, 0.45047764729270173, 0.46226722784453317, 0.4736269952739938, 0.48456335317916877, 0.49508476759275927, 0.5052014449543181, 0.5149250549234684, 0.5242684864574982, 0.5332456277741308, 0.5418711628705899, 0.5501603791827766, 0.5581289827348093, 0.5657929187278975, 0.5731681969204979, 0.5802707223296618, 0.5871161327113262 ], [ 0.20486585518624653, 0.19579187397520614, 0.1869911969085555, 0.17846935896694957, 0.1702822314113357, 0.16254979175065193, 0.1554666059017489, 0.1493052906172921, 0.1444073115457061, 0.1411545394726412, 0.13991816860326384, 0.1409917785779841, 0.14452932756982834, 0.15051438944405954, 0.15877373835486375, 0.16902480039175383, 0.18093287169740435, 0.19415822536882535, 0.20838564571979332, 0.22333831604880497, 0.23878131347633477, 0.25451950883272023, 0.2703930732395499, 0.2862723704102768, 0.3020530832146201, 0.3176519057940284, 0.33300287724081856, 0.3480543216600724, 0.36276632006859816, 0.3771086328452715, 0.39105899773333885, 0.4046017386085857, 0.4177266305207841, 0.43042797552102113, 0.442703851224465, 0.45455550007564083, 0.46598683215861847, 0.4770040184080858, 0.4876151544680452, 0.4978299783987258, 0.5076596280851865, 0.5171164266452581, 0.526213686425501, 0.5349655243370264, 0.543386683319125, 0.5514923566101729, 0.5592980132219006, 0.5668192245185943, 0.5740714930606292, 0.5810700858511328 ], [ 0.19051663890240061, 0.18175228879879757, 0.17328970761235618, 0.1651153703490679, 0.1572694954985666, 0.14986228071339217, 0.1430865152846367, 0.1372223397627214, 0.13262752640601294, 0.1297052841668447, 0.12884542594639042, 0.1303477403055079, 0.1343539627571964, 0.14081975255227383, 0.14953853377506873, 0.16019980314206458, 0.1724520923298385, 0.18595015826367473, 0.20038155896467236, 0.2154770891191188, 0.2310115712929848, 0.24680003159223607, 0.26269226181426564, 0.27856727314372437, 0.2943282733284166, 0.30989835867991505, 0.32521691640811484, 0.3402366596904585, 0.35492120045670766, 0.3692430698175914, 0.3831821081048779, 0.39672415924499116, 0.40986001539239214, 0.42258456690315094, 0.434896120009982, 0.4467958503430839, 0.4582873651064986, 0.4693763505873646, 0.4800702849914538, 0.4903781995425834, 0.5003104734799818, 0.5098786511165619, 0.519095271526078, 0.5279737037229459, 0.5365279823758509, 0.5447726411278249, 0.5527225424418353, 0.5603927045070174, 0.5677981270825349, 0.5749536191872366 ], [ 0.1762148246821488, 0.16777974056225528, 0.15968426173586311, 0.15189366311729707, 0.1444307950647421, 0.13739525039865647, 0.13097833596232344, 0.12546897470342175, 0.12124272073285053, 0.1187242821141224, 0.11831892164865913, 0.12032503848828478, 0.12486176159078928, 0.13184782993960906, 0.14103931774970738, 0.15209930735723765, 0.16466453608596707, 0.17839018543601584, 0.19297191598842056, 0.2081522696696428, 0.22371877160067555, 0.2394986201137735, 0.25535256692163577, 0.27116914464555375, 0.2868596454766426, 0.3023539131100693, 0.3175968777712804, 0.3325457268653545, 0.34716760477505604, 0.36143774889689945, 0.37533798454735984, 0.38885551514900735, 0.4019819552450726, 0.4147125625912759, 0.4270456323426478, 0.43898202170548767, 0.45052477778559236, 0.46167884505275697, 0.4724508320859436, 0.4828488202190952, 0.4928821994761225, 0.5025615198261675, 0.5118983483358446, 0.5209051252459697, 0.5295950143369634, 0.537981745132538, 0.5460794464769693, 0.5539024727534785, 0.5614652254386249, 0.5687819737678974 ], [ 0.16194107438643618, 0.15383548724666035, 0.14611814080948224, 0.13873081681167182, 0.13167724851647028, 0.1250459481122927, 0.11902793743977344, 0.11392359187237794, 0.11012921583306919, 0.10809186095773683, 0.10822795570568057, 0.11082394046973514, 0.1159626676914165, 0.12351528925488695, 0.13319692244399606, 0.14464710369966088, 0.15749690374587638, 0.17140841742324686, 0.18609080144622897, 0.20130231637078277, 0.21684593490156234, 0.23256286976927149, 0.2483260569465781, 0.2640343633182163, 0.2796077027194474, 0.29498301301669105, 0.31011097621606154, 0.32495335719877017, 0.33948085161599545, 0.3536713523876339, 0.36750856112133884, 0.3809808841917344, 0.3940805634513071, 0.40680299929593056, 0.41914622979233424, 0.43111053436525854, 0.4426981345548459, 0.45391296787247765, 0.4647605139902309, 0.47524765551015646, 0.4853825584441914, 0.495174560330255, 0.504634056626811, 0.5137723786571735, 0.5226016588869337, 0.5311346816677565, 0.5393847197115578, 0.5473653584089393, 0.5550903116163382, 0.5625732336595778 ], [ 0.14769125248250803, 0.13989206638475865, 0.1325428589429933, 0.12555952193368222, 0.1189248489440371, 0.1127161592510777, 0.107126481597622, 0.10247209215095254, 0.09917479108007901, 0.09770516124963714, 0.09848403408052314, 0.10177049860351967, 0.10759317686871613, 0.11576378671982494, 0.12595447350812447, 0.13778639679242485, 0.1508926690953874, 0.16494942706728183, 0.17968475810947646, 0.19487641104857376, 0.2103453128266331, 0.22594834000819303, 0.24157170653553328, 0.25712534833332035, 0.27253829684047925, 0.28775491214129195, 0.30273182981466823, 0.31743549304035684, 0.3318401652625365, 0.3459263396528524, 0.3596794777644043, 0.3730890216035264, 0.38614763194784685, 0.3988506121388936, 0.4111954815769338, 0.4231816673022512, 0.4348102857180519, 0.4460839899066303, 0.4570068612275622, 0.46758432702244573, 0.4778230893115855, 0.48773105236196446, 0.49731723992725285, 0.5065916957890678, 0.515565363928406, 0.5242499471755432, 0.5326577454625556, 0.5408014767663765, 0.5486940854167367, 0.5563485435995378 ], [ 0.13348824094144715, 0.12594428537348168, 0.11892879283576042, 0.11232950807388067, 0.10610643673094422, 0.10032603043825833, 0.09518700644252943, 0.09102823735951913, 0.08830362873743741, 0.08750753512502413, 0.08905292906266898, 0.09314825482052812, 0.09974501030298367, 0.10858436100953717, 0.11929748866404971, 0.13149614153862033, 0.14482529152860796, 0.15898292550759696, 0.1737214296521366, 0.18884148814977053, 0.20418414733107534, 0.21962331837546462, 0.23505938261652928, 0.2504139370896659, 0.2656255283243112, 0.28064619735664365, 0.29543868372008625, 0.3099741684762447, 0.3242304633795098, 0.338190572937363, 0.35184156963053315, 0.3651737316946735, 0.3781798992130123, 0.39085500899354747, 0.403195772586001, 0.4152004653062867, 0.42686879752907503, 0.4382018428840016, 0.44920200136715516, 0.45987297873848204, 0.4702197668915466, 0.4802486131309105, 0.48996696945265933, 0.4993834159689951, 0.5085075555101668, 0.5173498791232284, 0.5259216046004662, 0.534234492237241, 0.5423006436685511, 0.5501322908079902 ], [ 0.11939997451674744, 0.11202567987799307, 0.1052804452062914, 0.09902243977927037, 0.09318731356809576, 0.08783167670776719, 0.08316554542421038, 0.0795599618474569, 0.07750889492551587, 0.07752629664173633, 0.07999351544623574, 0.08503309042884463, 0.09249307124723011, 0.10203850257385663, 0.11326951032882936, 0.12580277872576706, 0.13930721606093344, 0.1535108216994839, 0.16819522023097136, 0.1831868691908525, 0.19834854495375762, 0.2135721242751479, 0.2287727145705383, 0.2438839211527891, 0.25885402050647754, 0.2736428540310354, 0.28821930558811126, 0.3025592632239836, 0.31664399002392124, 0.3304588442832779, 0.34399229827292027, 0.3572352103352625, 0.37018030861423556, 0.38282184752745246, 0.39515540079631684, 0.4071777577839505, 0.41888689314155136, 0.4302819832818016, 0.44136344687290374, 0.45213299026369175, 0.46259364242020184, 0.47274976752078546, 0.48260704678849786, 0.49217242441118847, 0.5014540154795899, 0.5104609767131277, 0.5192033432765538, 0.5276918371417124, 0.5359376541421514, 0.5439522380416187 ], [ 0.10556900941394702, 0.09823583173010544, 0.09166142130390371, 0.08567548697926257, 0.08018906873279355, 0.07525147733596987, 0.07109263581405142, 0.06812887414185272, 0.06690092921464587, 0.06792507107223991, 0.07150514473207563, 0.07762835389141444, 0.08601754761475391, 0.0962707822463229, 0.10797919076135798, 0.12078443439261592, 0.13439265397440314, 0.14856932869993378, 0.1631290927764501, 0.17792593006731217, 0.19284509537773642, 0.2077967132889363, 0.22271069498243543, 0.23753264264316193, 0.2522205057364873, 0.2667418342625763, 0.28107152785514117, 0.2951900112183209, 0.3090817832714771, 0.32273429539572485, 0.3361371173754922, 0.3492813506044205, 0.36215924850601217, 0.3747640048628148, 0.3870896723235256, 0.39913117587819663, 0.4108843894322492, 0.42234624751836986, 0.43351486838305814, 0.4443896689357463, 0.4549714561924321, 0.46526248379793483, 0.47526646593895006, 0.48498854445465317, 0.49443520819839454, 0.5036141666687117, 0.5125341825515247, 0.5212048700224436, 0.52963646736938, 0.5378395936441706 ], [ 0.09226343786443617, 0.08478997530705001, 0.07824107503591399, 0.07242564192049436, 0.06723419096442261, 0.06271518685002447, 0.05913216228897703, 0.05696277822676071, 0.056790018653274675, 0.059081579402585495, 0.06398266683112114, 0.07129219254061701, 0.08061146996018799, 0.09150676950701365, 0.10359507613319795, 0.11656555873143633, 0.1301731380478427, 0.1442256671576425, 0.15857234570706652, 0.17309478329790576, 0.18770028048597479, 0.20231665196470416, 0.21688808461671494, 0.2313717192340906, 0.24573478254866718, 0.2599521768455473, 0.27400447586702875, 0.28787629376183044, 0.301554999077557, 0.31502974465722905, 0.32829078057494937, 0.3413290131898695, 0.35413577034996474, 0.3667027314488257, 0.37902198165348755, 0.39108615202426306, 0.4028886110314805, 0.4144236776227784, 0.425686831013629, 0.4366748973795482, 0.4473861983839951, 0.45782065087769297, 0.467979811139516, 0.47786686072176665, 0.4874865343347635, 0.4968449932487052, 0.5059496503602688, 0.51480895529533, 0.5234321496153859, 0.5318290032915431 ], [ 0.0799644170547108, 0.07211354579719631, 0.06539038870284548, 0.05960561093649647, 0.05464573853837001, 0.05057538640791608, 0.047713522958134594, 0.04660840503807666, 0.04783552010879547, 0.051692259030372195, 0.05805811439395017, 0.0665340222379189, 0.07665882246068444, 0.08802901978235829, 0.10032533622743321, 0.11330136078802303, 0.12676607431449255, 0.1405698767785824, 0.15459492028476937, 0.16874847335986437, 0.1829580897364302, 0.19716779639110554, 0.2113348825503477, 0.22542709889513074, 0.2394201970169524, 0.2532957941762596, 0.2670395670812192, 0.2806397786675074, 0.2940861337356833, 0.3073689482013611, 0.3204786056216844, 0.33340526533373577, 0.346138780012491, 0.358668777203942, 0.37098485937321923, 0.38307687974805327, 0.394935255966883, 0.406551289398718, 0.4179174642204146, 0.42902770635809934, 0.4398775879104384, 0.4504644675708515, 0.4607875618882488, 0.47084794604081215, 0.480648486224141, 0.4901937088066707, 0.49948961405918685, 0.5085434444560676, 0.517363419187967, 0.5259584475397772 ], [ 0.06949969163428046, 0.061015386137989895, 0.053883469088538534, 0.04796646327713987, 0.043193728004721196, 0.03968783945320739, 0.03784684011472365, 0.03823807241254747, 0.04125235987099993, 0.04682750346746871, 0.05455183673368655, 0.06393612540453224, 0.07456595350496098, 0.0861266579333228, 0.09838260582447296, 0.1111535027533619, 0.12429789087256879, 0.137703126162935, 0.1512793523271905, 0.16495554493745918, 0.1786764931516265, 0.1924001625940083, 0.20609522458831722, 0.21973871291951338, 0.23331384537602037, 0.2468080690094771, 0.2602113828487861, 0.27351497488436627, 0.28671018933564973, 0.299787819531984, 0.3127377034011951, 0.3255485839972057, 0.3382081876136939, 0.3507034671667548, 0.36302095839198495, 0.3751472001203527, 0.38706917623982773, 0.3987747446122886, 0.410253026086916, 0.42149473407393073, 0.4324924315403705, 0.44324070769905255, 0.4537362712092908, 0.4639779605856045, 0.47396667588527513, 0.4837052387085693, 0.4931981901044749, 0.5024515380719933, 0.5114724678914354, 0.5202690294217716 ], [ 0.06215894346000624, 0.052919921299288915, 0.04524915180307266, 0.03913845302568418, 0.034650161864346135, 0.03202444058702198, 0.03167762838063307, 0.0339409258267016, 0.03874509763257499, 0.04566742137962564, 0.05421155720038992, 0.06397090951756577, 0.07464793362666351, 0.08602574233788428, 0.09794011572262105, 0.11026145795313229, 0.12288480192166928, 0.1357245891331507, 0.1487117995660064, 0.1617919853764283, 0.17492347857370194, 0.18807549038328658, 0.20122606681832794, 0.2143599803743487, 0.22746667560571385, 0.24053838297033184, 0.2535684926726574, 0.2665502502832822, 0.27947580476573425, 0.2923356103764341, 0.30511815873013637, 0.3178099976839001, 0.3303959806766851, 0.34285968413862045, 0.3551839310199347, 0.36735136402877355, 0.3793450209688521, 0.39114887475305987, 0.40274831070495765, 0.41413052266937145, 0.425284816827542, 0.4362028179825338, 0.4468785777248875, 0.45730858765306276, 0.4674917039952733, 0.4774289927272137, 0.48712350664737236, 0.4965800078065616, 0.5058046500895467, 0.5148046375077774 ], [ 0.05949284634565082, 0.04978568186379041, 0.0418714101180866, 0.035915397318605206, 0.03213992968282776, 0.030800696754443628, 0.03203851734533912, 0.035711834987092225, 0.04143296274298311, 0.04875517591633365, 0.05730170588080813, 0.06679128969735763, 0.07701795759099406, 0.08782606082642387, 0.09909256206604079, 0.11071679542181762, 0.12261527874035932, 0.1347192904151742, 0.14697360732088086, 0.15933545767169674, 0.17177323936269387, 0.184264880117678, 0.1967959000084689, 0.20935732029362852, 0.22194358259078706, 0.23455062738102603, 0.24717424899135287, 0.25980880593469974, 0.27244632637686367, 0.28507601180634534, 0.29768411019688035, 0.31025410527346725, 0.3227671525595844, 0.3352026862603839, 0.34753912292839073, 0.3597545962682354, 0.37182766971608433, 0.3837379869566156, 0.3954668332729893, 0.4069975913636909, 0.41831608361993106, 0.42941079904614793, 0.4402730075343257, 0.4508967676305294, 0.46127883670407577, 0.47141849480732645, 0.4813172955781242, 0.49097875923652595, 0.500408023942059, 0.5096114723762986 ], [ 0.06245017518948681, 0.052928991556953915, 0.04544298814196897, 0.040226445448155686, 0.03745688323722105, 0.03715957483758855, 0.0391557822446779, 0.04312168250211287, 0.04869796698778626, 0.055562620758394195, 0.06345475911857461, 0.07217130505830681, 0.08155414453890245, 0.0914772481524807, 0.10183732010922242, 0.11254825147896809, 0.12353835633487634, 0.1347491446403003, 0.14613462221184503, 0.1576604770856437, 0.16930285335524295, 0.1810466649057808, 0.1928835538061231, 0.20480966911281454, 0.21682345672427367, 0.22892363218751374, 0.24110747200184376, 0.25336951481890196, 0.265700717778023, 0.2780880689874629, 0.2905146183822547, 0.30295985918255863, 0.3154003734531614, 0.3278106486975748, 0.3401639768489266, 0.35243335956437216, 0.36459236065953127, 0.376615864268405, 0.3884807132442609, 0.4001662150301857, 0.4116545114565319, 0.42293081516418296, 0.4339835194491873, 0.4448041911176828, 0.4553874580685943, 0.46573080514943466, 0.4758342934717247, 0.48570021976498723, 0.4953327333393943, 0.5047374286501933 ], [ 0.07059731386941458, 0.06172197441215606, 0.05499239879156375, 0.05056274325832524, 0.04845485679236998, 0.04852526452555258, 0.05050747062735567, 0.05409778177665823, 0.059018332558463255, 0.06503721496645709, 0.07196581019882023, 0.07965073734505193, 0.08796597064674207, 0.09680640238024632, 0.10608335715272495, 0.11572203512459092, 0.12566037553090634, 0.135848626787294, 0.14624897901239745, 0.1568348310398822, 0.16758950693520036, 0.17850443567635532, 0.1895769364681331, 0.20080781439038853, 0.21219898261328912, 0.22375130581556643, 0.23546281869412614, 0.24732742292538845, 0.2593341117651844, 0.2714667185332367, 0.2837041383922457, 0.29602093689720493, 0.30838823737920773, 0.32077477353963796, 0.3331480019277913, 0.3454751871418111, 0.35772439547068885, 0.36986535554633654, 0.38187016410137453, 0.39371382960293955, 0.40537465634293346, 0.4168344774457289, 0.42807874849332184, 0.43909651525883653, 0.44988027024285937, 0.4604257137914774, 0.47073143667357303, 0.48079854201609534, 0.49063022523819133, 0.5002313308717031 ], [ 0.08259908398202828, 0.0744108465719262, 0.0683061808462863, 0.0643425089954045, 0.062450623420716986, 0.062442281836645276, 0.06406191690995049, 0.06704896674492976, 0.07117642731148441, 0.0762601178698893, 0.08215251074458106, 0.08873353110649031, 0.09590315033076616, 0.10357648586303367, 0.11168105364116356, 0.12015562151137513, 0.12895002148596196, 0.1380252730279555, 0.14735348520266864, 0.15691720369171275, 0.16670808272557597, 0.17672494059433114, 0.1869713767620893, 0.19745318749704838, 0.20817582651751906, 0.21914213218175943, 0.2303504961604156, 0.24179358975719253, 0.2534576999012146, 0.2653226633954533, 0.27736233179062075, 0.2895454568261989, 0.3018368626371696, 0.31419876730921575, 0.32659213022627, 0.33897792718359476, 0.35131828545017146, 0.3635774397284124, 0.3757224933060772, 0.3877239851024941, 0.39955627321432763, 0.411197750515002, 0.4226309097138243, 0.43384227564495453, 0.44482222253132436, 0.4555646941149673, 0.4660668449916338, 0.4763286220875178, 0.4863523056979883, 0.49614202959099446 ], [ 0.097149939079531, 0.08949192624115784, 0.0837664063147129, 0.07997326590530111, 0.07801302224606119, 0.07770345170375628, 0.0788195352580549, 0.08113642456296742, 0.08445730361198005, 0.0886222365263729, 0.09350477763755677, 0.0990044247590337, 0.10503959915901986, 0.11154274980275404, 0.11845764077106304, 0.1257382967027124, 0.1333489009644691, 0.1412639583981114, 0.14946817738991253, 0.15795573658868317, 0.16672882168684283, 0.1757955029968582, 0.18516715205292958, 0.19485566122617254, 0.2048707428571092, 0.21521755733724754, 0.22589486630030492, 0.23689383825991606, 0.24819755794170997, 0.25978121498120565, 0.27161288113332344, 0.2836547362549975, 0.2958645783194285, 0.30819745306500435, 0.32060726054296135, 0.33304823076252826, 0.34547619961626075, 0.35784965162288956, 0.3701305231840932, 0.3822847777173587, 0.3942827733321242, 0.40609944702517026, 0.4177143392318647, 0.42911148105417546, 0.4402791649298892, 0.4512096185357444, 0.4618986014204706, 0.4723449440105921, 0.48255004885775654, 0.49251737393973316 ], [ 0.11332328970284135, 0.10601883396760463, 0.10047205044515681, 0.09665635301725557, 0.09446981842028003, 0.09375026266456449, 0.09430359178821417, 0.09593404764780823, 0.09846596751995379, 0.10175344965684777, 0.10568052652851116, 0.11015659884837005, 0.11511092014376928, 0.1204881193369405, 0.1262453580946932, 0.1323509300142523, 0.138783754113459, 0.14553313800328607, 0.15259828197010278, 0.1599871841327273, 0.16771482271853122, 0.17580068477801336, 0.1842658515708249, 0.1931299285574992, 0.20240812613762038, 0.21210876813639068, 0.22223144311362894, 0.2327659318993443, 0.24369195416732223, 0.25497968751527117, 0.26659093533038625, 0.2784807653865228, 0.2905994170405263, 0.3028942820918432, 0.31531179678164, 0.3277991291491556, 0.3403055952041934, 0.3527837798381124, 0.3651903691220502, 0.3774867188718969, 0.3896391922209569, 0.4016192998207441, 0.41340367353180846, 0.42497390063004997, 0.436316242190031, 0.4474212570658834, 0.4582833517841278, 0.4689002763422809, 0.4792725858927015, 0.4894030881269059 ], [ 0.13051987191544073, 0.12342823630512444, 0.11792359042017193, 0.11396960924997929, 0.1114721926044911, 0.11029108037328086, 0.11025976051446548, 0.11120724483426658, 0.11297541535748362, 0.1154288533197151, 0.11845768929129034, 0.1219759995931173, 0.12591841064149456, 0.13023673296904195, 0.13489746347652654, 0.1398802546368472, 0.14517702367966154, 0.15079121428316816, 0.15673675350129093, 0.1630363937919788, 0.16971932787431213, 0.17681815851341703, 0.18436545768633525, 0.19239023908014183, 0.2009146906870499, 0.20995147962713673, 0.21950186525137783, 0.22955475591154884, 0.240086734480711, 0.25106297144123363, 0.26243885580310283, 0.2741621158954454, 0.2861751821039334, 0.2984175615755907, 0.3108280417567877, 0.3233466009376343, 0.3359159650096478, 0.3484827996157206, 0.3609985607649064, 0.3734200449751336, 0.38570968553827306, 0.39783563918068804, 0.40977170143815583, 0.42149708252575446, 0.43299607008867547, 0.44425760159765215, 0.4552747671944382, 0.4660442630034024, 0.4765658146906314, 0.4868415908117541 ], [ 0.14835056472171979, 0.14137115648237567, 0.13582113316958436, 0.13166246991383154, 0.1288118872359694, 0.12714938616586643, 0.12653234164391036, 0.12681144084917564, 0.12784452398256357, 0.12950588812523303, 0.13169071220496173, 0.1343157807751004, 0.13731818741342958, 0.14065342545833673, 0.14429368002756793, 0.14822656039779622, 0.15245411152741242, 0.15699174880564068, 0.16186674261891323, 0.16711598836919436, 0.17278297689384833, 0.17891407588042352, 0.18555439897996867, 0.19274364380528586, 0.2005123088430212, 0.2088786566932119, 0.21784669416849753, 0.2274053110159997, 0.23752858009326755, 0.24817709218373335, 0.2593000958647417, 0.27083815138349554, 0.28272599478437216, 0.2948953414751965, 0.3072774237182737, 0.31980513534652655, 0.3324147314083006, 0.34504708832066905, 0.3576485667986699, 0.370171536862823, 0.3825746266801645, 0.3948227508560595, 0.4068869642095779, 0.41874417755518745, 0.4303767644400705, 0.4417720827130473, 0.4529219319671903, 0.46382196664070185, 0.47447108411994304, 0.4848708068941758 ], [ 0.1665527422636366, 0.1596170457421686, 0.1539678997668358, 0.14956923312711334, 0.14634880768172898, 0.144204417726168, 0.14301399284020985, 0.1426474094885702, 0.1429775021333992, 0.1438884481053876, 0.14528089607424888, 0.14707426531231932, 0.14920717747747966, 0.15163698704872075, 0.1543390624816878, 0.15730607102257277, 0.16054719119412109, 0.16408698665394175, 0.1679636323640406, 0.17222626512571396, 0.17693139532451901, 0.18213851682959342, 0.18790523743293983, 0.19428237989991595, 0.20130954687753405, 0.20901159704160074, 0.21739636093931367, 0.22645376121856736, 0.23615632452956212, 0.24646091004750753, 0.25731135640291525, 0.2686416819784965, 0.2803794693127021, 0.2924491153668859, 0.3047747165306399, 0.31728245617932527, 0.3299024518733834, 0.3425700855937025, 0.3552268797947996, 0.3678209977780277, 0.3803074458767227, 0.3926480446897005, 0.4048112231905206, 0.41677167694888745, 0.4285099218929024, 0.4400117684895916, 0.4512677374976153, 0.4622724367128955, 0.4730239174784861, 0.48352302938445396 ], [ 0.18494116630769353, 0.1780042568227971, 0.17222513429789582, 0.16757123030143423, 0.16398059294660064, 0.16136639624409058, 0.15962427733534718, 0.1586411825889157, 0.1583041124288286, 0.15850744572717881, 0.15915819377997642, 0.1601792273004923, 0.16151096229016818, 0.1631121008507549, 0.16495987971616077, 0.16705002206791797, 0.1693963393419013, 0.17202976430890765, 0.17499654533952277, 0.1783553933668851, 0.18217352496586509, 0.18652174854341938, 0.19146894648638388, 0.19707646311485036, 0.20339297658492822, 0.21045039565133497, 0.21826118953757737, 0.22681736212972364, 0.23609106119468204, 0.24603661013122585, 0.25659359806086335, 0.26769058619860486, 0.27924899020667154, 0.29118676726354364, 0.3034216466859783, 0.31587376338985396, 0.3284676587066033, 0.3411336884919667, 0.3538089209527318, 0.36643762127881985, 0.37897141589128003, 0.39136921491148174, 0.40359695435994375, 0.415627204017986, 0.4274386748974083, 0.43901565225070527, 0.45034737543132153, 0.46142738368075303, 0.4722528460341207, 0.4828238931166738 ], [ 0.20338020278461866, 0.19641421814703489, 0.19049000491760004, 0.18557905184885756, 0.18162867192369986, 0.17856530441040583, 0.17629991200250184, 0.17473467257855466, 0.17376992917175213, 0.17331046736948225, 0.17327055463173235, 0.1735776109335581, 0.17417470482536732, 0.17502219722238785, 0.17609880275902398, 0.17740218037285038, 0.17894898603938128, 0.1807741872927851, 0.18292939006319173, 0.1854799771644679, 0.18850099674333418, 0.19207194073057493, 0.19627077327503803, 0.20116775324623162, 0.20681969351543603, 0.21326528327343075, 0.22052196815819558, 0.2285846648535681, 0.2374263288550516, 0.2470001487168461, 0.2572429538154489, 0.2680793262011461, 0.27942590822125435, 0.2911954800256738, 0.30330051158492155, 0.31565603480761445, 0.32818180256816315, 0.34080378663302247, 0.3534551129972038, 0.3660765477449483, 0.37861663991845296, 0.39103161046350166, 0.4032850560710509, 0.41534751851513996, 0.4271959561014315, 0.4388131444349514, 0.4501870281901142, 0.46131004279415877, 0.4721784237622255, 0.48279152088091326 ], [ 0.22176781233044118, 0.21475731351946747, 0.20868396874137246, 0.2035234151170183, 0.1992312148409244, 0.19574529571311752, 0.19298997181860267, 0.19088105755822227, 0.1893314083292325, 0.18825624209061845, 0.18757778778104559, 0.1872290682333168, 0.18715684505618244, 0.18732386150038868, 0.18771050747547624, 0.18831593507473068, 0.1891585282247427, 0.19027552840699044, 0.19172157800310122, 0.19356598470029468, 0.19588863705731852, 0.19877469521091545, 0.2023084042250821, 0.20656657867283407, 0.21161243188835804, 0.21749043306550905, 0.22422275923297022, 0.23180768804754712, 0.24021999768518779, 0.24941316131640665, 0.2593229033884796, 0.26987156411637003, 0.28097271019202374, 0.292535516653116, 0.3044685888241244, 0.3166830504268113, 0.32909485941063643, 0.34162640809498324, 0.3542075159749337, 0.3667759397165473, 0.3792775174842535, 0.3916660454369682, 0.4039029617802188, 0.41595689350739073, 0.4278031053112272, 0.43942287948657766, 0.4508028492365646, 0.4619343044390657, 0.4728124874017176, 0.48343589540123694 ], [ 0.2400259305522175, 0.23296466010634018, 0.22674612269839398, 0.22134998731088104, 0.21673915022685805, 0.2128615592873982, 0.2096532483530938, 0.20704228782340953, 0.20495322403485075, 0.20331156516683438, 0.20204796516220594, 0.2011019070797598, 0.20042482590545665, 0.19998268848161965, 0.19975804920541407, 0.19975154034622258, 0.19998266943815063, 0.2004897218933375, 0.20132853831201125, 0.20256997573712585, 0.20429597824926524, 0.2065943642016811, 0.2095526542899636, 0.2132514694129491, 0.2177581673392642, 0.22312141999539378, 0.22936734005557738, 0.2364975582995861, 0.2444893722819155, 0.25329779182477646, 0.262859061576356, 0.2730950952676356, 0.2839182307782595, 0.29523579567795444, 0.30695411993776034, 0.3189817983378907, 0.3312321507159015, 0.3436249320539607, 0.3560874023343687, 0.3685548857148735, 0.38097094248390206, 0.3932872578284849, 0.4054633281190033, 0.4174660039932606, 0.42926893270254474, 0.4408519305014694, 0.4522003086374056, 0.4633041725306755, 0.47415771178528116, 0.4847584976707236 ], [ 0.2580943716198886, 0.25098297114158735, 0.2446290551312786, 0.23901612328876604, 0.23411361381201864, 0.22987828547876252, 0.22625653931445197, 0.22318750506025706, 0.22060662072256257, 0.21844940517989164, 0.21665516342940258, 0.21517044391673848, 0.21395214781217117, 0.2129702378604134, 0.2122099949800933, 0.2116737302047532, 0.21138179902179027, 0.2113727128205879, 0.211702125737119, 0.21244051602354694, 0.21366948882994133, 0.21547679524372382, 0.21795036522875905, 0.22117184857837818, 0.22521030039518955, 0.2301166948769813, 0.23591988132619773, 0.24262441364980744, 0.25021042083200873, 0.2586353946456142, 0.2678375156788206, 0.277739974324472, 0.2882556973783846, 0.2992919555224211, 0.3107544656462445, 0.3225507667498242, 0.33459279774793954, 0.3467987155472888, 0.35909405592372795, 0.3714123643532834, 0.383695421220072, 0.3958931682310755, 0.4079634202066286, 0.41987142490008805, 0.43158931617074214, 0.4430954934796092, 0.4543739527749045, 0.4654135892783966, 0.4762074902669146, 0.4867522346120832 ], [ 0.27592673071656704, 0.26877110006397054, 0.26229601440873346, 0.256488576568179, 0.2513240907909404, 0.2467671265870405, 0.24277332084967937, 0.2392918175454573, 0.23626817397692762, 0.2336475317063469, 0.23137786048148365, 0.22941312061564842, 0.22771623021815002, 0.22626174727402615, 0.2250381718071, 0.22404974241619824, 0.22331755797560765, 0.2228798198147196, 0.22279098443583414, 0.22311966014077952, 0.223945181826844, 0.22535295154458124, 0.22742881665835854, 0.2302529372401242, 0.2338937283811739, 0.23840251522024042, 0.24380948743242048, 0.25012138557066266, 0.2573211171309218, 0.26536922996456935, 0.2742069220394387, 0.28376009375495104, 0.2939438844442548, 0.30466717783365804, 0.31583668199645165, 0.32736034332930003, 0.33915000025561187, 0.3511232945166547, 0.3632049270911891, 0.37532737611699124, 0.38743119643013507, 0.39946500636889726, 0.41138524705308793, 0.42315577890782863, 0.4347473631387889, 0.4461370632958965, 0.45730759371334295, 0.4682466365523819, 0.4789461462938827, 0.48940165882836656 ], [ 0.2934874594287972, 0.2862975409217672, 0.27971880476970623, 0.2737417285907812, 0.2683469058576254, 0.2635058797277542, 0.25918256290302755, 0.25533518842716607, 0.25191868529810707, 0.24888734368982385, 0.2461976296147257, 0.2438110206666058, 0.24169674990742002, 0.23983435104680487, 0.2382158874875204, 0.23684772171259427, 0.23575164933611115, 0.23496519931473017, 0.23454090580666, 0.2345444028474517, 0.2350512875576936, 0.23614283607297298, 0.23790081995458093, 0.24040182933618717, 0.24371162798641513, 0.24788011489654743, 0.25293742896658494, 0.2588916060906015, 0.26572799785233864, 0.27341042273133515, 0.2818837921776933, 0.291077784244478, 0.3009110601918383, 0.31129554038006424, 0.32214035290945636, 0.3333552039200946, 0.34485305416394796, 0.35655209583899156, 0.3683770954729072, 0.3802602042584028, 0.392141345238118, 0.403968277679772, 0.41569642209131774, 0.42728851106471133, 0.4387141151552705, 0.4499490807537333, 0.46097490842791006, 0.47177809480433164, 0.48234945778078925, 0.4926834628004947 ], [ 0.31074965682063804, 0.30353849920417403, 0.2968761069504133, 0.2907561127919933, 0.28516390176328543, 0.2800772776485672, 0.27546759826717904, 0.27130135211215756, 0.26754211154490687, 0.26415277207746446, 0.2610979750465494, 0.25834660846004187, 0.25587428059392536, 0.2536656554707111, 0.25171652439124687, 0.25003546448364006, 0.24864491098986188, 0.2475814565668761, 0.24689520187804495, 0.24664802870754562, 0.24691075469511573, 0.2477592522503405, 0.2492697565084415, 0.25151372280778933, 0.2545526949644183, 0.2584336879925911, 0.26318555903962476, 0.2688167365579708, 0.27531451193571466, 0.282645895893027, 0.29075984179539555, 0.29959048098387914, 0.30906093265635326, 0.31908725262674337, 0.3295821574139065, 0.3404582725781211, 0.3516307740110043, 0.3630193927729356, 0.37454982536394255, 0.3861546307476345, 0.3977737090095393, 0.4093544529525652, 0.4208516514611902, 0.43222720826985855, 0.44344972561218454, 0.45449399084859937, 0.4653403959290588, 0.4759743140215503, 0.48638545408041894, 0.49656721176377205 ], [ 0.32769331910718275, 0.32047632493570344, 0.313752068361413, 0.30751712739896164, 0.3017612412294334, 0.29646785331240333, 0.29161503151400203, 0.287176753904687, 0.2831245213026385, 0.2794292356693082, 0.27606326839390205, 0.27300263245580836, 0.2702291634042293, 0.2677326019042562, 0.2655124532441884, 0.2635794783868026, 0.261956652807781, 0.2606794228153433, 0.25979510483245627, 0.25936131978260407, 0.2594434351003887, 0.260111095260619, 0.2614340431961637, 0.26347754820213604, 0.266297838406251, 0.2699379696354187, 0.27442453762535135, 0.2797655563027885, 0.28594969017870764, 0.29294686286429494, 0.3007100950361065, 0.30917828671522274, 0.31827957761853787, 0.3279349071726373, 0.3380614449724496, 0.34857565092943127, 0.35939582518795044, 0.37044409863215233, 0.3816478824357978, 0.3929408362491609, 0.4042634327190543, 0.4155631977504473, 0.4267946981860542, 0.43791933698945235, 0.4489050042482341, 0.45972562229628017, 0.47036061562853965, 0.48079433089962487, 0.4910154286332778, 0.5010162657009715 ], [ 0.3443039027933229, 0.3370981965675742, 0.3303350862266515, 0.3240138926293959, 0.3181283155323887, 0.31266688392506964, 0.30761371016068706, 0.30294954540731095, 0.29865311328902266, 0.2947026800879393, 0.2910778043830308, 0.2877611956000364, 0.2847405975597439, 0.2820105977286768, 0.27957424498273087, 0.2774443403841126, 0.27564425181966334, 0.27420810177837535, 0.27318019610718774, 0.27261360632430764, 0.27256789011581656, 0.27310602808418494, 0.2742907566245272, 0.2761805693907802, 0.2788257255124057, 0.2822646281569181, 0.28652091550884223, 0.2916015380107957, 0.2974959877548855, 0.3041767123287716, 0.3116006073729974, 0.3197113646557283, 0.3284423776808477, 0.3377198861424935, 0.3474660708853941, 0.3576018771858932, 0.36804942541906055, 0.37873394565855084, 0.3895852341480553, 0.400538670182096, 0.4115358530309617, 0.4225249247445647, 0.4334606414570172, 0.4443042479745093, 0.4550232013710944, 0.465590781023596, 0.475985615834954, 0.48619115441959837, 0.496195100444992, 0.5059888326816626 ], [ 0.3605711199761438, 0.3533949978094927, 0.34661674945402254, 0.3402382398938231, 0.3342567664569727, 0.3286654371906565, 0.3234537936812849, 0.31860868018294375, 0.31411534522976453, 0.3099587464821187, 0.30612501492077077, 0.3026030202540876, 0.29938596458455385, 0.2964729152625252, 0.2938701708543684, 0.2915923385605752, 0.28966299161471026, 0.28811477708789374, 0.2869888641542545, 0.28633366431081964, 0.28620281816791554, 0.28665252246556144, 0.287738354776226, 0.28951182770991973, 0.2920169556948777, 0.2952871357907247, 0.2993426251686742, 0.3041888428090139, 0.3098156372731402, 0.3161975565829246, 0.32329504569416745, 0.3310564003286906, 0.3394202401651351, 0.3483182397325694, 0.35767787154800135, 0.3674249631945628, 0.37748593296829436, 0.3877896323843396, 0.3982687773407704, 0.40886098784494973, 0.41950947860833254, 0.4301634523290406, 0.44077824814843264, 0.4513152934636212, 0.4617419009858436, 0.4720309465584614, 0.4821604577467836, 0.4921131388671399, 0.5018758548144195, 0.5114390934744354 ], [ 0.3764879208502741, 0.369360358793333, 0.3625909267196435, 0.35618383522656427, 0.35013963675314325, 0.34445554587860255, 0.3391259552803068, 0.3341431508178302, 0.32949821714213, 0.32518211246847434, 0.32118687801731144, 0.3175069339869356, 0.3141403994591834, 0.3110903583602923, 0.3083659784270005, 0.30598337735416253, 0.30396612365394127, 0.3023452638950294, 0.30115878734552703, 0.30045047619008125, 0.3002681435125671, 0.3006613267941336, 0.3016785724765833, 0.303364505916377, 0.30575692041861413, 0.3088841319296753, 0.312762829665042, 0.31739660874449666, 0.3227753034294294, 0.32887515666176304, 0.3356597744632429, 0.3430817358382499, 0.3510846730068582, 0.35960561148782244, 0.368577365947288, 0.37793081977435317, 0.3875969633742455, 0.397508616710399, 0.4076018065878182, 0.4178168033976318, 0.4280988442223555, 0.43839858074548393, 0.44867229407261844, 0.4588819173133633, 0.46899490306552544, 0.4789839685008566, 0.48882674655156394, 0.4985053681411712, 0.5080059975218303, 0.5173183404089997 ], [ 0.39204963845056695, 0.384989847792396, 0.37825299767099985, 0.37184544337918035, 0.3657706636238159, 0.3600295318252035, 0.3546207425485941, 0.3495413965835754, 0.34478773881838376, 0.34035603259624875, 0.3362435428822115, 0.33244958832767835, 0.3289766092314113, 0.32583118485446816, 0.32302492068722055, 0.3205751162246087, 0.31850511968474415, 0.3168442815107022, 0.3156274365990962, 0.31489387750233944, 0.31468582602262357, 0.3150464639497249, 0.3160176376450373, 0.3176373969838742, 0.3199375590387275, 0.322941495746284, 0.3266623309729514, 0.33110169723356186, 0.33624914958514257, 0.3420822698398202, 0.3485674263249433, 0.355661092652774, 0.36331158280690284, 0.37146103595432023, 0.38004748452115905, 0.38900685975054633, 0.39827482297163724, 0.4077883497242794, 0.4174870304629054, 0.42731408115569747, 0.4372170778816554, 0.4471484419227456, 0.45706570755693077, 0.46693160590416505, 0.47671399669993014, 0.48638567722685055, 0.49592409474082416, 0.5053109860407798, 0.5145319654835125, 0.5235760806826715 ], [ 0.40725328074050854, 0.4002803058940204, 0.3935992262684059, 0.38721833713770903, 0.38114372408972785, 0.375379491207612, 0.36992811049755636, 0.36479089534310943, 0.35996859346590404, 0.3554620864002019, 0.35127317296692506, 0.34740540375611667, 0.34386492240798305, 0.3406612580865662, 0.3378080031210727, 0.33532330222789103, 0.3332300775343538, 0.33155591953437624, 0.3303325903283771, 0.32959511280798215, 0.3293804563792798, 0.3297258724003411, 0.33066697476761603, 0.3322356963397316, 0.334458274348941, 0.33735342398575574, 0.3409308479089951, 0.34519020177386733, 0.35012059498160536, 0.3557006562144151, 0.36189914082837943, 0.36867600877737833, 0.3759838642920176, 0.3837696271279727, 0.39197630167774516, 0.40054472276557723, 0.4094151807833692, 0.41852885798278017, 0.4278290366676666, 0.4372620647898503, 0.4467780830883858, 0.4563315302078408, 0.4658814491020646, 0.47539162089839426, 0.48483055270083425, 0.4941713447202059, 0.5033914604372135, 0.5124724216868743, 0.5213994487911799, 0.5301610641849829 ], [ 0.42209695926814933, 0.4152293181552079, 0.40862627334023094, 0.40229785144849606, 0.3962524331763889, 0.3904969422417849, 0.385037127187858, 0.3798779377908344, 0.3750239921508676, 0.37048012379178624, 0.36625199034552286, 0.3623467167797201, 0.3587735369283092, 0.3555443879048052, 0.3526744038778836, 0.3501822502466319, 0.3480902384456034, 0.3464241674607175, 0.34521285214667574, 0.3444873209185796, 0.3442796949438223, 0.3446217943480834, 0.3455435495577171, 0.34707132271690677, 0.3492262608898379, 0.35202280687658233, 0.355467484266986, 0.3595580518669985, 0.3642830911891308, 0.3696220526735987, 0.37554574600260415, 0.3820172222633236, 0.38899296574591447, 0.39642429465032225, 0.40425886460756116, 0.4124421758363213, 0.4209190009428226, 0.42963467168138003, 0.43853618530996663, 0.447573111314313, 0.45669829538887424, 0.4658683690871078, 0.4750440808567011, 0.48419046813101235, 0.49327689176037187, 0.5022769542259361, 0.5111683224453741, 0.5199324749693706, 0.5285543921927112, 0.5370222069356668 ], [ 0.4365794443375063, 0.4298348132549765, 0.4233308416409595, 0.4170790759457979, 0.4110898877884525, 0.40537262643921407, 0.39993584041964025, 0.39478756894148254, 0.3899356995499176, 0.38538838306642503, 0.38115449080801556, 0.3772440922292389, 0.3736689238863058, 0.3704428135179577, 0.3675820169848212, 0.36510542208020225, 0.36303457333245115, 0.36139347732853916, 0.36020815979242493, 0.35950596370051185, 0.35931460087667344, 0.359660995232568, 0.36056998061949624, 0.36206293643265264, 0.3641564565589851, 0.36686115010463166, 0.37018066511936454, 0.3741110100591155, 0.378640223762681, 0.3837484157792793, 0.3894081681105909, 0.3955852603980378, 0.402239656844876, 0.40932667754762053, 0.41679827085841786, 0.4246043066097483, 0.43269382064666667, 0.441016156324494, 0.4495219654694289, 0.4581640472886729, 0.46689801723801866, 0.47568280820031184, 0.4844810135188806, 0.4932590859381575, 0.5019874089838211, 0.5106402584054123, 0.5191956715186301, 0.5276352419739689, 0.5359438568474993, 0.5441093920935696 ], [ 0.45069983569288324, 0.44409478109631384, 0.4377094425650373, 0.4315566738691867, 0.4256485422157046, 0.41999644650846313, 0.4146112850090405, 0.4095036722547409, 0.4046842018131374, 0.40016374745348804, 0.39595379064528086, 0.39206675708033883, 0.38851633942461977, 0.38531777821788893, 0.3824880684931127, 0.3800460572708676, 0.37801239772423323, 0.3764093305476205, 0.37526027254165234, 0.374589206565241, 0.3744198847872834, 0.37477487664813536, 0.3756745115356634, 0.3771357811953562, 0.3791712760863859, 0.3817882319006838, 0.3849877569412654, 0.3887642985954111, 0.3931053890434814, 0.3979916884674008, 0.4033973206516465, 0.40929047357532, 0.41563421893273955, 0.42238749158446115, 0.42950616390659063, 0.4369441508762758, 0.4446544883986844, 0.45259033799009674, 0.4607058833857333, 0.46895709707042005, 0.4773023657940063, 0.48570297311096094, 0.4941234436974976, 0.5025317588479696, 0.510899455523821, 0.5192016230525798, 0.5274168124260764, 0.5355268734045713, 0.5435167344756979, 0.5513741402433027 ], [ 0.4644573362084941, 0.45800709523949373, 0.45175827011990904, 0.4457248109762992, 0.43992019618486594, 0.4343575185266754, 0.4290496045339039, 0.4240091662543049, 0.4192489822762657, 0.414782101933607, 0.41062206318541244, 0.40678311084836355, 0.4032803978688801, 0.4001301485440474, 0.3973497596076101, 0.39495781363289695, 0.39297398008833495, 0.39141878334042524, 0.39031322434522475, 0.38967825357626257, 0.38953410610726263, 0.3898995242587577, 0.39079090695728386, 0.39222143600612297, 0.39420023621421746, 0.396731627777856, 0.3998145251873067, 0.40344202763740694, 0.4076012323926035, 0.41227328613740205, 0.4174336716894976, 0.42305271041716297, 0.4290962461283314, 0.4355264656295451, 0.4423028055301295, 0.449382894342748, 0.4567234828780689, 0.4642813231486747, 0.4720139650356829, 0.47988044945614405, 0.4878418856318794, 0.4958619076408622, 0.5039070114591465, 0.5119467781986923, 0.5199539924126396, 0.5279046664404097, 0.5357779830561755, 0.5435561693717734, 0.5512243151732608, 0.5587701487296504 ], [ 0.47785111471034303, 0.47156942507262195, 0.46547316529923705, 0.4595771752764501, 0.4538960734751286, 0.4484443132162464, 0.4432362589874757, 0.4382862816580449, 0.43360886979101715, 0.42921875222428263, 0.4251310247079986, 0.4213612707277284, 0.4179256638785283, 0.4148410365765351, 0.41212489792813417, 0.40979538276359073, 0.40787111476622195, 0.4063709697922246, 0.40531373114448505, 0.4047176366126116, 0.4045998269264084, 0.4049757158505026, 0.4058583121429017, 0.40725753163406925, 0.40917954260148975, 0.41162618868399153, 0.4145945305721492, 0.4180765408773974, 0.4220589765720824, 0.4265234411635051, 0.4314466355077721, 0.43680078321611554, 0.44255420529000694, 0.44867201008104407, 0.4551168596520743, 0.4618497723318205, 0.4688309233776178, 0.47602041043275134, 0.4833789569043217, 0.49086853350489684, 0.49845288517284453, 0.5060979568452175, 0.5137722168053594, 0.5214468804880585, 0.5290960407689742, 0.5366967130361607, 0.5442288048999997, 0.5516750213845462, 0.5590207169658736, 0.5662537059559412 ], [ 0.49088024320976625, 0.4847792215289892, 0.47884965279323394, 0.47310706727332547, 0.46756696823999266, 0.4622448607534166, 0.4571562900429477, 0.45231688817130583, 0.44774242663222236, 0.44344887123201165, 0.4394524340651059, 0.4357696156635174, 0.43241722859973697, 0.4294123921589867, 0.4267724864743457, 0.4245150541200939, 0.4226576379935292, 0.4212175467293162, 0.420211543057935, 0.4196554563441905, 0.41956372760042693, 0.41994890283453595, 0.4208210977368542, 0.4221874624688973, 0.4240516788687157, 0.42641352318966447, 0.4292685253432898, 0.432607750663746, 0.4364177228840928, 0.44068049798229497, 0.44537388866288236, 0.45047182944377484, 0.4559448635810216, 0.4617607262294284, 0.4678849938890328, 0.47428176855585746, 0.48091436593319314, 0.48774598010512094, 0.49474030157512755, 0.5018620708320681, 0.5090775550040594, 0.5163549402337688, 0.5236646368698205, 0.5309794982920679, 0.5382749571638837, 0.545529085191544, 0.5527225841563099, 0.5598387171559375, 0.5668631897220938, 0.5737839908243554 ], [ 0.5035436936481638, 0.497633759999105, 0.49188303196998817, 0.48630754072257504, 0.48092343698807216, 0.4757469950077888, 0.4707946179223159, 0.46608284333725597, 0.4616283472324122, 0.4574479436628068, 0.4535585768212591, 0.44997730101995526, 0.4467212430767367, 0.44380754059857846, 0.4412532489471407, 0.43907520951326795, 0.4372898726009825, 0.43591306996689666, 0.4349597350003439, 0.4344435726010829, 0.4343766857312996, 0.4347691708948637, 0.43562869979648994, 0.43696010849054173, 0.43876501786159205, 0.4410415098830988, 0.4437838826027229, 0.44698250326526284, 0.450623773682756, 0.4546902153503217, 0.45916067447834685, 0.4640106397468066, 0.4692126588826639, 0.47473683473989925, 0.4805513778808436, 0.48662319093711276, 0.4929184602288274, 0.4994032319732914, 0.5060439534964822, 0.5128079636906759, 0.5196639210843731, 0.5265821619386847, 0.5335349845034212, 0.540496858812809, 0.5474445641197961, 0.5543572582630021, 0.5612164849659078, 0.568006126328842, 0.5747123086340162, 0.5813232700796227 ], [ 0.5158403797356095, 0.5101302247636853, 0.5045685050620855, 0.4991715753697867, 0.49395601623138574, 0.4889386158885705, 0.4841363474628319, 0.4795663403298844, 0.4752458444052135, 0.47119218578902694, 0.46742271184246076, 0.46395472328900356, 0.4608053903931469, 0.4579916497452795, 0.4555300778119698, 0.4534367373705508, 0.45172699343022227, 0.4504152964178211, 0.44951493236863627, 0.449037742583041, 0.4489938185115223, 0.44939118119472465, 0.45023545799100717, 0.4515295721183718, 0.453273462310741, 0.4554638503396135, 0.45809407312891226, 0.4611539937032411, 0.4646300014212432, 0.4685051071555208, 0.4727591336958144, 0.4773689961530241, 0.4823090620298786, 0.48755157636123353, 0.49306713426851295, 0.49882518161780776, 0.5047945242397361, 0.510943827217028, 0.5172420878074531, 0.5236590683193263, 0.5301656783672156, 0.536734299123563, 0.5433390452334541, 0.5499559628337926, 0.5565631645376315, 0.5631409042792237, 0.5696715965644731, 0.5761397859489222, 0.5825320734906893, 0.5888370075198062 ], [ 0.5277692305123288, 0.5222658206152322, 0.5169013272331907, 0.5116922653793902, 0.5066554486567482, 0.5018079520016815, 0.4971670652348276, 0.492750236583411, 0.4885750054479178, 0.48465892374764186, 0.48101946516946364, 0.4776739215478173, 0.47463928542989553, 0.4719321176711339, 0.4695683987429025, 0.4675633624321429, 0.4659313109049387, 0.46468541081547965, 0.46383747134699727, 0.46339770677235986, 0.46337448822168803, 0.4637740916468672, 0.46460045120825855, 0.4658549291742341, 0.46753611463320666, 0.4696396636457409, 0.47215819277957355, 0.47508123624940496, 0.4783952742126277, 0.4820838363399057, 0.4861276808591663, 0.4905050451975572, 0.4951919604775639, 0.500162618801413, 0.5053897797577465, 0.5108452010793352, 0.516500077921712, 0.5223254757534685, 0.5282927431899256, 0.5343738930481234, 0.5405419422222094, 0.5467712034615907, 0.5530375246056154, 0.5593184731603129, 0.5655934662111677, 0.5718438475029239, 0.5780529150598379, 0.5842059039602417, 0.5902899298195347, 0.5962938991830926 ], [ 0.5393292837249272, 0.5340378991310145, 0.5288769654044739, 0.5238630098530372, 0.5190129039062196, 0.5143438096323174, 0.509873113964744, 0.5056183501167232, 0.5015971059822912, 0.49782691962018194, 0.49432516216131384, 0.4911089086424447, 0.48819479733655013, 0.4855988781380183, 0.48333645051205976, 0.4814218915059241, 0.4798684744375616, 0.47868817921830786, 0.4778914959000292, 0.47748722398642257, 0.4774822712712898, 0.4778814573544535, 0.4786873283727299, 0.47989999067166345, 0.4815169719351355, 0.4835331185169191, 0.4859405372678777, 0.4887285889827782, 0.49188393873634684, 0.4953906659502576, 0.4992304342088358, 0.5033827178504913, 0.5078250794591607, 0.5125334898157555, 0.5174826798561242, 0.5226465128661278, 0.5279983645904992, 0.533511499121073, 0.5391594292720826, 0.544916251508289, 0.5507569472072141, 0.5566576439534227, 0.5625958325432808, 0.568550537312942, 0.5745024392095135, 0.5804339526498652, 0.5863292586179324, 0.5921742976186958, 0.5979567270245999, 0.6036658480150252 ], [ 0.550519788829522, 0.5454440891048126, 0.5404912551410752, 0.5356776946745329, 0.5310201833361059, 0.5265357978014652, 0.5222418346802807, 0.5181557149540782, 0.5142948742364363, 0.5106766395859479, 0.5073180940113632, 0.5042359301328578, 0.501446294678156, 0.4989646255916963, 0.49680548353874227, 0.494982379540228, 0.49350760044399244, 0.4923920339981402, 0.4916449955072771, 0.49127405846033023, 0.49128489211606097, 0.4916811097685446, 0.4924641321953209, 0.493633071491031, 0.4951846409734933, 0.4971130969924505, 0.4994102181782895, 0.5020653268879269, 0.5050653563399211, 0.5083949652386187, 0.5120366996784923, 0.5159711999476636, 0.520177447692821, 0.5246330469488762, 0.5293145309385306, 0.5341976854311389, 0.5392578788839378, 0.544470389580089, 0.5498107204826688, 0.5552548934579173, 0.5607797157785512, 0.566363013286384, 0.5719838261672493, 0.5776225648790226, 0.5832611253021008, 0.5888829635948631, 0.5944731324936321, 0.6000182818688846, 0.6055066272183061, 0.6109278904323999 ], [ 0.5613403112633489, 0.5564824227607151, 0.5517405473295601, 0.5471308576813045, 0.5426699012207243, 0.5383745225573384, 0.5342617706829159, 0.5303487909452084, 0.5266527025040753, 0.5231904625083648, 0.519978718736668, 0.5170336528605383, 0.5143708167813821, 0.5120049646450914, 0.5099498831556786, 0.5082182227191745, 0.5068213318003961, 0.5057690967292863, 0.5050697891115301, 0.5047299230273891, 0.5047541243644209, 0.5051450149112758, 0.5059031141944756, 0.5070267623929078, 0.5085120679247221, 0.5103528833754146, 0.5125408132448509, 0.5150652564813837, 0.517913485925573, 0.5210707656274702, 0.5245205055939182, 0.5282444519649353, 0.5322229090341198, 0.5364349880491182, 0.5408588764781386, 0.5454721205065273, 0.5502519129972098, 0.5551753790331743, 0.5602198514430629, 0.5653631293446398, 0.5705837136566589, 0.5758610146485018, 0.5811755278394687, 0.5865089758522556, 0.5918444151043954, 0.5971663074347056, 0.6024605578674468, 0.6077145206830599, 0.6129169767679963, 0.6180580858421496 ] ] }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "text": [ "0_0", "1_0", "2_0", "3_0", "4_0", "5_0", "6_0", "7_0", "8_0", "9_0", "10_0", "11_0", "12_0", "13_0", "14_0", "15_0", "16_0", "17_0", "18_0", "19_0", "20_0", "21_0", "22_0", "23_0", "24_0", "25_0", "26_0", "27_0", "28_0" ], "type": "scatter", "x": [ 0.22894177865236998, 0.8351952414959669, 0.6286329319700599, 0.9020092906430364, 0.9781260751187801, 0.404045470058918, 0.5364496181489722, 0.46092377103684723, 0.3564612233747839, 0.38581222624914924, 0.3637572688539819, 0.3795241229526584, 0.3504642174956397, 0.4432742548877423, 0.31990722638455565, 0.2555778424579234, 0.2524846530481682, 0.15042602842974614, 0.08663391399541778, 5.268409700002741e-18, 0.03776396710448248, 0.13208293037862412, 0.04644337013155005, 0.18954795281295386, 0.17151422657958837, 0.2261281977423107, 0.23553925391670305, 0.22092623657947988, 0.2403674503513192 ], "xaxis": "x", "y": [ 0.31197850685566664, 0.3588504381477833, 0.5328390896320343, 0.1488186875358224, 0.4709978858008981, 0.18112339731305838, 0.54902475786202, 0.5640297948813812, 0.5882010887611782, 0.503635360389681, 0.43702289092926067, 0.47355585981026754, 0.4671665380998372, 0.523437612961531, 0.41810604105608795, 0.3635570587844399, 0.29760472981852915, 0.3500091762572107, 0.32915274377129267, 0.27665397953931775, 0.3472503846046461, 0.28763398543069946, 0.2898221088337568, 0.2740484775593605, 0.2892618858374601, 0.22864414719651402, 0.16643794738063455, 0.2112673156125695, 0.10916491767214283 ], "yaxis": "y" }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "showlegend": false, "text": [ "0_0", "1_0", "2_0", "3_0", "4_0", "5_0", "6_0", "7_0", "8_0", "9_0", "10_0", "11_0", "12_0", "13_0", "14_0", "15_0", "16_0", "17_0", "18_0", "19_0", "20_0", "21_0", "22_0", "23_0", "24_0", "25_0", "26_0", "27_0", "28_0" ], "type": "scatter", "x": [ 0.22894177865236998, 0.8351952414959669, 0.6286329319700599, 0.9020092906430364, 0.9781260751187801, 0.404045470058918, 0.5364496181489722, 0.46092377103684723, 0.3564612233747839, 0.38581222624914924, 0.3637572688539819, 0.3795241229526584, 0.3504642174956397, 0.4432742548877423, 0.31990722638455565, 0.2555778424579234, 0.2524846530481682, 0.15042602842974614, 0.08663391399541778, 5.268409700002741e-18, 0.03776396710448248, 0.13208293037862412, 0.04644337013155005, 0.18954795281295386, 0.17151422657958837, 0.2261281977423107, 0.23553925391670305, 0.22092623657947988, 0.2403674503513192 ], "xaxis": "x2", "y": [ 0.31197850685566664, 0.3588504381477833, 0.5328390896320343, 0.1488186875358224, 0.4709978858008981, 0.18112339731305838, 0.54902475786202, 0.5640297948813812, 0.5882010887611782, 0.503635360389681, 0.43702289092926067, 0.47355585981026754, 0.4671665380998372, 0.523437612961531, 0.41810604105608795, 0.3635570587844399, 0.29760472981852915, 0.3500091762572107, 0.32915274377129267, 0.27665397953931775, 0.3472503846046461, 0.28763398543069946, 0.2898221088337568, 0.2740484775593605, 0.2892618858374601, 0.22864414719651402, 0.16643794738063455, 0.2112673156125695, 0.10916491767214283 ], "yaxis": "y2" } ], "layout": { "annotations": [ { "font": { "size": 14 }, "showarrow": false, "text": "Mean", "x": 0.25, "xanchor": "center", "xref": "paper", "y": 1, "yanchor": "bottom", "yref": "paper" }, { "font": { "size": 14 }, "showarrow": false, "text": "Standard Error", "x": 0.8, "xanchor": "center", "xref": "paper", "y": 1, "yanchor": "bottom", "yref": "paper" } ], "autosize": false, "height": 450, "hovermode": "closest", "legend": { "orientation": "h", "x": 0, "y": -0.25 }, "margin": { "b": 100, "l": 35, "pad": 0, "r": 35, "t": 35 }, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "sequentialminus": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "width": 950, "xaxis": { "anchor": "y", "autorange": false, "domain": [ 0.05, 0.45 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x1" }, "type": "linear" }, "xaxis2": { "anchor": "y2", "autorange": false, "domain": [ 0.6, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x1" }, "type": "linear" }, "yaxis": { "anchor": "x", "autorange": false, "domain": [ 0, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x2" }, "type": "linear" }, "yaxis2": { "anchor": "x2", "autorange": false, "domain": [ 0, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "type": "linear" } } }, "text/html": [ "
\n", " \n", " \n", "
\n", " \n", "
" ] }, "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": [ [ 0.8478230401360678, 0.8476814050137671, 0.847956202260019, 0.8486552270926109, 0.8497854730375857, 0.8513531088854237, 0.8533634591342018, 0.8558209859607384, 0.8587292708640651, 0.8620909943777599, 0.8659079124781062, 0.8701808284446639, 0.8749095590743088, 0.8800928945887349, 0.8857285525463737, 0.8918131275105932, 0.898342039710054, 0.9053094868955617, 0.9127084037142205, 0.9205304322365861, 0.9287659061157502, 0.9374038496061323, 0.9464319915906099, 0.9558367939695307, 0.9656034932578331, 0.975716153964775, 0.9861577322303549, 0.9969101482067024, 1.0079543657588603, 1.019270478186072, 1.0308377988100499, 1.042634955424796, 1.0546399877402148, 1.066830447070369, 1.0791834976101449, 1.091676018708607, 1.1042847075824858, 1.1169861819229039, 1.1297570818362292, 1.14257417053348, 1.1554144331484217, 1.1682551730303843, 1.1810741048300886, 1.193849443681621, 1.2065599897847143, 1.2191852077120757, 1.2317052998070144, 1.2441012730972323, 1.2563549992290803, 1.2684492670204601 ], [ 0.84677385159291, 0.8466469053260646, 0.8469383458492274, 0.8476559163002474, 0.8488065585382709, 0.8503963984865305, 0.8524307347643765, 0.8549140275834056, 0.8578498852256216, 0.8612410461025974, 0.8650893550693934, 0.86939573307441, 0.8741601394118641, 0.8793815261887232, 0.8850577855545017, 0.8911856918164397, 0.8977608422555071, 0.9047776015234121, 0.9122290545031739, 0.9201069715732983, 0.9284017887951429, 0.9371026041178945, 0.946197189546694, 0.9556720184277498, 0.965512306531765, 0.9757020653837842, 0.9862241662172808, 0.9970604129657371, 1.0081916228073287, 1.019597712919346, 1.031257792260913, 1.0431502573666005, 1.0552528912880157, 1.0675429649521475, 1.0799973403070051, 1.0925925746919327, 1.1053050259019235, 1.1181109574149135, 1.1309866432253501, 1.1439084716840047, 1.1568530476924386, 1.169797292549818, 1.182718540708171, 1.1955946326660736, 1.2084040032256347, 1.2211257643559934, 1.2337397819491238, 1.2462267458205216, 1.2585682323950231, 1.270746759623763 ], [ 0.8462427036683579, 0.8461358139275469, 0.8464487806802213, 0.8471892392936398, 0.848364024800431, 0.8499791687804685, 0.8520398993663308, 0.8545506396631708, 0.857515000552749, 0.8609357652454227, 0.864814864432957, 0.8691533418859645, 0.8739513106837358, 0.8792079004248652, 0.8849211964665545, 0.8910881737497387, 0.8977046295346025, 0.9047651204472067, 0.9122629090836634, 0.9201899242272353, 0.9285367371096814, 0.9372925546317127, 0.9464452293105581, 0.9559812849750022, 0.9658859567983695, 0.9761432440510215, 0.9867359738906037, 0.9976458745419388, 1.0088536563202952, 1.0203390990992918, 1.0320811450009992, 1.0440579952700688, 1.0562472104703315, 1.0686258132929871, 1.0811703933806873, 1.0938572136434257, 1.106662317570341, 1.1195616370298669, 1.1325311000078928, 1.1455467376695807, 1.1585847900577844, 1.1716218096702469, 1.1846347620993127, 1.1976011228796717, 1.2104989696772233, 1.2233070689683845, 1.236004956405122, 1.2485730101351218, 1.2609925164453937, 1.2732457272174869 ], [ 0.8462409940559834, 0.846159916768411, 0.8464996763381595, 0.8472677368656238, 0.8484707623677346, 0.8501146293241466, 0.8522044424221012, 0.8547445461717165, 0.857738526168389, 0.8611891962940614, 0.8650985710373378, 0.8694678242068633, 0.8742972360549326, 0.879586130694278, 0.8853328057985083, 0.8915344576226386, 0.8981871059238614, 0.9052855243104123, 0.9128231812405418, 0.9207921955690065, 0.9291833088713428, 0.9379858753102116, 0.9471878687482475, 0.9567759061301667, 0.9667352857488806, 0.9770500387835082, 0.9877029923973004, 0.998675842682293, 1.0099492358192466, 1.0215028559697792, 1.03331551861196, 1.0453652682446617, 1.057629479595316, 1.070084961645484, 1.0827080639232376, 1.095474784591072, 1.1083608798818638, 1.1213419744096749, 1.1343936718171141, 1.1474916651316485, 1.1606118461037889, 1.1737304127052317, 1.186823973886665, 1.1998696506425193, 1.212845172409749, 1.2257289678423111, 1.2385002490536214, 1.2511390885024736, 1.2636264878107015, 1.2759444379368508 ], [ 0.846778010142349, 0.846728858410743, 0.8471010379911574, 0.8479017704523651, 0.8491374748597098, 0.8508138012547115, 0.8529356680352318, 0.8555072919091171, 0.8585322006812071, 0.862013223353401, 0.8659524572024687, 0.8703512155277779, 0.8752099613128745, 0.8805282314677173, 0.8863045552560929, 0.8925363703940072, 0.8992199411067688, 0.9063502830663744, 0.9139210997979054, 0.9219247339705501, 0.9303521355678773, 0.9391928477080146, 0.9484350099832395, 0.9580653785549433, 0.9680693617866314, 0.9784310698776846, 0.9891333767606384, 1.0001579924484802, 1.0114855440636414, 1.0230956639303077, 1.034967083337196, 1.047077730839578, 1.0594048342283957, 1.0719250255168205, 1.0846144484571159, 1.0974488681908579, 1.1104037826535802, 1.1234545353098355, 1.1365764287006823, 1.1497448381636557, 1.1629353249527128, 1.1761237478612332, 1.1892863723496356, 1.202399976110494, 1.2154419499755436, 1.2283903930833826, 1.241224201282862, 1.2539231478427983, 1.2664679556674103, 1.2788403603723848 ], [ 0.8478606685514477, 0.8478498626574327, 0.8482604091577259, 0.8490992088487902, 0.8503723520051644, 0.8520851793233625, 0.8542423487413431, 0.856847890810485, 0.8599052373438069, 0.8634172148353705, 0.867386002995242, 0.87181306596592, 0.8766990667447198, 0.8820437740506057, 0.8878459677243736, 0.8941033463816539, 0.9008124403471829, 0.9079685330567645, 0.9155655940794175, 0.9235962263972146, 0.9320516298196221, 0.9409215816365002, 0.9501944348976704, 0.9598571340367671, 0.9698952469388965, 0.9802930120269653, 0.9910333985647092, 1.0020981781831804, 1.0134680056383103, 1.025122506973267, 1.0370403735416178, 1.049199460684069, 1.0615768901852494, 1.0741491559188558, 1.086892232288606, 1.0997816851748659, 1.1127927851045212, 1.125900622288309, 1.1390802230386274, 1.152306666915312, 1.1655552037739059, 1.1788013697307511, 1.192021100930356, 1.2051908439144339, 1.2182876613552858, 1.2312893319315843, 1.24417444318971, 1.2569224763441753, 1.2695138821191454, 1.2819301469111568 ], [ 0.8494932592641362, 0.8495274526155328, 0.8499825678488502, 0.8508651016575487, 0.8521807225911803, 0.8539343672642399, 0.8561303467059438, 0.8587724366820315, 0.861863928154069, 0.8654076246196541, 0.8694057876919652, 0.8738600445479764, 0.878771275965005, 0.8841395010792388, 0.8899637683290388, 0.8962420559288997, 0.9029711821624122, 0.9101467254649418, 0.9177629551386235, 0.9258127744086349, 0.9342876779187209, 0.9431777256159629, 0.9524715343854712, 0.9621562879252978, 0.9722177643917516, 0.9826403804792012, 0.9934072499629982, 1.004500254399244, 1.0159001236414322, 1.0275865240495923, 1.039538152647385, 1.0517328359345688, 1.0641476325004764, 1.0767589389445542, 1.0895425988537926, 1.102474014698841, 1.115528262499124, 1.1286802089941237, 1.141904630874562, 1.1551763354073488, 1.1684702815637, 1.1817617005578263, 1.1950262145435389, 1.2082399521112595, 1.2213796591846875, 1.2344228039348397, 1.2473476744067205, 1.2601334676828957, 1.2727603695802183, 1.2852096240802942 ], [ 0.8516772068337332, 0.8517631829370229, 0.852269228369568, 0.8532013506187405, 0.8545646967582678, 0.8563636938037303, 0.858602207289653, 0.8612836790486182, 0.8644112073337603, 0.8679875487119182, 0.8720150448006881, 0.8764954969161081, 0.8814300195684733, 0.8868188985224197, 0.892661466756109, 0.8989559999844228, 0.9056996272774326, 0.9128882518930146, 0.9205164801473268, 0.9285775592488961, 0.9370633270181609, 0.9459641769561722, 0.9552690414937796, 0.96496539493569, 0.9750392760928211, 0.9854753292405966, 0.9962568610778528, 1.0073659108762425, 1.0187833309785035, 1.030488875124376, 1.0424612926201957, 1.054678426984474, 1.067117318280022, 1.079754308801033, 1.0925651520746988, 1.1055251252515634, 1.1186091449127717, 1.1317918861511247, 1.145047904529575, 1.158351760230833, 1.1716781434251815, 1.185001999631952, 1.1982986536564244, 1.2115439305602693, 1.224714272076055, 1.2377868469023063, 1.2507396534096664, 1.2635516134411475, 1.2762026560894526, 1.2886737905688006 ], [ 0.8544108651313005, 0.8545554022369197, 0.855118767595147, 0.8561063976147565, 0.8575228156777486, 0.8593718260819412, 0.8616567402636046, 0.864380577939008, 0.8675461867827279, 0.8711562491119469, 0.8752131818416109, 0.8797189675034135, 0.8846749648654548, 0.8900817370232803, 0.8959389135655781, 0.9022450844314118, 0.9089977138121288, 0.9161930629521144, 0.923826116438732, 0.9318905127140478, 0.9403784834167396, 0.9492808072762482, 0.9585867833094341, 0.9682842259956831, 0.9783594827872647, 0.9887974723327104, 0.9995817404612853, 1.010694530372666, 1.0221168635156093, 1.0338286281469886, 1.0458086733329006, 1.0580349069926673, 1.0704843973412517, 1.0831334776551982, 1.0959578546228554, 1.108932720640602, 1.1220328703130837, 1.1352328211610152, 1.1485069381946407, 1.1618295616323397, 1.1751751366829009, 1.188518344002533, 1.2018342292081434, 1.2150983296886149, 1.2282867969078848, 1.2413765124326133, 1.254345196033702, 1.2671715043923797, 1.2798351191742454, 1.2923168235037275 ], [ 0.8576893649030355, 0.8578990685152508, 0.8585260014600911, 0.8595749571067118, 0.8610497375517879, 0.8629534101065441, 0.865288618868229, 0.8680578685229676, 0.8712636953276334, 0.8749086776421141, 0.8789952983350395, 0.8835257198939767, 0.8885015452294733, 0.8939236156106211, 0.8997918628646939, 0.9061052057630579, 0.9128614693799353, 0.9200573093860843, 0.9276881332567468, 0.9357480200515726, 0.9442296461099122, 0.9531242253412439, 0.9624214710691688, 0.9721095832121848, 0.9821752612468035, 0.9926037407042536, 1.003378849266521, 1.0144830778816787, 1.0258976625362004, 1.0376026731246868, 1.0495771069505841, 1.0617989855163115, 1.0742454542254842, 1.0868928853080133, 1.0997169846455577, 1.1126929032344124, 1.125795353829725, 1.1389987329441251, 1.1522772479082775, 1.1656050482138518, 1.1789563599111634, 1.192305621465623, 1.2056276192126631, 1.2188976203993929, 1.2320915017599363, 1.2451858716307607, 1.2581581837586038, 1.2709868411700216, 1.283651288742495, 1.2961320934246618 ], [ 0.8615045333332066, 0.8617856427636787, 0.8624820427393217, 0.8635978292686342, 0.8651360005428179, 0.8670987827493529, 0.8694880452420242, 0.8723056884196677, 0.8755538787883371, 0.879235060171619, 0.8833517643553394, 0.8879063178553824, 0.8929005500935521, 0.8983355662702017, 0.9042115966355052, 0.9105278998166791, 0.9172826879547256, 0.9244730495072383, 0.93209486074286, 0.9401426900869577, 0.9486097064791761, 0.9574876038925934, 0.9667665512081576, 0.9764351720300437, 0.9864805545031242, 0.9968882877599756, 1.007642519660068, 1.0187260299269905, 1.0301203133298147, 1.04180566878221, 1.0537612917479595, 1.0659653688133475, 1.0783951744860967, 1.09102717108205, 1.1038371129310522, 1.1168001561125154, 1.129890974603626, 1.1430838831965784, 1.1563529669228183, 1.169672216105139, 1.1830156656120827, 1.1963575364579542, 1.2096723775971636, 1.2229352056062557, 1.2361216399227728, 1.249208031399067, 1.2621715821138009, 1.2749904546424777, 1.2876438693022785, 1.3001121882371152 ], [ 0.8658448994268135, 0.8662030827703188, 0.8669742717047219, 0.8681618351435464, 0.8697679131340393, 0.871793814563725, 0.8742405504306603, 0.8771093448749446, 0.8804019460424612, 0.8841206318901533, 0.8882679521936014, 0.8928463579632044, 0.8978578623624358, 0.9033038005481189, 0.909184685552527, 0.9155001216608777, 0.9222487326257486, 0.9294280770046672, 0.937034543239533, 0.9450632329210229, 0.953507848130774, 0.9623605986794755, 0.9716121403693325, 0.9812515490886882, 0.99126632975186, 1.0016424549850298, 1.0123644263650222, 1.0234153507329413, 1.03477702514377, 1.0464300258097996, 1.058353798432832, 1.0705267491933215, 1.082926337111847, 1.0955291693922868, 1.1083111016872815, 1.1212473450701776, 1.1343125809808638, 1.1474810846821835, 1.1607268569568734, 1.174023763006232, 1.187345676859093, 1.200666629107981, 1.2139609554736779, 1.227203443553405, 1.2403694751129466, 1.2534351614144612, 1.266377469303592, 1.2791743360876164, 1.2918047715983416, 1.3042489462299307 ], [ 0.8706957868949813, 0.8711359471118236, 0.8719864424221517, 0.8732499123367521, 0.8749276272155748, 0.8770199550988389, 0.879527016034808, 0.8824493224908494, 0.8857881718503327, 0.8895456388715502, 0.8937242347918313, 0.8983264615357119, 0.903354442900486, 0.908809689095103, 0.91469296825981, 0.9210042295709959, 0.9277425281142242, 0.9349059240622483, 0.942491353248772, 0.9504944834931763, 0.9589095778707103, 0.9677293842306803, 0.9769450633879264, 0.9865461601902503, 0.9965206146164484, 1.0068548054228181, 1.0175336168496145, 1.0285405191113166, 1.039857655128641, 1.0514659284746424, 1.0633450901600945, 1.0754738242006778, 1.087829833600132, 1.1003899293324129, 1.113130125137528, 1.1260257405844685, 1.1390515140817126, 1.1521817265258893, 1.1653903352469284, 1.1786511169683551, 1.1919378177394042, 1.2052243072525277, 1.2184847346382282, 1.231693682710322, 1.2448263176862926, 1.2578585315943145, 1.2707670748686326, 1.2835296769987998, 1.296125153512839, 1.3085334980182126 ], [ 0.8760394810283505, 0.876565598639395, 0.8774989258423811, 0.878841393756944, 0.8805934444786072, 0.8827545599226002, 0.8853240197607556, 0.8883016484993395, 0.8916882783797074, 0.8954857229386621, 0.8996963570130198, 0.904322620040616, 0.9093666458701881, 0.9148300490114778, 0.9207138156904723, 0.9270182314543383, 0.9337427931027289, 0.9408860815869802, 0.9484455999255151, 0.9564175975749449, 0.9647969078905837, 0.9735768209095985, 0.9827490042646575, 0.9923034748328542, 1.0022286155454665, 1.0125112268546137, 1.0231366006997071, 1.0340886057724425, 1.045349775506748, 1.0569013935920075, 1.068723575158484, 1.080795344571039, 1.0930947126836852, 1.1055987573553405, 1.1182837110815482, 1.1311250589458741, 1.144097648988165, 1.1571758157776835, 1.1703335166838225, 1.1835444792124128, 1.1967823569089284, 1.2100208907518823, 1.2232340726553141, 1.2363963076305908, 1.2494825712755053, 1.2624685595168998, 1.275330827890657, 1.2880469180688463, 1.3005954698130995, 1.312956317025283 ], [ 0.8818554545043389, 0.8824704828529955, 0.8834890655892336, 0.8849124630769822, 0.8867403846858972, 0.8889715683850012, 0.8916046019447836, 0.8946387180937649, 0.8980742826889463, 0.9019127524649354, 0.9061562218848533, 0.9108069248753993, 0.9158668914446331, 0.9213377639312504, 0.9272207038828025, 0.9335163147305925, 0.940224529902789, 0.9473444499296261, 0.9548741411592764, 0.9628104251616355, 0.9711486905980489, 0.9798827518767383, 0.9890047667153745, 0.9985052125888493, 1.0083729129393988, 1.0185950990851276, 1.0291574927433016, 1.0400443960232144, 1.0512387794463942, 1.0627223629031675, 1.0744756885667264, 1.0864781880540832, 1.0987082482279948, 1.111143280909199, 1.1237598015501908, 1.1365335208826228, 1.1494394520225553, 1.1624520338258708, 1.1755452696937867, 1.1886928797117158, 1.2018684630480252, 1.2150456669529992, 1.2281983584419633, 1.2413007947562709, 1.2543277889026816, 1.2672548669163146, 1.280058413926907, 1.2927158066000186, 1.3052055300490395, 1.3175072778530414 ], [ 0.8881206754751064, 0.8888264907457541, 0.8899316380705399, 0.8914367661269895, 0.893340992537185, 0.8956425148598437, 0.8983394388779242, 0.9014305466607884, 0.9049157427135133, 0.9087960096064646, 0.9130730016983171, 0.9177486035696977, 0.9228246332397552, 0.9283026875991647, 0.9341840560285609, 0.9404696270858474, 0.9471597430019439, 0.9542539940665414, 0.9617509747137426, 0.9696480378873719, 0.9779410838996141, 0.9866244091625449, 0.99569062515362, 1.0051306440512484, 1.0149337177200077, 1.0250875120585488, 1.0355781985919421, 1.046390548313646, 1.0575080177081126, 1.0689128223116529, 1.0805859980892587, 1.092507454652304, 1.104656026587077, 1.11700952987951, 1.1295448298225088, 1.1422379252518533, 1.1550640519126238, 1.1679978056188496, 1.1810132839514111, 1.1940842437349377, 1.207184270514459, 1.2202869556959233, 1.2333660768453292, 1.24639577676164, 1.2593507372589217, 1.2722063440381781, 1.2849388395481467, 1.297525461292924, 1.309944563621904, 1.3221757216199923 ], [ 0.8948100764034405, 0.8956074964982343, 0.8967994890624902, 0.8983861865058191, 0.9003662824444796, 0.9027376445894474, 0.9054980921787796, 0.9086460769849104, 0.9121810518935574, 0.9161034426317678, 0.9204143446500793, 0.9251151828190656, 0.9302074767758858, 0.9356927126357744, 0.9415722537478286, 0.9478472217680233, 0.9545183108515339, 0.9615855364260001, 0.969047949295966, 0.9769033583383073, 0.9851481013557953, 0.9937768894292484, 1.0027827324361243, 1.0121569379643593, 1.0218891657195934, 1.0319675153784815, 1.04237862678963, 1.0531077758730423, 1.0641389558198673, 1.0754549397637991, 1.0870373268556057, 1.0988665778885374, 1.1109220489515457, 1.123182032045885, 1.1356238104976557, 1.1482237348338837, 1.160957322127224, 1.1737993791663264, 1.1867241475471242, 1.1997054671067038, 1.2127169530792465, 1.225732181875863, 1.238724880352637, 1.2516691136987954, 1.2645394675323227, 1.27731122034858, 1.2899605030734271, 1.3024644430958783, 1.3148012907813806, 1.326950527086563 ], [ 0.9018972118685259, 0.9027861132109836, 0.9040643775815095, 0.9057317488969169, 0.9077866625045026, 0.9102268255873052, 0.9130499023386757, 0.9162540849042018, 0.9198383933087931, 0.9238026790472992, 0.9281474366585925, 0.9328735797596095, 0.9379822777412274, 0.9434748527039277, 0.9493526813093516, 0.9556170448544836, 0.9622689012600507, 0.9693085902671342, 0.9767355106598505, 0.9845478180890597, 0.9927421850774316, 1.0013136474567068, 1.0102555415386152, 1.0195595197129308, 1.0292156219223885, 1.0392123770088983, 1.0495369100574616, 1.0601750377075845, 1.0711113410286903, 1.0823292133105369, 1.0938108867416898, 1.1055374466222274, 1.1174888441110276, 1.1296439186049698, 1.1419804391069563, 1.1544751710157937, 1.1671039713863183, 1.1798419124946953, 1.1926634309334725, 1.2055424976525764, 1.2184528033546154, 1.231367953313089, 1.2442616658271357, 1.2571079689752633, 1.2698813909418896, 1.282557139868641, 1.29511126987472, 1.3075208305737636, 1.3197639980812295, 1.331820186155837 ], [ 0.909354967569487, 0.9103344817637778, 0.911697806938127, 0.9134444307913867, 0.9155726661472329, 0.9180801713121336, 0.9209645277476607, 0.9242237093059072, 0.9278563386110521, 0.9318617318106479, 0.9362398125470611, 0.94099099364028, 0.9461160816886858, 0.9516161971106005, 0.9574926650018569, 0.9637468342257628, 0.9703798108402308, 0.977392126840067, 0.9847833897638099, 0.9925519653642481, 1.0006947355113816, 1.00920695360398, 1.0180821980744672, 1.0273124071784274, 1.0368879681113023, 1.046797830806092, 1.0570296200908047, 1.0675697271143916, 1.0784033699578532, 1.089514622303832, 1.1008864165388088, 1.1125005327804534, 1.1243375876440553, 1.136377036188022, 1.1485971979587335, 1.1609753142332413, 1.1734876393484073, 1.1861095651814575, 1.1988157749004293, 1.2115804202133726, 1.2243773154410138, 1.2371801416027233, 1.2499626540830944, 1.2626988881078858, 1.2753633570388934, 1.287931239297304, 1.3003785504979763, 1.3126822981105892, 1.3248206166613934, 1.3367728821594067 ], [ 0.9171561284907542, 0.9182248496101556, 0.919671580754621, 0.9214956638730568, 0.9236953827043719, 0.9262684106749934, 0.9292122873105453, 0.9325248068164608, 0.9362042520130697, 0.9402494814078411, 0.9446599256949577, 0.9494355524285361, 0.9545768245263984, 0.9600846375856307, 0.9659601994532991, 0.972204822604582, 0.9788196273548224, 0.9858051854153754, 0.993161154272913, 1.00088595636018, 1.0089765444128986, 1.0174282726612818, 1.0262348706890307, 1.0353884989931998, 1.044879855368464, 1.054698299308824, 1.0648319660672771, 1.0752678505633353, 1.0859918516808884, 1.0969887776550697, 1.1082423216357753, 1.1197350220709155, 1.1314482247857698, 1.1433620626804712, 1.1554554655254372, 1.167706207475962, 1.1800909947992495, 1.19258559184518, 1.2051649800427355, 1.2178035428036318, 1.2304752684939322, 1.2431539637720153, 1.255813470246172, 1.2684278783024552, 1.2809717329090216, 1.2934202271198698, 1.3057493798443034, 1.3179361952207347, 1.3299588016514636, 1.3417965692365958 ], [ 0.925273735830005, 0.9264298849587544, 0.9279580613488679, 0.9298575402347703, 0.932126632668326, 0.9347630626013599, 0.9377643589879132, 0.941128184838708, 0.9448525605612331, 0.9489359872432891, 0.9533775041159127, 0.9581767112725319, 0.9633337639956169, 0.9688493189981898, 0.9747244027924399, 0.9809601838823859, 0.9875576568236175, 0.9945172741305227, 1.001838579265866, 1.0095198945627004, 1.0175581034867198, 1.0259485438370932, 1.0346850051719785, 1.0437598058847901, 1.0531639157740285, 1.062887088711798, 1.0729179754669484, 1.0832441964988013, 1.0938523661654986, 1.1047280711201075, 1.1158558149428217, 1.127218947039993, 1.1387995959347086, 1.1505786254357366, 1.1625356276716836, 1.1746489609573243, 1.1868958343398448, 1.1992524355690746, 1.211694095737567, 1.224195482008518, 1.2367308093935279, 1.249274063012416, 1.2617992232338886, 1.2742804872392106, 1.2866924816779521, 1.2990104621065999, 1.3112104958013044, 1.3232696253344827, 1.3351660110324781, 1.34687905111583 ], [ 0.9336812826206098, 0.9349228202725064, 0.9365302648820467, 0.9385028766676791, 0.9408390265522789, 0.9435365120243657, 0.9465928837692884, 0.9500057315935481, 0.953772901365734, 0.9578926438791316, 0.962363712258635, 0.967185419845292, 0.9723576531293143, 0.9778808186782955, 0.9837557007697879, 0.9899832206650664, 0.9965641132130821, 1.003498560799025, 1.0107858383785482, 1.0184240215838172, 1.0264097943227006, 1.0347383691842562, 1.043403510730972, 1.0523976341288792, 1.0617119423636368, 1.0713365646601685, 1.0812606650448893, 1.0914725008326005, 1.1019594236261534, 1.1127078278600766, 1.123703062055152, 1.1349293243398977, 1.1463695657030883, 1.1580054220323857, 1.169817190326636, 1.1817838571973265, 1.1938831806262669, 1.2060918202278632, 1.2183855075899064, 1.2307392465964093, 1.2431275335170757, 1.2555245874933723, 1.2679045833451164, 1.280241880007777, 1.2925112391947549, 1.3046880299898884, 1.3167484160181862, 1.328669522655247, 1.3404295824638734, 1.3520080577261073 ], [ 0.9423528246904969, 0.9436775263644667, 0.9453619084928269, 0.9474052497224927, 0.9498060015418017, 0.9525620547970935, 0.9556710169568061, 0.9591304658454997, 0.9629381595986616, 0.9670921989641001, 0.9715911457920176, 0.9764340970324572, 0.981620702350334, 0.9871511054746785, 0.9930257923848699, 0.9992453448443649, 1.0058101203522403, 1.0127199002719958, 1.0199735584098844, 1.0275687987460544, 1.0355019950194122, 1.0437681421102558, 1.0523609064781052, 1.0612727457460718, 1.0704950587378932, 1.0800183271787445, 1.08983221734795, 1.0999256217689077, 1.110286634878543, 1.1209024700721044, 1.1317593364477165, 1.1428423003280606, 1.1541351583160213, 1.1656203454031098, 1.1772788947557407, 1.1890904572473557, 1.2010333806424829, 1.2130848420652327, 1.2252210236144536, 1.237417319549856, 1.249648563736187, 1.2618892672702469, 1.2741138578301079, 1.2862969138959652, 1.2984133884129454, 1.3104388176479038, 1.3223495119635986, 1.3341227260507558, 1.3457368068805406, 1.3571713183103873 ], [ 0.9512630553689513, 0.9526685666596029, 0.9544274521212484, 0.9565390320041597, 0.9590018543358527, 0.9618139229033816, 0.9649729370577242, 0.9684765196261154, 0.9723224168907543, 0.9765086629277488, 0.9810337036891134, 0.9858964725775716, 0.9910964028934166, 0.9966333600116793, 1.0025074824232363, 1.0087189361831204, 1.0152676072620213, 1.02215277344592, 1.0293728051054976, 1.0369249392820548, 1.0448051556363462, 1.053008160876411, 1.0615274664757077, 1.0703555279585673, 1.079483905699364, 1.0889034075832118, 1.0986041816271803, 1.1085757392898572, 1.1188069049458749, 1.1292857013020745, 1.1399991921243613, 1.1509333106830506, 1.1620727037349767, 1.1734006167844746, 1.184898838265452, 1.1965477105005284, 1.2083262062009437, 1.2202120625342632, 1.2321819609975528, 1.244211740169483, 1.2562766290685077, 1.2683514904550153, 1.280411065319758, 1.2924302116042612, 1.304384131730877, 1.3162485847556502, 1.3280000799465443, 1.3396160494058067, 1.3510749980683288, 1.3623566300665813 ], [ 0.9603873611598495, 0.9618712409669683, 0.9637021339304868, 0.9658794195900783, 0.9684017563796887, 0.9712672794784012, 0.9744738110892418, 0.9780190656779176, 0.9819008362551918, 0.9861171513874293, 0.9906663933256294, 0.9955473651788698, 1.0007592922985826, 1.006301744249145, 1.0121744718531756, 1.0183771684247584, 1.0249091814965114, 1.0317692152104136, 1.0389550687978883, 1.046463450821373, 1.0542898934231872, 1.0624287700231718, 1.0708733991929327, 1.0796162016491373, 1.0886488694738914, 1.0979625075616475, 1.1075477156652187, 1.1173945927526503, 1.1274926608303617, 1.1378307203021083, 1.1483966609876477, 1.1591772601228336, 1.1701579997710527, 1.181322931215701, 1.1926546047254842, 1.2041340722332978, 1.2157409606070237, 1.2274536061059627, 1.2392492368624566, 1.2511041893345, 1.2629941456786966, 1.2748943809212174, 1.2867800109468717, 1.2986262342826995, 1.3104085622699047, 1.3221030334933797, 1.333686409339698, 1.345136348368861, 1.3564315578890298, 1.3675519217716898 ], [ 0.9697018601263232, 0.9712616139083183, 0.9731619887913883, 0.9754024376663278, 0.9779817409157299, 0.980898180005603, 0.9841497230998181, 0.9877342088573227, 0.9916495156399027, 0.9958937043928531, 1.0004651231808614, 1.0053624600911109, 1.0105847310234222, 1.0161311924490524, 1.022001178100832, 1.028193871920683, 1.034708044092303, 1.0415417879375857, 1.0486922987208176, 1.0561557291139658, 1.0639271413562277, 1.0720005566212418, 1.0803690826032302, 1.0890250853859855, 1.097960364371685, 1.1071662904381152, 1.1166338764368988, 1.1263537630561073, 1.1363161189705844, 1.146510469438292, 1.156925479743681, 1.1675487270740295, 1.1783664951950021, 1.1893636207796532, 1.2005234102333362, 1.2118276342225374, 1.2232565967117672, 1.2347892680089614, 1.2464034676197322, 1.2580760820322285, 1.269783303817407, 1.2815008805872459, 1.2932043646644469, 1.3048693563817855, 1.3164717356081055, 1.3279878774039608, 1.3393948487228342, 1.3506705838889075, 1.3617940372814163, 1.3727453122949858 ], [ 0.9791834220142103, 0.9808165243849447, 0.982783845465832, 0.9850849220013135, 0.9877186641710755, 0.9906835087149739, 0.9939775826941225, 0.9975988662015718, 1.0015453420531, 1.0058151203082966, 1.0104065250026268, 1.0153181302694072, 1.0205487345615374, 1.0260972665583497, 1.0319626252397858, 1.0381434684706214, 1.044637976453609, 1.0514436248741463, 1.0585570042421901, 1.0659737153756557, 1.0736883570866078, 1.0816946039696547, 1.0899853539812963, 1.0985529114807193, 1.107389164731895, 1.1164857187582036, 1.125833953867383, 1.1354249944587766, 1.1452495888063539, 1.1552979157329417, 1.1655593462075768, 1.1760221948654819, 1.1866734968955994, 1.1974988397801443, 1.2084822688752244, 1.2196062737757385, 1.230851851744271, 1.2421986370873281, 1.2536250817031867, 1.2651086714592803, 1.2766261644519614, 1.2881538394752265, 1.2996677454246357, 1.3111439444889221, 1.3225587437001383, 1.333888910744109, 1.3451118709595247, 1.356205883275846, 1.3671501935390806, 1.3779251643100303 ], [ 0.9888096717191615, 0.9905135779171614, 0.9925453061015513, 0.9949044831706465, 0.997590151902717, 1.0006009059504086, 1.0039350333903663, 1.0075906585383865, 1.011565870847996, 1.0158588291088904, 1.0204678288985136, 1.0253913219029838, 1.030627878320827, 1.0361760890063165, 1.0420344124318974, 1.048200981829849, 1.054673397675612, 1.0614485370685272, 1.0685224120250385, 1.0758901020672424, 1.0835457735137441, 1.091482781112894, 1.0996938308180941, 1.108171169534812, 1.1169067616980917, 1.1258924149018767, 1.1351198265462608, 1.1445805378893814, 1.154265797844596, 1.1641663537404436, 1.1742721979352477, 1.1845723057306279, 1.1950544001552519, 1.2057047730357275, 1.2165081812019345, 1.2274478246363862, 1.2385054027534947, 1.249661237628367, 1.2608944493395555, 1.2721831680111104, 1.2835047685169996, 1.2948361160766368, 1.3061538133731585, 1.31743444196527, 1.3286547925010854, 1.339792079593006, 1.3508241382572717, 1.3617295996565426, 1.3724880445897276, 1.3830801338090126 ], [ 0.9985589806279431, 1.000331127758952, 1.0024247161469142, 1.0048394643383316, 1.0075745447260387, 1.0106287018743294, 1.0140003769773864, 1.0176878292182403, 1.021689243747345, 1.0260028154052432, 1.0306267974055103, 1.035559505492801, 1.040799271262529, 1.0463443438334006, 1.0521927467258818, 1.058342105532349, 1.0647894698384974, 1.071531157549733, 1.0785626493051776, 1.0858785541052631, 1.0934726552498208, 1.1013380303438605, 1.109467223755123, 1.1178524381294985, 1.1264857063887077, 1.1353590083979535, 1.1444643063121607, 1.1537934868285236, 1.1633382140737072, 1.173089711083729, 1.1830384988050053, 1.193174127527137, 1.2034849355143231, 1.2139578635215522, 1.224578343643872, 1.2353302693232928, 1.246196043040399, 1.257156690995439, 1.2681920303979803, 1.2792808742689807, 1.290401259876903, 1.3015306890633913, 1.3126463710350436, 1.323725460300054, 1.334745284162119, 1.345683555548184, 1.356518568011421, 1.3672293706041232, 1.3777959210339665, 1.3881992161580503 ], [ 1.0084104517308237, 1.0102482520024179, 1.0124011334374488, 1.014868902730386, 1.0176508531575439, 1.020745867269185, 1.0241525232685138, 1.0278691967793696, 1.031894148754054, 1.0362255898831132, 1.0408617123250299, 1.0458006812896066, 1.0510405824014746, 1.056579326014383, 1.0624145164082108, 1.0685433010824505, 1.0749622215752248, 1.0816670905432704, 1.088652918668001, 1.0959139085796725, 1.1034435219394776, 1.1112346119466707, 1.1192795997373663, 1.1275706626972606, 1.1360998983872792, 1.1448594308367501, 1.153841435567974, 1.1630380733720875, 1.1724413375814178, 1.1820428329178319, 1.1918335140824015, 1.2018034175853598, 1.2119414199749978, 1.2222350498592498, 1.2326703715490206, 1.2432319472817561, 1.2539028752557713, 1.2646648937360012, 1.2754985377607828, 1.286383334036877, 1.297298020549278, 1.3082207793072953, 1.319129472806433, 1.3300018768002846, 1.3408159036788247, 1.3515498121162173, 1.3621823997345057, 1.3726931764043397, 1.3830625165395944, 1.3932717893931175 ], [ 1.0183439041096425, 1.0202447330128346, 1.022454303377256, 1.0249725018671687, 1.027798728876095, 1.0309319864978235, 1.034370967949203, 1.038114141054608, 1.0421598176686269, 1.0465062007931636, 1.0511514019045685, 1.0560934229530174, 1.0613301008668825, 1.066859017190925, 1.072677381308555, 1.078781901658818, 1.0851686641592466, 1.091833039219573, 1.0987696370446756, 1.1059723248212738, 1.113434309338044, 1.1211482762236267, 1.1291065648457324, 1.1373013489023935, 1.1457247892936882, 1.1543691290790883, 1.1632267094426312, 1.172289898345585, 1.181550937209059, 1.191001723219319, 1.2006335539578172, 1.2104368657401925, 1.220400996606459, 1.2305139996411816, 1.240762523651774, 1.2511317683533438, 1.2616055122332734, 1.2721662046515718, 1.2827951099733286, 1.2934724903151253, 1.3041778140716427, 1.3148899789630033, 1.3255875402690185, 1.3362489367933708, 1.3468527087397761, 1.357377703033937, 1.3678032627198813, 1.3781093979532937, 1.3882769368689396, 1.3982876552609143 ], [ 1.0283398610486032, 1.0303010435336737, 1.0325646443371963, 1.0351306179789777, 1.0379984543307248, 1.0411672528233948, 1.0446357962299584, 1.048402617541144, 1.0524660529726093, 1.056824274279724, 1.0614752945336874, 1.0664169435405573, 1.0716468122757283, 1.0771621699603269, 1.0829598623096612, 1.089036204267177, 1.095386884137841, 1.1020068972899573, 1.1088905255429533, 1.1160313725994069, 1.1234224568703788, 1.1310563522096355, 1.1389253566268365, 1.1470216614943018, 1.1553374911631882, 1.1638651861476823, 1.1725972114382313, 1.1815260831051735, 1.1906442187365043, 1.1999437282937695, 1.2094161700792894, 1.2190523005917486, 1.228841846601129, 1.2387733231303293, 1.2488339134258624, 1.2590094182404923, 1.2692842736446845, 1.2796416304050708, 1.290063484226624, 1.3005308446723594, 1.3110239307742302, 1.3215223825538827, 1.3320054793132523, 1.3424523572481668, 1.3528422204794948, 1.3631545409109442, 1.3733692434145548, 1.3834668737521638, 1.3934287474114253, 1.4032370782078964 ], [ 1.0383795442596104, 1.0403983415607523, 1.042713244659731, 1.045324260894118, 1.0482309494736437, 1.0514324829982535, 1.0549277071029561, 1.0587151926471374, 1.0627932746292703, 1.0671600723583976, 1.0718134865218065, 1.0767511707864987, 1.0819704784877122, 1.0874683886376766, 1.0932414195330666, 1.0992855419911869, 1.1055961068390725, 1.1121678018007497, 1.1189946506452366, 1.1260700621119726, 1.1333869281732807, 1.1409377618794552, 1.148714856249933, 1.1567104395186576, 1.1649168001975987, 1.1733263585727185, 1.1819316687917611, 1.1907253459959932, 1.1996999239214876, 1.2088476581633403, 1.2181602974279104, 1.2276288486607823, 1.2372433615681806, 1.246992754083097, 1.2568646938012515, 1.2668455428102978, 1.2769203661490414, 1.2870729984612783, 1.2972861597486978, 1.3075416094204049, 1.3178203276650027, 1.3281027139936121, 1.338368794128126, 1.348598427882802, 1.3587715120979516, 1.3688681739351967, 1.3788689509148342, 1.3887549549844125, 1.39850801868718, 1.4081108221805942 ], [ 1.048444875046183, 1.0505184741509141, 1.0528818705268432, 1.0555351074877162, 1.0584777923170257, 1.0617091462934467, 1.0652280518319548, 1.0690330920291171, 1.0731225778717428, 1.0774945588727782, 1.0821468140603494, 1.0870768221354221, 1.0922817122043116, 1.097758199604395, 1.1035025146082003, 1.1095103346541089, 1.1157767325154833, 1.122296152773595, 1.129062426567721, 1.136068829720138, 1.1433081824236742, 1.1507729808239595, 1.1584555436088182, 1.166348151837725, 1.1744431590343003, 1.1827330515314187, 1.191210445686098, 1.1998680175211747, 1.2086983698803855, 1.2176938506788182, 1.2268463420339575, 1.236147043179536, 1.2455862698235405, 1.2551532893233863, 1.2648362055692763, 1.2746219009863182, 1.2844960367991038, 1.294443107577345, 1.304446542571417, 1.3144888444835514, 1.3245517558239661, 1.3346164434580898, 1.344663692954556, 1.354674105575309, 1.3646282920011483, 1.3745070580473822, 1.3842915786526002, 1.3939635573186284, 1.4035053689580923, 1.412900184790732 ], [ 1.0585184819161544, 1.060643988938931, 1.0630529825677808, 1.0657455245376175, 1.068721249054553, 1.071979402616483, 1.0755188803434514, 1.079338254926163, 1.0834357944331898, 1.0878094658196567, 1.0924569221333444, 1.097375473144672, 1.1025620413731958, 1.1080131080593867, 1.1137246562083685, 1.1196921199448604, 1.125910350513752, 1.1323736087978333, 1.1390755918304296, 1.1460094964162582, 1.1531681170740513, 1.1605439690115997, 1.1681294210313478, 1.1759168194945773, 1.1838985837674283, 1.1920672562943526, 1.2004154961620084, 1.2089360126434128, 1.2176214433440462, 1.2264641888470742, 1.2354562210959439, 1.2445888854855398, 1.253852716542055, 1.2632372844225874, 1.2727310849453215, 1.2823214804209333, 1.2919946931684012, 1.301735849036882, 1.3115290649566118, 1.321357572598891, 1.3312038694706123, 1.3410498889008573, 1.350877181071586, 1.3606670982269138, 1.3704009782702569, 1.3800603220074437, 1.3896269602592295, 1.3990832079302067, 1.4084120028865739, 1.4175970281742367 ], [ 1.0685837132807645, 1.0707581513162086, 1.0732097583990545, 1.0759385973807436, 1.0789443093648279, 1.0822261446523993, 1.0857829899406204, 1.08961338863268, 1.0937155513653536, 1.0980873545094585, 1.1027263254964845, 1.1076296153665506, 1.1127939608367359, 1.1182156402757981, 1.1238904299532149, 1.1298135684244037, 1.1359797374880676, 1.1423830674072444, 1.1490171717790443, 1.1558752136030939, 1.1629499991438979, 1.1702340908909237, 1.1777199263286364, 1.1853999263864967, 1.1932665771163846, 1.2013124705922784, 1.209530295888014, 1.217912777401066, 1.226452564628604, 1.2351420836501394, 1.2439733651263116, 1.252937866018575, 1.2620263022878018, 1.2712285077524337, 1.2805333306214333, 1.289928574710165, 1.2994009877735389, 1.308936295386278, 1.3185192757582174, 1.3281338689233027, 1.3377633128013613, 1.347390298494505, 1.3569971375953203, 1.366565935024914, 1.376078761808173, 1.38551782311387, 1.3948656177709708, 1.4041050862881186, 1.41321974514213, 1.4221938057652248 ], [ 1.0786246534239743, 1.0808449648961342, 1.0833361181474541, 1.086098160873573, 1.089130722929038, 1.0924330397179836, 1.0960039718624937, 1.0998420186749716, 1.1039453232818477, 1.1083116679015221, 1.1129384587901634, 1.1178227017088416, 1.1229609703452563, 1.1283493717753375, 1.133983514529409, 1.1398584858245837, 1.1459688447098544, 1.1523086369592253, 1.1588714353957876, 1.1656504060189534, 1.1726383962091567, 1.17982803704444, 1.1872118481978002, 1.194782331793061, 1.202532041549524, 1.2104536157107069, 1.2185397663381266, 1.2267832228799445, 1.2351766336070515, 1.2437124336464471, 1.2523826921936718, 1.2611789535780735, 1.2700920870291217, 1.2791121584048393, 1.2882283342146805, 1.2974288245779202, 1.306700867918033, 1.3160307567212974, 1.3254039009313694, 1.3348049236575101, 1.3442177828208641, 1.3536259120171452, 1.3630123740513032, 1.3723600211179794, 1.3816516563080226, 1.3908701919045485, 1.3999988007203408, 1.4090210574818205, 1.417921067964139, 1.4266835842203798 ], [ 1.0886261398111008, 1.0908891929271376, 1.0934167502374037, 1.0962088296194552, 1.0992650339056307, 1.102584567983741, 1.106166252411923, 1.1100085316529256, 1.1141094753926954, 1.1184667720388561, 1.1230777143985062, 1.1279391786727717, 1.1330475991881668, 1.1383989425608054, 1.1439886860553408, 1.14981180551064, 1.1558627781131834, 1.162135604313097, 1.1686238512238034, 1.1753207170340743, 1.1822191126184138, 1.1893117531805952, 1.1965912500389027, 1.2040501911613866, 1.2116811992001373, 1.2194769576644773, 1.2274301992770476, 1.2355336549462772, 1.243779966467185, 1.2521615703163693, 1.2606705631391806, 1.2692985613447023, 1.2780365674879466, 1.2868748549366518, 1.2958028800101382, 1.3048092277850807, 1.3138815945684341, 1.323006807060853, 1.3321708757742154, 1.3413590784750786, 1.3505560683214475, 1.3597460008644688, 1.3689126740714461, 1.3780396758495848, 1.3871105340848673, 1.396108864855299, 1.4050185151638142, 1.4138236972155285, 1.4225091119133193, 1.4310600598491954 ], [ 1.0985737799337507, 1.1008763785915476, 1.1034371351722307, 1.10625602506049, 1.109332610927748, 1.1126660547160772, 1.116255126518805, 1.1200982089527605, 1.1241932959869163, 1.1285379857769615, 1.133129467842306, 1.1379645058685186, 1.1430394184353612, 1.1483500609307906, 1.1538918126449649, 1.1596595733578385, 1.1656477734605935, 1.1718504006593715, 1.178261044577008, 1.1848729582144648, 1.1916791325394909, 1.1986723778534438, 1.205845403532171, 1.2131908866905348, 1.220701520581132, 1.2283700351727624, 1.2361891851725564, 1.2441517043472616, 1.2522502288239241, 1.2604771955474556, 1.2688247247663826, 1.2772844969876582, 1.285847635161367, 1.2945046019987383, 1.303245120525189, 1.312058123565084, 1.3209317352196281, 1.3298532848720122, 1.3388093520886732, 1.3477858391282314, 1.3567680666639859, 1.365740887734368, 1.3746888147728957, 1.3835961547292535, 1.3924471476736193, 1.4012261047898498, 1.4099175422433636, 1.4185063080098184, 1.4269776993405185, 1.435317569101903 ], [ 1.108453966165459, 1.1107928625343029, 1.1133835655832185, 1.1162259977141, 1.1193196710002764, 1.122663695110009, 1.1262567825981038, 1.1300972505638334, 1.1341830180335095, 1.1385115989504297, 1.143080091325072, 1.1478851638675909, 1.1529230422136085, 1.158189497554042, 1.1636798409548543, 1.169388926762363, 1.1753111681073873, 1.1814405665728023, 1.1877707565823965, 1.1942950631235787, 1.201006569268686, 1.2078981879379278, 1.2149627308194195, 1.2221929666565903, 1.2295816614435922, 1.2371215944721916, 1.244805546496858, 1.252626259209559, 1.2605763683265405, 1.2686483154490553, 1.2768342460926398, 1.28512590262508, 1.2935145212019101, 1.3019907411817002, 1.310544534112708, 1.3191651574632899, 1.3278411361102065, 1.3365602724716008, 1.3453096842878844, 1.3540758675492004, 1.362844780999087, 1.3716019480016854, 1.380332571291281, 1.389021656152607, 1.3976541378279737, 1.4062150093401131, 1.4146894463973931, 1.4230629265663548, 1.431321340422525, 1.4394510929032078 ], [ 1.1182538874526569, 1.120625796416982, 1.123243161372145, 1.1261058434793882, 1.129213296394606, 1.1325645710570524, 1.1361583183586512, 1.1399927890163515, 1.1440658303051474, 1.1483748797678546, 1.1529169565749167, 1.1576886518194658, 1.162686119629393, 1.167905071468822, 1.1733407762815593, 1.1789880690936985, 1.1848413702573526, 1.1908947166417416, 1.1971418047897622, 1.2035760444687336, 1.21019061934763, 1.2169785499864747, 1.2239327532034643, 1.2310460914318158, 1.2383114060409686, 1.245721529794097, 1.2532692755226538, 1.2609474004736771, 1.2687485483066703, 1.2766651730459482, 1.2846894511362252, 1.2928131888951209, 1.3010277330106468, 1.3093238913150664, 1.3176918700019091, 1.326121231930522, 1.3346008789059072, 1.3431190590433046, 1.3516633987058362, 1.3602209571580963, 1.3687783010729502, 1.377321595370983, 1.3858367065342068, 1.394309314465795, 1.4027250291052957, 1.4110695082949327, 1.4193285737750785, 1.42748832262455, 1.4355352319218049, 1.4434562548634495 ], [ 1.1279615370305924, 1.1303631517301576, 1.1330038792763861, 1.135883513494685, 1.1390014442311736, 1.1423566597967838, 1.145947747808644, 1.1497728940043468, 1.1538298789068535, 1.1581160726079116, 1.1626284283919324, 1.1673634763976408, 1.1723173189532667, 1.1774856295484333, 1.1828636575429472, 1.1884462405839755, 1.1942278262538437, 1.200202503684683, 1.2063640447907809, 1.2127059534829114, 1.219221519900946, 1.2259038755283256, 1.2327460442427123, 1.2397409840853957, 1.2468816149015207, 1.2541608280206258, 1.2615714757126584, 1.2691063400799607, 1.2767580830842409, 1.284519181299494, 1.2923818504958253, 1.3003379661290617, 1.3083789861542248, 1.3164958823049302, 1.3246790851708299, 1.3329184472039688, 1.3412032263611604, 1.3495220916133264, 1.3578631501681278, 1.3662139950659, 1.374561770881968, 1.382893254622224, 1.391194948521345, 1.399453181311636, 1.4076542145802613, 1.415784351028187, 1.4238300417406786, 1.4317779899405485, 1.4396152490910739, 1.447329313622258 ], [ 1.1375657156946364, 1.1399937234832915, 1.1426545166080115, 1.1455478174728198, 1.1486729488896104, 1.15202883483559, 1.1556140001014743, 1.1594265685982794, 1.1634642603547072, 1.1677243875619099, 1.1722038503841359, 1.1768991336142758, 1.1818063055646637, 1.1869210207866157, 1.1922385282482646, 1.1977536864167777, 1.2034609862540828, 1.20935458244563, 1.2154283322770496, 1.221675840542448, 1.2280905078352005, 1.234665578691688, 1.2413941854830297, 1.2482693838066599, 1.2552841754896011, 1.2624315161766044, 1.2697043057601252, 1.2770953614684082, 1.284597375075088, 1.2922028572273345, 1.299904073131208, 1.3076929746489037, 1.3155611341842364, 1.3234996855573566, 1.3314992764577613, 1.3395500361191957, 1.3476415607112522, 1.3557629177225903, 1.3639026694372256, 1.3720489145701569, 1.3801893462889567, 1.3883113242319383, 1.3964019577398123, 1.4044481973281773, 1.4124369314110734, 1.420355085406147, 1.4281897205740488, 1.435928130236121, 1.443557931348561, 1.451067149765183 ], [ 1.147056030450585, 1.1495071287089698, 1.1521847092491762, 1.1550884207710526, 1.158217517701271, 1.1615708597983325, 1.1651469111002772, 1.1689437381239762, 1.1729590074497, 1.1771899830893653, 1.1816335243182334, 1.1862860849162902, 1.1911437149764375, 1.1962020665484216, 1.2014564043550366, 1.206901622606728, 1.2125322685334279, 1.2183425726567283, 1.224326485080396, 1.230477716256217, 1.236789779885277, 1.2432560349591355, 1.2498697235450904, 1.2566240008646368, 1.2635119545547193, 1.2705266107287143, 1.2776609255065947, 1.284907761947446, 1.2922598536472099, 1.2997097575076975, 1.307249799198269, 1.3148720155154865, 1.3225680981393426, 1.3303293431807035, 1.3381466104535475, 1.3460102956638802, 1.3539103177824439, 1.361836122864231, 1.3697767045895044, 1.3777206409053935, 1.385656145397563, 1.3935711314470918, 1.4014532868356802, 1.409290156243636, 1.4170692290191265, 1.424778029657564, 1.4324042085886246, 1.4399356310982234, 1.4473604624896619, 1.454667247891964 ], [ 1.1564228886033425, 1.1588937999607447, 1.161584924225369, 1.1644958356773139, 1.1676257205763674, 1.1709733760372407, 1.1745372086471868, 1.1783152328337583, 1.182305069177683, 1.186503943076665, 1.1909086843794965, 1.195515728800535, 1.2003211220587031, 1.2053205277310362, 1.2105092397353667, 1.2158822001388376, 1.2214340226199616, 1.227159021404844, 1.2330512448900395, 1.2391045125149958, 1.245312452836655, 1.2516685402754002, 1.2581661277298704, 1.2647984722629773, 1.2715587513755309, 1.2784400679976813, 1.2854354431918078, 1.2925377965850473, 1.2997399156244467, 1.3070344157542642, 1.3144136944451754, 1.3218698825753281, 1.3293947969257314, 1.336979897497276, 1.3446162530104322, 1.3522945173673968, 1.3600049191135477, 1.3677372651109825, 1.3754809588083834, 1.3832250327227016, 1.390958194086092, 1.3986688820858029, 1.4063453347467938, 1.4139756632741425, 1.4215479315725488, 1.429050238674528, 1.4364708019151537, 1.443798038867497, 1.451020646278885, 1.4581276745043685 ], [ 1.1656574875199546, 1.1681449741561978, 1.1708464473370999, 1.1737614075303675, 1.176888974321549, 1.1802278848850145, 1.183776492539468, 1.1875327654613455, 1.1914942857821722, 1.1956582494594725, 1.2000214674692056, 1.204580368997779, 1.2093310073891643, 1.2142690696022675, 1.2193898898340114, 1.2246884677508731, 1.2301594914447733, 1.235797364802753, 1.2415962384869943, 1.2475500432117184, 1.2536525235386453, 1.259897270060509, 1.2662777476644331, 1.272787317609983, 1.2794192514421818, 1.2861667352770718, 1.2930228637065395, 1.2999806234008042, 1.3070328673566565, 1.314172281554956, 1.3213913464687816, 1.3286822963380596, 1.3360370793575036, 1.3434473219018583, 1.350904299653104, 1.3583989180388039, 1.36592170379416, 1.3734628087860163, 1.3810120265446748, 1.388558821293506, 1.3960923686871332, 1.4036016069948145, 1.411075297109345, 1.4185020895270826, 1.4258705963231255, 1.433169466125842, 1.4403874601588418, 1.4475135275502753, 1.4545368782894168, 1.461447052424872 ], [ 1.17475180042529, 1.1772526772268326, 1.1799613664216022, 1.1828772963565095, 1.1859995224366475, 1.1893267254349702, 1.1928572101703665, 1.1965889046678742, 1.200519360035709, 1.2046457514182705, 1.2089648804973336, 1.2134731800973815, 1.2181667214870724, 1.2230412249381308, 1.2280920739918018, 1.2333143336836847, 1.2387027726929993, 1.2442518890273984, 1.2499559384577812, 1.255808964519245, 1.261804828543114, 1.2679372379315237, 1.2741997707762214, 1.2805858949894875, 1.2870889803710786, 1.293702302471272, 1.300419037692813, 1.3072322497514253, 1.3141348683184881, 1.321119661331387, 1.3281792030099093, 1.3353058400108195, 1.3424916583537607, 1.3497284537491772, 1.3570077077651521, 1.3643205719124878, 1.3716578612489414, 1.3790100585515586, 1.3863673295300494, 1.3937195489966097, 1.401056337405094, 1.4083671067491963, 1.4156411144805199, 1.4228675238776471, 1.4300354691647026, 1.4371341236328363, 1.4441527690500544, 1.4510808647383098, 1.4579081148387814, 1.4646245324623912 ], [ 1.1836985586637838, 1.1862097050967668, 1.1889225508553927, 1.1918364547190285, 1.1949504111633114, 1.1982630486832155, 1.2017726287129067, 1.2054770452769084, 1.2093738256012214, 1.2134601320046625, 1.217732765467985, 1.2221881713274103, 1.2268224475455565, 1.231631355963829, 1.236610336826484, 1.2417545266849213, 1.2470587795464545, 1.2525176908385274, 1.2581256234422937, 1.263876734740249, 1.269765003359144, 1.2757842541102673, 1.281928179567395, 1.2881903568015363, 1.2945642580193675, 1.3010432542195873, 1.3076206114614157, 1.3142894798907938, 1.3210428762415398, 1.3278736610654187, 1.3347745123970902, 1.3417378978855568, 1.348756047596638, 1.3558209297016652, 1.3629242311218581, 1.3700573449173972, 1.3772113658256693, 1.3843770949025207, 1.3915450537410532, 1.3987055082713122, 1.405848501710368, 1.4129638958583541, 1.4200414196366404, 1.4270707235457352, 1.434041438583348, 1.4409432381019587, 1.4477659010918267, 1.454499375439067, 1.4611338398173728, 1.4676597630151798 ], [ 1.1924912308986204, 1.1950096015324998, 1.1977236279089563, 1.200632602453911, 1.2037354625104117, 1.207030788795037, 1.2105168046280832, 1.2141913760794236, 1.218052013242698, 1.2220958729157425, 1.2263197630147642, 1.2307201490731026, 1.2352931631620914, 1.2400346155122186, 1.2449400090024292, 1.2500045565236562, 1.255223201014671, 1.2605906377285674, 1.2661013380358854, 1.2717495738315843, 1.2775294414175746, 1.283434883608278, 1.2894597087786563, 1.2955976056583633, 1.3018421528767294, 1.3081868225726558, 1.3146249777796588, 1.3211498637463823, 1.327754593817792, 1.3344321309383849, 1.341175266208243, 1.3479765961916512, 1.3548285008258212, 1.3617231237948308, 1.3686523571244238, 1.375607831532589, 1.3825809137617164, 1.3895627117495477, 1.3965440880986721, 1.4035156819066728, 1.410467938646424, 1.4173911474584404, 1.4242754849472983, 1.4311110643706761, 1.4378879889729683, 1.4445964081446447, 1.4512265750766846, 1.4577689046191367, 1.4642140301347948, 1.470552858253259 ], [ 1.2011239997283467, 1.2036466333993068, 1.2063589565393054, 1.2092601989198846, 1.2123492449161881, 1.215624632173304, 1.2190845511780575, 1.2227268458756944, 1.2265490155225194, 1.230548218010011, 1.2347212749240422, 1.2390646786084922, 1.2435746014757092, 1.2482469077435256, 1.2530771676746897, 1.2580606742528349, 1.2631924620541823, 1.268467327879036, 1.273879852507407, 1.2794244227601073, 1.2850952529029631, 1.2908864043480752, 1.2967918026011316, 1.3028052504887873, 1.308920436876017, 1.3151309403446014, 1.321430227630991, 1.3278116469904342, 1.3342684170324983, 1.3407936119287776, 1.3473801441951156, 1.3540207464729521, 1.360707953859684, 1.3674340883587628, 1.3741912469377393, 1.3809712945083215, 1.3877658628933154, 1.394566356544049, 1.4013639654421763, 1.4081496852850546, 1.4149143447352062, 1.4216486392288543, 1.428343170598024, 1.434988491573566, 1.441575154104822, 1.44809376035558, 1.4545350152114915, 1.4608897791550985, 1.4671491204242617, 1.4733043654603422 ] ], "zauto": true, "zmax": 1.4733043654603422, "zmin": -1.4733043654603422 }, { "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.029059088831494762, 0.027494577686510945, 0.02596390757494659, 0.024472649914828972, 0.023032658296881107, 0.02166365837893984, 0.020394831135987935, 0.019265972345729042, 0.018327364463080267, 0.017636996413213972, 0.01725376719179289, 0.017226764228882894, 0.0175838017628608, 0.018324765448361452, 0.019423449738518873, 0.02083624462134567, 0.022512526296964087, 0.024402601418035387, 0.026462020572312936, 0.028653045858051975, 0.030944505287131295, 0.0333109641651734, 0.035731734188356054, 0.03818995394710824, 0.04067181877839448, 0.04316596689702778, 0.04566300210857223, 0.04815512703505588, 0.050635862436239604, 0.05309983231813238, 0.05554259881452115, 0.05796053452470593, 0.06035072293058248, 0.06271087976761813, 0.06503928991801372, 0.06733475566145002, 0.06959655306836146, 0.07182439403866275, 0.07401839203938125, 0.07617903002575045, 0.07830712937676457, 0.08040381896325358, 0.08247050371185717, 0.08450883224377448, 0.08652066336030287, 0.0885080313217513, 0.0904731100234498, 0.09241817631161185, 0.09434557280045527, 0.09625767064801659 ], [ 0.02681869852897277, 0.02531614818570014, 0.02384326122233612, 0.022403293306632186, 0.021006073252760944, 0.019669866114420308, 0.01842337259790582, 0.017307464931363294, 0.016375670113639048, 0.01569160428566673, 0.015321251043812247, 0.015319739206062288, 0.015716827872168593, 0.016509023907314305, 0.017663233061460212, 0.019128691931553653, 0.02084963772680645, 0.022773797498319526, 0.02485617006480852, 0.027059701143035134, 0.02935449577473554, 0.03171658271603028, 0.03412670391234219, 0.03656929432450668, 0.039031677499728766, 0.04150345090150419, 0.04397602277994207, 0.04644226484789594, 0.04889625165754773, 0.05133306431777427, 0.05374864181216369, 0.056139667500351244, 0.05850348159138345, 0.06083801271814231, 0.06314172344238522, 0.06541356575940571, 0.06765294358238638, 0.06985967986551173, 0.07203398654113603, 0.07417643584920747, 0.07628793196210726, 0.07836968208002408, 0.08042316640854018, 0.08245010664196586, 0.08445243277041331, 0.08643224820782941, 0.0883917934026144, 0.09033340823974459, 0.09225949367017279, 0.0941724731060002 ], [ 0.02467826729303896, 0.02324848922096516, 0.021845073076633827, 0.020468734781574998, 0.019127021484416522, 0.017836422702454557, 0.016624766882220927, 0.015533554999378174, 0.014619153393989018, 0.013950586840109512, 0.013600889340332906, 0.013631016162520132, 0.014071828989179743, 0.01491521289913691, 0.016120434677105142, 0.0176298750907627, 0.019383720025507745, 0.02132840955540514, 0.023419483955507244, 0.025621336569428967, 0.027905814861347217, 0.030250658761467646, 0.03263814753739601, 0.035054036061570065, 0.03748675374259665, 0.039926812148654185, 0.04236636946022831, 0.04479890999753226, 0.04721900746117451, 0.04962214900260796, 0.052004603582295444, 0.054363322641219645, 0.05669586435163597, 0.05900033500394723, 0.061275342713359215, 0.06351995979528607, 0.06573369100461904, 0.0679164454594709, 0.07006851054366549, 0.07219052645272897, 0.07428346034939534, 0.07634857935103384, 0.07838742179920513, 0.08040176647121623, 0.0823935995908219, 0.08436507968150556, 0.08631850047984352, 0.08825625228469565, 0.09018078225526888, 0.0920945542825095 ], [ 0.022630346052565965, 0.021283077732396495, 0.019959873613714416, 0.018658718850293098, 0.01738468836202134, 0.016152276764838443, 0.014988152191134734, 0.013934066065112669, 0.013048792962781821, 0.012406367889302595, 0.01208647520045735, 0.012155159585165583, 0.012643065049610496, 0.013536147806216512, 0.014785766205225146, 0.016328425325656787, 0.018101825295397826, 0.020052571490399625, 0.02213778161377014, 0.024323916880487042, 0.026584883100453635, 0.028900256918609906, 0.03125387342297314, 0.03363277151704855, 0.036026426721897764, 0.03842619760251382, 0.04082492609122058, 0.04321664757037227, 0.04559637924583469, 0.047959964622283066, 0.050303958403870294, 0.05262554064111731, 0.05492245204376102, 0.057192944526042996, 0.05943574255353241, 0.06165001192671918, 0.06383533340553764, 0.06599167914560537, 0.06811939034600308, 0.07021915484579888, 0.07229198368440408, 0.0743391858821464, 0.07636234091788613, 0.07836326858952856, 0.08034399614566211, 0.08230672277259127, 0.0842537817077519, 0.08618760042262597, 0.08811065946880611, 0.09002545070314852 ], [ 0.020666059669264113, 0.019409473715328175, 0.018175732084584017, 0.016959908731721287, 0.01576446960375267, 0.014601797222918706, 0.013497251638458762, 0.012492598603596038, 0.011648661996137333, 0.011043986935048596, 0.010764135020119598, 0.010878890712457892, 0.01141685593003992, 0.012356837505647542, 0.01364265921394925, 0.01520658256194764, 0.016985681604098107, 0.01892815145594921, 0.020993552211147553, 0.02315084775399118, 0.025376171021467945, 0.027650960652738924, 0.02996056457292582, 0.03229323589813458, 0.03463942054292864, 0.036991252006682095, 0.039342191192619905, 0.041686767770818055, 0.04402039311938786, 0.04633922416675442, 0.048640063716477125, 0.050920287042492275, 0.053177787389849934, 0.055410934966639104, 0.05761854536937268, 0.05979985434323403, 0.06195449646938948, 0.06408248588056346, 0.06618419749224211, 0.06826034754269457, 0.07031197249068222, 0.07234040554700767, 0.07434725033045703, 0.07633435134879597, 0.0783037612154024, 0.0802577047207456, 0.0821985400807121, 0.08412871787297463, 0.08605073833960944, 0.08796710786963703 ], [ 0.01877559803497686, 0.017615843327151173, 0.016478837400809982, 0.015356539951625047, 0.014248696656927727, 0.013165548493694649, 0.0121311524673689, 0.011187249628797878, 0.010396528763645867, 0.009841560209668962, 0.00961269220968813, 0.009781463984497826, 0.01037214604099992, 0.011355408944085814, 0.012668588154119673, 0.014241796788888383, 0.01601339182651377, 0.017934397725347048, 0.01996745802579038, 0.02208429908144176, 0.02426333820693659, 0.026487840450680013, 0.028744596484983065, 0.031022996954907706, 0.03331438668276155, 0.035611611694597305, 0.03790869883593198, 0.04020062729753844, 0.042483164606526375, 0.04475274836038493, 0.04700640070721307, 0.04924166636360219, 0.05145656750428044, 0.05364957059475175, 0.05581956144682462, 0.05796582563353526, 0.060088032018386923, 0.06218621760983922, 0.06426077229904832, 0.0663124223149008, 0.06834221146482468, 0.07035147944390602, 0.07234183670371169, 0.0743151355849486, 0.07627343763772425, 0.07821897727744345, 0.0801541221466265, 0.08208133076315682, 0.08400310822209095, 0.08592196086968903 ], [ 0.01694884085290929, 0.015889628642773164, 0.014854269240043442, 0.013831343350303685, 0.01281775204676745, 0.011821623480831309, 0.010865861258252955, 0.009992371480987063, 0.009265784734301409, 0.008772346529313163, 0.008605856824504264, 0.008836997044569566, 0.009483028590984592, 0.010505838289298021, 0.01183789079907909, 0.01340944615022277, 0.015161894667244012, 0.017050069052206632, 0.019040126859817635, 0.02110668902610984, 0.023230452888399235, 0.02539645444101623, 0.027592860058781993, 0.029810135256587354, 0.03204047043254486, 0.034277380383821006, 0.03651542226458577, 0.03874999543548129, 0.040977198805246424, 0.04319372906169915, 0.0453968082308441, 0.04758413231734966, 0.04975383500500267, 0.05190446192327209, 0.054034952056937306, 0.056144623639916756, 0.058233162429023884, 0.06030061066278605, 0.06234735532136444, 0.06437411455153563, 0.06638192133349828, 0.06837210366643784, 0.07034626075296618, 0.07230623487842619, 0.07425407891237001, 0.07619201960237292, 0.07812241707599121, 0.08004772120185842, 0.08197042567106966, 0.08389302083045588 ], [ 0.015176127997447029, 0.014218337009568588, 0.013286896472550262, 0.012366641196797494, 0.01145144759172921, 0.010547382562944985, 0.00967647407620215, 0.008881229940413377, 0.008228623063399653, 0.007808428386822411, 0.007716301320257542, 0.0080187567298223, 0.008723060329024904, 0.009782109690476128, 0.01112556549780185, 0.01268612261306065, 0.014409693783162203, 0.01625564479737811, 0.018193919370119414, 0.02020209209243156, 0.022263116459391875, 0.024363752259512823, 0.026493494830016832, 0.028643845657377355, 0.030807810456386236, 0.03297954967819339, 0.03515413282938503, 0.03732736485145258, 0.039495663394660145, 0.04165597250221394, 0.04380570251661551, 0.04594268885094749, 0.048065164184297036, 0.0501717399723314, 0.052261394110970985, 0.05433346227530883, 0.05638763095585512, 0.058423930582957986, 0.06044272740779105, 0.06244471302765234, 0.06443089063294997, 0.06640255723698968, 0.06836128134552398, 0.07030887574181728, 0.07224736530727686, 0.07417895006244393, 0.07610596388612363, 0.07803082963537261, 0.07995601162683184, 0.081883966632706 ], [ 0.013449256497669643, 0.012590467324568552, 0.011762360866823116, 0.010945516577310398, 0.010130504871886943, 0.009321371058194614, 0.008539662905784742, 0.00782919655736744, 0.0072600482349320285, 0.0069255261071156935, 0.006921010100172412, 0.00730458155816217, 0.008070357483656792, 0.009162726208061028, 0.010511055224224061, 0.012052674066038094, 0.013739239997607936, 0.015535169170348135, 0.017414356008191554, 0.01935735064924631, 0.021349339325857187, 0.023378775330705745, 0.025436458179463262, 0.02751490815497933, 0.02960793536877267, 0.03171033915425823, 0.03381769683395772, 0.035926215156896875, 0.03803262646702738, 0.040134117157253894, 0.042228279505873476, 0.04431308035119275, 0.04638684168312914, 0.048448229382986235, 0.05049624717984683, 0.052530233509438244, 0.05454985941668087, 0.05655512597742037, 0.058546359961139306, 0.06052420664561993, 0.062489618857211514, 0.0644438414731471, 0.06638839080759473, 0.06832502852326579, 0.07025572996897858, 0.07218264713313909, 0.07410806670845645, 0.07603436406285928, 0.07796395418211725, 0.07989924086824453 ], [ 0.011762953966870632, 0.010996722234844611, 0.010268207475056523, 0.009553042650212708, 0.008838056346034828, 0.008125265090685872, 0.00743625569099437, 0.006817173765941974, 0.006342311692637012, 0.0061083416274429325, 0.006206950150652031, 0.006682134835186223, 0.007512039827869656, 0.00863427258398615, 0.009980992393880554, 0.011496264864701879, 0.013138463892018266, 0.014877396911030167, 0.016690986670185426, 0.018562749669716168, 0.02048007799922648, 0.022433096103468473, 0.024413894254433167, 0.026416005649079352, 0.028434043790948434, 0.03046344832725905, 0.03250030640413722, 0.034541227866751734, 0.036583259481416934, 0.03862382766034992, 0.0406607019766648, 0.04269197366183599, 0.04471604462303822, 0.04673162350446586, 0.04873772606046579, 0.05073367767389081, 0.05271911627719435, 0.054693994241759844, 0.05665857801836815, 0.05861344446811773, 0.060559472952494094, 0.0624978323865451, 0.06442996262793965, 0.06635754979385776, 0.06828249537093473, 0.07020687930165351, 0.07213291757367789, 0.07406291517921985, 0.07599921562031707, 0.07794414838444708 ], [ 0.01011746502206498, 0.009431973072666648, 0.008795488901792825, 0.008177804469536252, 0.007561350238184222, 0.006946020910193928, 0.006354115809876238, 0.005835509032751849, 0.0054699990166436445, 0.0053563266726585216, 0.005576314700450248, 0.006152774795148221, 0.007046812330944961, 0.008193096226169807, 0.009530284964050841, 0.011011080689361423, 0.012601247225761798, 0.014276128116012234, 0.016017648727890188, 0.017812233171824697, 0.019649429864980902, 0.02152100199406989, 0.023420312758140716, 0.02534190042742403, 0.027281179937042578, 0.029234232061921616, 0.03119765516775216, 0.03316846269084675, 0.035144014462239796, 0.037121973149467996, 0.03910027919135866, 0.0410771390669138, 0.04305102281695804, 0.04502066757233745, 0.04698508451191879, 0.04894356720985651, 0.0508956997442213, 0.052841363233898424, 0.05478073966317894, 0.056714311973186354, 0.058642859486393056, 0.060567447828059305, 0.062489412652850324, 0.06441033669884914, 0.06633201997974324, 0.0682564432768201, 0.07018572547989993, 0.07212207571516215, 0.07406774155119128, 0.07602495485784631 ], [ 0.00852380149041473, 0.00789923097939311, 0.0073418341574909875, 0.006814552569051332, 0.006294485116363843, 0.0057791883400824424, 0.005292558331377969, 0.0048899511831839645, 0.00465728632830914, 0.004690499749062517, 0.005050736973028224, 0.005733045736682512, 0.00668500047014882, 0.007844813133340052, 0.009161500046177263, 0.010597753424254345, 0.012126950970586386, 0.013729854356313098, 0.015392224399312973, 0.0171032573346172, 0.018854564547763013, 0.020639488659100088, 0.022452630199661133, 0.02428951216569167, 0.026146339674854083, 0.02801982817994777, 0.029907082642480425, 0.03180551526316503, 0.0337127925800065, 0.035626804840880995, 0.03754565198734213, 0.03946764162071273, 0.04139129513627403, 0.04331535891091744, 0.0452388180538063, 0.04716091077221365, 0.049081141837884146, 0.050999293942000236, 0.05291543590104635, 0.054829926753053634, 0.05674341481556592, 0.058656830821682486, 0.06057137435917889, 0.06248849304061323, 0.06440985413641152, 0.06633730879184394, 0.06827284938844928, 0.07021856105627222, 0.07217656874865032, 0.07414898161420314 ], [ 0.007015444388119408, 0.006419019858562956, 0.005918858229646169, 0.005470550915406875, 0.005044779899217366, 0.004636431281053138, 0.004272060920666311, 0.004013799177309635, 0.003950250739547016, 0.004161127488022683, 0.004672515009459104, 0.00545246982519303, 0.006445747564272701, 0.0076018773047802635, 0.008882947449512959, 0.010261908277232374, 0.01171934572870326, 0.013240995242514627, 0.014816116562970725, 0.016436450278829555, 0.01809552341626139, 0.019788164679341056, 0.021510153334299252, 0.023257960286913272, 0.025028557164359776, 0.026819277735515946, 0.02862772049462073, 0.03045168388747259, 0.03228912737846874, 0.03413815270661779, 0.03599700046405288, 0.037864057726012534, 0.03973787301064566, 0.04161717543311792, 0.043500895544054695, 0.04538818594865214, 0.04727844030770394, 0.04917130966443538, 0.05106671520645772, 0.05296485659727652, 0.05486621496846453, 0.05677154963497497, 0.058681887652654245, 0.060598505521206936, 0.06252290265587082, 0.06445676668467394, 0.06640193112972083, 0.06836032654390359, 0.07033392664010109, 0.07232469131787499 ], [ 0.005675176181282704, 0.0050536713302542155, 0.004572918071434605, 0.0041840796275041635, 0.003851436175195933, 0.0035668751459197326, 0.003359509318042716, 0.0032937705164575045, 0.0034437109366769153, 0.003849185364044219, 0.00449731279817527, 0.005345919225409643, 0.006351471483571497, 0.007479787862993635, 0.008706061851843049, 0.010012340015592744, 0.011385345521400731, 0.012815034567172234, 0.014293679363193956, 0.01581525932173219, 0.01737502635338928, 0.01896917569153009, 0.020594589667067554, 0.02224863825180873, 0.02392902665951113, 0.02563368272538535, 0.02736067793287857, 0.029108176748638297, 0.030874409503607876, 0.032657664391160135, 0.034456294299920455, 0.03626873432117559, 0.03809352604157958, 0.03992934523765405, 0.04177503029037962, 0.043629609398271395, 0.045492325322187534, 0.04736265682372277, 0.04924033612654375, 0.05112536168615605, 0.05301800540464285, 0.05491881329394546, 0.05682859857381296, 0.05874842634602887, 0.060679589323664324, 0.06262357458086963, 0.06458202186432353, 0.06655667459912301, 0.06854932525708594, 0.0705617571736358 ], [ 0.0046875539318272695, 0.003968895408127124, 0.0034470998557267927, 0.0030844843190421015, 0.0028462038984872888, 0.0027199540975282343, 0.002725740330051547, 0.0029023409248692543, 0.003275790970750762, 0.0038412026158077778, 0.004572795216525351, 0.005440985911096076, 0.006420737775213674, 0.007492817210279379, 0.008642688228342866, 0.009859236585766491, 0.011133843295106412, 0.012459775477782938, 0.013831769505134898, 0.015245714189555245, 0.016698387495368307, 0.018187230108578187, 0.019710152604777098, 0.021265376342687114, 0.02285130753020128, 0.02446644258870386, 0.026109302185297327, 0.027778391056526172, 0.02947218057562585, 0.031189110639365872, 0.03292760691264097, 0.03468610903787159, 0.03646310537695244, 0.03825717033075541, 0.04006700117605344, 0.04189145241302149, 0.04372956653520162, 0.04558060071162559, 0.04744404904836229, 0.049319659953791714, 0.0512074478305975, 0.053107698036471064, 0.05502096393499367, 0.05694805497296877, 0.05889001507722869, 0.06084809121509128, 0.06282369262667528, 0.06481834192066611, 0.06683361983921447, 0.06887110597089942 ], [ 0.004362187360340567, 0.0035163584493259088, 0.002909348003186477, 0.0025399752686148633, 0.0023931821216802993, 0.0024425111555627134, 0.0026621198706214275, 0.0030335759748666125, 0.003542377857547671, 0.004173869424346504, 0.004913191920962904, 0.005746632422382566, 0.00666235593399471, 0.007650467377690951, 0.008702803285937553, 0.009812693949290994, 0.010974766499684105, 0.012184779189977542, 0.013439460749543058, 0.014736340677217328, 0.01607357221961775, 0.017449758578959192, 0.01886379369942494, 0.02031472540838802, 0.02180164449409273, 0.023323600473578558, 0.024879543539631618, 0.026468291696947564, 0.028088521537329606, 0.029738780056226856, 0.031417513553767186, 0.033123108523582835, 0.034853939025979025, 0.03660841557042485, 0.03838503180334006, 0.04018240685214378, 0.04199932252239609, 0.043834755351411014, 0.04568790370868485, 0.04755820983797544, 0.0494453762119772, 0.051349375081146, 0.05327044983701358, 0.05520910687143658, 0.05716609699433854, 0.05914238610244247, 0.061139115560488205, 0.0631575535453413, 0.06519903930511906, 0.06726492281730503 ], [ 0.004902623850864917, 0.004006659599488936, 0.0033659703481670085, 0.0029949417367370755, 0.0028850825313382444, 0.0029970347231075938, 0.003279129235885725, 0.003690391953167469, 0.0042057881511219745, 0.004810629825933734, 0.005495123095011755, 0.0062516472273462164, 0.007073742245780473, 0.007955812760275906, 0.008893082267396811, 0.009881612607171453, 0.010918312781748277, 0.01200090466029304, 0.013127836800628718, 0.01429815459953815, 0.015511345037946529, 0.016767176201085414, 0.018065547490753245, 0.019406359947039716, 0.02078941074332668, 0.022214313126393687, 0.02368044237392332, 0.025186908314223024, 0.026732554291109503, 0.02831598067396028, 0.029935588566918768, 0.03158963726224535, 0.03327630811924589, 0.03499376826187807, 0.036740229419167804, 0.0385139995996775, 0.04031352729005753, 0.04213743899764174, 0.0439845711308819, 0.04585399667414533, 0.04774504626394143, 0.049657322494216526, 0.05159070583081497, 0.05354535050891799, 0.05552166920086241, 0.05752030596803901, 0.05954209790226368, 0.061588026769832445, 0.06365916276762748, 0.06575660309225188 ], [ 0.006145241434329013, 0.005254278438042479, 0.004611825479695673, 0.004223372879121026, 0.004075979541814423, 0.004136050285646995, 0.004360228049288517, 0.004709651784155783, 0.005156487719627317, 0.005682895265826925, 0.0062775969630813775, 0.006933072733295909, 0.007643922655583845, 0.008406077639022125, 0.009216480416511064, 0.01007297565706931, 0.01097425606788253, 0.011919788100199762, 0.012909691828563762, 0.013944580542423278, 0.015025380074330788, 0.016153149578673313, 0.01732891958942189, 0.018553555353723727, 0.019827647751108506, 0.021151432021385155, 0.02252473508235755, 0.023946953229210383, 0.025417061504127675, 0.0269336533570817, 0.028495005274209728, 0.030099157590539022, 0.031744001278413314, 0.03342736163209309, 0.03514707280884813, 0.036901040823427184, 0.03868729555161113, 0.04050403385308734, 0.042349656022199096, 0.04422279685353, 0.04612235128771228, 0.0480474934276917, 0.0499976870274838, 0.05197268546907286, 0.053972519700606424, 0.05599747345097546, 0.05804804606783442, 0.06012490436338054, 0.06222882574606171, 0.06436063556590364 ], [ 0.00781310191689063, 0.006919595437232615, 0.006256068013026788, 0.005821559791924356, 0.005602966514387877, 0.005574549270634598, 0.005703141693078927, 0.005955858968162792, 0.006305530154701753, 0.006732216183872835, 0.007222205838449371, 0.007766313526030668, 0.008358445351009696, 0.008994664405602341, 0.00967266189710119, 0.010391465881227404, 0.011151245469909428, 0.011953122781382197, 0.012798956777116503, 0.013691100097500783, 0.014632148751036243, 0.015624707460611406, 0.016671186678248698, 0.01777363779646941, 0.01893362634864072, 0.02015214119663574, 0.0214295396716122, 0.022765531131833744, 0.024159201316467333, 0.02560907610514907, 0.027113217290848885, 0.028669337674935402, 0.030274920751172857, 0.03192733223687313, 0.03362391557929636, 0.03536206914851331, 0.03713930715475177, 0.03895330840273566, 0.04080195689023594, 0.04268337673542525, 0.04459596192396124, 0.046538399663110595, 0.048509685139072486, 0.05050912529530489, 0.05253632976403126, 0.05459118805942721, 0.05667383332685895, 0.05878459411458974, 0.06092393662445536, 0.06309240059915262 ], [ 0.009732509840841508, 0.008816997147524224, 0.008112198987962898, 0.007614795449178179, 0.007313244941386278, 0.007187492341991751, 0.007211517621161777, 0.007357698551980597, 0.007600826674574058, 0.007920325524322112, 0.008300670856567424, 0.008730797994870467, 0.009203237155764666, 0.00971336488816745, 0.0102588678039552, 0.010839368049136235, 0.011456121521000544, 0.01211171827341416, 0.012809752616268478, 0.013554465650727411, 0.014350384309043323, 0.01520198604146302, 0.016113411079959464, 0.017088232029766934, 0.018129280652755826, 0.01923852821992705, 0.020417018114563718, 0.021664853099395667, 0.0229812398791668, 0.024364588210215005, 0.02581265292950998, 0.027322699553943248, 0.028891671568244636, 0.030516341226048557, 0.03219343356417683, 0.03391972186260739, 0.03569209901826353, 0.03750763196687954, 0.03936360575725771, 0.04125756144854495, 0.04318732907460984, 0.04515105452656549, 0.047147217839835644, 0.04917464008850255, 0.05123247667103299, 0.05332019589542622, 0.055437543117415146, 0.05758449199003396, 0.05976118546107988, 0.061967869898198816 ], [ 0.011815798608658543, 0.010863715687990511, 0.010105356398945862, 0.009536834670104572, 0.009148309264987031, 0.008923677512199822, 0.008841878172041453, 0.008879490455299028, 0.009013602205404668, 0.009223958656798124, 0.009494023932825056, 0.009811167249234467, 0.010166389321724579, 0.010553917586547256, 0.010970827511926705, 0.011416715032283083, 0.01189338192825676, 0.012404487393563349, 0.012955140526825644, 0.013551438706409255, 0.014199980984809499, 0.014907396090664276, 0.01567992058923772, 0.016523049450357728, 0.017441267176688684, 0.0184378598730561, 0.01951480867596207, 0.020672767995517243, 0.021911130957523135, 0.023228175737765373, 0.024621273075054226, 0.026087124229470175, 0.027621996051622258, 0.029221926778946326, 0.03088288894330701, 0.032600908740285546, 0.034372150078889455, 0.03619297483406883, 0.038059989540987785, 0.03997008501616773, 0.04192047121056467, 0.043908706329794496, 0.04593271743787341, 0.04799080935045814, 0.05008165927271773, 0.052204295909175455, 0.05435806327249862, 0.05654257084350961, 0.05875763288704657, 0.061003200501249175 ], [ 0.014017243703225359, 0.013019446724921453, 0.012200754274041938, 0.011557378935715897, 0.01108096198091365, 0.010758260205009286, 0.010571825753494964, 0.010501610590122428, 0.01052699457606575, 0.010628618533194094, 0.010789638745357483, 0.010996361803860422, 0.011238433400340182, 0.011508790288027173, 0.011803515938377513, 0.012121653335070467, 0.01246496874635452, 0.012837638012080026, 0.013245833786946859, 0.013697214985523452, 0.014200345398669306, 0.014764086627478891, 0.015397015094358923, 0.016106904502044852, 0.0169003007926122, 0.017782205519609073, 0.018755879777138097, 0.019822780155908947, 0.020982631915044674, 0.022233628134624504, 0.02357272181340375, 0.02499596155458453, 0.02649881929718718, 0.028076471093307458, 0.029724012432221995, 0.0314366091567775, 0.0332095975208405, 0.035038550944829834, 0.03691932858847391, 0.03884811530796506, 0.0408214567718493, 0.04283628915694676, 0.04488996047770363, 0.04698024002741299, 0.049105313107537754, 0.05126375962404457, 0.05345451676214903, 0.05567682747478295, 0.057930177727819394, 0.06021422623447377 ], [ 0.016310456062724167, 0.015261529340723792, 0.014379006844009695, 0.013659436068260257, 0.013095705426852369, 0.012676744527676167, 0.01238787223722723, 0.012211808714018403, 0.012130107345292554, 0.012124634662831948, 0.01217879404681843, 0.012278367230469501, 0.012412005933816318, 0.012571476340683204, 0.012751751082672591, 0.01295099952390828, 0.013170483843881307, 0.013414343488668044, 0.013689247244247627, 0.01400390606763217, 0.014368462976142518, 0.014793799284922296, 0.01529081077225033, 0.015869709273969496, 0.01653939852500552, 0.01730696597631917, 0.018177329298521564, 0.019153072245330163, 0.02023448894027383, 0.02141982421797949, 0.022705659857097164, 0.02408737010737712, 0.025559567536476716, 0.02711648099939188, 0.028752239440934715, 0.03046106423899265, 0.03223739035166607, 0.03407594148878408, 0.03597178060346168, 0.03792034920716053, 0.039917501266574194, 0.041959531800914496, 0.04404319727110726, 0.046165724048413306, 0.04832480194871631, 0.05051856130913232, 0.05274553381054552, 0.05500459884081175, 0.05729491843383823, 0.05961586461355297 ], [ 0.018678574993852975, 0.017575520330996644, 0.016627655441835514, 0.01583194159083747, 0.015182325777863945, 0.014669464645338076, 0.01428088752891319, 0.014001641558941146, 0.013815304577029529, 0.013705148454713514, 0.013655235999379359, 0.01365131632323185, 0.013681482535613668, 0.013736620967078053, 0.013810699555293508, 0.013900928816507063, 0.014007803418397222, 0.014135011768918829, 0.01428919317437523, 0.01447952856691764, 0.014717168446144291, 0.015014523808745654, 0.015384464493520522, 0.015839479870646496, 0.01639086148451517, 0.01704797296030292, 0.017817681096579482, 0.018704023146268577, 0.019708162251927012, 0.02082863082652931, 0.022061797861363745, 0.023402450823532716, 0.024844376432232702, 0.02638085468419339, 0.028005027197687243, 0.029710142592261932, 0.03148970612981033, 0.03333756744665852, 0.03524797482440774, 0.03721561422154095, 0.03923564139135763, 0.04130370833366759, 0.043415981527134, 0.045569148262202715, 0.04776040801174628, 0.04998744728419364, 0.05224839816880783, 0.05454178240010424, 0.056866444016420666, 0.05922147447401952 ], [ 0.021109947563086574, 0.019951378240596472, 0.01893794541004143, 0.01806704447895136, 0.017333539363687447, 0.016729513323435277, 0.01624432624253626, 0.015865026463655528, 0.015577069640284949, 0.015365221401582422, 0.015214498153323854, 0.01511103032177471, 0.015042786789494932, 0.01500014692107386, 0.014976330967095771, 0.014967701210070286, 0.014973934654875268, 0.014998054367878452, 0.015046298977713056, 0.015127812596646603, 0.015254150243770137, 0.015438612097541903, 0.015695436822424424, 0.016038896172631042, 0.016482344214565917, 0.017037293789290076, 0.01771262123889565, 0.018514019729036945, 0.019443802592472977, 0.020501088759966424, 0.02168230692089613, 0.022981880912160312, 0.024392940369280327, 0.025907936724745576, 0.027519106676748034, 0.029218781680016893, 0.030999575520520562, 0.03285449167013749, 0.034776986047427065, 0.03676100851649703, 0.038801034535816716, 0.04089208984483685, 0.0430297664222813, 0.04521022638957215, 0.04743019095675828, 0.049686912936331804, 0.05197813307891529, 0.05430202207775491, 0.05665711131463286, 0.05904221618577011 ], [ 0.02359610865682332, 0.02238177719321945, 0.02130346105148717, 0.02035898831745631, 0.01954403418692479, 0.01885189891580686, 0.018273504727325217, 0.017797657052640997, 0.017411556793895593, 0.017101497012754614, 0.016853650327200816, 0.016654857739447367, 0.0164933550792273, 0.0163594027630786, 0.0162458051776732, 0.016148313283275748, 0.016065900802807728, 0.016000896983725907, 0.0159589541327147, 0.015948830700909147, 0.015981981558531755, 0.016071962412785856, 0.016233668555206797, 0.01648243607365702, 0.01683304286246891, 0.017298671236366244, 0.017889938950010592, 0.01861414921006366, 0.01947490988645636, 0.02047220048095552, 0.02160284538568727, 0.022861245768537444, 0.024240182771737777, 0.025731537922633278, 0.027326848955612975, 0.029017689207019574, 0.030795902319310037, 0.03265373849239222, 0.034583933445569176, 0.03657975806513643, 0.03863505342266046, 0.040744256143074725, 0.042902413623171536, 0.04510518652331375, 0.04734883606766423, 0.049630194925946954, 0.051946622055605796, 0.05429594339233014, 0.056676381444595365, 0.059086477576262564 ], [ 0.02613076414560872, 0.024861288377969422, 0.02371948075630174, 0.022703592892675727, 0.021810031713835127, 0.021033163540715775, 0.02036527784225802, 0.01979675071171461, 0.019316411847117347, 0.018912082030821502, 0.018571223326912897, 0.018281637347958773, 0.01803215521628638, 0.017813278013084837, 0.01761774011609963, 0.017440974988005245, 0.017281463387538557, 0.01714094091174092, 0.017024440226100317, 0.01694014768764758, 0.016899065551403823, 0.01691448591674347, 0.017001293889950992, 0.017175120876778974, 0.017451371407319907, 0.017844166653135034, 0.018365297302990545, 0.01902333986331905, 0.019823114051865622, 0.02076560220122169, 0.02184832608514635, 0.023066048194344605, 0.024411600735951722, 0.025876665439298112, 0.027452399189674872, 0.0291298777685288, 0.030900382056720223, 0.032755571697792675, 0.034687589297552, 0.03668912604363554, 0.038753466205098, 0.04087451771888223, 0.043046829996530915, 0.04526559750171692, 0.04752664737302209, 0.04982641031780419, 0.05216187540254527, 0.05453053072934916, 0.05693029305865556, 0.0593594301072568 ], [ 0.028709230435519182, 0.02738593452874054, 0.026182626271843285, 0.025097969692015998, 0.024129042645227604, 0.023271165629077276, 0.02251784920649931, 0.021860894276285313, 0.02129065690439894, 0.020796464290880994, 0.02036714807638329, 0.019991650323338998, 0.01965965641729904, 0.019362214356794125, 0.01909230659843123, 0.01884534505139637, 0.01861956079283924, 0.01841625924386428, 0.018239912532671203, 0.018098067331392714, 0.018001059805891288, 0.017961545860615057, 0.017993866824408566, 0.01811327217939563, 0.01833501711069731, 0.018673362723183075, 0.019140548964434297, 0.019745874982550177, 0.02049506238357532, 0.021390043415616147, 0.022429205574028055, 0.023607993090246616, 0.02491968528567043, 0.026356172457573195, 0.02790860996722058, 0.029567905911851974, 0.031325053473148436, 0.033171345213195855, 0.035098509375858226, 0.03709879903269278, 0.03916505291344455, 0.04129073691584233, 0.043469969092475344, 0.04569752799674656, 0.04796884362500744, 0.05027997081638436, 0.052627546111400095, 0.055008730242999994, 0.05742113937257415, 0.059862768771751985 ], [ 0.031328086766320526, 0.029952907097863208, 0.028690630012236297, 0.02754032122225827, 0.02649968224166199, 0.02556490236323321, 0.024730600260138805, 0.02398988396932349, 0.023334543988637005, 0.022755377120813176, 0.0222426227854495, 0.021786482142419464, 0.02137768471493595, 0.021008066184691167, 0.020671122241562142, 0.020362504475330463, 0.02008042430150664, 0.019825930820065153, 0.01960303108111965, 0.019418629626079695, 0.019282279448339802, 0.019205755167095506, 0.01920247319941494, 0.019286785745858702, 0.01947316815994368, 0.01977531998575398, 0.020205228926474382, 0.02077230259285127, 0.021482718378505256, 0.022339129240564783, 0.023340779136930973, 0.02448396679577458, 0.025762713022945794, 0.027169470626383294, 0.028695757362729068, 0.030332655306680067, 0.032071172744069586, 0.03390249359450883, 0.03581814682481151, 0.037810123247345485, 0.039870957845237726, 0.04199378733725954, 0.04417238699902452, 0.04640118783630558, 0.0486752743367256, 0.05099036337005175, 0.053342765689468746, 0.05572933245389123, 0.05814738998392427, 0.06059466645882041 ], [ 0.03398492625142093, 0.03256035133961622, 0.031242143240529006, 0.030029759806483765, 0.02892148865480791, 0.02791432061171196, 0.027003891948869728, 0.026184519306636674, 0.025449342444349935, 0.024790578332959546, 0.02419987799583069, 0.023668767105022057, 0.023189143885128428, 0.022753803344653187, 0.022356954285888086, 0.021994693787392855, 0.021665402455417475, 0.02137002360845549, 0.02111219297585378, 0.020898195085529907, 0.020736739095373196, 0.020638566998437215, 0.020615923048640437, 0.020681917016876585, 0.020849805952237514, 0.02113221338719521, 0.021540320527242827, 0.0220831045441394, 0.02276673927569825, 0.023594274139335073, 0.024565650487071572, 0.025678025440200862, 0.02692629919349742, 0.028303716369995312, 0.02980243478213715, 0.031414001505010024, 0.03312972031063523, 0.03494092230925767, 0.03683916212070894, 0.03881636086063272, 0.04086491128628658, 0.042977754124125106, 0.04514842997020438, 0.04737110861171031, 0.049640596755084455, 0.05195232533794379, 0.054302318292816766, 0.05668714542559079, 0.059103862731920004, 0.06154994388223541 ], [ 0.03667815132487317, 0.03520717636127592, 0.03383655224846504, 0.03256612059404095, 0.031394724320026504, 0.03032010072869142, 0.029338828114403064, 0.02844634560984009, 0.02763706047755474, 0.026904549118354444, 0.026241848954255943, 0.025641829413363067, 0.02509762248781335, 0.024603087131852903, 0.024153276951401417, 0.023744876888662968, 0.023376572024746398, 0.02304931123433474, 0.022766432236539798, 0.02253362475479448, 0.022358725503630068, 0.022251359285001812, 0.022222457279401715, 0.02228368896750124, 0.02244683704870369, 0.022723135665108106, 0.023122597376994045, 0.02365337977762906, 0.024321272749155323, 0.025129393462433234, 0.026078141773496526, 0.02716540621165734, 0.028386952647645795, 0.029736900811789188, 0.03120820272210873, 0.032793067484382564, 0.03448330998076817, 0.03627062453077392, 0.038146795797703484, 0.04010386103471944, 0.04213423482816268, 0.044230803424170156, 0.04638699245488039, 0.04859681000632944, 0.05085486634224085, 0.0531563717984027, 0.055497114968279276, 0.05787342399111744, 0.06028211432491779, 0.0627204267334373 ], [ 0.03940678879501631, 0.03789287266007811, 0.0364737916287055, 0.035149763322879266, 0.03392015947660619, 0.03278341662860126, 0.03173698896882082, 0.030777359439086726, 0.029900121736994148, 0.02910014039474199, 0.028371789251469163, 0.027709261204605096, 0.027106934823982888, 0.0265597767127132, 0.026063752636498072, 0.025616215618588817, 0.02521623593013946, 0.024864837357957612, 0.02456510810097998, 0.0243221648460351, 0.024142965114074932, 0.024035982704566666, 0.024010777457260594, 0.02407749670105158, 0.02424634007222044, 0.024527009345358463, 0.024928163249805898, 0.02545691053373374, 0.02611839422665674, 0.02691552697224748, 0.027848918095944752, 0.028916992839211002, 0.030116262818556457, 0.03144168338436904, 0.03288703425175986, 0.034445277404431845, 0.036108868655748444, 0.03787001713959792, 0.039720896994937395, 0.04165381868155895, 0.04366136656393471, 0.04573650723165159, 0.04787267107760085, 0.05006380854919955, 0.052304422232536174, 0.054589576267128355, 0.05691488521478988, 0.0592764851711287, 0.061670990447611124, 0.06409543947886104 ], [ 0.0421703150991818, 0.04061733285588414, 0.03915415513620396, 0.037781367667733996, 0.036498846716036384, 0.035305685274777725, 0.03420015269469741, 0.033179700809846835, 0.0322410274132074, 0.031380204092034576, 0.030592870249254417, 0.029874489050883676, 0.02922065453094996, 0.028627432600043558, 0.028091712651547442, 0.027611541331175285, 0.027186406603913454, 0.026817439744092897, 0.02650750686502295, 0.026261171375439776, 0.026084524069642262, 0.02598489547318494, 0.02597047996641529, 0.026049907310950745, 0.026231792841965713, 0.02652428799265202, 0.026934647496833376, 0.027468834563297722, 0.028131196520974507, 0.02892424899176879, 0.02984859681287365, 0.030902995828734302, 0.03208453247943508, 0.033388880269673064, 0.03481058923101449, 0.03634337348746927, 0.03798037585688451, 0.0397144007332791, 0.04153811428174709, 0.04344421427117521, 0.045425572231893085, 0.047475349766139756, 0.049587089931019734, 0.05175478418812171, 0.05397291554447109, 0.05623647903943457, 0.05854098144262976, 0.06088242272817597, 0.06325726244958706, 0.06566237448737838 ], [ 0.04496849042127225, 0.043380678038238245, 0.04187811019656317, 0.040461731721570984, 0.039131899569838154, 0.03788832229703636, 0.03673002612258703, 0.035655358082262945, 0.03466203531244175, 0.033747246755828714, 0.03290780962020505, 0.03214037798499677, 0.031441695353081056, 0.0308088770718531, 0.030239702864709103, 0.029732894841294044, 0.029288353170961214, 0.02890732129761125, 0.028592456467272806, 0.028347790313405247, 0.028178577803830332, 0.028091048318777567, 0.028092085379847576, 0.0281888669974203, 0.028388495305976508, 0.02869763571635475, 0.029122179098041445, 0.029666940476831976, 0.030335413014752337, 0.03112959969998006, 0.03204994059676911, 0.03309534003541162, 0.0342632814737317, 0.035550005413324585, 0.036950721895360715, 0.03845983298099307, 0.040071148411825894, 0.04177808537945041, 0.04357384873678851, 0.04545159068204042, 0.04740454970386406, 0.049426168437098315, 0.05151018983773458, 0.053650731143234334, 0.0558423355158013, 0.058080001967681295, 0.06035919497436863, 0.06267583594272216, 0.06502627930931595, 0.06740727644169932 ], [ 0.04780120423124173, 0.04618309503906906, 0.04464612407111176, 0.04319158424951408, 0.04182028840345228, 0.04053251976983474, 0.039328003577358085, 0.03820590804967741, 0.03716488217734334, 0.03620313558712319, 0.03531856278627873, 0.03450891008686823, 0.03377197883254758, 0.03310585348207529, 0.03250913811001395, 0.03198118061048557, 0.031522261203151554, 0.031133721809308894, 0.030818016538230165, 0.03057867143881754, 0.030420153175950825, 0.03034765905675118, 0.030366851194960808, 0.030483562089037335, 0.030703496383626013, 0.03103194655050795, 0.031473533503948575, 0.03203198063441994, 0.032709931377813375, 0.03350882245225065, 0.03442882302995333, 0.035468843141471716, 0.03662660511254723, 0.037898763974995156, 0.039281059397845326, 0.04076848289604829, 0.0423554480299487, 0.04403595571906912, 0.04580375013852749, 0.047652462516029157, 0.04957574083917216, 0.0515673636212492, 0.05362133596780961, 0.05573196650853835, 0.05789392436321201, 0.06010227611490648, 0.06235250363550487, 0.06464050442145225, 0.06696257675857185, 0.06931539249148871 ], [ 0.05066833618160616, 0.04902469046999305, 0.04745850934557694, 0.045971420108558037, 0.04456466465052054, 0.043239058794847574, 0.041994968174213554, 0.0408323071852041, 0.03975056685915987, 0.03874887597301646, 0.03782609735944172, 0.03698095820910259, 0.03621220933688091, 0.03551880418024206, 0.034900084134131024, 0.03435595330629644, 0.03388702368418091, 0.03349471193432516, 0.03318127238967546, 0.0329497574933014, 0.03280390635249571, 0.03274797217882724, 0.03278650744635732, 0.0329241290637057, 0.03316528392498198, 0.03351402956307189, 0.033973838630519004, 0.03454743248912683, 0.035236648856737975, 0.03604234932062329, 0.03696437194929372, 0.03800153099033154, 0.039151660657863976, 0.0404116954152701, 0.04177777667611136, 0.04324537587085914, 0.04480942555882252, 0.046464452487509626, 0.04820470830006781, 0.05002429463238582, 0.05191727976592166, 0.05387780415345423, 0.055900172327848614, 0.05797892911293327, 0.060108918708724104, 0.06228532604866609, 0.06450370071121228, 0.0667599645005705, 0.06905040450704296, 0.0713716539651638 ], [ 0.05356963614709378, 0.051905366467279015, 0.050315294708806683, 0.048801365649830265, 0.04736522086151911, 0.04600816482430443, 0.04473114376827353, 0.0435347422991006, 0.04241920235338816, 0.041384467876156975, 0.04043025678229246, 0.03955615927282942, 0.03876175853534209, 0.03804676649273747, 0.03741116394503549, 0.03685533170004428, 0.03638015777270674, 0.03598710615360553, 0.035678235554124825, 0.035456162017926764, 0.03532396666895123, 0.035285057601995726, 0.035343000942227934, 0.035501338624665243, 0.03576340893365226, 0.03613218144442076, 0.03661011302154585, 0.0371990280732982, 0.037900025060493635, 0.03871341143252854, 0.03963866914147932, 0.04067445165010909, 0.04181861104095263, 0.04306825140955762, 0.04441980314525363, 0.04586911233356943, 0.04741154007367851, 0.049042067408620965, 0.050755402322100664, 0.05254608566118136, 0.05440859296780558, 0.05633742924489589, 0.05832721383936993, 0.06037275300334335, 0.06246909830474319, 0.06461158983503967, 0.0667958840061034, 0.06901796654066605, 0.07127415196203385, 0.07356107142716863 ], [ 0.05650462619194486, 0.05482472144793405, 0.05321612465450161, 0.05168107782811953, 0.050221590106892706, 0.04883940877612892, 0.04753599979142374, 0.04631254166166447, 0.04516993616447462, 0.044108838490862334, 0.043129708010817405, 0.04223287892659238, 0.041418647722214666, 0.04068737171288268, 0.040039570455725364, 0.039476019736596264, 0.03899782682203597, 0.03860647618730103, 0.03830383736121925, 0.03809213084354115, 0.03797385365448364, 0.03795167178768666, 0.03802829117219657, 0.038206320488798816, 0.03848813798647377, 0.03887577109067719, 0.03937079364671817, 0.0399742426095081, 0.040686554563808805, 0.04150752229675824, 0.04243627183626161, 0.043471260147761884, 0.04461029286545191, 0.04585056035837617, 0.04718868956830335, 0.04862080865992842, 0.050142621536655656, 0.05174948945599671, 0.053436517100011474, 0.055198640427282564, 0.05703071350663552, 0.05892759143865763, 0.060884206534118746, 0.06289563520725186, 0.06495715355493581, 0.06706428027358029, 0.06921280632852858, 0.07139881154767846, 0.07361866898719543, 0.07586903846119684 ], [ 0.0594725258748012, 0.05778197729918201, 0.056160189316601744, 0.054609677746474766, 0.05313278466787442, 0.051731652736474114, 0.05040820626732836, 0.04916414199205009, 0.048000932107517894, 0.04691984157520129, 0.04592196057128366, 0.04500825153490508, 0.04417960848448754, 0.04343692432184395, 0.04278115996861019, 0.04221340771930384, 0.04173494054771133, 0.041347239641509465, 0.04105199438620987, 0.04085107229263114, 0.04074646047295756, 0.040740184345130284, 0.04083421225046653, 0.041030355793701165, 0.04133017475065867, 0.041734892873803935, 0.04224532791181328, 0.04286183670340836, 0.04358427488125227, 0.04441197044870823, 0.04534371075371812, 0.04637774263331797, 0.04751178546195773, 0.04874305654197822, 0.0500683079104325, 0.051483873347868726, 0.052985724181745526, 0.054569532307731185, 0.05623073863075337, 0.057964624839875425, 0.05976638613377216, 0.06163120230191896, 0.0635543045277194, 0.0655310354603138, 0.06755690049678464, 0.06962760877881889, 0.07173910306555886, 0.07388757832021246, 0.07606948947407716, 0.07828154935720816 ], [ 0.06247220088708617, 0.060775932647564805, 0.05914618350567087, 0.05758571685678467, 0.05609717109070024, 0.0546830358608069, 0.0533456328235236, 0.052087103015565635, 0.0509094028267621, 0.04981431004651006, 0.04880344068617813, 0.0478782762155867, 0.047040199554082895, 0.046290536745349366, 0.045630599910713145, 0.045061726074192655, 0.04458530607041629, 0.044202798237835045, 0.04391572308978593, 0.04372563754601455, 0.04363409021545548, 0.04364256202413751, 0.04375239847903504, 0.043964740523894076, 0.044280460160169274, 0.04470010514377637, 0.04522385483268118, 0.04585148737873839, 0.046582357373145214, 0.047415382796781556, 0.04834904040615163, 0.04938136912381359, 0.050509981328880564, 0.05173208206592551, 0.05304449614195281, 0.05444370292418014, 0.05592587842033624, 0.057486943919867965, 0.059122620100448234, 0.06082848508952597, 0.06260003457825945, 0.06443274179354805, 0.06632211500977084, 0.06826375036083246, 0.0702533779914484, 0.072286900026901, 0.07436041938422766, 0.07647025902929755, 0.07861297184307894, 0.08078534174872334 ], [ 0.06550213378107005, 0.0638049403949234, 0.06217229235556429, 0.060607172214367046, 0.05911247674180955, 0.05769099409702112, 0.056345383566811576, 0.05507815948080714, 0.05389168077133227, 0.052788147314511695, 0.051769603644175384, 0.05083794987980449, 0.049994958796599556, 0.049242296980359125, 0.048581547093310765, 0.048014227613498835, 0.04754180619856984, 0.04716570322949095, 0.046887283175964634, 0.046707833097450566, 0.04662852956895546, 0.04665039716816197, 0.04677426291793287, 0.0470007114148957, 0.047330044732367245, 0.04776224981883058, 0.048296974492605824, 0.0489335117536982, 0.04967079131987786, 0.05050737710861927, 0.05144146966837338, 0.052470913053665955, 0.05359320611076532, 0.05480551846282648, 0.056104711615885164, 0.05748736556141113, 0.05894981105321797, 0.06048816741374709, 0.06209838531162433, 0.06377629349967717, 0.06551764807523962, 0.06731818249143377, 0.06917365636470398, 0.07107990112034464, 0.07303286069363846, 0.07502862583167305, 0.0770634609737652, 0.07913382317256716, 0.08123637300105957, 0.0833679778292265 ], [ 0.06856041459306601, 0.06686690666228765, 0.06523619988711458, 0.06367146607868594, 0.06217582196001515, 0.06075230646115773, 0.05940385904280878, 0.05813330024335832, 0.05694331556978837, 0.05583644364227887, 0.05481506914278257, 0.05388142061504908, 0.053037572548834115, 0.05228545051981914, 0.051626837548856136, 0.05106337941671662, 0.050596586555975674, 0.050227830442568275, 0.04995833315529644, 0.04978914988212226, 0.04972114542640703, 0.04975496691686997, 0.04989101565614625, 0.05012942115333494, 0.05047001985363656, 0.0509123400792861, 0.05145559354372746, 0.052098672827106014, 0.05284015363431905, 0.053678300559726666, 0.05461107536346796, 0.05563614724708975, 0.056750905121651665, 0.05795247225965303, 0.05923772394670118, 0.0606033087829166, 0.06204567414135765, 0.06356109600182583, 0.06514571298754489, 0.06679556399504347, 0.0685066283869455, 0.07027486737453513, 0.07209626499993395, 0.07396686706435278, 0.07588281644199288, 0.07784038344959561, 0.07983599027430521, 0.08186622885382218, 0.08392787200895035, 0.08601787801111227 ], [ 0.07164474854287439, 0.06995930766060635, 0.06833511622227835, 0.06677550468686917, 0.06528377161601928, 0.06386316057177822, 0.06251683682781248, 0.06124786479737835, 0.06005918706182639, 0.058953605771194954, 0.057933766974247944, 0.057002148122121135, 0.056161048599314825, 0.05541258271188556, 0.05475867417339813, 0.05420105085782984, 0.05374123852048592, 0.0533805523841777, 0.05312008595955947, 0.05296069715395835, 0.05290299248682907, 0.05294731088652694, 0.05309370891052533, 0.05334194919257529, 0.05369149347487888, 0.054141500853723594, 0.054690831061029885, 0.05533805194136688, 0.056081449919989104, 0.05691904224226713, 0.05784859004282268, 0.05886761175329811, 0.05997339684363483, 0.06116302030110069, 0.06243335851310196, 0.06378110730510086, 0.06520280279696257, 0.06669484550569094, 0.06825352778201116, 0.06987506427525195, 0.07155562473258861, 0.07329136810864391, 0.07507847673262122, 0.07691318917793691, 0.07879183051020029, 0.08071083874108473, 0.08266678656232887, 0.08465639774201324, 0.08667655789815558, 0.0887243196897861 ], [ 0.07475247767711665, 0.07307922076232473, 0.07146581905271723, 0.06991573106842452, 0.06843240016464117, 0.06701923072576124, 0.06567956324886741, 0.06441664902165775, 0.06323362512614347, 0.06213349046475467, 0.061119083401535934, 0.060193061438827404, 0.059357883121501524, 0.05861579210465239, 0.057968803079096985, 0.05741868907522921, 0.05696696961167706, 0.05661489925677051, 0.05636345643009072, 0.056213332645924, 0.056164922802850126, 0.05621831744027352, 0.05637329800656561, 0.0566293360518248, 0.05698559688171732, 0.0574409476738916, 0.05799396950213115, 0.05864297227940755, 0.059386011421914145, 0.06022090508633225, 0.06114525110557176, 0.062156443158801845, 0.06325168615723997, 0.0644280112161345, 0.06568229085138834, 0.06701125515392027, 0.06841150965284426, 0.06987955539909957, 0.0714118115200655, 0.07300464015880259, 0.07465437336840755, 0.07635734122908623, 0.07810990023063506, 0.07990846083981286, 0.08174951315912753, 0.08362964967436116, 0.0855455842643964, 0.08749416688285165, 0.08947239358791803, 0.0914774118668716 ], [ 0.07788061327393582, 0.07622336610394001, 0.0746247051705211, 0.073088187166225, 0.07161736491363416, 0.07021576272656246, 0.06888684999075106, 0.06763401354089876, 0.06646052947359901, 0.06536953505950195, 0.06436400139470265, 0.06344670735946639, 0.06262021533698424, 0.061886849001763194, 0.0612486733413953, 0.06070747695809283, 0.06026475663865576, 0.05992170420342216, 0.05967919574637491, 0.059537783532917304, 0.059497690976643966, 0.05955881120639337, 0.059720709701866326, 0.0599826312907727, 0.06034351147935004, 0.06080199169219621, 0.06135643761759013, 0.062004959583061965, 0.06274543378835382, 0.06357552331980841, 0.06449269813455871, 0.06549425357325125, 0.06657732735924425, 0.06773891539811165, 0.06897588694911161, 0.07028499986939694, 0.0716629166251881, 0.07310622163522472, 0.07461144028894735, 0.0761750597029219, 0.07779355098574907, 0.0794633925134787, 0.08118109350705494, 0.08294321707258367, 0.08474640182382616, 0.08658738125202366, 0.0884630001286955, 0.09037022740328474, 0.09230616526688713, 0.09426805427335956 ], [ 0.08102587597722706, 0.07938815532173688, 0.07780784829366118, 0.07628858114006336, 0.07483398306272808, 0.07344766075347081, 0.07213317069593106, 0.07089398973262116, 0.0697334844862905, 0.06865488028988821, 0.06766123031242596, 0.06675538556411562, 0.06593996642369261, 0.06521733626040094, 0.06458957763554528, 0.06405847148120195, 0.06362547958380867, 0.06329173066005887, 0.06305801030146871, 0.06292475506842363, 0.06289205100568346, 0.06295963679643236, 0.06312691164288844, 0.06339294774979297, 0.06375650701068959, 0.06421606120015853, 0.06476981471760858, 0.06541572876872118, 0.06615154584883114, 0.06697481351861849, 0.06788290671462932, 0.06887304816909891, 0.06994232686747176, 0.07108771479123882, 0.07230608243393279, 0.07359421371204333, 0.07494882091207192, 0.07636656022845664, 0.07784404827644713, 0.07937787973953597, 0.08096464606686485, 0.08260095490502282, 0.0842834497589045, 0.08600882924731167, 0.08777386526130704, 0.0895754193471282, 0.09141045671347767, 0.09327605739097804, 0.09516942423268324, 0.0970878876204149 ], [ 0.08418474091684067, 0.08256974442919356, 0.08101105996602308, 0.07951235643818591, 0.07807730895550807, 0.07670957264164807, 0.07541275394223959, 0.07419037988160095, 0.07304586583211276, 0.07198248245336689, 0.0710033225275137, 0.07011126845667659, 0.06930896119432256, 0.06859877135577697, 0.06798277319870809, 0.06746272209044295, 0.0670400359954487, 0.06671578142982094, 0.06649066424262014, 0.06636502549027726, 0.06633884255910617, 0.06641173554808884, 0.06658297874125783, 0.06685151677868487, 0.06721598489556867, 0.06767473237234493, 0.06822584816457426, 0.06886718759612949, 0.0695963990256798, 0.07041094953748726, 0.07130814894397267, 0.07228517168403807, 0.07333907651295084, 0.07446682416353233, 0.07566529337801028, 0.07693129584297198, 0.07826159059746492, 0.07965289843197863, 0.08110191666982235, 0.08260533454629686, 0.08415984920221012, 0.08576218211398141, 0.0874090956162324, 0.08909740905192362, 0.09082401401981388, 0.09258588818168463, 0.09438010713808895, 0.09620385397171476, 0.09805442617881877, 0.09992923984742472 ], [ 0.08735348543914433, 0.0857640883181383, 0.08422995090377901, 0.08275475994316822, 0.0813422088433241, 0.07999597093575761, 0.0787196701060967, 0.07751684922245546, 0.0763909369161306, 0.07534521337738323, 0.07438277591952999, 0.07350650512879837, 0.07271903244976195, 0.07202271005325504, 0.07141958379611124, 0.0709113700125899, 0.07049943678130663, 0.07018479019381459, 0.06996806601537278, 0.06984952697556868, 0.06982906575508445, 0.06990621354387676, 0.07008015383730802, 0.07034974091957714, 0.07071352227477817, 0.07116976398936041, 0.07171647809131008, 0.0723514507336559, 0.07307227018440898, 0.0738763537300841, 0.07476097281823081, 0.07572327602803013, 0.07676030973231389, 0.07786903656532983, 0.07904635200979057, 0.0802890995453027, 0.08159408485013818, 0.08295808952262135, 0.084377884698898, 0.08585024480897349, 0.08737196155438191, 0.08893985803060411, 0.09055080277506275, 0.09220172341234305, 0.09388961950166193, 0.09561157417123806, 0.09736476414786174, 0.09914646785146819, 0.10095407131409061, 0.10278507178947818 ], [ 0.09052823747370205, 0.08896699485317452, 0.08745999073981908, 0.08601090717379574, 0.08462343122931529, 0.08330122793586393, 0.08204791054915823, 0.08086700859676986, 0.0797619342477725, 0.07873594767217577, 0.07779212215620449, 0.076933309815282, 0.07616210879124061, 0.07548083282831565, 0.07489148409169515, 0.07439573002287046, 0.07399488492085564, 0.07368989680142617, 0.07348133992314909, 0.07336941318385194, 0.07335394438910987, 0.0734344001813568, 0.0736099012021591, 0.07387924185292954, 0.07424091383626855, 0.07469313251902984, 0.07523386507668568, 0.07586085936943177, 0.0765716725690414, 0.07736369869665437, 0.07823419443031061, 0.07918030277444325, 0.08019907442419401, 0.08128748687897096, 0.08244246153918958, 0.08366087914233701, 0.08493959395208732, 0.08627544710881101, 0.08766527948976839, 0.08910594432689581, 0.0905943197062127, 0.09212732094323678, 0.09370191270962129, 0.09531512069034506, 0.09696404248711302, 0.09864585745599777, 0.10035783517557677, 0.10209734228170472, 0.10386184746980638, 0.1056489245468969 ], [ 0.09370502296122327, 0.09217417699468052, 0.09069656465031399, 0.08927584312086737, 0.0879156715147447, 0.08661968365533727, 0.08539145829954399, 0.08423448719769057, 0.08315214154109973, 0.08214763746050593, 0.08122400134036198, 0.08038403579267064, 0.07963028718167015, 0.0789650156016579, 0.07839016818068624, 0.0779073565117656, 0.07751783890247226, 0.07722250798731575, 0.07702188407104847, 0.07691611437228175, 0.07690497812371758, 0.07698789726745302, 0.07716395227191676, 0.07743190240367301, 0.0777902096262268, 0.07823706518256848, 0.07877041786051414, 0.07938800294682173, 0.08008737094908186, 0.08086591529670327, 0.08172089841072339, 0.08264947573766342, 0.0836487175535683, 0.08471562853951654, 0.08584716529121533, 0.08704025204003432, 0.08829179492482979, 0.0895986951635215, 0.09095786143667468, 0.09236622172312486, 0.0938207347329792, 0.09531840098051059, 0.09685627344143183, 0.09843146765706413, 0.10004117108951438, 0.10168265150152973, 0.10335326413276205, 0.10505045746843462, 0.10677177744207059, 0.10851486997477039 ] ] }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "text": [ "0_0", "1_0", "2_0", "3_0", "4_0", "5_0", "6_0", "7_0", "8_0", "9_0", "10_0", "11_0", "12_0", "13_0", "14_0", "15_0", "16_0", "17_0", "18_0", "19_0", "20_0", "21_0", "22_0", "23_0", "24_0", "25_0", "26_0", "27_0", "28_0" ], "type": "scatter", "x": [ 0.22894177865236998, 0.8351952414959669, 0.6286329319700599, 0.9020092906430364, 0.9781260751187801, 0.404045470058918, 0.5364496181489722, 0.46092377103684723, 0.3564612233747839, 0.38581222624914924, 0.3637572688539819, 0.3795241229526584, 0.3504642174956397, 0.4432742548877423, 0.31990722638455565, 0.2555778424579234, 0.2524846530481682, 0.15042602842974614, 0.08663391399541778, 5.268409700002741e-18, 0.03776396710448248, 0.13208293037862412, 0.04644337013155005, 0.18954795281295386, 0.17151422657958837, 0.2261281977423107, 0.23553925391670305, 0.22092623657947988, 0.2403674503513192 ], "xaxis": "x", "y": [ 0.31197850685566664, 0.3588504381477833, 0.5328390896320343, 0.1488186875358224, 0.4709978858008981, 0.18112339731305838, 0.54902475786202, 0.5640297948813812, 0.5882010887611782, 0.503635360389681, 0.43702289092926067, 0.47355585981026754, 0.4671665380998372, 0.523437612961531, 0.41810604105608795, 0.3635570587844399, 0.29760472981852915, 0.3500091762572107, 0.32915274377129267, 0.27665397953931775, 0.3472503846046461, 0.28763398543069946, 0.2898221088337568, 0.2740484775593605, 0.2892618858374601, 0.22864414719651402, 0.16643794738063455, 0.2112673156125695, 0.10916491767214283 ], "yaxis": "y" }, { "hoverinfo": "text", "legendgroup": "In-sample", "marker": { "color": "black", "opacity": 0.5, "symbol": 1 }, "mode": "markers", "name": "In-sample", "showlegend": false, "text": [ "0_0", "1_0", "2_0", "3_0", "4_0", "5_0", "6_0", "7_0", "8_0", "9_0", "10_0", "11_0", "12_0", "13_0", "14_0", "15_0", "16_0", "17_0", "18_0", "19_0", "20_0", "21_0", "22_0", "23_0", "24_0", "25_0", "26_0", "27_0", "28_0" ], "type": "scatter", "x": [ 0.22894177865236998, 0.8351952414959669, 0.6286329319700599, 0.9020092906430364, 0.9781260751187801, 0.404045470058918, 0.5364496181489722, 0.46092377103684723, 0.3564612233747839, 0.38581222624914924, 0.3637572688539819, 0.3795241229526584, 0.3504642174956397, 0.4432742548877423, 0.31990722638455565, 0.2555778424579234, 0.2524846530481682, 0.15042602842974614, 0.08663391399541778, 5.268409700002741e-18, 0.03776396710448248, 0.13208293037862412, 0.04644337013155005, 0.18954795281295386, 0.17151422657958837, 0.2261281977423107, 0.23553925391670305, 0.22092623657947988, 0.2403674503513192 ], "xaxis": "x2", "y": [ 0.31197850685566664, 0.3588504381477833, 0.5328390896320343, 0.1488186875358224, 0.4709978858008981, 0.18112339731305838, 0.54902475786202, 0.5640297948813812, 0.5882010887611782, 0.503635360389681, 0.43702289092926067, 0.47355585981026754, 0.4671665380998372, 0.523437612961531, 0.41810604105608795, 0.3635570587844399, 0.29760472981852915, 0.3500091762572107, 0.32915274377129267, 0.27665397953931775, 0.3472503846046461, 0.28763398543069946, 0.2898221088337568, 0.2740484775593605, 0.2892618858374601, 0.22864414719651402, 0.16643794738063455, 0.2112673156125695, 0.10916491767214283 ], "yaxis": "y2" } ], "layout": { "annotations": [ { "font": { "size": 14 }, "showarrow": false, "text": "Mean", "x": 0.25, "xanchor": "center", "xref": "paper", "y": 1, "yanchor": "bottom", "yref": "paper" }, { "font": { "size": 14 }, "showarrow": false, "text": "Standard Error", "x": 0.8, "xanchor": "center", "xref": "paper", "y": 1, "yanchor": "bottom", "yref": "paper" } ], "autosize": false, "height": 450, "hovermode": "closest", "legend": { "orientation": "h", "x": 0, "y": -0.25 }, "margin": { "b": 100, "l": 35, "pad": 0, "r": 35, "t": 35 }, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "sequentialminus": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "width": 950, "xaxis": { "anchor": "y", "autorange": false, "domain": [ 0.05, 0.45 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x1" }, "type": "linear" }, "xaxis2": { "anchor": "y2", "autorange": false, "domain": [ 0.6, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x1" }, "type": "linear" }, "yaxis": { "anchor": "x", "autorange": false, "domain": [ 0, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "title": { "text": "x2" }, "type": "linear" }, "yaxis2": { "anchor": "x2", "autorange": false, "domain": [ 0, 1 ], "exponentformat": "e", "range": [ 0.0, 1.0 ], "tickfont": { "size": 11 }, "tickmode": "auto", "type": "linear" } } }, "text/html": [ "
\n", " \n", " \n", "
\n", " \n", "
" ] }, "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.041738073761764694, -0.041738073761764694, -0.4669245147381915, -0.4669245147381915, -0.4669245147381915, -0.4669245147381915, -0.775473912247427, -0.9998475015243089, -1.0817147771891236, -1.43542846484191, -1.4435506910055083, -1.55983422806818, -1.55983422806818, -1.55983422806818, -1.9214804528204124, -2.1752769199529665, -2.1752769199529665, -2.43122034874842, -2.5557691645102985, -2.5557691645102985, -2.5557691645102985, -2.628174727942098, -2.628174727942098, -2.7596267991063566, -2.7596267991063566, -3.1154718058853086, -3.1936038310843933, -3.1936038310843933, -3.2402791277454286, -3.2402791277454286 ] }, { "fill": "tonexty", "fillcolor": "rgba(128,177,211,0.3)", "legendgroup": "mean", "line": { "color": "rgba(128,177,211,1)" }, "mode": "lines", "name": "mean", "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.041738073761764694, -0.041738073761764694, -0.4669245147381915, -0.4669245147381915, -0.4669245147381915, -0.4669245147381915, -0.775473912247427, -0.9998475015243089, -1.0817147771891236, -1.43542846484191, -1.4435506910055083, -1.55983422806818, -1.55983422806818, -1.55983422806818, -1.9214804528204124, -2.1752769199529665, -2.1752769199529665, -2.43122034874842, -2.5557691645102985, -2.5557691645102985, -2.5557691645102985, -2.628174727942098, -2.628174727942098, -2.7596267991063566, -2.7596267991063566, -3.1154718058853086, -3.1936038310843933, -3.1936038310843933, -3.2402791277454286, -3.2402791277454286 ] }, { "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.041738073761764694, -0.041738073761764694, -0.4669245147381915, -0.4669245147381915, -0.4669245147381915, -0.4669245147381915, -0.775473912247427, -0.9998475015243089, -1.0817147771891236, -1.43542846484191, -1.4435506910055083, -1.55983422806818, -1.55983422806818, -1.55983422806818, -1.9214804528204124, -2.1752769199529665, -2.1752769199529665, -2.43122034874842, -2.5557691645102985, -2.5557691645102985, -2.5557691645102985, -2.628174727942098, -2.628174727942098, -2.7596267991063566, -2.7596267991063566, -3.1154718058853086, -3.1936038310843933, -3.1936038310843933, -3.2402791277454286, -3.2402791277454286 ] }, { "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 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "sequentialminus": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "title": { "text": "Model performance vs. # of iterations" }, "xaxis": { "title": { "text": "Iteration" } }, "yaxis": { "title": { "text": "Hartmann6" } } } }, "text/html": [ "
\n", " \n", " \n", "
\n", " \n", "
" ] }, "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.1" } }, "nbformat": 4, "nbformat_minor": 2 }