{
"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": {
"execution": {
"iopub.execute_input": "2022-08-17T19:11:10.534242Z",
"iopub.status.busy": "2022-08-17T19:11:10.533717Z",
"iopub.status.idle": "2022-08-17T19:11:12.798395Z",
"shell.execute_reply": "2022-08-17T19:11:12.797709Z"
}
},
"outputs": [
{
"data": {
"text/html": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-17 19:11:12] ax.utils.notebook.plotting: Injecting Plotly library into cell. Do not overwrite or delete cell.\n"
]
},
{
"data": {
"text/html": [
" \n",
" "
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"import numpy as np\n",
"\n",
"from ax.plot.contour import plot_contour\n",
"from ax.plot.trace import optimization_trace_single_method\n",
"from ax.service.managed_loop import optimize\n",
"from ax.metrics.branin import branin\n",
"from ax.utils.measurement.synthetic_functions import hartmann6\n",
"from ax.utils.notebook.plotting import render, init_notebook_plotting\n",
"\n",
"init_notebook_plotting()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## 1. Define evaluation function\n",
"\n",
"First, we define an evaluation function that is able to compute all the metrics needed for this experiment. This function needs to accept a set of parameter values and can also accept a weight. It should produce a dictionary of metric names to tuples of mean and standard error for those metrics."
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {
"collapsed": true,
"execution": {
"iopub.execute_input": "2022-08-17T19:11:12.860615Z",
"iopub.status.busy": "2022-08-17T19:11:12.859836Z",
"iopub.status.idle": "2022-08-17T19:11:12.864571Z",
"shell.execute_reply": "2022-08-17T19:11:12.863973Z"
}
},
"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": {
"execution": {
"iopub.execute_input": "2022-08-17T19:11:12.867987Z",
"iopub.status.busy": "2022-08-17T19:11:12.867411Z",
"iopub.status.idle": "2022-08-17T19:13:25.753357Z",
"shell.execute_reply": "2022-08-17T19:13:25.752690Z"
}
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-17 19:11:12] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x2. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-17 19:11:12] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x3. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-17 19:11:12] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x4. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-17 19:11:12] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x5. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-17 19:11:12] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x6. If that is not the expected value type, you can explicity specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-17 19:11:12] ax.service.utils.instantiation: Created search space: SearchSpace(parameters=[RangeParameter(name='x1', parameter_type=FLOAT, range=[0.0, 1.0]), RangeParameter(name='x2', parameter_type=FLOAT, range=[0.0, 1.0]), RangeParameter(name='x3', parameter_type=FLOAT, range=[0.0, 1.0]), RangeParameter(name='x4', parameter_type=FLOAT, range=[0.0, 1.0]), RangeParameter(name='x5', parameter_type=FLOAT, range=[0.0, 1.0]), RangeParameter(name='x6', parameter_type=FLOAT, range=[0.0, 1.0])], parameter_constraints=[ParameterConstraint(1.0*x1 + 1.0*x2 <= 20.0)]).\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-17 19:11:12] ax.modelbridge.dispatch_utils: Using Bayesian optimization since there are more ordered parameters than there are categories for the unordered categorical parameters.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-17 19:11:12] ax.modelbridge.dispatch_utils: Using Bayesian Optimization generation strategy: GenerationStrategy(name='Sobol+GPEI', steps=[Sobol for 12 trials, GPEI for subsequent trials]). Iterations after 12 will take longer to generate due to model-fitting.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-17 19:11:12] ax.service.managed_loop: Started full optimization with 30 steps.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-17 19:11:12] ax.service.managed_loop: Running optimization trial 1...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-17 19:11:12] ax.service.managed_loop: Running optimization trial 2...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-17 19:11:12] ax.service.managed_loop: Running optimization trial 3...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-17 19:11:12] ax.service.managed_loop: Running optimization trial 4...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-17 19:11:12] ax.service.managed_loop: Running optimization trial 5...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-17 19:11:12] ax.service.managed_loop: Running optimization trial 6...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-17 19:11:13] ax.service.managed_loop: Running optimization trial 7...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-17 19:11:13] ax.service.managed_loop: Running optimization trial 8...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-17 19:11:13] ax.service.managed_loop: Running optimization trial 9...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-17 19:11:13] ax.service.managed_loop: Running optimization trial 10...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-17 19:11:13] ax.service.managed_loop: Running optimization trial 11...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-17 19:11:13] ax.service.managed_loop: Running optimization trial 12...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-17 19:11:13] ax.service.managed_loop: Running optimization trial 13...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/opt/hostedtoolcache/Python/3.7.13/x64/lib/python3.7/site-packages/gpytorch/lazy/lazy_tensor.py:1811: UserWarning:\n",
"\n",
"torch.triangular_solve is deprecated in favor of torch.linalg.solve_triangularand will be removed in a future PyTorch release.\n",
"torch.linalg.solve_triangular has its arguments reversed and does not return a copy of one of the inputs.\n",
"X = torch.triangular_solve(B, A).solution\n",
"should be replaced with\n",
"X = torch.linalg.solve_triangular(A, B). (Triggered internally at ../aten/src/ATen/native/BatchLinearAlgebra.cpp:2189.)\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/opt/hostedtoolcache/Python/3.7.13/x64/lib/python3.7/site-packages/botorch/optim/optimize.py:287: RuntimeWarning:\n",
"\n",
"Optimization failed in `gen_candidates_scipy` with the following warning(s):\n",
"[OptimizationWarning('Optimization failed within `scipy.optimize.minimize` with status 9.')]\n",
"Trying again with a new set of initial conditions.\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/opt/hostedtoolcache/Python/3.7.13/x64/lib/python3.7/site-packages/botorch/optim/optimize.py:301: RuntimeWarning:\n",
"\n",
"Optimization failed on the second try, after generating a new set of initial conditions.\n",
"\n",
"[INFO 08-17 19:11:24] ax.service.managed_loop: Running optimization trial 14...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/opt/hostedtoolcache/Python/3.7.13/x64/lib/python3.7/site-packages/botorch/optim/optimize.py:287: RuntimeWarning:\n",
"\n",
"Optimization failed in `gen_candidates_scipy` with the following warning(s):\n",
"[OptimizationWarning('Optimization failed within `scipy.optimize.minimize` with status 9.')]\n",
"Trying again with a new set of initial conditions.\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/opt/hostedtoolcache/Python/3.7.13/x64/lib/python3.7/site-packages/botorch/optim/optimize.py:301: RuntimeWarning:\n",
"\n",
"Optimization failed on the second try, after generating a new set of initial conditions.\n",
"\n",
"[INFO 08-17 19:11:36] ax.service.managed_loop: Running optimization trial 15...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/opt/hostedtoolcache/Python/3.7.13/x64/lib/python3.7/site-packages/botorch/optim/optimize.py:287: RuntimeWarning:\n",
"\n",
"Optimization failed in `gen_candidates_scipy` with the following warning(s):\n",
"[OptimizationWarning('Optimization failed within `scipy.optimize.minimize` with status 9.')]\n",
"Trying again with a new set of initial conditions.\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/opt/hostedtoolcache/Python/3.7.13/x64/lib/python3.7/site-packages/botorch/optim/optimize.py:301: RuntimeWarning:\n",
"\n",
"Optimization failed on the second try, after generating a new set of initial conditions.\n",
"\n",
"[INFO 08-17 19:11:47] ax.service.managed_loop: Running optimization trial 16...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/opt/hostedtoolcache/Python/3.7.13/x64/lib/python3.7/site-packages/botorch/optim/optimize.py:287: RuntimeWarning:\n",
"\n",
"Optimization failed in `gen_candidates_scipy` with the following warning(s):\n",
"[OptimizationWarning('Optimization failed within `scipy.optimize.minimize` with status 9.')]\n",
"Trying again with a new set of initial conditions.\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-17 19:11:58] ax.service.managed_loop: Running optimization trial 17...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/opt/hostedtoolcache/Python/3.7.13/x64/lib/python3.7/site-packages/botorch/optim/optimize.py:287: RuntimeWarning:\n",
"\n",
"Optimization failed in `gen_candidates_scipy` with the following warning(s):\n",
"[OptimizationWarning('Optimization failed within `scipy.optimize.minimize` with status 9.')]\n",
"Trying again with a new set of initial conditions.\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/opt/hostedtoolcache/Python/3.7.13/x64/lib/python3.7/site-packages/botorch/optim/optimize.py:301: RuntimeWarning:\n",
"\n",
"Optimization failed on the second try, after generating a new set of initial conditions.\n",
"\n",
"[INFO 08-17 19:12:09] ax.service.managed_loop: Running optimization trial 18...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-17 19:12:14] ax.service.managed_loop: Running optimization trial 19...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-17 19:12:19] ax.service.managed_loop: Running optimization trial 20...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-17 19:12:24] ax.service.managed_loop: Running optimization trial 21...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/opt/hostedtoolcache/Python/3.7.13/x64/lib/python3.7/site-packages/botorch/optim/optimize.py:287: RuntimeWarning:\n",
"\n",
"Optimization failed in `gen_candidates_scipy` with the following warning(s):\n",
"[OptimizationWarning('Optimization failed within `scipy.optimize.minimize` with status 9.')]\n",
"Trying again with a new set of initial conditions.\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/opt/hostedtoolcache/Python/3.7.13/x64/lib/python3.7/site-packages/botorch/optim/optimize.py:301: RuntimeWarning:\n",
"\n",
"Optimization failed on the second try, after generating a new set of initial conditions.\n",
"\n",
"[INFO 08-17 19:12:35] ax.service.managed_loop: Running optimization trial 22...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/opt/hostedtoolcache/Python/3.7.13/x64/lib/python3.7/site-packages/botorch/optim/optimize.py:287: RuntimeWarning:\n",
"\n",
"Optimization failed in `gen_candidates_scipy` with the following warning(s):\n",
"[OptimizationWarning('Optimization failed within `scipy.optimize.minimize` with status 9.')]\n",
"Trying again with a new set of initial conditions.\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/opt/hostedtoolcache/Python/3.7.13/x64/lib/python3.7/site-packages/botorch/optim/optimize.py:301: RuntimeWarning:\n",
"\n",
"Optimization failed on the second try, after generating a new set of initial conditions.\n",
"\n",
"[INFO 08-17 19:12:48] ax.service.managed_loop: Running optimization trial 23...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-17 19:12:53] ax.service.managed_loop: Running optimization trial 24...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-17 19:12:58] ax.service.managed_loop: Running optimization trial 25...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-17 19:13:03] ax.service.managed_loop: Running optimization trial 26...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-17 19:13:07] ax.service.managed_loop: Running optimization trial 27...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-17 19:13:11] ax.service.managed_loop: Running optimization trial 28...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-17 19:13:16] ax.service.managed_loop: Running optimization trial 29...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 08-17 19:13:21] 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": {
"execution": {
"iopub.execute_input": "2022-08-17T19:13:25.756925Z",
"iopub.status.busy": "2022-08-17T19:13:25.756527Z",
"iopub.status.idle": "2022-08-17T19:13:25.767110Z",
"shell.execute_reply": "2022-08-17T19:13:25.766570Z"
}
},
"outputs": [
{
"data": {
"text/plain": [
"{'x1': 0.19524173623547994,\n",
" 'x2': 0.15186164835050317,\n",
" 'x3': 0.48196199677256235,\n",
" 'x4': 0.2694201848346438,\n",
" 'x5': 0.3100010075843861,\n",
" 'x6': 0.6595043991274802}"
]
},
"execution_count": 4,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"best_parameters"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {
"execution": {
"iopub.execute_input": "2022-08-17T19:13:25.770157Z",
"iopub.status.busy": "2022-08-17T19:13:25.769757Z",
"iopub.status.idle": "2022-08-17T19:13:25.773869Z",
"shell.execute_reply": "2022-08-17T19:13:25.773322Z"
}
},
"outputs": [
{
"data": {
"text/plain": [
"{'l2norm': 0.9471377627558926, 'hartmann6': -3.320339296175767}"
]
},
"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": {
"execution": {
"iopub.execute_input": "2022-08-17T19:13:25.776779Z",
"iopub.status.busy": "2022-08-17T19:13:25.776380Z",
"iopub.status.idle": "2022-08-17T19:13:25.780253Z",
"shell.execute_reply": "2022-08-17T19:13:25.779726Z"
}
},
"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": {
"execution": {
"iopub.execute_input": "2022-08-17T19:13:25.782978Z",
"iopub.status.busy": "2022-08-17T19:13:25.782761Z",
"iopub.status.idle": "2022-08-17T19:13:26.557799Z",
"shell.execute_reply": "2022-08-17T19:13:26.557178Z"
}
},
"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.54774666395621,
-2.6028717830522936,
-2.6540810702197772,
-2.7007954294669156,
-2.742433309596288,
-2.7784261976735762,
-2.808237737333871,
-2.8313855400696637,
-2.847463743151621,
-2.856163559647473,
-2.8572889211352677,
-2.8507650672457734,
-2.8366393810141126,
-2.815075320379999,
-2.7863413228910785,
-2.7507967552483787,
-2.708876514852326,
-2.6610752432969145,
-2.607931682586375,
-2.550013579231454,
-2.487903567245167,
-2.4221864659590233,
-2.35343834190863,
-2.282217527376601,
-2.209057616601582,
-2.1344623189545593,
-2.0589019565114643,
-1.982811350717854,
-1.9065888378161864,
-1.830596171486745,
-1.7551591019089299,
-1.6805684549049693,
-1.6070815680434491,
-1.5349239700979889,
-1.4642912152140974,
-1.395350803568105,
-1.3282441366719677,
-1.2630884684071395,
-1.1999788229840214,
-1.1389898588831333,
-1.0801776639146938,
-1.0235814712204434,
-0.9692252896435619,
-0.9171194446507052,
-0.8672620280924077,
-0.8196402566809182,
-0.7742317402605794,
-0.7310056618336505,
-0.6899238719515783,
-0.6509419005419783
],
[
-2.5825400307285684,
-2.6395642304125344,
-2.692655468455257,
-2.7412063053620455,
-2.784601342550154,
-2.8222331671957335,
-2.853522960845453,
-2.8779450061482494,
-2.895052904247605,
-2.9045040327645726,
-2.906078379814906,
-2.899688831247578,
-2.8853819921129973,
-2.863330782784721,
-2.83382139243876,
-2.7972372681253304,
-2.7540420043482037,
-2.704762049441159,
-2.6499696352081465,
-2.590266298357517,
-2.526267495289109,
-2.458588853872006,
-2.3878344870699193,
-2.314587576624881,
-2.239403211744647,
-2.162803297961328,
-2.085273253815425,
-2.007260178889746,
-1.9291721862186995,
-1.8513786256980986,
-1.7742109682221328,
-1.697964163821533,
-1.622898326398226,
-1.5492406309421165,
-1.477187336197525,
-1.4069058672199222,
-1.3385369090120145,
-1.2721964753548678,
-1.2079779268624025,
-1.1459539198579776,
-1.0861782734387642,
-1.028687746477198,
-0.9735037196330031,
-0.9206337799619897,
-0.8700732075973643,
-0.8218063653901146,
-0.7758079934361748,
-0.7320444111748861,
-0.6904746302795024,
-0.6510513819271571
],
[
-2.612555954491948,
-2.671332300029005,
-2.7261723390855037,
-2.7764432946827378,
-2.821498495368969,
-2.860693331198157,
-2.893407009521577,
-2.919069710734073,
-2.937192809805814,
-2.9473978507376186,
-2.949439145794316,
-2.9432160342536147,
-2.9287736124649366,
-2.9062937336848558,
-2.8760797947066656,
-2.838538708948509,
-2.7941621418477793,
-2.743507764947984,
-2.6871807411852426,
-2.6258157849048875,
-2.5600604219122696,
-2.4905601459838063,
-2.4179459875032143,
-2.3428247080089464,
-2.2657715487643424,
-2.1873252648867036,
-2.1079850802020603,
-2.028209179640338,
-1.9484143851828268,
-1.8689767125955268,
-1.7902325626233129,
-1.7124803528843502,
-1.6359824415679134,
-1.5609672304124618,
-1.487631363011618,
-1.41614195650033,
-1.346638821420542,
-1.279236637225549,
-1.214027060417716,
-1.1510807494849415,
-1.0904492961891665,
-1.0321670568041605,
-0.9762528799303134,
-0.9227117297766795,
-0.8715362054799773,
-0.8227079582649302,
-0.7761990091447053,
-0.7319729704943319,
-0.6899861752634378,
-0.6501887178754704
],
[
-2.637413315023119,
-2.697760130110967,
-2.754179470448829,
-2.8060170103578566,
-2.852598504044675,
-2.8932452320909516,
-2.927296384134654,
-2.954138615578927,
-2.973240480980057,
-2.98418648298423,
-2.9867039974444354,
-2.980677756328621,
-2.966150390331026,
-2.9433116014247176,
-2.9124806668030554,
-2.8740864736921097,
-2.8286472625308954,
-2.776750528001905,
-2.719033042703997,
-2.656161367034162,
-2.5888136692561763,
-2.5176637526654138,
-2.4433679028459734,
-2.3665547545875256,
-2.2878180237453516,
-2.2077117322395905,
-2.1267474689203945,
-2.045393234391041,
-1.9640734713721653,
-1.8831699528041967,
-1.8030232697032118,
-1.7239347216078649,
-1.646168461895726,
-1.5699537888233075,
-1.4954875025123677,
-1.4229362701458144,
-1.352438958051783,
-1.2841089015399212,
-1.2180360923918738,
-1.154289270615207,
-1.092917912051099,
-1.0339541071247802,
-0.9774143287701859,
-0.9233010895848853,
-0.8716044897552062,
-0.8223036583649017,
-0.7753680914624272,
-0.7307588907857439,
-0.6884299073860451,
-0.6483287945962557
],
[
-2.6567706326050007,
-2.71847242104014,
-2.7762653408147964,
-2.8294778620941354,
-2.8774128594225186,
-2.919362027767728,
-2.9546282252655005,
-2.982556941665079,
-3.0025749215393476,
-3.014229675309414,
-3.0172211674149865,
-3.0114187042498157,
-2.9968612045767014,
-2.9737444229291157,
-2.942401231670371,
-2.9032799672735194,
-2.8569229455712364,
-2.8039451357135072,
-2.745012697889885,
-2.680821853743256,
-2.612079200010186,
-2.539484601584793,
-2.463717366156244,
-2.3854258566080744,
-2.305220276194945,
-2.223668135448041,
-2.1412918465439335,
-2.0585679270994404,
-1.9759273760871259,
-1.8937568747990328,
-1.8124005479428686,
-1.7321620876721882,
-1.6533070961443475,
-1.576065542044406,
-1.500634256038002,
-1.4271794117875118,
-1.355838955014737,
-1.2867249546817567,
-1.219925858851409,
-1.155508644022508,
-1.0935208513221863,
-1.0339925063145343,
-0.9769379216660258,
-0.922357383722042,
-0.8702387253616222,
-0.8205587884316203,
-0.7732847797093774,
-0.72837552477262,
-0.6857826244199059,
-0.6454515184243468
],
[
-2.6703368287467697,
-2.7331472016260494,
-2.7920741579814585,
-2.846433520067913,
-2.895510652163219,
-2.9385734530490875,
-2.9748939516879145,
-3.003780973102,
-3.0246226062649497,
-3.0369312161324555,
-3.0403800295534564,
-3.0348224702108295,
-3.020292154327849,
-2.9969882749546266,
-2.965253975305444,
-2.925553429010131,
-2.87844945674291,
-2.8245811003435133,
-2.7646406506261822,
-2.6993508178118675,
-2.6294435208531506,
-2.555641686931457,
-2.478644827501237,
-2.399118470633647,
-2.3176870524257107,
-2.23492964990804,
-2.1513779071381696,
-2.0675155776713448,
-1.9837792149563702,
-1.9005596505382145,
-1.8182039924706568,
-1.737017949226722,
-1.6572683392719902,
-1.5791856867531262,
-1.5029668329489803,
-1.428777514180918,
-1.35675487205401,
-1.2870098728717587,
-1.2196296210310864,
-1.1546795570097521,
-1.0922055348018922,
-1.0322357767619441,
-0.9747827060820744,
-0.9198446587700837,
-0.8674074781683607,
-0.817445995876863,
-0.7699254034981833,
-0.7248025199766048,
-0.6820269595038819,
-0.6415422050509958
],
[
-2.6778803690265436,
-2.741526933644108,
-2.8013193772309393,
-2.85656526260794,
-2.9065380057057246,
-2.950488323033985,
-2.987664530912447,
-3.017345586737788,
-3.0388866678005977,
-3.0517691483912643,
-3.055641686654809,
-3.050341844207594,
-3.035895994931858,
-3.012503356478687,
-2.9805130667378172,
-2.9404005327262164,
-2.892744466124218,
-2.83820346574889,
-2.7774915476853317,
-2.7113536368991937,
-2.640542900381755,
-2.5658015508309,
-2.4878459159299586,
-2.4073557506633785,
-2.3249672551968024,
-2.2412690596082694,
-2.1568004441630673,
-2.0720511706655436,
-1.9874624338490945,
-1.903428565160912,
-1.820299221652224,
-1.73838186897472,
-1.6579444233684932,
-1.5792179576783751,
-1.5023994050452898,
-1.4276542142799302,
-1.3551189254616474,
-1.2849036447383257,
-1.2170944048366237,
-1.151755403260283,
-1.0889311141372233,
-1.0286482725780868,
-0.9709177325157025,
-0.915736200510782,
-0.8630878490819558,
-0.8129458138576104,
-0.7652735793334677,
-0.7200262583160444,
-0.6771517702843843,
-0.6365919239474094
],
[
-2.6792358539007175,
-2.7434265879274253,
-2.8037937717284835,
-2.859640651157675,
-2.9102339495111123,
-2.954814001456402,
-2.9926136104403707,
-3.0228907706211947,
-3.044976225880218,
-3.058327088027819,
-3.0625713182700673,
-3.057531244349403,
-3.04322384555086,
-3.0198443717263803,
-2.9877430118243478,
-2.94740105337645,
-2.899407562767945,
-2.8444350710301096,
-2.78321371536403,
-2.7165052149933038,
-2.6450789330280937,
-2.569691840913065,
-2.4910731767350462,
-2.4099136667272547,
-2.326858645053713,
-2.242504231522176,
-2.1573957709167835,
-2.0720278748730303,
-1.9868455605491404,
-1.902246114785792,
-1.8185814180030044,
-1.7361605402799967,
-1.6552524782325113,
-1.576088941063651,
-1.498867122189974,
-1.4237524126391963,
-1.3508810264783069,
-1.2803625185952774,
-1.2122821824130794,
-1.1467033203763268,
-1.0836693838790574,
-1.0232059820862291,
-0.9653227611161114,
-0.9100151564927238,
-0.8572660227887285,
-0.807047145066542,
-0.759320637167296,
-0.7140402321541808,
-0.6711524703350464,
-0.6305977903042823
],
[
-2.67430763140431,
-2.7387379297821717,
-2.7993747435805427,
-2.855520435822683,
-2.9064396999435105,
-2.951368907795839,
-2.989533921395831,
-3.020182173148093,
-3.042630758053904,
-3.0563215496969365,
-3.0608673086908356,
-3.056076540038644,
-3.0419548433200827,
-3.0186893918787034,
-2.9866262383654103,
-2.9462467590719204,
-2.898144105213963,
-2.8429981158227333,
-2.781548328264165,
-2.714566775258823,
-2.642833083192019,
-2.567113802906146,
-2.488146743897122,
-2.406630094948918,
-2.3232155739891778,
-2.2385046972416927,
-2.153047329064512,
-2.067341832072631,
-1.9818363033422401,
-1.896930523554447,
-1.8129783542976883,
-1.7302903977697965,
-1.6491367892492617,
-1.5697500321421363,
-1.4923278130863582,
-1.4170357541073526,
-1.3440100726803608,
-1.2733601304886997,
-1.205170858839827,
-1.139505053911924,
-1.076405538797463,
-1.0158971920696322,
-0.9579888445904093,
-0.9026750477003483,
-0.8499377169209807,
-0.799747655966591,
-0.7520659662829097,
-0.706845347566545,
-0.6640312948171341,
-0.6235631974711779
],
[
-2.663070757191721,
-2.727430364734751,
-2.788025118300366,
-2.8441595728973956,
-2.8951005404603087,
-2.9400863113889857,
-2.9783441905002856,
-3.009121971938988,
-3.0317350144530613,
-3.0456202857275874,
-3.050382030778167,
-3.045817318302755,
-3.031919130138476,
-3.008862956257156,
-2.9769857363702714,
-2.9367630093659174,
-2.8887852601079107,
-2.8337322722993448,
-2.77234541847326,
-2.705399765146084,
-2.633678611775213,
-2.5579524265934355,
-2.4789629315847055,
-2.397412079197024,
-2.3139551238609353,
-2.2291968496479138,
-2.14369009848433,
-2.057935909989099,
-1.972384754937518,
-1.8874384875392924,
-1.8034527507868432,
-1.720739648264007,
-1.6395705518892771,
-1.560178954484277,
-1.4827633037854278,
-1.4074897741383507,
-1.3344949461190747,
-1.2638883744072813,
-1.1957550315483378,
-1.1301576205684107,
-1.067138753295132,
-1.0067229940664706,
-0.9489187705535126,
-0.8937201548773834,
-0.8411085192107133,
-0.791054070729367,
-0.743517271202901,
-0.6984501467455009,
-0.6557974933417492,
-0.615497983750821
],
[
-2.645570205982809,
-2.7095496849396006,
-2.7697913128601255,
-2.8256048046010553,
-2.87626307476905,
-2.921011951426573,
-2.9590881454258695,
-2.989750167195144,
-3.0123230422946268,
-3.0262490427947335,
-3.0311310628389956,
-3.026758143104864,
-3.0131106489462933,
-2.9903498304208576,
-2.958799153458823,
-2.9189225707703113,
-2.871301012072248,
-2.816606523909819,
-2.7555743588280217,
-2.6889749550611763,
-2.617588367279457,
-2.542183063556515,
-2.4634998331477673,
-2.3822405635840487,
-2.299061110686102,
-2.214567338921684,
-2.1293134861718874,
-2.043802168100014,
-1.9584855043254095,
-1.873766989357745,
-1.7900038390551614,
-1.7075096220722994,
-1.6265570419478095,
-1.5473807752948883,
-1.470180299812408,
-1.3951226660066478,
-1.3223451810279978,
-1.2519579835507177,
-1.184046496297934,
-1.1186737484303038,
-1.0558825641261593,
-0.9956976166768325,
-0.938127349584757,
-0.8831657676923313,
-0.8307941024385743,
-0.7809823560555469,
-0.7336907299641475,
-0.688870942877345,
-0.6464674442197047,
-0.6064185284655133
],
[
-2.6219192099181714,
-2.6852160724503613,
-2.744800936356824,
-2.7999917786728217,
-2.8500717696172417,
-2.8942999024524623,
-2.931929687399059,
-2.962239291469949,
-2.9845729807822488,
-2.9983871784139082,
-3.003290288716586,
-2.9990674797896695,
-2.98568782241749,
-2.9632970681462596,
-2.932201766709148,
-2.8928490646760707,
-2.845803748311565,
-2.791722650138631,
-2.7313271044129204,
-2.6653753672569835,
-2.5946373841646917,
-2.5198737078793667,
-2.4418193123911873,
-2.3611721279290907,
-2.2785855977156593,
-2.194664393750385,
-2.109962482203482,
-2.0249828710034214,
-1.9401785265787033,
-1.8559540803369357,
-1.7726680499207441,
-1.6906353779263985,
-1.610130147145659,
-1.5313883719822954,
-1.4546107949235154,
-1.379965638084096,
-1.3075912752143735,
-1.2375988008038392,
-1.1700744811620458,
-1.1050820784229338,
-1.042665042869744,
-0.9828485722289944,
-0.9256415389344734,
-0.8710382880388476,
-0.8190203096177957,
-0.7695577902955382,
-0.7226110490166031,
-0.6781318624706922,
-0.6360646857012668,
-0.5963477734378908
],
[
-2.592296986781793,
-2.6546216963481366,
-2.7132602478781243,
-2.7675422441591437,
-2.816765503586269,
-2.8602077352912545,
-2.8971457981485518,
-2.926884639259068,
-2.9487950001114993,
-2.9623543269217247,
-2.967182459427292,
-2.963065048807257,
-2.9499621485294183,
-2.928003938545909,
-2.897477673051217,
-2.8588093398365295,
-2.8125417528386274,
-2.759309778669948,
-2.6998137136572495,
-2.6347926516501174,
-2.5649999871202915,
-2.491182704734889,
-2.4140652038540256,
-2.334337582754458,
-2.2526478043218736,
-2.1695969780426894,
-2.0857370108958357,
-2.0015699911864497,
-1.917548803026675,
-1.8340785909039796,
-1.7515187925300015,
-1.6701855338523108,
-1.5903542365400751,
-1.5122623298261388,
-1.4361119891064047,
-1.3620728461192435,
-1.2902846320371775,
-1.2208597269880663,
-1.1538855985262835,
-1.0894271182249406,
-1.027528750458163,
-0.9682166110305597,
-0.9115003959134336,
-0.8573751822093565,
-0.8058231047692335,
-0.7568149127690271,
-0.7103114111213933,
-0.6662647919319218,
-0.6246198613722977,
-0.5853151673809391
],
[
-2.5569454718670483,
-2.6180271988119346,
-2.675450285530214,
-2.7285595304863106,
-2.776671824998472,
-2.8190887255307353,
-2.8551158596799553,
-2.8840902298063638,
-2.905414068866035,
-2.91859071268098,
-2.923256083252335,
-2.9192003034943035,
-2.906377077455045,
-2.8849017837369386,
-2.855041035238794,
-2.8171964012925836,
-2.77188401739475,
-2.7197111658662543,
-2.6613510661511235,
-2.5975176081342046,
-2.528941921788487,
-2.4563522681735077,
-2.3804579990622408,
-2.3019376242433265,
-2.221430555579397,
-2.1395318878416205,
-2.0567895527237394,
-1.973703255562596,
-1.8907247106855671,
-1.8082587967371904,
-1.726665343857886,
-1.6462613370895451,
-1.5673233763957455,
-1.4900902761573047,
-1.414765718909388,
-1.3415209019480598,
-1.270497133243381,
-1.2018083463710707,
-1.1355435140570802,
-1.0717689472673775,
-1.0105304722045503,
-0.9518554815637166,
-0.8957548593084035,
-0.8422247803173135,
-0.7912483877271597,
-0.7427973518077529,
-0.6968333148697778,
-0.6533092271126393,
-0.6121705785376188,
-0.5733565321327085
],
[
-2.516164492416989,
-2.5757562015635536,
-2.6317204335940305,
-2.6834207566415516,
-2.730197268584784,
-2.7713797486945686,
-2.80630673875938,
-2.834350894472852,
-2.8549491020171818,
-2.8676337062781574,
-2.8720600125060978,
-2.8680258577705504,
-2.8554811614559896,
-2.8345277298820877,
-2.805411068271356,
-2.7685062225691115,
-2.7242992546705307,
-2.673365610027219,
-2.6163467094417876,
-2.553926363885945,
-2.4868086657846953,
-2.415698679642414,
-2.3412866728345674,
-2.2642360389916947,
-2.1851746395293468,
-2.10468906386886,
-2.023321244177587,
-1.9415668919769231,
-1.8598752989591933,
-1.7786501300142834,
-1.6982509163589354,
-1.6189950245135853,
-1.541159931658357,
-1.4649856808682413,
-1.3906774228440626,
-1.3184079760066836,
-1.2483203559425147,
-1.180530239596317,
-1.1151283404212788,
-1.0521826787791129,
-0.9917407378956009,
-0.9338315001209864,
-0.8784673615002754,
-0.8256459250157067,
-0.7753516745416267,
-0.7275575327186972,
-0.6822263067388361,
-0.6393120265314853,
-0.5987611801326584,
-0.5605138511566885
],
[
-2.4703051321791585,
-2.528187547541132,
-2.5824792108796037,
-2.632565790263296,
-2.6778141530937436,
-2.717585726178625,
-2.7512548474098697,
-2.778231993080605,
-2.7979903913335615,
-2.810093096403743,
-2.8142168604674374,
-2.810169586272371,
-2.797899573201981,
-2.7774964414013663,
-2.7491847986660236,
-2.7133121374868203,
-2.670332369916464,
-2.620786268904843,
-2.565280124167137,
-2.5044640501497133,
-2.4390113777813154,
-2.3696003038649183,
-2.296898528219495,
-2.221551134295846,
-2.144171590621911,
-2.0653355172831325,
-1.985576760583488,
-1.9053853100034461,
-1.8252066339763349,
-1.7454420749370698,
-1.6664500114830318,
-1.5885475572013346,
-1.512012618215361,
-1.4370861742552705,
-1.3639746819324725,
-1.2928525252650005,
-1.2238644587800134,
-1.1571280039846341,
-1.0927357717147852,
-1.030757691700451,
-0.9712431372997637,
-0.9142229382762882,
-0.8597112781263474,
-0.807707475115252,
-0.758197648090309,
-0.7111562694859928,
-0.6665476088627929,
-0.6243270709333038,
-0.5844424324093329,
-0.546834982215535
],
[
-2.4197614925473387,
-2.4757456710975934,
-2.5281829794255577,
-2.5764840650091037,
-2.620045389528639,
-2.6582624527095433,
-2.6905471202756637,
-2.716348679785056,
-2.735177244054858,
-2.746627163851157,
-2.7503976570831745,
-2.746308185307062,
-2.734307085909328,
-2.7144731537687403,
-2.687010793644781,
-2.6522398263518143,
-2.610581132570298,
-2.562539302979915,
-2.5086834924024486,
-2.4496277325954723,
-2.38601193085188,
-2.3184845945845396,
-2.2476879983274567,
-2.174246137621159,
-2.098755484849925,
-2.0217783277529096,
-1.9438383411008837,
-1.8654179969563784,
-1.7869574304403832,
-1.7088544199559825,
-1.6314651946413252,
-1.5551058361238361,
-1.4800540906931388,
-1.4065514496182785,
-1.3348053892864962,
-1.2649916898537223,
-1.1972567722254581,
-1.131720009518595,
-1.0684759816667586,
-1.0075966513506787,
-0.9491334466279632,
-0.8931192410353357,
-0.8395702259558884,
-0.788487673007777,
-0.7398595863700235,
-0.6936622465089253,
-0.6498616478560835,
-0.6084148337311941,
-0.5692711322893358,
-0.5323732975715412
],
[
-2.3649613831219884,
-2.4188898670583203,
-2.469323634273949,
-2.5157006109614923,
-2.5574488819770456,
-2.5939994982064434,
-2.62480259577355,
-2.6493463225913527,
-2.6671773412819406,
-2.6779210375022573,
-2.681299286549176,
-2.6771438738699023,
-2.6654043475703375,
-2.6461499317675488,
-2.6195658521491736,
-2.5859448612048896,
-2.545674926932106,
-2.499224095160862,
-2.4471235606839294,
-2.389950007007271,
-2.3283082528951944,
-2.2628151264595653,
-2.194085267033028,
-2.1227192716135725,
-2.04929431896826,
-1.9743571740742516,
-1.8984193241387468,
-1.821953923021818,
-1.745394205436582,
-1.6691330538820177,
-1.593523441387129,
-1.518879519137899,
-1.4454781625546032,
-1.373560828838337,
-1.3033356122147746,
-1.2349794101503022,
-1.1686401353648908,
-1.10443892537512,
-1.0424723144241455,
-0.9828143427518674,
-0.92551858586882,
-0.8706200923423904,
-0.8181372230004011,
-0.7680733877353321,
-0.7204186785106563,
-0.6751513989322362,
-0.6322394920105707,
-0.5916418686268277,
-0.5533096398226147,
-0.5171872564332787
],
[
-2.3063565876531316,
-2.3581032847617402,
-2.406416275383231,
-2.4507624314445158,
-2.4906027168443123,
-2.52540437233354,
-2.554655731589874,
-2.5778831187842917,
-2.59466875536111,
-2.604668175726406,
-2.6076254879132,
-2.603385004251124,
-2.591898256298652,
-2.573226029057759,
-2.547535609588418,
-2.5150938249864137,
-2.4762566344610653,
-2.4314561064442013,
-2.381185631783923,
-2.3259842381529587,
-2.2664208705658657,
-2.2030794516196868,
-2.136545402338089,
-2.067394095344946,
-1.9961814689319481,
-1.9234368077156654,
-1.849657530757594,
-1.7753057319075904,
-1.7008061799947387,
-1.626545490252091,
-1.5528722054649713,
-1.48009756259242,
-1.4084967596755134,
-1.338310574183359,
-1.2697472155703897,
-1.202984321228263,
-1.1381710264857132,
-1.075430056443453,
-1.0148598009242868,
-0.9565363443362322,
-0.9005154303748721,
-0.8468343477245246,
-0.7955137276599955,
-0.7465592480289962,
-0.6999632407701188,
-0.6557062021001019,
-0.6137582059503348,
-0.5740802222748529,
-0.5366253425901495,
-0.5013399156192586
],
[
-2.2444133016234247,
-2.2938823398746155,
-2.339987621248879,
-2.3822260063181657,
-2.4200918931341158,
-2.453088642750157,
-2.480742066403014,
-2.502615428891958,
-2.518325048219961,
-2.5275552856924146,
-2.5300716286771228,
-2.5257307205162864,
-2.51448655269994,
-2.4963924950987995,
-2.4715992726687,
-2.440349310933514,
-2.4029680436413825,
-2.359852838098999,
-2.311460206677139,
-2.2582919868242897,
-2.2008811987979624,
-2.139778298077215,
-2.0755384792125886,
-2.008710539540731,
-1.9398276032883837,
-1.8693997941945055,
-1.7979087738405584,
-1.7258039526394942,
-1.6535001272314407,
-1.581376287172092,
-1.5097753491290915,
-1.4390046053564647,
-1.3693367062698882,
-1.3010110293895651,
-1.2342353161901416,
-1.169187483520496,
-1.1060175371360412,
-1.0448495318633992,
-0.9857835365064163,
-0.9288975723511508,
-0.8742495025462342,
-0.8218788561732717,
-0.7718085758578226,
-0.7240466816198226,
-0.6785878465779915,
-0.6354148823128349,
-0.5945001333232023,
-0.555806781212437,
-0.519290060116492,
-0.4848983855181759
],
[
-2.1796032054968526,
-2.226727036364945,
-2.2705656531946254,
-2.3106463726114823,
-2.3464969789440544,
-2.3776563115789373,
-2.403686446528832,
-2.4241859586189562,
-2.438803483346982,
-2.4472506077308207,
-2.4493130733251895,
-2.4448594007559477,
-2.4338463177025744,
-2.416320719043916,
-2.392418220591522,
-2.3623586173947073,
-2.326438696921359,
-2.2850229047514614,
-2.2385323658671523,
-2.187432782549518,
-2.13222178250484,
-2.073416346513995,
-2.011540941456343,
-1.9471168848688247,
-1.8806532904174744,
-1.8126397447445919,
-1.7435406956521746,
-1.6737914139955643,
-1.6037953276069499,
-1.533922503303156,
-1.4645090581280433,
-1.395857301229043,
-1.3282364345666315,
-1.2618836686752486,
-1.1970056360160912,
-1.1337800077404592,
-1.0723572395023395,
-1.0128623884071128,
-0.9553969565874986,
-0.9000407276700517,
-0.8468535709572949,
-0.795877194890638,
-0.7471368366195397,
-0.7006428785748042,
-0.6563923860721603,
-0.6143705623575852,
-0.5745521193117722,
-0.5369025633893669,
-0.5013793973844203,
-0.4679332393688267
],
[
-2.1123954841654036,
-2.1571324941953987,
-2.1986707458026205,
-2.2365679756223984,
-2.2703848104328093,
-2.2996944833464723,
-2.324093766414025,
-2.3432146518792996,
-2.356736124412527,
-2.364395242374846,
-2.365996729252142,
-2.361420382774466,
-2.3506258192902014,
-2.333654334489284,
-2.3106279158047394,
-2.2817456340361897,
-2.247277747249206,
-2.2075578806330856,
-2.162973645956223,
-2.1139560878976567,
-2.0609684171804927,
-2.00449457992833,
-1.9450282498837583,
-1.8830627684195584,
-1.8190824090011741,
-1.7535551606259145,
-1.6869270604212527,
-1.6196179862902862,
-1.5520187499838123,
-1.484489300214548,
-1.4173578419014194,
-1.350920690241111,
-1.2854426989153485,
-1.221158125077792,
-1.158271816736974,
-1.0969606291604548,
-1.0373749952943974,
-0.9796405907816627,
-0.9238600471124921,
-0.8701146770308927,
-0.8184661848679582,
-0.7689583412999306,
-0.7216186074305995,
-0.6764596973361034,
-0.6334810715111749,
-0.5926703562104185,
-0.5540046856437217,
-0.5174519654913705,
-0.48297205735564264,
-0.45051788464453835
],
[
-2.0432499626923035,
-2.0855818153288888,
-2.1248083613096957,
-2.160517300517944,
-2.1923011683689357,
-2.219766182354132,
-2.2425420037250117,
-2.2602919980031584,
-2.27272344408057,
-2.2795970621359256,
-2.2807352318577436,
-2.276028362794899,
-2.265439042471063,
-2.249003788915797,
-2.2268324267283384,
-2.1991052496796657,
-2.1660682082656493,
-2.128026377532362,
-2.0853359585801057,
-2.0383950969021383,
-1.9876338857598927,
-1.9335040311687148,
-1.8764687175635095,
-1.816993180332843,
-1.7555363700663804,
-1.692543931208577,
-1.6284425643938163,
-1.5636357252101778,
-1.4985005386912846,
-1.4333857720397405,
-1.3686106974792056,
-1.304464682923744,
-1.2412073628878209,
-1.179069260696454,
-1.118252752483438,
-1.05893328192974,
-1.0012607513229845,
-0.9453610289765372,
-0.8913375253107988,
-0.839272800111214,
-0.7892301718569763,
-0.7412553068083692,
-0.6953777709928628,
-0.6516125325670634,
-0.6099614054574161,
-0.5704144278710093,
-0.5329511713702892,
-0.49754197784452736,
-0.4641491229886434,
-0.43272790589728793
],
[
-1.9726114155692998,
-2.0125402993302086,
-2.0494632625768228,
-2.0829971754363164,
-2.112765256728059,
-2.1384050772514795,
-2.1595772410018994,
-2.175974380040802,
-2.187330005270753,
-2.1934267063041997,
-2.1941032055761527,
-2.1892598484020627,
-2.1788622390139976,
-2.162942885663921,
-2.141600861805667,
-2.1149995952706337,
-2.083362948813523,
-2.0469697635095674,
-2.0061470363908187,
-1.9612619390651884,
-1.9127129738639583,
-1.860920677963212,
-1.806318360470724,
-1.7493433455816774,
-1.6904290989535793,
-1.6299984746644316,
-1.5684581812815943,
-1.5061944552692454,
-1.443569856365235,
-1.3809210588031244,
-1.3185574960007083,
-1.25676071620846,
-1.1957843159484631,
-1.1358543321916206,
-1.0771699900861669,
-1.0199047188389425,
-0.9642073630523922,
-0.9102035299471812,
-0.8579970242862578,
-0.8076713324816638,
-0.7592911254334731,
-0.7129037562943299,
-0.6685407347626227,
-0.6262191638716974,
-0.5859431287370365,
-0.547705029506601,
-0.5114868529685104,
-0.47726137902173327,
-0.4449933196055207,
-0.4146403887903509
],
[
-1.9009050244114443,
-1.9384509376971835,
-1.9730951220338209,
-2.00448256881269,
-2.032265751084991,
-2.0561118269631207,
-2.075710336522652,
-2.0907810776245364,
-2.101081781705062,
-2.106415182052377,
-2.10663508461835,
-2.1016511157130777,
-2.0914319212525285,
-2.0760067080041864,
-2.055465123373043,
-2.0299555449887476,
-1.9996818854877958,
-1.9648990220023692,
-1.9259069641340711,
-1.8830439138022312,
-1.8366784585679956,
-1.7872012494894152,
-1.7350165911695081,
-1.680534374121535,
-1.6241627067399864,
-1.566301487686403,
-1.5073370376349406,
-1.4476378078519188,
-1.3875511116036738,
-1.3274007814646276,
-1.267485635027136,
-1.2080786263915595,
-1.1494265653388906,
-1.0917502960018224,
-1.0352452392720133,
-0.9800822162816192,
-0.9264084829811208,
-0.8743489175020314,
-0.8240073123586797,
-0.7754677325242492,
-0.7287959080482571,
-0.6840406362689366,
-0.6412351739519371,
-0.6003986040050793,
-0.5615371649258849,
-0.5246455339714118,
-0.4897080573223598,
-0.45669992235226964,
-0.42558826859718124,
-0.39633323522525665
],
[
-1.828532904678266,
-1.8637310665794218,
-1.8961353627771134,
-1.9254176733343438,
-1.9512581669727942,
-1.9733517586179814,
-1.991414918889805,
-2.0051925666614046,
-2.014464732220488,
-2.019052663570579,
-2.0188240680332177,
-2.0136972345801714,
-2.0036438601915947,
-1.9886904902540492,
-1.9689185601040304,
-1.9444630771528928,
-1.9155100057476775,
-1.8822924206534908,
-1.8450855045848147,
-1.8042005071342564,
-1.7599778646302333,
-1.71277977940357,
-1.6629826291356973,
-1.61096958834215,
-1.5571237911409812,
-1.5018222705709312,
-1.445430805865839,
-1.3882997182418393,
-1.330760588247459,
-1.2731238242410834,
-1.2156769879389389,
-1.158683773793175,
-1.1023835393151327,
-1.0469912895726874,
-0.9926980282871735,
-0.9396713984484225,
-0.8880565460231815,
-0.8379771504724753,
-0.7895365750450076,
-0.7428190980061189,
-0.6978911930553793,
-0.6548028332209517,
-0.6135887975828225,
-0.5742699643806621,
-0.5368545775239377,
-0.5013394763591004,
-0.4677112808685202,
-0.4359475263742223,
-0.4060177433776757,
-0.37788447945256687
],
[
-1.7558715906795568,
-1.7887700332593524,
-1.8189850530883978,
-1.8462140651652557,
-1.8701633070370236,
-1.8905536102352918,
-1.907126416424598,
-1.9196498102868753,
-1.9279243122383733,
-1.9317881676856543,
-1.9311218889712674,
-1.9258518495602208,
-1.9159527898297464,
-1.901449158062417,
-1.8824152655937563,
-1.8589742715207263,
-1.8312960283101334,
-1.7995938250476367,
-1.7641200794075236,
-1.7251610715692596,
-1.6830308869431254,
-1.6380648203314656,
-1.5906125585086173,
-1.5410314743387548,
-1.4896803288366696,
-1.4369136041789439,
-1.3830766045602356,
-1.3285013825302205,
-1.2735034863617516,
-1.2183794813875717,
-1.16340517278391,
-1.108834444973216,
-1.054898629686849,
-1.001806317504095,
-0.9497435339393303,
-0.8988742091853473,
-0.849340879303754,
-0.801265565256819,
-0.7547507842623182,
-0.7098806552867751,
-0.6667220669695597,
-0.6253258818772471,
-0.5857281557666678,
-0.5479513545607726,
-0.5120055551051035,
-0.4778896185690169,
-0.4455923276768454,
-0.4150934808831257,
-0.386364938214913,
-0.35937161485365543
],
[
-1.68327035428911,
-1.713927725542394,
-1.74201367853174,
-1.7672497401767298,
-1.7893665698645282,
-1.8081091064748236,
-1.8232418799544599,
-1.834554295290763,
-1.8418656779765499,
-1.8450298688509037,
-1.843939174087936,
-1.838527510842669,
-1.828772634472903,
-1.8146973803629705,
-1.7963698928654879,
-1.7739028395692729,
-1.7474516214514138,
-1.7172115972647772,
-1.6834143583606105,
-1.6463231307124488,
-1.6062274450397362,
-1.5634372881841014,
-1.518277004205144,
-1.4710792316185826,
-1.4221791389196936,
-1.371909164664614,
-1.3205943987132218,
-1.2685486737379965,
-1.2160713804240033,
-1.1634449792675592,
-1.110933155720597,
-1.0587795509277251,
-1.0072069943844038,
-0.9564171647803078,
-0.9065906089357589,
-0.857887054519161,
-0.8104459590444759,
-0.7643872447485391,
-0.7198121758597764,
-0.6768043412054865,
-0.6354307109123498,
-0.595742741074627,
-0.5577775047000257,
-0.5215588310369865,
-0.4870984386037367,
-0.45439704995357233,
-0.4234454784976045,
-0.3942256796366108,
-0.3667117600896015,
-0.340870940700988
],
[
-1.611050231290939,
-1.6395338188634712,
-1.6655586294700424,
-1.6888688511468721,
-1.709217934363129,
-1.726373175527463,
-1.7401204059038098,
-1.7502686246209194,
-1.7566544026116342,
-1.759145885963651,
-1.757646242784096,
-1.7520964250039452,
-1.7424771506486136,
-1.7288100464117169,
-1.7111579186075994,
-1.6896241392634028,
-1.6643511448241237,
-1.6355180549558797,
-1.603337438762615,
-1.5680512934267072,
-1.5299263550238051,
-1.4892489210274371,
-1.4463194104474866,
-1.4014469054457421,
-1.354943903084922,
-1.3071214642886182,
-1.2582848918932212,
-1.2087300134160919,
-1.1587400953795135,
-1.1085833785508912,
-1.0585111976065726,
-1.0087566329170292,
-0.9595336341459029,
-0.9110365529670699,
-0.8634400235987443,
-0.8168991336115432,
-0.7715498325481565,
-0.727509531559942,
-0.6848778530232325,
-0.6437374946248295,
-0.6041551775133853,
-0.5661826527049751,
-0.529857743978831,
-0.49520540901618637,
-0.46223880356351654,
-0.43096033599540307,
-0.40136270187255807,
-0.37342988999399607,
-0.34713815308223994,
-0.32245693765983896
],
[
-1.5395036357417666,
-1.565887608524141,
-1.5899252609549754,
-1.6113819955666973,
-1.6300324655877103,
-1.6456646531125538,
-1.6580840096135376,
-1.6671175236408322,
-1.6726175732815338,
-1.6744654239312857,
-1.6725742450450183,
-1.666891540694107,
-1.6574009141506618,
-1.644123111674841,
-1.627116311139083,
-1.6064756353865457,
-1.582331880298579,
-1.5548494591546618,
-1.5242235852975181,
-1.490676749192577,
-1.4544545920519174,
-1.4158213270821034,
-1.3750548978174002,
-1.3324420797739145,
-1.2882737228511747,
-1.242840301543517,
-1.196427897041033,
-1.1493146892737167,
-1.1017679950902446,
-1.0540418549411261,
-1.0063751457163372,
-0.9589901810673236,
-0.9120917511215564,
-0.8658665493051987,
-0.8204829335116566,
-0.7760909708515629,
-0.7328227187374825,
-0.6907926993905376,
-0.6500985295079307,
-0.6108216714614387,
-0.5730282767942614,
-0.5367700968238698,
-0.5020854387868723,
-0.46900014916849275,
-0.43752860866509247,
-0.40767472567046403,
-0.3794329173005395,
-0.3527890688227244,
-0.3277214639764867,
-0.30420168009789017
],
[
-1.4688944537144215,
-1.4932583103583392,
-1.5153874027153327,
-1.535066929069624,
-1.5520912173664696,
-1.566267352314117,
-1.577418833862851,
-1.5853891538514782,
-1.5900451732750034,
-1.5912801860117531,
-1.5890165655255126,
-1.5832079072428602,
-1.5738405981347208,
-1.560934763284143,
-1.5445445544064056,
-1.5247577567950232,
-1.5016947010022026,
-1.4755064780248184,
-1.4463724767339712,
-1.414497292454064,
-1.380107094038553,
-1.343445576546726,
-1.3047696581246964,
-1.2643450948330872,
-1.2224421826659995,
-1.179331694186502,
-1.1352811641896743,
-1.0905516017225165,
-1.0453946705076294,
-1.0000503499542202,
-0.9547450659598345,
-0.9096902645493373,
-0.8650813911707917,
-0.821097232968865,
-0.7778995793866128,
-0.7356331569581964,
-0.6944257962984708,
-0.6543887924168539,
-0.6156174230994749,
-0.5781915938740199,
-0.54217658176804,
-0.5076238535530198,
-0.4745719373577064,
-0.44304732940731273,
-0.4130654202025985,
-0.3846314267174531,
-0.357741319196758,
-0.3323827329122111,
-0.3085358568148846,
-0.286174292436737
],
[
-1.3994585207821826,
-1.4218857297734333,
-1.4421882170133622,
-1.4601696024641442,
-1.4756424322816613,
-1.4884314045564537,
-1.4983766044528855,
-1.5053366537843547,
-1.5091916775524505,
-1.509845993238035,
-1.5072304371250858,
-1.501304254214916,
-1.492056492265018,
-1.4795068540184446,
-1.463705973336968,
-1.4447350907125576,
-1.4227051132759945,
-1.3977550570653967,
-1.3700498881114682,
-1.3397778051913565,
-1.307147038994842,
-1.2723822747035967,
-1.2357208307202074,
-1.197408739626712,
-1.1576968757698092,
-1.1168372584158304,
-1.0750796343332232,
-1.0326684141508853,
-0.9898400075489361,
-0.9468205764579404,
-0.9038242045860042,
-0.8610514661232147,
-0.818688365965079,
-0.7769056174487179,
-0.7358582204997253,
-0.6956853023905434,
-0.6565101842803407,
-0.6184406387524835,
-0.581569306235564,
-0.5459742411556356,
-0.5117195616882488,
-0.4788561799083757,
-0.4474225918856616,
-0.41744570979823314,
-0.3889417204303316,
-0.36191695648634936,
-0.33636876901568735,
-0.31228639092415045,
-0.2896517830701859,
-0.2684404558286628
],
[
-1.3314044009289834,
-1.3519812149835213,
-1.3705413201681007,
-1.3869054399882939,
-1.4009029601156544,
-1.41237479768372,
-1.421176264591993,
-1.4271798449420274,
-1.4302778053135536,
-1.4303845594685862,
-1.4274387157148782,
-1.4214047444423754,
-1.412274213797452,
-1.4000665517027948,
-1.3848293017019508,
-1.3666378486975694,
-1.345594600006399,
-1.3218276194582388,
-1.295488729478821,
-1.266751118758925,
-1.2358065194922503,
-1.2028620443420217,
-1.1681367943050531,
-1.1318583602273429,
-1.0942593408119712,
-1.055573989169595,
-1.0160350810604868,
-0.9758710747197269,
-0.9353036081365771,
-0.8945453575796763,
-0.8537982626099632,
-0.8132521084080908,
-0.7730834458771669,
-0.7334548231815634,
-0.694514298499044,
-0.6563952021258035,
-0.6192161160718122,
-0.5830810404010907,
-0.5480797173961232,
-0.5142880868439208,
-0.4817688481261788,
-0.45057210719317986,
-0.4207360888139866,
-0.392287896671192,
-0.3652443058852697,
-0.3396125744102403,
-0.31539126144831386,
-0.29257104260120603,
-0.27113551292476723,
-0.2510619703930077
],
[
-1.264914397196026,
-1.2837288245243643,
-1.3006320990435185,
-1.3154607926000539,
-1.3280598321556836,
-1.3382850528268615,
-1.3460057343243306,
-1.3511070533517926,
-1.3534923837360258,
-1.3530853784735617,
-1.3498317730237577,
-1.343700856213449,
-1.3346865630413223,
-1.322808151630697,
-1.3081104342270284,
-1.2906635398627735,
-1.2705621952370492,
-1.2479245219648432,
-1.2228903638041446,
-1.1956191768439335,
-1.1662875374353492,
-1.1350863439294552,
-1.102217805455913,
-1.067892320942509,
-1.0323253527212883,
-0.995734391650055,
-0.9583360965309453,
-0.9203436724138373,
-0.8819645328675128,
-0.8433982727083162,
-0.8048349614544297,
-0.7664537546395649,
-0.7284218102101332,
-0.690893490305686,
-0.6540098243483423,
-0.6178982070379728,
-0.5826723040735557,
-0.548432138759039,
-0.5152643337400737,
-0.4832424836686342,
-0.45242763639137973,
-0.4228688621527634,
-0.39460389219618874,
-0.36765980997724745,
-0.34205377994272723,
-0.317793800467987,
-0.29487946908506646,
-0.27330274958086465,
-0.2530487319065964,
-0.23409637712161335
],
[
-1.2001457357638512,
-1.2172866515007985,
-1.2326191667388464,
-1.2459945131833776,
-1.257271941465294,
-1.2663209936384512,
-1.2730237519137726,
-1.2772770064354324,
-1.2789942844639977,
-1.2781076852871247,
-1.2745694691487257,
-1.2683533538658995,
-1.2594554789258434,
-1.2478950032238147,
-1.2337143091022766,
-1.2169787923718647,
-1.1977762263664804,
-1.1762156987842887,
-1.1524261337386845,
-1.1265544279174058,
-1.0987632477654534,
-1.0692285519587656,
-1.0381369175036117,
-1.0056827563218547,
-0.9720655109164297,
-0.9374869127099723,
-0.902148376119785,
-0.8662485872801291,
-0.829981330607116,
-0.7935335809090254,
-0.7570838747568034,
-0.7208009630810608,
-0.6848427377227719,
-0.6493554178708252,
-0.6144729777044191,
-0.5803167937598361,
-0.5469954891749071,
-0.514604951669206,
-0.4832285025809957,
-0.45293719524688214,
-0.42379022228032825,
-0.395835412737088,
-0.3691098016513483,
-0.3436402559247642,
-0.31944414201783267,
-0.296530022313066,
-0.27489836838727255,
-0.2545422807462019,
-0.23544820583943316,
-0.2175966423866298
],
[
-1.13723187511054,
-1.1527882574617994,
-1.166635912332051,
-1.178639610979975,
-1.188671789138088,
-1.1966145705679265,
-1.2023617621590628,
-1.205820771835974,
-1.206914400279726,
-1.2055824590273345,
-1.2017831705860778,
-1.1954943103710107,
-1.1867140551173723,
-1.1754615076607418,
-1.1617768736246847,
-1.1457212719496201,
-1.1273761689301711,
-1.106842435120475,
-1.0842390364351262,
-1.0597013847309573,
-1.0333793880649678,
-1.0054352550191785,
-0.9760411190469473,
-0.9453765560661278,
-0.9136260705413973,
-0.880976622011953,
-0.8476152562231214,
-0.8137268940596001,
-0.7794923188919358,
-0.7450863901484692,
-0.7106764990016257,
-0.6764212717071498,
-0.6424695176942572,
-0.608959413024851,
-0.5760179051834571,
-0.5437603220806357,
-0.5122901663621755,
-0.4816990753256989,
-0.45206692669334214,
-0.42346207095288735,
-0.39594167178378736,
-0.3695521370977828,
-0.34432962435324943,
-0.32030060498797597,
-0.29748247402002503,
-0.2758841920714803,
-0.2555069482648624,
-0.23634483362207193,
-0.2183855157562924,
-0.2016109067832199
],
[
-1.0762839003807398,
-1.0903441774891591,
-1.1027921081541372,
-1.1135049508675365,
-1.1223672643254554,
-1.1292727099338393,
-1.1341258229337223,
-1.1368437104198719,
-1.1373576343648746,
-1.1356144389901495,
-1.1315777842310832,
-1.1252291503400982,
-1.116568582599834,
-1.1056151495403037,
-1.0924070930330552,
-1.077001654446704,
-1.0594745680998394,
-1.0399192219126787,
-1.0184454955547704,
-0.9951782981869486,
-0.9702558402560261,
-0.9438276854588743,
-0.9160526385323872,
-0.8870965307186731,
-0.8571299668611598,
-0.8263260960096059,
-0.7948584616669412,
-0.7628989793506122,
-0.7306160791084948,
-0.6981730401270447,
-0.6657265345010468,
-0.6334253882299288,
-0.6014095599205724,
-0.5698093316336983,
-0.5387447017641962,
-0.508324966640938,
-0.47864847546065725,
-0.4498025420089997,
-0.42186349615695296,
-0.39489685816621845,
-0.3689576192396027,
-0.3440906123956142,
-0.3203309585445584,
-0.2977045735400352,
-0.2762287229378959,
-0.2559126121930999,
-0.23675800104996014,
-0.21875983192435489,
-0.2019068631286891,
-0.18618229884281057
],
[
-1.0173919702558256,
-1.0300434652557393,
-1.0411755450655105,
-1.0506769697548293,
-1.0584434320123708,
-1.064379163200214,
-1.068398506371123,
-1.0704274203622361,
-1.0704048789678184,
-1.0682841301704022,
-1.064033782322848,
-1.0576386868381953,
-1.0491005902081736,
-1.0384385319774156,
-1.0256889697287157,
-1.0109056173946285,
-0.9941589895718593,
-0.9755356521863329,
-0.9551371888378932,
-0.9330789021206154,
-0.9094882794840121,
-0.8845032628125041,
-0.8582703688004305,
-0.8309427124739763,
-0.8026779882881891,
-0.7736364619941838,
-0.7439790222626301,
-0.7138653345380288,
-0.68345213163028,
-0.6528916669787757,
-0.6223303480877038,
-0.5919075598777572,
-0.5617546809751963,
-0.5319942904245061,
-0.5027395579809826,
-0.47409380793041,
-0.44615024415095084,
-0.4189918227096441,
-0.39269125750437994,
-0.36731114416798016,
-0.3429041875163916,
-0.3195135181454325,
-0.2971730842854736,
-0.27590810565858503,
-0.2557355768127423,
-0.23666480821146596,
-0.2186979942185301,
-0.20183079802531378,
-0.18605294451072996,
-0.17134881298846816
],
[
-0.9606267895948354,
-0.9719552527039285,
-0.9818536718854716,
-0.9902213877276559,
-0.9969643075033303,
-1.0019963364703715,
-1.0052407753894712,
-1.0066316532672075,
-1.0061149642534017,
-1.0036497784095524,
-0.9992091976187872,
-0.992781130111837,
-0.9843688598547856,
-0.9739913903694708,
-0.9616835465133149,
-0.9474958224824315,
-0.9314939699913376,
-0.9137583273238647,
-0.8943828976795646,
-0.8734741936561723,
-0.851149873262075,
-0.827537200808351,
-0.8027713725977936,
-0.7769937518216865,
-0.7503500590539889,
-0.7229885640831109,
-0.6950583217595345,
-0.666707489538408,
-0.6380817580859381,
-0.6093229193536165,
-0.5805675894985445,
-0.5519460974078876,
-0.5235815436906694,
-0.4955890300035284,
-0.4680750545350896,
-0.44113706634952,
-0.4148631689934208,
-0.38933196217939736,
-0.36461250934527545,
-0.34076441832802296,
-0.31783802218012913,
-0.29587464720805956,
-0.27490695556306366,
-0.2549593501175509,
-0.2360484298844523,
-0.21818348486011652,
-0.20136701987836858,
-0.18559529784019713,
-0.17085889351717265,
-0.1571432500016805
],
[
-0.906041086091059,
-0.9161303038418193,
-0.9248752197595832,
-0.9321848959459647,
-0.9379746006622838,
-0.9421670840321695,
-0.9446938198734338,
-0.9454961867959245,
-0.944526561648208,
-0.9417492990471098,
-0.9371415720153663,
-0.9306940506168222,
-0.9224113978740218,
-0.9123125651879153,
-0.9004308730179934,
-0.8868138668274934,
-0.8715229433512719,
-0.854632748136561,
-0.8362303519423737,
-0.816414220693332,
-0.7952930008262469,
-0.7729841484779407,
-0.749612436443647,
-0.7253083766678312,
-0.7002065978727585,
-0.674444217679389,
-0.6481592463672416,
-0.6214890555919665,
-0.5945689403935517,
-0.5675307971878942,
-0.5405019346127165,
-0.5136040284854433,
-0.4869522270089419,
-0.4606544079048267,
-0.4348105854385589,
-0.4095124623259103,
-0.3848431192238613,
-0.3608768328262655,
-0.3376790124106199,
-0.31530624392196005,
-0.2938064302488739,
-0.2732190161756878,
-0.25357528652954997,
-0.2348987262430211,
-0.21720543139335424,
-0.20050456073952505,
-0.1847988178415656,
-0.1700849544994636,
-0.15635428697637876,
-0.1435932172563259
],
[
-0.8536710733249382,
-0.8626025461490485,
-0.8702717960531134,
-0.8765968068802314,
-0.8815014163285688,
-0.8849164529927708,
-0.8867808399217963,
-0.8870426413354444,
-0.8856600291118196,
-0.8826021462117009,
-0.8778498453046542,
-0.8713962824695867,
-0.8632473479414806,
-0.8534219184835878,
-0.8419519191290628,
-0.8288821858251032,
-0.8142701249768125,
-0.7981851710181516,
-0.7807080488252027,
-0.7619298537984616,
-0.7419509684215597,
-0.7208798396164868,
-0.698831645805835,
-0.6759268858660976,
-0.6522899238476607,
-0.6280475233533829,
-0.6033274038948504,
-0.5782568486224071,
-0.5529613888936147,
-0.5275635865898649,
-0.5021819302861084,
-0.4769298566451621,
-0.45191490399187684,
-0.4272380010855348,
-0.40299289073737277,
-0.37926568513579406,
-0.3561345475199027,
-0.3336694931289035,
-0.31193230108176984,
-0.29097652793826767,
-0.27084761309324645,
-0.25158306580644063,
-0.23321272352640454,
-0.21575907119768534,
-0.19923761142147467,
-0.18365727565402024,
-0.16902086705979413,
-0.15532552617322248,
-0.1425632111486208,
-0.13072118507560093
],
[
-0.8035378860352358,
-0.8113905663892493,
-0.818059435500005,
-0.8234706554475466,
-0.8275559001509121,
-0.8302533687466744,
-0.8315087662145668,
-0.831276230887048,
-0.8295191884737156,
-0.8262111127164771,
-0.8213361737470048,
-0.8148897566270064,
-0.8068788344098152,
-0.7973221823872039,
-0.7862504230123093,
-0.7737058943576622,
-0.7597423388948348,
-0.7444244138362486,
-0.7278270291515456,
-0.7100345244596036,
-0.6911397010188007,
-0.6712427296521235,
-0.6504499593019766,
-0.6288726537100904,
-0.6066256852541352,
-0.5838262151627767,
-0.5605923882295538,
-0.5370420679211476,
-0.513291634681353,
-0.4894548665616345,
-0.46564191735632154,
-0.4419584034470678,
-0.41850460677577583,
-0.39537479791474794,
-0.3726566801748117,
-0.35043095312106587,
-0.32877099174760005,
-0.30774263586540207,
-0.28740408293555686,
-0.26780587658188426,
-0.24899098229539018,
-0.23099494135471432,
-0.21384609369978058,
-0.19756586038397694,
-0.1821690762751933,
-0.16766436386268802,
-0.15405453934200408,
-0.14133704258067192,
-0.1295043830974938,
-0.11854459480105528
],
[
-0.7556489763012513,
-0.7624990603733002,
-0.7682400989478784,
-0.7728057420870276,
-0.7761348214497132,
-0.7781722533117814,
-0.778869909810288,
-0.778187440621362,
-0.7760930272988547,
-0.7725640529374656,
-0.7675876706702078,
-0.761161255759945,
-0.7532927277009209,
-0.744000730823505,
-0.7333146644168242,
-0.7212745563680858,
-0.7079307777619246,
-0.6933435997430799,
-0.6775825981175216,
-0.6607259154813729,
-0.6428593948944317,
-0.6240756029901977,
-0.6044727636685137,
-0.5841536259169524,
-0.5632242906915754,
-0.5417930220873344,
-0.5199690672748793,
-0.4978615079946962,
-0.47557816396823105,
-0.4532245656334304,
-0.43090301036828893,
-0.4087117130423312,
-0.38674405850698523,
-0.36508796063086946,
-0.343825329788753,
-0.32303164836506926,
-0.3027756518429767,
-0.28311911140349144,
-0.2641167126272155,
-0.24581602383948375,
-0.2282575468336978,
-0.2114748421175432,
-0.19549472042739313,
-0.18033749202982952,
-0.16601726526018767,
-0.15254228582545948,
-0.139915308610725,
-0.12813399406240733,
-0.1171913216630669,
-0.10707601354471485
],
[
-0.7099994617313403,
-0.7159202285114041,
-0.7208031122216092,
-0.7245886108934272,
-0.7272220867145542,
-0.7286545705111123,
-0.7288435356057139,
-0.7277536254809931,
-0.7253573197193142,
-0.721635523090576,
-0.7165780634200316,
-0.7101840849867807,
-0.7024623256858602,
-0.6934312680442141,
-0.6831191564254997,
-0.6715638753957318,
-0.6588126872357456,
-0.6449218299276263,
-0.6299559805157824,
-0.613987592406789,
-0.5970961187408403,
-0.579367137233151,
-0.5608913946371328,
-0.5417637910420816,
-0.5220823254593836,
-0.5019470245144528,
-0.48145887556502087,
-0.4607187842951206,
-0.4398265749277974,
-0.418880048828254,
-0.3979741146124851,
-0.3772000001039566,
-0.35664455373669357,
-0.33638964039970687,
-0.31651163433100304,
-0.29708100954415895,
-0.278162026423437,
-0.2598125115517125,
-0.24208372652399102,
-0.2250203204261778,
-0.20866035980167963,
-0.19303542926693096,
-0.17817079545418935,
-0.16408562664313098,
-0.15079326028152829,
-0.13830151058046902,
-0.12661300849201118,
-0.11572556662530209,
-0.10563256201779869,
-0.09632333013457872
],
[
-0.6665734187715444,
-0.6716351109173915,
-0.6757265394613541,
-0.6787944576796916,
-0.6807901790322721,
-0.6816702936254349,
-0.6813973553216859,
-0.6799405258501932,
-0.6772761623345602,
-0.6733883350289465,
-0.6682692627431828,
-0.6619196544446344,
-0.6543489468550014,
-0.6455754295202791,
-0.635626250827213,
-0.6245373007648611,
-0.6123529688630427,
-0.5991257786295476,
-0.5849159028711086,
-0.5697905673994581,
-0.5538233536446018,
-0.5370934134579932,
-0.5196846117255554,
-0.5016846141837408,
-0.4831839389404611,
-0.46427499059832034,
-0.4450510955689748,
-0.4256055562155212,
-0.4060307399679428,
-0.3864172176545424,
-0.36685296311953586,
-0.34742262388894773,
-0.32820687032168205,
-0.3092818284356027,
-0.29071859949808254,
-0.27258286756028616,
-0.25493459441629795,
-0.2378277999873346,
-0.2213104248623614,
-0.20542427065774738,
-0.19020501297732317,
-0.1756822810477474,
-0.1618797975625048,
-0.148815571883123,
-0.13650213951169055,
-0.12494684065837935,
-0.11415213077376318,
-0.10411591608872683,
-0.09483190749212222,
-0.08628998646290875
],
[
-0.6253451159495917,
-0.6296148574502898,
-0.6329784868368018,
-0.6353884643197725,
-0.6368015201711528,
-0.6371792925399287,
-0.6364889372626266,
-0.6347036976962492,
-0.6318034226826048,
-0.6277750211062207,
-0.6226128421376946,
-0.6163189711648971,
-0.608903432609398,
-0.6003842923087661,
-0.5907876539157522,
-0.5801475458125513,
-0.5685056973360547,
-0.555911205609879,
-0.542420096906638,
-0.52809478912005,
-0.5130034644902266,
-0.49721936406642864,
-0.4808200173816819,
-0.46388642234240685,
-0.4465021913239444,
-0.4287526798693513,
-0.4107241142170104,
-0.39250273317601114,
-0.37417395870359194,
-0.35582160801467166,
-0.33752715827844826,
-0.31936907303830364,
-0.3014221975250395,
-0.28375722809986237,
-0.2664402592227535,
-0.2495324096346394,
-0.23308952789266102,
-0.21716197601685283,
-0.2017944887959724,
-0.18702610525546248,
-0.17289016790671186,
-0.15941438466723734,
-0.14662094776203993,
-0.13452670348306528,
-0.12314336639351864,
-0.1124777714127072,
-0.10253215719945685,
-0.0933044743603404,
-0.08478871223110596,
-0.07697523830248643
],
[
-0.586280183308955,
-0.5898219294502018,
-0.5925183338486564,
-0.5943270569783827,
-0.5952097532608756,
-0.5951326385941194,
-0.5940670312683585,
-0.5919898557559129,
-0.5888840989596618,
-0.5847392088392043,
-0.5795514259115335,
-0.5733240389474608,
-0.5660675572591933,
-0.5577997932984182,
-0.5485458508531995,
-0.5383380159321887,
-0.5272155494283579,
-0.5152243828172203,
-0.5024167204011738,
-0.4888505538799275,
-0.4745890972085849,
-0.45970015169602885,
-0.44425541299584403,
-0.4283297329626796,
-0.4120003502255465,
-0.39534610373233336,
-0.3784466434468343,
-0.36138165186081816,
-0.34423008907703245,
-0.3270694729987389,
-0.3099752047120623,
-0.29301994755363614,
-0.2762730666956865,
-0.25980013442045524,
-0.2436625046474814,
-0.22791695875847595,
-0.21261542335996375,
-0.19780475934709907,
-0.18352662048979784,
-0.1698173787563293,
-0.15670811271949847,
-0.1442246546560053,
-0.13238769134975348,
-0.1212129131448556,
-0.1107112054634165,
-0.1008888768047802,
-0.0917479171736344,
-0.08328628093697898,
-0.07549818827536514,
-0.06837443965871559
],
[
-0.5493367155083548,
-0.5522112310883109,
-0.5542978905383424,
-0.5555590869000335,
-0.5559609450387049,
-0.5554738263510755,
-0.5540728082695339,
-0.5517381293265395,
-0.5484555906521971,
-0.5442169050957342,
-0.5390199856923119,
-0.5328691659442886,
-0.5257753453509315,
-0.5177560548015607,
-0.5088354378359585,
-0.4990441453575558,
-0.48841914313182744,
-0.47700343327406824,
-0.46484569287163224,
-0.45199983482650574,
-0.43852449786540015,
-0.42448247436316255,
-0.4099400860807074,
-0.3949665190621736,
-0.379633129716594,
-0.3640127344991606,
-0.34817889560415316,
-0.3322052147068233,
-0.31616464608776074,
-0.30012883949711977,
-0.28416752193307215,
-0.26834792618524994,
-0.2527342725930781,
-0.23738730904511063,
-0.22236391284347667,
-0.20771675671117595,
-0.19349403995269965,
-0.1797392846062249,
-0.1664911953577699,
-0.1537835810303405,
-0.1416453346177553,
-0.13010046810709452,
-0.11916819772805254,
-0.10886307478462887,
-0.09919515686658653,
-0.09017021400451641,
-0.08178996422170193,
-0.07405233294248004,
-0.06695173083267192,
-0.06047934486133055
],
[
-0.514466307098514,
-0.5167311692385372,
-0.5182624798705,
-0.5190269333354385,
-0.5189947075084109,
-0.5181399123559238,
-0.5164410146976608,
-0.5138812310533998,
-0.5104488805749747,
-0.5061376903643995,
-0.5009470459674445,
-0.494882180509572,
-0.48795429680785385,
-0.4801806178448105,
-0.4715843622185665,
-0.46219464257262777,
-0.4520462865316208,
-0.4411795812905024,
-0.4296399446762915,
-0.41747752716541164,
-0.4047467509319067,
-0.39150579345485825,
-0.37781602446337703,
-0.3637414059894504,
-0.3493478659921079,
-0.3347026563874076,
-0.31987370636422097,
-0.3049289816008276,
-0.2899358594530239,
-0.2749605294041131,
-0.26006742710123687,
-0.24531870920333687,
-0.23077377508392005,
-0.2164888402118308,
-0.20251656481310532,
-0.18890574022627726,
-0.17570103422502537,
-0.1629427955116487,
-0.1506669165942336,
-0.1389047533580161,
-0.12768309883415552,
-0.11702420796279056,
-0.10694586954711038,
-0.09746152110639117,
-0.08858040196129124,
-0.08030773962671178,
-0.07264496444458701,
-0.06558994735799994,
-0.059137255801474,
-0.05327842285073836
],
[
-0.4816150193687656,
-0.4833246416171235,
-0.4843519453537042,
-0.484667528952327,
-0.48424523960163524,
-0.48306257167786004,
-0.48110104271121323,
-0.4783465398067912,
-0.47478962950602854,
-0.4704258243599937,
-0.46525579993461674,
-0.45928555658183234,
-0.45252652108866154,
-0.4449955842530524,
-0.4367150715214052,
-0.4277126450417432,
-0.4180211368149611,
-0.40767831403181054,
-0.396726579124997,
-0.38521260849564065,
-0.37318693523860014,
-0.3607034824377,
-0.3478190546783513,
-0.33459279628743444,
-0.32108562542544195,
-0.3073596535049341,
-0.2934775994874723,
-0.27950220842943096,
-0.26549568322785766,
-0.251519137894207,
-0.23763207989458368,
-0.22389192818162362,
-0.21035357254540288,
-0.1970689788654154,
-0.18408684378470652,
-0.17145230127637423,
-0.15920668255300097,
-0.1473873297965993,
-0.13602746327359916,
-0.12515610055567028,
-0.11479802580213905,
-0.10497380638076104,
-0.09569985351816146,
-0.08698852318525829,
-0.07884825304156373,
-0.07128373098810714,
-0.064296090712324,
-0.05788312954677122,
-0.05203954400177868,
-0.04675717846069016
]
],
"zauto": true,
"zmax": 3.0625713182700673,
"zmin": -3.0625713182700673
},
{
"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.20136469810316102,
0.18661473520192545,
0.17292392423399103,
0.16033476554160145,
0.14886142155310705,
0.13850233115191515,
0.1292630128571684,
0.12118749649217246,
0.11439280941953806,
0.10909550337270388,
0.1056130857258847,
0.10432145113535778,
0.10556344415039154,
0.10953878772744752,
0.11623507291125203,
0.12543973813969053,
0.13681448930059392,
0.14998040538055124,
0.16457750346170033,
0.18029251000805094,
0.19686444910175768,
0.2140792001824182,
0.23176044299822526,
0.24976074177084082,
0.2679542304507726,
0.28623119782420053,
0.3044943705896271,
0.3226565284496475,
0.3406390761025384,
0.3583712504968129,
0.37578971318459464,
0.3928383466366228,
0.40946813172354374,
0.4256370290750215,
0.44130982044442696,
0.456457889463166,
0.47105893648215924,
0.4850966316297551,
0.4985602154883687,
0.5114440592515282,
0.5237471968667625,
0.5354728412071883,
0.5466278952310918,
0.5572224677034159,
0.5672694015671096,
0.5767838215859954,
0.5857827065010491,
0.5942844896814682,
0.6023086911228556,
0.6098755826476602
],
[
0.18638111712650074,
0.17146721931200098,
0.15777561356290848,
0.14535040954405862,
0.1341888516162645,
0.124251908720583,
0.11548973842442609,
0.10788130204714645,
0.1014819774810752,
0.09646616940282128,
0.09314363382333345,
0.09192266096487955,
0.09320585004357473,
0.09724999764786235,
0.1040703949709158,
0.11345013949211215,
0.12503132880056367,
0.13841697438964534,
0.15323748458438752,
0.16917772077902343,
0.18597928586317897,
0.2034320918490131,
0.2213634297505003,
0.23962817230664582,
0.2581012349183134,
0.2766722997747916,
0.29524240063204604,
0.3137218812158291,
0.33202928667976556,
0.3500908365773791,
0.36784022051161597,
0.3852185382894552,
0.40217427024710867,
0.418663210699073,
0.4346483305946605,
0.4500995574399036,
0.46499347423127246,
0.47931294697656696,
0.4930466942473867,
0.506188813524216,
0.5187382788556489,
0.5306984232350027,
0.5420764175425091,
0.5528827561857806,
0.5631307578586796,
0.5728360882189837,
0.5820163098016687,
0.5906904631531269,
0.5988786819924279,
0.6066018441714468
],
[
0.17196815227317386,
0.15688147768646768,
0.143211196340838,
0.1310148205780702,
0.12027977508846915,
0.11092865366581485,
0.10284605293051897,
0.09592780198496474,
0.0901449609707663,
0.08560612713176256,
0.08259231155074093,
0.08153029743238406,
0.0828795993164755,
0.08696192970173668,
0.09383359531148437,
0.1032872088053709,
0.11495763969026668,
0.12843995477566938,
0.14336228479665658,
0.1594121515121889,
0.17633596855033454,
0.19392832785861183,
0.2120198337150829,
0.23046689444375307,
0.24914426418308222,
0.26794008431076,
0.2867528614959211,
0.3054898059822225,
0.3240660465666866,
0.34240435594265517,
0.3604351286256931,
0.378096442183546,
0.3953340992122345,
0.41210159483416703,
0.4283599862468162,
0.44407766091000894,
0.45923001170428807,
0.47379903350190705,
0.48777285806027854,
0.5011452443878268,
0.5139150407019284,
0.5260856324201852,
0.5376643886867176,
0.5486621179619633,
0.5590925413221897,
0.5689717903837984,
0.5783179352096874,
0.5871505461717612,
0.59549029252594,
0.6033585793905546
],
[
0.15826290227706102,
0.14295966717852998,
0.12929296861721462,
0.11735130640125616,
0.10712526559768162,
0.09850158504505799,
0.09128882549595047,
0.08527898328567776,
0.08033392931539865,
0.07647254301634472,
0.07392646592592703,
0.0731253368558036,
0.07457841780958807,
0.07867640732418694,
0.08552972325566044,
0.09495693542706707,
0.10660073656992372,
0.12005958190918528,
0.13496652501539474,
0.15101552535348373,
0.1679592410416256,
0.18559700108257376,
0.20376209281475774,
0.2223115707788279,
0.24111911821647755,
0.260070523475473,
0.27906109682013674,
0.29799439368154923,
0.31678173762204526,
0.3353421738935974,
0.35360260388395626,
0.3714979438648515,
0.3889712189949599,
0.4059735496345845,
0.42246401667734645,
0.43840941039353687,
0.45378387696364303,
0.4685684812938772,
0.4827507058693358,
0.4963239046876256,
0.5092867296184848,
0.521642544406233,
0.5333988392974626,
0.5445666571143033,
0.5551600395912275,
0.5651955009844271,
0.5746915343516719,
0.583668154477171,
0.5921464801644074,
0.6001483575235683
],
[
0.14548260117835135,
0.12988478912859427,
0.1161580794676319,
0.10444620951898699,
0.09476410938502064,
0.08697036203933706,
0.08078628208861169,
0.07587493790660398,
0.07196158512158382,
0.06895400775225392,
0.06701960815443915,
0.06657913595487108,
0.06818286149232905,
0.07228916980099435,
0.07907121156392487,
0.0883883157485238,
0.0999058239552254,
0.11323664274788552,
0.12802539228919826,
0.14397568595650306,
0.16084750847244725,
0.17844488379812137,
0.1966032532564262,
0.21517965409848772,
0.2340460742389384,
0.2530854350339936,
0.272189463530006,
0.2912577900853565,
0.3101977570770939,
0.3289245755724332,
0.34736159303665587,
0.3654405303683974,
0.38310161336697474,
0.4002935677243414,
0.4169734737356441,
0.4331064922893722,
0.44866548134309425,
0.4636305249209225,
0.4779883966758298,
0.4917319785428424,
0.504859652776062,
0.5173746831898207,
0.529284598975153,
0.5406005921683127,
0.5513369377623792,
0.5615104435877915,
0.5711399354334322,
0.5802457814187664,
0.5888494583396645,
0.5969731615778392
],
[
0.1339598003904206,
0.11796963916545417,
0.10407951822443759,
0.0925182002972702,
0.0833564331435345,
0.0764402935683603,
0.07139219422092055,
0.06771552166579838,
0.06496961034606567,
0.06293585298920466,
0.06171305784590192,
0.06170965578201721,
0.06350932972968006,
0.06763097513106994,
0.07431121264991321,
0.08345932366393467,
0.09477518452541181,
0.1078957349457174,
0.12248302657394523,
0.1382532144464941,
0.15497469860361285,
0.17245638777946276,
0.19053570322891344,
0.20906940154813453,
0.22792754560405915,
0.24699003660130764,
0.26614494503475206,
0.285287968109009,
0.3043225035562075,
0.3231599890200223,
0.34172028593322157,
0.35993198218562733,
0.37773255281750245,
0.39506835923667544,
0.41189449176908993,
0.42817447328193486,
0.4438798473345976,
0.45898967572286725,
0.47348996930274273,
0.48737307381196776,
0.5006370297627197,
0.5132849227551458,
0.5253242379616772,
0.5367662301454584,
0.5476253184289896,
0.5579185131160113,
0.567664880171803,
0.5768850474620402,
0.5856007555169577,
0.5938344544081662
],
[
0.12417097339092419,
0.10770853010421215,
0.09354256763719675,
0.08201541855449096,
0.07329308890063715,
0.06723462221819798,
0.06335376879839492,
0.060960951097413126,
0.05942430148199665,
0.058395375268955635,
0.057912613221195085,
0.05837623174792214,
0.060396213959335365,
0.06453927609084971,
0.07109851742270448,
0.08003607511225914,
0.09109430178533826,
0.10394145316201357,
0.11826157593154174,
0.13378561513104803,
0.1502912833635461,
0.16759264929415815,
0.1855291725174948,
0.20395735850120286,
0.22274541665342157,
0.24177035614552805,
0.2609167650793193,
0.28007660823998537,
0.2991495457504097,
0.3180434380800053,
0.3366748337663526,
0.3549693302897028,
0.3728617608142037,
0.3902961977068528,
0.40722578521574426,
0.42361242429737367,
0.43942633656232544,
0.45464553450723405,
0.4692552234252705,
0.4832471577222581,
0.49661897142420475,
0.5093734997654963,
0.5215181060446852,
0.5330640254805404,
0.5440257356001943,
0.5544203607270359,
0.564267116384644,
0.5735867978708089,
0.582401315862361,
0.5907332806713063
],
[
0.11673250279873498,
0.09980064280168252,
0.08530606243010515,
0.07371580491450389,
0.06532190410540882,
0.06002426972007324,
0.057226085036205965,
0.05602591139348128,
0.05559761935140494,
0.05547957757379039,
0.05566761060398899,
0.05655789821210546,
0.05877536777856608,
0.06291702005235386,
0.06932128201195356,
0.07800251273322276,
0.08875027750247529,
0.10126859552271356,
0.11526582725547302,
0.13048839451634156,
0.14672325620081939,
0.16378939131922768,
0.1815281204453197,
0.19979566840321258,
0.21845850403120562,
0.23739096454628086,
0.2564744412967647,
0.27559747992456474,
0.2946563136715178,
0.31355551258745096,
0.33220856185010883,
0.3505382743983264,
0.3684770023992549,
0.3859666472395248,
0.40295848658496297,
0.4194128456456564,
0.43529864233966054,
0.4505928353146306,
0.465279801439584,
0.4793506663840242,
0.49280260877772847,
0.5056381554455222,
0.5178644824432843,
0.5294927341129185,
0.5405373701170724,
0.5510155483875108,
0.5609465500996262,
0.5703512511480151,
0.5792516431269722,
0.5876704055025771
],
[
0.11232328994700631,
0.09507830282574528,
0.08035491177162984,
0.06871836047678082,
0.06057129904532714,
0.05585598013862377,
0.053881676473592176,
0.05357105084921757,
0.05395343999848406,
0.05449495934776889,
0.055165872102381656,
0.05635200720583889,
0.05867284316524775,
0.06273440676068012,
0.06890885696839966,
0.07726151410086853,
0.08763180369051292,
0.09976100758638859,
0.11338120378515605,
0.1282525805644644,
0.14416950463963513,
0.1609543942954335,
0.1784494593852249,
0.19651012946398472,
0.2150009734168157,
0.23379374398266536,
0.2527668758358031,
0.27180581421461003,
0.29080370924420657,
0.3096621734372125,
0.3282919289478331,
0.3466132609776408,
0.36455625044819034,
0.38206079174790025,
0.39907641820547607,
0.4155619650908366,
0.43148510156799125,
0.44682176174671523,
0.4615555023495366,
0.4756768113851095,
0.4891823890396552,
0.5020744189694379,
0.5143598453774538,
0.5260496687028808,
0.5371582704314893,
0.5477027754294418,
0.5577024582917564,
0.567178198463491,
0.5761519873238868,
0.5846464890128679
],
[
0.11151009470547127,
0.0942735150158971,
0.0796075800548157,
0.06810685010105533,
0.06019657156589885,
0.05580952384921459,
0.05420745736845511,
0.054259550586238506,
0.05496265638827795,
0.055765659912968044,
0.05661949377369525,
0.05787982281130337,
0.06013319395202376,
0.06397252442523443,
0.06979316735846612,
0.07771011471070456,
0.0876138839427085,
0.09928233004432721,
0.11246820798404174,
0.12694142888331658,
0.14249993256127344,
0.1589665352699782,
0.17618221053070782,
0.19400027882367052,
0.21228272697047518,
0.23089848996034903,
0.24972310547362125,
0.2686391502326041,
0.2875370082226122,
0.3063156776737787,
0.3248834504590364,
0.3431583855745742,
0.3610685533923617,
0.3785520586573677,
0.3955568660610394,
0.41204045881050777,
0.4279693620102707,
0.4433185613832677,
0.45807084532152414,
0.47221609525151703,
0.4857505462200049,
0.4986760366341869,
0.5109992632986882,
0.5227310553017638,
0.5338856779124458,
0.5444801754499319,
0.5545337600661827,
0.5640672515340692,
0.5731025714507687,
0.5816622937460431
],
[
0.11453478152763527,
0.09769161087526697,
0.08343623054877725,
0.0723049981400386,
0.0646318405016743,
0.06027858148572181,
0.058527677605028854,
0.058345395768381755,
0.05881785028408701,
0.05942799051075139,
0.06010868795211997,
0.0611651243931918,
0.06312726691028385,
0.06655719182084936,
0.07186460184310264,
0.07921238889413788,
0.08854268601347835,
0.09966869720874726,
0.11235997723897746,
0.12639083778139118,
0.14155746732445154,
0.15767861251007637,
0.17459068585163975,
0.19214266470535332,
0.2101926138112062,
0.22860597599224905,
0.247255176042874,
0.2660199983119571,
0.28478830510162284,
0.3034568069054902,
0.3219317175107878,
0.3401292131874223,
0.35797566957310617,
0.37540768112991635,
0.39237188428664527,
0.40882461258364544,
0.4247314142373193,
0.4400664619279844,
0.4548118826527813,
0.46895703291821866,
0.48249774176348664,
0.4954355413019719,
0.5077769017406617,
0.5195324852315736,
0.5307164304480925,
0.5413456774730624,
0.5514393404404224,
0.5610181333918035,
0.5701038529968396,
0.5787189201436772
],
[
0.12120913805062679,
0.1050521048291415,
0.09143718101883236,
0.08077791491676177,
0.07326101316822921,
0.06867210753262047,
0.06637006810887376,
0.065499339598923,
0.06530159849832931,
0.06532889641255457,
0.06550464729748748,
0.06607823157853636,
0.06751380774143362,
0.07033412021089272,
0.07495743912356946,
0.081592797059191,
0.0902348533741203,
0.10073219476629222,
0.1128683139854428,
0.12641673615609494,
0.14116595757757602,
0.15692520933740572,
0.1735219962761703,
0.19079782700203557,
0.20860480633841885,
0.2268037069788317,
0.24526328805330602,
0.2638604117804794,
0.2824805544334991,
0.30101842535208795,
0.3193785194046202,
0.33747551129157566,
0.35523445443435464,
0.3725907798425811,
0.3894901085266391,
0.4058879002388741,
0.4217489652580173,
0.43704686683507904,
0.4517632411212658,
0.4658870596604532,
0.47941385728663244,
0.4923449457756319,
0.504686631014101,
0.5164494488640659,
0.5276474323813011,
0.5382974206323786,
0.5484184170773607,
0.5580310033625475,
0.5671568124145905,
0.5758180629538049
],
[
0.13100215221942402,
0.11565053644005835,
0.10271148405571237,
0.09245975985680788,
0.08495056190863208,
0.07992963796436092,
0.0768544755325022,
0.07505086322256814,
0.07392149475240142,
0.07310076115399779,
0.07251609309239847,
0.07237059982870311,
0.07306796249533226,
0.07509262860978493,
0.07886959783991977,
0.08465336096997572,
0.09249339910093746,
0.10227615163900941,
0.11379851597558777,
0.12682932336840283,
0.14114362493324303,
0.15653518865144495,
0.17281748182961487,
0.1898206188124169,
0.20738802079504928,
0.22537408399776654,
0.2436429751881292,
0.262068262136876,
0.28053303112923367,
0.2989302136413792,
0.31716293564325654,
0.33514477910756507,
0.35279989926145816,
0.3700629762694559,
0.3868790017312332,
0.40320291315021817,
0.41899909657129913,
0.43424078097717655,
0.44890934908751196,
0.4629935887587389,
0.476488907778507,
0.48939653285198,
0.5017227112381395,
0.5134779309880937,
0.5246761731868239,
0.5353342070905361,
0.5454709366432081,
0.5551068045889063,
0.5642632582990116,
0.5729622795248188
],
[
0.14323575789817497,
0.12866081170120774,
0.11629929107624648,
0.10630819808684919,
0.09865508001057889,
0.09308158184536196,
0.08914095071985823,
0.08630997357316612,
0.0841281022737249,
0.08230807864074137,
0.08079136951450311,
0.07974930224854845,
0.07953760738443841,
0.08060917787584564,
0.08339699769421094,
0.08820174633240102,
0.09513173939338397,
0.10411657318648529,
0.1149689898733524,
0.12745120668835364,
0.141319829335659,
0.1563470842530768,
0.17232670212644355,
0.18907278746877954,
0.20641671477306242,
0.22420427903684947,
0.24229374416242264,
0.2605547491023538,
0.2788678237123044,
0.2971242589993734,
0.3152261325114407,
0.3330863526499944,
0.35062863775402864,
0.36778738418334506,
0.3845074043757095,
0.4007435337872718,
0.4164601171548101,
0.4316303914540822,
0.44623578659431096,
0.4602651662524273,
0.47371403102590626,
0.4865837047977724,
0.49888052325024856,
0.5106150411171481,
0.5218012722316959,
0.5324559738483123,
0.5425979841922773,
0.5522476197872604,
0.5614261368726657,
0.5701552591809164
],
[
0.15725099507090382,
0.14334361393782974,
0.13141211633033137,
0.12152857020671719,
0.11361233981901667,
0.10742168376590777,
0.1025923786124207,
0.09871793922346488,
0.09544472095046105,
0.09255188268595639,
0.08999906628038856,
0.08793818950100422,
0.08668999230395948,
0.08668393602067408,
0.0883634479395668,
0.09207686069668598,
0.09799658637252216,
0.10610326755780822,
0.11623107278665917,
0.1281360770026786,
0.14155258607737642,
0.15622536815827137,
0.17192235304567355,
0.1884364724207338,
0.20558314907370984,
0.22319689440791954,
0.24112840597429572,
0.25924250534930254,
0.27741682898509323,
0.2955410611757423,
0.31351649939000975,
0.3312557838574377,
0.34868267114307677,
0.36573177351152797,
0.38234821914788847,
0.3984872130133522,
0.41411349552322413,
0.4292007077927582,
0.4437306792526273,
0.457692657150158,
0.4710824987716483,
0.4839018468892179,
0.49615730751892273,
0.5078596469933465,
0.5190230229024745,
0.5296642608526422,
0.5398021863806428,
0.5494570188372576,
0.5586498316879625,
0.5674020815120409
],
[
0.17248977679671212,
0.15911613243203446,
0.1474698875949264,
0.13756751482014903,
0.1293066408928809,
0.12247057004046541,
0.11676256372226715,
0.11186430692159377,
0.10750315914987829,
0.10351143812956048,
0.09986694698549967,
0.09671051913681677,
0.09433816512518868,
0.09316276028696073,
0.09364011528147914,
0.09616722607532863,
0.10098601776097726,
0.10813785598947072,
0.11748687283621086,
0.1287861200382293,
0.14174525922864353,
0.1560761649934407,
0.17151479856304813,
0.18782742455850185,
0.20480923960242628,
0.22228045731614474,
0.24008227244603988,
0.2580735868985671,
0.27612864636035356,
0.29413544792177376,
0.31199470196446666,
0.32961914247522295,
0.3469330211232491,
0.363871666679956,
0.3803810326149248,
0.3964171887433769,
0.4119457374076981,
0.4269411518622624,
0.44138604570795464,
0.4552703888022634,
0.4685906882912158,
0.4813491542779712,
0.49355286893737815,
0.505212976183675,
0.5163439067154174,
0.5269626506894621,
0.5370880876150482,
0.5467403804457754,
0.555940438372476,
0.5647094505438534
],
[
0.18851244172814619,
0.17554492499527785,
0.16406278702983262,
0.15404839483076832,
0.1453930449610205,
0.1379066072910176,
0.1313463057540769,
0.12546027834071463,
0.1200368302806695,
0.11494975552345206,
0.1101930231176026,
0.10590127972294736,
0.10235286772904928,
0.09994869952532462,
0.09915735154327965,
0.10042384211007283,
0.10406369876020559,
0.11018915113670652,
0.11870523808258686,
0.1293679401803505,
0.14186191787572985,
0.15586167628357994,
0.17106534027610598,
0.18720701033114187,
0.20405726935807608,
0.22141887227874057,
0.23912142052865143,
0.2570166437496222,
0.274974760485504,
0.29288187823957873,
0.3106382121468715,
0.328156872598517,
0.34536300482372945,
0.362193114683387,
0.3785944656667056,
0.3945244748677578,
0.40995006864584244,
0.42484698232167983,
0.439199004159752,
0.4529971737628712,
0.4662389504381674,
0.47892736938994596,
0.4910702037679193,
0.5026791494024008,
0.5137690470330628,
0.5243571543651206,
0.5344624776281548,
0.5441051696460865,
0.5533059988715101,
0.5620858914730503
],
[
0.20498564678027328,
0.19231584275171204,
0.18090484644869545,
0.17071525204695925,
0.16164021502451448,
0.1535145007029126,
0.1461381717685153,
0.13930980678798618,
0.13286379433753673,
0.12670607668279513,
0.12084425198344705,
0.1154094479958287,
0.11066681925568138,
0.1070077832419906,
0.10491210803517143,
0.10486958246788029,
0.10727042829229957,
0.11230648459514173,
0.11993601788338168,
0.1299268228482262,
0.14194089532386972,
0.1556126353291346,
0.17059740584771785,
0.18659212032367722,
0.20333858202683144,
0.22061899911289332,
0.2382492648313921,
0.25607259645278657,
0.2739544258146128,
0.29177863150212024,
0.30944489026200583,
0.32686684826002355,
0.34397083599783274,
0.36069490812693095,
0.3769880510236439,
0.3928094546415643,
0.4081277872048843,
0.4229204419723388,
0.4371727463189612,
0.45087713685177705,
0.4640323121519937,
0.4766423786438478,
0.48871600628931045,
0.5002656102340393,
0.5113065728565215,
0.521856518372128,
0.5319346495438843,
0.5415611533752118,
0.550756680057863,
0.5595418970219014
],
[
0.22166227985616702,
0.20920441949918256,
0.19779800308560083,
0.18739497122110943,
0.1778943160416163,
0.16915289306445522,
0.1610048497321627,
0.1532875510975724,
0.1458707012128453,
0.13868536609573318,
0.13175048231916073,
0.12519514833811207,
0.1192741112093564,
0.11437011727847621,
0.11097066552772701,
0.1096038706851226,
0.11073111841516112,
0.11462885348114335,
0.12132055376117172,
0.13059746992225535,
0.14210489531553644,
0.15543732306147195,
0.17020435243090096,
0.1860618308849925,
0.20271924847726308,
0.21993548072260993,
0.23751068476392917,
0.25527817552675164,
0.27309770852988,
0.2908504244364832,
0.30843523666317557,
0.32576630974498466,
0.342771288914607,
0.359390005839922,
0.3755734589055,
0.39128293154500504,
0.4064891636392845,
0.4211715288813388,
0.4353171972923263,
0.4489202792654479,
0.46198095796147287,
0.4745046225219425,
0.4865010169059195,
0.49798341930804885,
0.5089678658815161,
0.519472430434935,
0.5295165692902589,
0.5391205378500967,
0.5483048828122374,
0.5570900115120736
],
[
0.2383624144901475,
0.2260526766020582,
0.2146072178931645,
0.20397300892893996,
0.19405658246500088,
0.18473397219216964,
0.17586673236315117,
0.16732263727177327,
0.15899907204523692,
0.1508472196023833,
0.14289569889272696,
0.1352726447636862,
0.1282242734055255,
0.12212448628337597,
0.11746359439479598,
0.11479837577238645,
0.11465207321254732,
0.11738445338171014,
0.12309330194546635,
0.1316068449471593,
0.14256412437274138,
0.1555243953267463,
0.1700517703287616,
0.1857591981852629,
0.20232145899141046,
0.2194718522395719,
0.23699294587949585,
0.25470672005289813,
0.2724662020226355,
0.29014906540220625,
0.3076529958133201,
0.32489242248803357,
0.34179621420799794,
0.35830600871567064,
0.37437492970425956,
0.3899665218198287,
0.4050537948134519,
0.41961831287850054,
0.4336492966309221,
0.44714272606247074,
0.4601004458323119,
0.4725292816962442,
0.48444018042986525,
0.49584738656064115,
0.5067676685062704,
0.5172196049765391,
0.527222940190776,
0.536798013911392,
0.5459652697159364,
0.5547448424766849
],
[
0.2549577329867319,
0.2427520754032744,
0.23124344329619154,
0.220377383319589,
0.21006855007447273,
0.2002096064628527,
0.1906845731738963,
0.1813857306567394,
0.17223290057036794,
0.16319406267012918,
0.15430663328848343,
0.1456988774743616,
0.13761002806172176,
0.13040457343709988,
0.12456994187555345,
0.1206793784195397,
0.1193028119324722,
0.12087387106059423,
0.12556776764725924,
0.1332630412205249,
0.14360751448735976,
0.15613577006743962,
0.1703715480618806,
0.1858862290196219,
0.20231925642455695,
0.21937694871256752,
0.23682271071881297,
0.2544657221890716,
0.27215103513453726,
0.28975185797758085,
0.30716389103467245,
0.3243012849190673,
0.34109376881956827,
0.35748456798700556,
0.37342882371008296,
0.3888923150003798,
0.4038503500617589,
0.41828674685444667,
0.43219285822280235,
0.44556662139400804,
0.4584116271928781,
0.4707362135364879,
0.4825525925835609,
0.49387602273646747,
0.5047240365562136,
0.5151157342864086,
0.5250711506096849,
0.5346106998443059,
0.5437547022855479,
0.5525229919834174
],
[
0.27135934879468077,
0.2592310009613837,
0.247651548012964,
0.23656738231147353,
0.22590138570679544,
0.21556083617218058,
0.20544869128399693,
0.19547769912223306,
0.1855866738819887,
0.17575840686936398,
0.16603893751266197,
0.15655794259186928,
0.1475491718855509,
0.13936714595203878,
0.13249068270625627,
0.12749608402923318,
0.12498033796569073,
0.1254331758990344,
0.12910183060361838,
0.13592508709566345,
0.14557759542803744,
0.15758611617183768,
0.17144520119768583,
0.18669031068646846,
0.2029274656326011,
0.21983586328867855,
0.23715865545835327,
0.254690805798954,
0.2722679712554359,
0.2897576214102009,
0.30705240105612785,
0.32406532362034307,
0.34072631543054216,
0.3569796940606209,
0.3727822608739036,
0.38810177993061157,
0.4029156903625726,
0.4172099556660939,
0.4309779935514687,
0.44421965740598596,
0.4569402582796805,
0.4691496272361845,
0.4808612239733835,
0.4920913003374374,
0.5028581278433716,
0.5131812973782189,
0.523081097472686,
0.5325779752937949,
0.5416920821245118,
0.5504429027615997
],
[
0.2875083188227229,
0.27544532639561436,
0.2638012882346126,
0.25252497149540587,
0.2415474508527708,
0.23078914832915517,
0.22016952935021833,
0.2096191400006629,
0.1990936389129277,
0.18858959437108705,
0.1781619805297792,
0.16794325370045998,
0.15816311014997947,
0.14916567320934174,
0.14141594921238163,
0.1354802424929976,
0.1319612266892068,
0.1313810269226644,
0.13404453616602288,
0.13995398294505715,
0.1488283653375241,
0.1602080638582541,
0.173575722768598,
0.1884415999827861,
0.20438354078591156,
0.2210553406086839,
0.23817968245680632,
0.25553618975270515,
0.2729496782000606,
0.29028041737016586,
0.3074166656048812,
0.3242691546394943,
0.34076705913010263,
0.35685502198521135,
0.3724908956257572,
0.3876439514377704,
0.40229338727976444,
0.41642702242681495,
0.4300401124576188,
0.4431342464901763,
0.45571630902619586,
0.4677975011657985,
0.4793924232152053,
0.4905182243238865,
0.5011938259293268,
0.51143922531414,
0.5212748841134308,
0.5307212045996449,
0.5397980943415809,
0.548524617614701
],
[
0.3033681536150471,
0.291371058608255,
0.2796802131252229,
0.26824786010858037,
0.2570132392032992,
0.24590890578468064,
0.23486920841235395,
0.22384076287824906,
0.21279476464381047,
0.20174106872909361,
0.19074404900655373,
0.17994011696984544,
0.16955602682110943,
0.15992504495933418,
0.15149392946551934,
0.14480760765218298,
0.1404544326954872,
0.13896352468517958,
0.14067666130790998,
0.14565438078361506,
0.1536725892874989,
0.16430730335722238,
0.17705065669107872,
0.19140318683725654,
0.20692361409820303,
0.22324455797381648,
0.240069462674224,
0.2571622155689468,
0.27433563298882474,
0.29144135676962324,
0.3083618212027244,
0.3250041529732985,
0.34129561492496396,
0.35718018757131137,
0.372615948525816,
0.3875729933313036,
0.4020317163346072,
0.41598133005875876,
0.4294185459620402,
0.44234637094812923,
0.45477299535325155,
0.46671076194634137,
0.4781752138121803,
0.48918422344580403,
0.4997572071714468,
0.5099144290033765,
0.5196763969472876,
0.5290633529837241,
0.5380948559331515,
0.5467894543313725
],
[
0.31891881375488396,
0.30699845388733266,
0.29528791232151635,
0.2837437461915309,
0.2723133727328096,
0.2609408013088169,
0.24957416644533026,
0.23817499404674783,
0.2267291444832185,
0.21525942566059875,
0.20383987815904928,
0.19261153033437606,
0.181798682815539,
0.17172299965880264,
0.162809304732036,
0.15557221293335416,
0.15056956471216712,
0.14831484781345974,
0.14916414790355112,
0.15322416532156619,
0.16033219541183322,
0.17011748153846148,
0.18210325742837633,
0.19579872522903372,
0.21075598099902895,
0.2265935680760077,
0.24299894379946385,
0.25972114314969524,
0.2765605646648254,
0.29335917464627537,
0.30999229715915616,
0.32636214162012195,
0.3423928269667892,
0.35802656510379677,
0.3732206912174506,
0.3879452915590125,
0.40218124518117393,
0.41591855220447493,
0.42915486462387004,
0.44189416738230325,
0.45414557954371765,
0.46592226008416227,
0.47724041198721306,
0.4881183835058577,
0.4985758678203816,
0.508633202780883,
0.5183107716528229,
0.5276285042938753,
0.5366054763586444,
0.5452596022315179
],
[
0.334151855268355,
0.3223272551774107,
0.31063131545391054,
0.2990255572917674,
0.2874656016103361,
0.2759064211466968,
0.26430912255618433,
0.25264924118396404,
0.24092653495824173,
0.2291762727034521,
0.21748195575941004,
0.20598914840083524,
0.19491937552379668,
0.18458151578634097,
0.17537544884965808,
0.16777921914737248,
0.16230895365475947,
0.15944562418228667,
0.15953976609374432,
0.16272864621691324,
0.1689072063444174,
0.17776747312286978,
0.18888118076375035,
0.20178432092947676,
0.21603682171331717,
0.2312527984032758,
0.24710924994257266,
0.26334297317849503,
0.27974272981932546,
0.2961405401366156,
0.3124038031550195,
0.3284287590871127,
0.3441352700361505,
0.3594627003768559,
0.3743666445796835,
0.3888162806255637,
0.4027921757292592,
0.4162844184628251,
0.42929099075007865,
0.4418163233198919,
0.4538699999479751,
0.46546559071469,
0.47661960411015697,
0.4873505534765271,
0.4976781360912171,
0.507622524034468,
0.5172037655267857,
0.526441294186848,
0.5353535420428157,
0.5439576504218666
],
[
0.3490665121295319,
0.3373628591154991,
0.32572090989396135,
0.3141076334650936,
0.3024868418979184,
0.2908240381594656,
0.2790925740815189,
0.26728111999564025,
0.25540243580100797,
0.2435034036516746,
0.2316761732425398,
0.22006996861713957,
0.20890243049616433,
0.19846809020877457,
0.18913955105268956,
0.18135458220841216,
0.17558135555779597,
0.17225805174834316,
0.17171517900829905,
0.17410537351786595,
0.17937178203673534,
0.1872701153880476,
0.19743081766656737,
0.20943122384560128,
0.22285315999111088,
0.23731732598617056,
0.2524977130739726,
0.268123317529885,
0.283973521632494,
0.2998712258172609,
0.31567585865971587,
0.33127715420440224,
0.3465899324900149,
0.36154982584145484,
0.3761097915691262,
0.39023723947504957,
0.4039116260834559,
0.41712240079037033,
0.42986722090234375,
0.44215037876668,
0.45398140411992777,
0.4653738189703429,
0.47634403178813556,
0.48691036355183354,
0.497092201230019,
0.5069092753567005,
0.5163810581295617,
0.5255262774350781,
0.5343625407803976,
0.5429060615882062
],
[
0.36366658028242016,
0.3521133012380621,
0.3405678076674718,
0.32900283273359154,
0.31739027563243016,
0.30570569109701506,
0.2939338981681296,
0.28207570677346777,
0.2701557310878903,
0.2582311969378361,
0.2464015046769462,
0.23481799310431994,
0.2236927427721771,
0.2133042325912732,
0.20399621482547417,
0.19616471268184033,
0.19022785621661287,
0.18657659444451402,
0.18551278977956262,
0.1871921710477394,
0.19159438916098684,
0.1985331167935056,
0.20770006703259578,
0.21872280132668573,
0.23121639351025167,
0.24481877979219435,
0.25920933999184403,
0.27411512593687326,
0.2893098136792265,
0.30460921805976143,
0.319865699992786,
0.33496265643554823,
0.34980958577184984,
0.3643378535014329,
0.3784971162407069,
0.39225230328661626,
0.4055810482053321,
0.41847147750857916,
0.4309202841947347,
0.4429310338343564,
0.45451266731440454,
0.4656781767107042,
0.47644343932110067,
0.48682620028506457,
0.49684519713583086,
0.5065194207356255,
0.5158675069072022,
0.5249072521744071,
0.5336552457445065,
0.5421266085004077
],
[
0.3779580069004666,
0.3665869797476883,
0.3551816047070969,
0.34372052160076444,
0.3321834824274274,
0.3205555043677887,
0.3088319677071841,
0.297024640751843,
0.2851685681617448,
0.2733296744172684,
0.2616127693435195,
0.2501693373810142,
0.23920397414635622,
0.22897755336738035,
0.2198042350284023,
0.21203864020214092,
0.2060498198387568,
0.20218135295413886,
0.2007027308676542,
0.20176425469859366,
0.20537086250459308,
0.21138492982326518,
0.21955598121504724,
0.22956474293914386,
0.2410667491098309,
0.25372584404417836,
0.2672348592589035,
0.2813253660905804,
0.2957700019981737,
0.31038057813051845,
0.3250042301237595,
0.33951896167447293,
0.3538292766315751,
0.3678621973134353,
0.38156375284181315,
0.3948959207714374,
0.4078339674960896,
0.42036412643960847,
0.432481560167792,
0.4441885640083684,
0.4554929800881733,
0.4664068000345089,
0.47694494141421606,
0.4871241874079271,
0.49696228161990363,
0.5064771707756506,
0.5156863878262073,
0.524606567078141,
0.5332530817528525,
0.5416397931244076
],
[
0.3919471040792505,
0.38079104316935036,
0.3695689624384445,
0.35826537607935754,
0.34686750623650425,
0.33536910481473,
0.323775056841652,
0.31210672462095723,
0.3004079343971457,
0.2887514098326455,
0.2772452894213579,
0.26603909001190496,
0.25532806091826465,
0.24535431281161574,
0.23640250634599333,
0.228787559692863,
0.22283237853098609,
0.21883575183034468,
0.21703449859041518,
0.21756839626560803,
0.22045839383474441,
0.22560546105323886,
0.23280992956942842,
0.2418038539814523,
0.25228611627126224,
0.26395220200807723,
0.2765150029027733,
0.2897167429689232,
0.30333403066931774,
0.3171784101582073,
0.331094372101159,
0.34495616842527954,
0.35866423912901396,
0.3721416821051855,
0.3853309641965034,
0.3981909424736685,
0.4106942006476287,
0.42282467876067914,
0.43457556703583383,
0.44594743650821567,
0.4569465840474407,
0.46758357467364203,
0.47787196835795176,
0.4878272213510612,
0.4974657535289183,
0.5068041735277564,
0.5158586528883037,
0.5246444393749086,
0.5331754983788668,
0.5414642701008431
],
[
0.4056393087730118,
0.39473036025803915,
0.3837328211157766,
0.37263688212557494,
0.36143670776469805,
0.35013392343064653,
0.3387417308794739,
0.3272895875346215,
0.3158283212824072,
0.30443545198567273,
0.2932203346971178,
0.2823285073321383,
0.2719443082951566,
0.2622904543688468,
0.2536229424580446,
0.24621959661038478,
0.24036119665529915,
0.23630576223497962,
0.23425920053796923,
0.23434827383946039,
0.23660299307389482,
0.24095364129363997,
0.2472430285883979,
0.25524968605378173,
0.2647151684986638,
0.2753692582879896,
0.2869494219167939,
0.2992135730040005,
0.31194696883593503,
0.3249647743330045,
0.3381118177929311,
0.3512607373230059,
0.36430933787764563,
0.37717766440541634,
0.38980507516710294,
0.40214745923787537,
0.4141746610649346,
0.42586813192729156,
0.43721880778072075,
0.448225205010602,
0.458891723752385,
0.4692271490446991,
0.4792433412207626,
0.4889541077114655,
0.4983742485134584,
0.5075187669782627,
0.516402236474889,
0.5250383121008786,
0.5334393751979177,
0.5416162971679036
],
[
0.4190384084906998,
0.40840698148068993,
0.3976721371592366,
0.38682939942271743,
0.37587922271539204,
0.3648301393605825,
0.35370239335028963,
0.34253197588525075,
0.3313749126937442,
0.3203115577530223,
0.3094505116123171,
0.29893159795107405,
0.28892710584133985,
0.2796402750156254,
0.27129985974188553,
0.26414971919685676,
0.2584329666589021,
0.2543714281530642,
0.25214290343484785,
0.25186040087297756,
0.2535581547687507,
0.2571880454802235,
0.2626272072751477,
0.2696944133581025,
0.27817082323633585,
0.28782057208012846,
0.2984080253297611,
0.30971030987909115,
0.32152516520118707,
0.33367494356625427,
0.34600782092932436,
0.3583971865929436,
0.3707399589747677,
0.38295434570736603,
0.3949773798640189,
0.4067624310360004,
0.4182768030759929,
0.4294994773922911,
0.44041903038726865,
0.45103173729881574,
0.46133986635015495,
0.47135016292701,
0.48107252120802246,
0.4905188390287705,
0.4997020501686787,
0.5086353265133354,
0.5173314406822797,
0.5258022778500424,
0.5340584837848669,
0.54210923473178
],
[
0.43214615011063434,
0.42181999581538043,
0.4113820281776838,
0.4008326430248181,
0.3901778399943028,
0.3794320277187928,
0.36862118771155084,
0.3577862973957105,
0.346986850662282,
0.3363042294092893,
0.3258445673469687,
0.31574060918606084,
0.30615191832774186,
0.297262662065367,
0.28927617733964833,
0.2824057007625349,
0.2768611525631641,
0.2728327502077378,
0.270473370468864,
0.26988259593877945,
0.27109571531755544,
0.2740801792524,
0.2787402466949165,
0.2849284877426593,
0.29246133159203097,
0.3011354796226597,
0.3107426319554607,
0.32108107992540647,
0.3319637685922939,
0.3432231454081185,
0.354713446806711,
0.3663111340487286,
0.37791410009931914,
0.38944012753904705,
0.4008249387625448,
0.41202006709568856,
0.4229906953284341,
0.4337135524201602,
0.44417492321271324,
0.4543688036453211,
0.46429522028693543,
0.4739587244944266,
0.48336706587916484,
0.4925300456289494,
0.501458546822611,
0.5101637358362708,
0.518656426168003,
0.5269465935313044,
0.5350430289734164,
0.5429531151536469
],
[
0.4449621497846934,
0.43496568675176867,
0.42485421051203176,
0.41463244248252673,
0.4043111277739992,
0.39390950194979446,
0.3834580048779068,
0.37300113361715187,
0.3626002705705587,
0.35233625166795834,
0.342311352143048,
0.3326502703430582,
0.3234995993183127,
0.3150252242048666,
0.3074071227493383,
0.30083124337232403,
0.29547854832995457,
0.2915119428542861,
0.28906255688413307,
0.28821745860076897,
0.28901103987101967,
0.29142180257976286,
0.29537515599175956,
0.3007514939173585,
0.3073977702609167,
0.3151403801149706,
0.32379739555660636,
0.33318884798635867,
0.34314447071390847,
0.35350889017368975,
0.36414459953532907,
0.37493318848844953,
0.38577530565649937,
0.3965897628248752,
0.4073121007083406,
0.4178928508967438,
0.42829565894012683,
0.4384953812539409,
0.44847623142066034,
0.4582300259882987,
0.46775456257715586,
0.4770521512224559,
0.48612831138804724,
0.4949906406487814,
0.5036478558477521,
0.5121090031566912,
0.5203828297164123,
0.5284773063660841,
0.5363992884097243,
0.5441542994563897
],
[
0.45748402611682754,
0.4478378972782187,
0.4380776235950794,
0.4282116540750944,
0.4182546620420026,
0.40822968424310924,
0.3981704128513733,
0.3881235298806588,
0.37815092596543626,
0.3683315883111976,
0.35876287851282307,
0.34956085747890236,
0.3408592672721223,
0.33280677373236045,
0.3255621444408669,
0.3192872220507606,
0.3141378775012482,
0.3102535745028795,
0.3077466614653551,
0.3066928738659155,
0.30712459662812136,
0.30902808674022203,
0.3123451344321924,
0.31697876486728876,
0.32280184869726214,
0.32966712335633697,
0.33741717748254557,
0.34589330426896553,
0.3549426007681721,
0.36442312053674786,
0.37420719244433437,
0.38418318565372955,
0.3942560578657741,
0.4043470114885419,
0.41439253586687497,
0.424343057175672,
0.43416136432181807,
0.4438209347849493,
0.45330424978717987,
0.46260116236242527,
0.4717073629038355,
0.4806229727275118,
0.4893512855655297,
0.4978976685742165,
0.5062686276816893,
0.5144710364719819,
0.522511523094983,
0.5303960058170374,
0.538129364767856,
0.5457152351954625
],
[
0.46970768628551623,
0.4604285240667251,
0.4510391505802992,
0.4415511241449629,
0.43198224493669785,
0.4223583839383969,
0.41271538816208203,
0.4031009543628383,
0.3935763246454715,
0.38421761386851866,
0.375116534381747,
0.36638024608243597,
0.35813004193808634,
0.350498599528923,
0.34362561007800146,
0.3376517578034977,
0.3327112705074675,
0.3289235747664693,
0.32638490355041994,
0.32516092225445825,
0.32528145630435507,
0.32673815941644596,
0.32948548648373316,
0.3334447557123815,
0.33851057523502254,
0.3445586122221098,
0.35145364817219343,
0.3590570459638853,
0.36723305008995966,
0.3758536476211947,
0.384801964749617,
0.39397433574294477,
0.4032812630498436,
0.41264750977606124,
0.42201155195038215,
0.4313245867183455,
0.44054925633857855,
0.44965821352613083,
0.4586326242595971,
0.4674606802621138,
0.4761361744312353,
0.48465717756341564,
0.49302484282235265,
0.5012423547415891,
0.5093140315638018,
0.5172445830453013,
0.5250385202980827,
0.5326997097110887,
0.5402310594476748,
0.5476343244314018
],
[
0.4816277045898134,
0.4727280742661747,
0.46372436271042095,
0.45463062612022437,
0.44546703320965925,
0.4362614069749045,
0.4270507828565612,
0.41788288206469615,
0.40881736848519634,
0.39992672612146696,
0.39129656550850744,
0.38302514878857297,
0.3752219241566191,
0.3680048938595017,
0.3614967190506215,
0.35581959857076817,
0.35108914484792275,
0.3474076972241801,
0.3448577167124819,
0.34349603465136425,
0.343349720604575,
0.34441416110095535,
0.34665362185692,
0.35000417765777075,
0.3543785399069864,
0.35967208173760307,
0.36576929577815154,
0.37255000453131154,
0.37989482311052547,
0.3876895840718223,
0.3958286232458933,
0.40421696647333094,
0.41277154421593737,
0.4214216020226899,
0.43010848304721205,
0.4387849473053277,
0.44741417128751015,
0.4559685475948619,
0.46442838119985463,
0.47278055842890676,
0.4810172472600279,
0.4891346728309938,
0.49713199973329963,
0.5050103422845755,
0.5127719151767959,
0.5204193294538173,
0.5279550325436452,
0.5353808859890654,
0.5426978705465737,
0.5499059054208327
],
[
0.4932377438955578,
0.4847262325501783,
0.47611823333578535,
0.4674297174567615,
0.45868252681931343,
0.4499056553952097,
0.44113650227196505,
0.43242200423404525,
0.423819532994673,
0.4153974207177034,
0.40723496100501483,
0.39942172664537245,
0.39205605741545374,
0.3852426092926253,
0.37908892774830505,
0.37370111519224447,
0.3691788004455741,
0.36560976837807846,
0.3630647396230385,
0.36159286475298086,
0.361218479517767,
0.3619395420482894,
0.36372795463605473,
0.36653170817932856,
0.3702785396965717,
0.37488061928397026,
0.3802397133048994,
0.38625230302205443,
0.3928142438822913,
0.3998246910151654,
0.407189155805059,
0.41482167343447035,
0.4226461424174043,
0.4305969450411248,
0.43861897870462485,
0.4466672305128963,
0.4547060185625939,
0.4627080087570052,
0.47065309942532835,
0.47852724962840926,
0.4863213118452293,
0.49402991611845987,
0.50165044071702,
0.509182093839923,
0.516625121713537,
0.5239801505320211,
0.5312476630072127,
0.5384276048057078,
0.5455191118384826,
0.5525203461985353
],
[
0.5045309815876265,
0.49641239991592806,
0.48820578458065395,
0.4799284834404247,
0.47160339202735047,
0.46326000335680234,
0.45493539784447057,
0.4466750916119166,
0.43853364521910876,
0.4305749212573299,
0.4228718714779394,
0.41550573649500294,
0.4085645586199739,
0.4021409460367035,
0.3963290876990075,
0.3912211026896868,
0.3869029088802352,
0.3834498994482296,
0.38092280090432035,
0.37936412833687067,
0.3787956323002594,
0.379217039538358,
0.38060623756333867,
0.3829208701177426,
0.3861011358131787,
0.3900734520722935,
0.39475458292869053,
0.4000558348318727,
0.4058869850800335,
0.41215969955889364,
0.4187902964576479,
0.42570180265964286,
0.4328253196596576,
0.44010076341659304,
0.4474770696217142,
0.4549119668973847,
0.4623714203356276,
0.46982884079615744,
0.4772641447079177,
0.48466273690104505,
0.4920144765348216,
0.4993126741901092,
0.5065531570115449,
0.5137334285754457,
0.5208519410016422,
0.527907488771921,
0.5348987268074816,
0.5418238096263432,
0.5486801438620478,
0.555464243058609
],
[
0.5155005120718714,
0.5077761782078999,
0.49997264432831745,
0.49210815159918414,
0.48420611188440305,
0.4762959553435378,
0.46841389747173834,
0.460603554714815,
0.45291632681028365,
0.44541145633256785,
0.4381556741255538,
0.43122234650413005,
0.42469005959942513,
0.4186406107867738,
0.413156427934297,
0.408317502451625,
0.4041979958183481,
0.40086275073961436,
0.398363992847959,
0.3967385315604381,
0.3960057474923907,
0.3961665852834857,
0.3972036627661412,
0.39908247881337433,
0.4017535776605313,
0.40515543048109814,
0.4092177409903697,
0.4138648748062008,
0.41901914537408835,
0.42460374881035995,
0.4305452106147198,
0.43677527577149566,
0.4432322316824607,
0.4498616967180502,
0.4566169356763538,
0.46345877907603245,
0.4703552288949702,
0.47728083205138594,
0.48421589711105806,
0.49114562128608297,
0.4980591850839383,
0.5049488618331313,
0.5118091793010889,
0.5186361610825031,
0.5254266666106461,
0.5321778407045935,
0.5388866766437433,
0.545549690951006,
0.5521627034185093,
0.5587207124278994
],
[
0.5261397070722377,
0.5188077848867226,
0.5114055029923116,
0.5039515732018643,
0.49646947000166236,
0.48898810449949565,
0.4815424058771239,
0.47417375005754214,
0.4669301684114592,
0.45986626592765895,
0.4530427803147939,
0.4465257231551899,
0.44038506353254614,
0.43469294486090315,
0.4295214668876227,
0.42494011475064036,
0.421012970460428,
0.41779589135154727,
0.4153338751038787,
0.4136588421481764,
0.4127880467686885,
0.41272327668257325,
0.41345092309111253,
0.4149429114503249,
0.4171583934521727,
0.42004602833629834,
0.4235466374750638,
0.4275960040776619,
0.4321276068264661,
0.437075114374749,
0.442374516987841,
0.4479658229501566,
0.4537942937871568,
0.45981122986975725,
0.4659743451861352,
0.47224778744452794,
0.47860186870871946,
0.48501257433460143,
0.49146091587804086,
0.49793218840891357,
0.5044151854822283,
0.5109014167640468,
0.5173843646253732,
0.5238588073675493,
0.5303202284783998,
0.5367643237089453,
0.5431866110124327,
0.5495821426485666,
0.5559453141151082,
0.5622697610547501
],
[
0.5364425226514468,
0.5294983909769516,
0.5224924684441877,
0.5154435772769063,
0.5083748818325096,
0.5013144157492282,
0.49429551137568073,
0.4873570810405319,
0.4805436959018285,
0.47390540764848393,
0.46749726263802754,
0.46137846858208076,
0.45561119179620174,
0.4502589887972475,
0.44538490898810096,
0.4410493430484635,
0.43730773035250253,
0.4342082725129424,
0.4317898223757697,
0.43008012230065557,
0.4290945483732589,
0.42883547804032945,
0.4292923417579483,
0.4304423528324143,
0.43225184421285784,
0.4346780868111064,
0.4376714285307322,
0.4411775799102583,
0.4451398800187248,
0.4495014004403391,
0.4542067795268065,
0.45920371716616853,
0.46444409683950133,
0.4698847331663148,
0.47548776768536666,
0.4812207529061515,
0.4870564752641519,
0.4929725725761041,
0.4989510021264084,
0.5049774127698085,
0.5110404693991585,
0.5171311716111785,
0.5232422010556759,
0.529367324291978,
0.5355008704154961,
0.5416372955909741,
0.5477708401983843,
0.5538952787546547,
0.5600037582416982,
0.5660887170014149
],
[
0.546403747976756,
0.539840381461924,
0.533223323741368,
0.5265712083455532,
0.5199065923223143,
0.5132563611106411,
0.5066520354350611,
0.5001299386339872,
0.4937311812259107,
0.4875014209488597,
0.48149036198088746,
0.47575096746312795,
0.47033837538299245,
0.4653085293141272,
0.46071656153934865,
0.4566149946691272,
0.45305185580544166,
0.45006882044780055,
0.44769951721227724,
0.4459681251232148,
0.44488838045124224,
0.44446308002889134,
0.44468412577953337,
0.4455331064684147,
0.44698236446979756,
0.4489964545670605,
0.4515338737681678,
0.45454892850534967,
0.4579936082019223,
0.4618193494504021,
0.46597859893580196,
0.47042611135459655,
0.4751199469986359,
0.48002215945707954,
0.4850991852401646,
0.49032196327478594,
0.49566582316433233,
0.5011101873343031,
0.5066381344361821,
0.5122358704626226,
0.5178921507138041,
0.5235976907465294,
0.5293445983414031,
0.5351258518595192,
0.5409348435695105,
0.5467649999764302,
0.552609485171946,
0.5584609879737844,
0.5643115892797133,
0.5701527027019262
],
[
0.5560191954344301,
0.5498275418637077,
0.543589696349691,
0.5373238622905511,
0.5310517606893053,
0.5247989346318211,
0.5185949590166843,
0.5124735217004368,
0.5064723421340125,
0.5006328961301115,
0.49499992128689124,
0.4896206873234844,
0.4845440293701767,
0.4798191598170353,
0.4754942947078883,
0.47161515215001404,
0.4682234003356763,
0.4653551485735604,
0.4630395831738197,
0.46129784863111084,
0.4601422620138047,
0.4595759252089703,
0.4595927679887475,
0.4601780186596773,
0.46130906314196096,
0.46295662245436486,
0.46508615650699225,
0.467659390920124,
0.4706358635036139,
0.4739743966049949,
0.47763441821221614,
0.4815770754717717,
0.48576610628123135,
0.49016845549643945,
0.4947546404339112,
0.49949888483972255,
0.5043790510273888,
0.5093764065811911,
0.5144752652702408,
0.5196625421530143,
0.524927260851189,
0.5302600472084786,
0.535652638563731,
0.5410974321494947,
0.5465870901150603,
0.552114212744464,
0.5576710859074968,
0.5632495038865193,
0.5688406646301076,
0.5744351312873776
],
[
0.5652858349387371,
0.559455177645949,
0.5535851498374827,
0.547693336114325,
0.5418004531123438,
0.5359305727041278,
0.5301112559955883,
0.5243735709158363,
0.5187519671039439,
0.5132839849460916,
0.5080097814374698,
0.5029714643018074,
0.49821223748998517,
0.49377537539709615,
0.4897030589967597,
0.4860351231851342,
0.48280777909494155,
0.4800523858648088,
0.47779435127744896,
0.47605223822873177,
0.4748371434527047,
0.4741523967713561,
0.47399360507542965,
0.47434903803052025,
0.47520032548142865,
0.4765234130100141,
0.4782897047689127,
0.48046731317480645,
0.483022333661394,
0.48592006867585513,
0.4891261368282337,
0.4926074185163853,
0.4963328063619102,
0.5002737455820281,
0.5044045646016618,
0.5087026088772455,
0.5131482006022345,
0.5177244535949145,
0.5224169763885066,
0.5272134976721723,
0.5321034471815531,
0.5370775223618593,
0.54212726708569,
0.5472446838470448,
0.5524218955865097,
0.5576508679998423,
0.5629231981564169,
0.5682299707527501,
0.5735616795254543,
0.5789082083502047
],
[
0.574201877398748,
0.5687201747242913,
0.5632052099670073,
0.5576738073399212,
0.552145562896582,
0.5466430028712925,
0.5411916597493418,
0.535820044443283,
0.530559494455359,
0.5254438812679029,
0.5205091656746974,
0.5157927974472301,
0.5113329654911601,
0.5071677160584863,
0.5033339688603383,
0.49986647294934416,
0.49679675461442074,
0.494152116745783,
0.4919547517915454,
0.49022102753462216,
0.48896099610683713,
0.48817816237630995,
0.48786952938139627,
0.48802591781507576,
0.4886325360448419,
0.489669759127145,
0.4911140616763423,
0.4929390415057351,
0.4951164690620874,
0.497617301411482,
0.5004126078649502,
0.5034743658487664,
0.5067760988124008,
0.5102933414247586,
0.5140039298899188,
0.5178881260913705,
0.5219285929457959,
0.5261102445938811,
0.5304199988817704,
0.5348464611618089,
0.5393795680453487,
0.5440102177214058,
0.5487299101955153,
0.5535304166946133,
0.5584034929054028,
0.5633406460140314,
0.5683329609967275,
0.5733709875186686,
0.5784446853100087,
0.5835434231128768
],
[
0.5827668135243845,
0.5776210100648361,
0.5724473371074474,
0.5672617579312421,
0.5620826757763638,
0.5569310411934236,
0.5518303847586249,
0.5468067581471847,
0.5418885683771659,
0.5371062933648844,
0.5324920719031451,
0.5280791677821868,
0.5239013158324299,
0.5199919667629744,
0.5163834571404902,
0.5131061398149774,
0.5101875175117562,
0.5076514270985627,
0.5055173232580314,
0.5037997073143499,
0.5025077396146943,
0.5016450625559025,
0.5012098470497335,
0.5011950593710197,
0.5015889296205149,
0.5023755891374485,
0.5035358335250014,
0.5050479614431821,
0.5068886373417435,
0.5090337286486627,
0.5114590739302063,
0.5141411472250562,
0.5170575940271247,
0.520187625176933,
0.5235122652896746,
0.5270144615769824,
0.5306790665159945,
0.5344927135092199,
0.5384436083765978,
0.5425212612933975,
0.5467161838149128,
0.5510195741723485,
0.5554230113956719,
0.5599181753553346,
0.5644966058543734,
0.5691495097658839,
0.5738676211823935,
0.5786411158574358,
0.5834595780502653,
0.5883120153433483
],
[
0.5909814146844851,
0.5861577213617639,
0.5813108562570136,
0.576455856209631,
0.5716098957645402,
0.5667923550838637,
0.5620248210581081,
0.5573310083794729,
0.5527365892780057,
0.5482689237677874,
0.5439566866566636,
0.5398293931775137,
0.5359168316940792,
0.5322484191448082,
0.5288525021691526,
0.5257556335236891,
0.5229818586674796,
0.5205520505124188,
0.5184833306536466,
0.5167886125206202,
0.5154762957702657,
0.5145501322308416,
0.514009272542805,
0.5138484903873538,
0.5140585690706465,
0.514626824461759,
0.5155377299023577,
0.5167736034319602,
0.5183153158225446,
0.5201429794045807,
0.5222365820620116,
0.5245765373998531,
0.5271441301410463,
0.5299218444693277,
0.5328935715555636,
0.5360447002711921,
0.5393621016501354,
0.5428340227215779,
0.5464499087666815,
0.5502001748526771,
0.5540759477768408,
0.55806879850306,
0.5621704830457888,
0.5663727068356303,
0.570666924184843,
0.5750441808482174,
0.5794950041060852,
0.5840093415007737,
0.5885765465022966,
0.5931854070730743
],
[
0.5988477025614903,
0.5943318443316612,
0.5897968549377272,
0.5852568085818932,
0.5807276446204706,
0.5762272055318177,
0.571775215765109,
0.567393191274913,
0.5631042714720098,
0.5589329682013753,
0.5549048301945363,
0.5510460261433203,
0.5473828549009228,
0.5439411970076984,
0.5407459273207404,
0.5378203134661246,
0.5351854285577206,
0.5328596085922952,
0.5308579847022934,
0.5291921177814359,
0.5278697579053259,
0.5268947437477358,
0.5262670484154462,
0.5259829685770414,
0.5260354443463516,
0.5264144889958459,
0.5271077009901062,
0.528100826592511,
0.529378339677087,
0.5309240063491778,
0.5327214052615652,
0.5347543796308573,
0.5370074033203744,
0.539465850332555,
0.5421161640496528,
0.5449459290613743,
0.547943854019051,
0.5510996783796176,
0.5544040189948469,
0.5578481742222648,
0.5614239036432268,
0.5651232007106178,
0.5689380739136571,
0.5728603495796823,
0.5768815064900947,
0.5809925493255897,
0.5851839248100904,
0.5894454814945372,
0.5937664715666447,
0.5981355909961179
],
[
0.6063688940361346,
0.6021463254195493,
0.5979080580004514,
0.5936671911531344,
0.5894384457480583,
0.585238179877144,
0.5810843527570734,
0.5769964290441814,
0.572995217624664,
0.5691026415204754,
0.5653414388447714,
0.5617347986468906,
0.5583059398163662,
0.555077645691394,
0.5520717712845153,
0.549308743688096,
0.5468070788304417,
0.5445829389324099,
0.5426497544701581,
0.5410179320365256,
0.5396946652550471,
0.5386838600866145,
0.5379861789228552,
0.5375992003747718,
0.5375176843119569,
0.5377339251533878,
0.5382381712335806,
0.539019084688209,
0.5400642149416495,
0.5413604595436361,
0.5428944886073421,
0.5446531131070763,
0.5466235823604242,
0.5487938016636299,
0.5511524667946769,
0.5536891175192001,
0.5563941169806699,
0.5592585676720294,
0.562274177414014,
0.5654330903444702,
0.5687276983794611,
0.5721504480413625,
0.5756936561205549,
0.5793493455450278,
0.5831091102972695,
0.586964015464159,
0.5909045357431686,
0.5949205331387817,
0.5990012723097469,
0.6031354701695024
]
]
},
{
"hoverinfo": "text",
"legendgroup": "In-sample",
"marker": {
"color": "black",
"opacity": 0.5,
"symbol": 1
},
"mode": "markers",
"name": "In-sample",
"text": [
"Arm 0_0
hartmann6: -0.0178151 (SEM: 0)
x1: 0.975964
x2: 0.586741
x3: 0.510511
x4: 0.403315
x5: 0.393716
x6: 0.0759413",
"Arm 1_0
hartmann6: -1.30808 (SEM: 0)
x1: 0.217709
x2: 0.397143
x3: 0.285373
x4: 0.500658
x5: 0.226072
x6: 0.559427",
"Arm 2_0
hartmann6: -0.164584 (SEM: 0)
x1: 0.711928
x2: 0.615168
x3: 0.176611
x4: 0.790128
x5: 0.709447
x6: 0.176201",
"Arm 3_0
hartmann6: -0.0212947 (SEM: 0)
x1: 0.649453
x2: 0.00128113
x3: 0.70354
x4: 0.294353
x5: 0.0686932
x6: 0.022621",
"Arm 4_0
hartmann6: -0.0294028 (SEM: 0)
x1: 0.728947
x2: 0.872031
x3: 0.115986
x4: 0.0622659
x5: 0.0067527
x6: 0.219928",
"Arm 5_0
hartmann6: -0.00237808 (SEM: 0)
x1: 0.863152
x2: 0.204467
x3: 0.790211
x4: 0.0536563
x5: 0.925509
x6: 0.528179",
"Arm 6_0
hartmann6: -0.177833 (SEM: 0)
x1: 0.777396
x2: 0.714532
x3: 0.567979
x4: 0.32362
x5: 0.05389
x6: 0.740995",
"Arm 7_0
hartmann6: -0.0545647 (SEM: 0)
x1: 0.569032
x2: 0.695449
x3: 0.916243
x4: 0.122442
x5: 0.664571
x6: 0.733239",
"Arm 8_0
hartmann6: -1.84581 (SEM: 0)
x1: 0.415137
x2: 0.47656
x3: 0.627314
x4: 0.259632
x5: 0.289654
x6: 0.665181",
"Arm 9_0
hartmann6: -0.301289 (SEM: 0)
x1: 0.409604
x2: 0.615204
x3: 0.214551
x4: 0.313589
x5: 0.544114
x6: 0.903365",
"Arm 10_0
hartmann6: -0.142023 (SEM: 0)
x1: 0.00211063
x2: 0.609144
x3: 0.208627
x4: 0.750822
x5: 0.29935
x6: 0.646879",
"Arm 11_0
hartmann6: -0.0955188 (SEM: 0)
x1: 0.0451019
x2: 0.486235
x3: 0.0151449
x4: 0.368306
x5: 0.00415688
x6: 0.190821",
"Arm 12_0
hartmann6: -2.1942 (SEM: 0)
x1: 0.351075
x2: 0.428514
x3: 0.549949
x4: 0.307319
x5: 0.262745
x6: 0.624945",
"Arm 13_0
hartmann6: -2.38157 (SEM: 0)
x1: 0.319733
x2: 0.35794
x3: 0.577248
x4: 0.310015
x5: 0.232613
x6: 0.636048",
"Arm 14_0
hartmann6: -2.47194 (SEM: 0)
x1: 0.273517
x2: 0.335423
x3: 0.571746
x4: 0.228221
x5: 0.22766
x6: 0.62438",
"Arm 15_0
hartmann6: -2.75533 (SEM: 0)
x1: 0.304272
x2: 0.268285
x3: 0.569762
x4: 0.232054
x5: 0.274794
x6: 0.593846",
"Arm 16_0
hartmann6: -2.77786 (SEM: 0)
x1: 0.349128
x2: 0.198171
x3: 0.523766
x4: 0.206189
x5: 0.28411
x6: 0.601962",
"Arm 17_0
hartmann6: -3.00295 (SEM: 0)
x1: 0.293149
x2: 0.179272
x3: 0.568715
x4: 0.243326
x5: 0.325758
x6: 0.602037",
"Arm 18_0
hartmann6: -2.95002 (SEM: 0)
x1: 0.25581
x2: 0.0810094
x3: 0.580219
x4: 0.268964
x5: 0.339166
x6: 0.583872",
"Arm 19_0
hartmann6: -3.02058 (SEM: 0)
x1: 0.25896
x2: 0.152584
x3: 0.549924
x4: 0.254275
x5: 0.37414
x6: 0.63086",
"Arm 20_0
hartmann6: -2.71806 (SEM: 0)
x1: 0.288684
x2: 0.1342
x3: 0.607576
x4: 0.221403
x5: 0.384661
x6: 0.621581",
"Arm 21_0
hartmann6: -3.21446 (SEM: 0)
x1: 0.238643
x2: 0.155587
x3: 0.525
x4: 0.286691
x5: 0.328225
x6: 0.614527",
"Arm 22_0
hartmann6: -3.29515 (SEM: 0)
x1: 0.171681
x2: 0.149614
x3: 0.506709
x4: 0.283262
x5: 0.310522
x6: 0.64222",
"Arm 23_0
hartmann6: -3.1194 (SEM: 0)
x1: 0.108207
x2: 0.170155
x3: 0.494763
x4: 0.271517
x5: 0.326443
x6: 0.599013",
"Arm 24_0
hartmann6: -3.22333 (SEM: 0)
x1: 0.182323
x2: 0.141367
x3: 0.524248
x4: 0.312218
x5: 0.311563
x6: 0.691436",
"Arm 25_0
hartmann6: -3.30107 (SEM: 0)
x1: 0.191753
x2: 0.110631
x3: 0.470378
x4: 0.270521
x5: 0.306451
x6: 0.658885",
"Arm 26_0
hartmann6: -3.32039 (SEM: 0)
x1: 0.195242
x2: 0.151862
x3: 0.481962
x4: 0.26942
x5: 0.310001
x6: 0.659504",
"Arm 27_0
hartmann6: -3.28954 (SEM: 0)
x1: 0.191181
x2: 0.13792
x3: 0.507368
x4: 0.251294
x5: 0.306137
x6: 0.668741",
"Arm 28_0
hartmann6: -3.30061 (SEM: 0)
x1: 0.194044
x2: 0.151527
x3: 0.472256
x4: 0.274827
x5: 0.291174
x6: 0.658163"
],
"type": "scatter",
"x": [
0.9759641289710999,
0.21770938578993082,
0.7119279755279422,
0.6494527263566852,
0.7289469903334975,
0.8631518771871924,
0.7773963799700141,
0.5690317526459694,
0.4151366576552391,
0.40960385277867317,
0.002110629342496395,
0.04510190524160862,
0.3510748823445168,
0.31973305127722557,
0.2735166845653052,
0.3042719823357397,
0.34912789481567513,
0.29314910156971596,
0.2558096076467809,
0.2589604719927361,
0.2886837243982971,
0.23864284891634618,
0.17168124841266877,
0.10820727387436124,
0.18232256413954012,
0.1917529936554243,
0.19524173623547994,
0.19118142367775978,
0.19404434527211528
],
"xaxis": "x",
"y": [
0.5867407917976379,
0.3971428479999304,
0.6151680527254939,
0.0012811338528990746,
0.8720307173207402,
0.2044670507311821,
0.7145317681133747,
0.695448974147439,
0.4765600124374032,
0.6152042439207435,
0.6091442983597517,
0.48623493779450655,
0.4285141073570215,
0.35793997439598574,
0.33542273729941907,
0.2682847277024079,
0.19817114731671928,
0.1792720927679513,
0.08100936908036654,
0.1525842241711457,
0.13420014132708646,
0.15558663835829906,
0.14961431140726664,
0.17015519549082322,
0.14136652238141903,
0.11063109038479423,
0.15186164835050317,
0.13791982592927482,
0.15152694845255968
],
"yaxis": "y"
},
{
"hoverinfo": "text",
"legendgroup": "In-sample",
"marker": {
"color": "black",
"opacity": 0.5,
"symbol": 1
},
"mode": "markers",
"name": "In-sample",
"showlegend": false,
"text": [
"Arm 0_0
hartmann6: -0.0178151 (SEM: 0)
x1: 0.975964
x2: 0.586741
x3: 0.510511
x4: 0.403315
x5: 0.393716
x6: 0.0759413",
"Arm 1_0
hartmann6: -1.30808 (SEM: 0)
x1: 0.217709
x2: 0.397143
x3: 0.285373
x4: 0.500658
x5: 0.226072
x6: 0.559427",
"Arm 2_0
hartmann6: -0.164584 (SEM: 0)
x1: 0.711928
x2: 0.615168
x3: 0.176611
x4: 0.790128
x5: 0.709447
x6: 0.176201",
"Arm 3_0
hartmann6: -0.0212947 (SEM: 0)
x1: 0.649453
x2: 0.00128113
x3: 0.70354
x4: 0.294353
x5: 0.0686932
x6: 0.022621",
"Arm 4_0
hartmann6: -0.0294028 (SEM: 0)
x1: 0.728947
x2: 0.872031
x3: 0.115986
x4: 0.0622659
x5: 0.0067527
x6: 0.219928",
"Arm 5_0
hartmann6: -0.00237808 (SEM: 0)
x1: 0.863152
x2: 0.204467
x3: 0.790211
x4: 0.0536563
x5: 0.925509
x6: 0.528179",
"Arm 6_0
hartmann6: -0.177833 (SEM: 0)
x1: 0.777396
x2: 0.714532
x3: 0.567979
x4: 0.32362
x5: 0.05389
x6: 0.740995",
"Arm 7_0
hartmann6: -0.0545647 (SEM: 0)
x1: 0.569032
x2: 0.695449
x3: 0.916243
x4: 0.122442
x5: 0.664571
x6: 0.733239",
"Arm 8_0
hartmann6: -1.84581 (SEM: 0)
x1: 0.415137
x2: 0.47656
x3: 0.627314
x4: 0.259632
x5: 0.289654
x6: 0.665181",
"Arm 9_0
hartmann6: -0.301289 (SEM: 0)
x1: 0.409604
x2: 0.615204
x3: 0.214551
x4: 0.313589
x5: 0.544114
x6: 0.903365",
"Arm 10_0
hartmann6: -0.142023 (SEM: 0)
x1: 0.00211063
x2: 0.609144
x3: 0.208627
x4: 0.750822
x5: 0.29935
x6: 0.646879",
"Arm 11_0
hartmann6: -0.0955188 (SEM: 0)
x1: 0.0451019
x2: 0.486235
x3: 0.0151449
x4: 0.368306
x5: 0.00415688
x6: 0.190821",
"Arm 12_0
hartmann6: -2.1942 (SEM: 0)
x1: 0.351075
x2: 0.428514
x3: 0.549949
x4: 0.307319
x5: 0.262745
x6: 0.624945",
"Arm 13_0
hartmann6: -2.38157 (SEM: 0)
x1: 0.319733
x2: 0.35794
x3: 0.577248
x4: 0.310015
x5: 0.232613
x6: 0.636048",
"Arm 14_0
hartmann6: -2.47194 (SEM: 0)
x1: 0.273517
x2: 0.335423
x3: 0.571746
x4: 0.228221
x5: 0.22766
x6: 0.62438",
"Arm 15_0
hartmann6: -2.75533 (SEM: 0)
x1: 0.304272
x2: 0.268285
x3: 0.569762
x4: 0.232054
x5: 0.274794
x6: 0.593846",
"Arm 16_0
hartmann6: -2.77786 (SEM: 0)
x1: 0.349128
x2: 0.198171
x3: 0.523766
x4: 0.206189
x5: 0.28411
x6: 0.601962",
"Arm 17_0
hartmann6: -3.00295 (SEM: 0)
x1: 0.293149
x2: 0.179272
x3: 0.568715
x4: 0.243326
x5: 0.325758
x6: 0.602037",
"Arm 18_0
hartmann6: -2.95002 (SEM: 0)
x1: 0.25581
x2: 0.0810094
x3: 0.580219
x4: 0.268964
x5: 0.339166
x6: 0.583872",
"Arm 19_0
hartmann6: -3.02058 (SEM: 0)
x1: 0.25896
x2: 0.152584
x3: 0.549924
x4: 0.254275
x5: 0.37414
x6: 0.63086",
"Arm 20_0
hartmann6: -2.71806 (SEM: 0)
x1: 0.288684
x2: 0.1342
x3: 0.607576
x4: 0.221403
x5: 0.384661
x6: 0.621581",
"Arm 21_0
hartmann6: -3.21446 (SEM: 0)
x1: 0.238643
x2: 0.155587
x3: 0.525
x4: 0.286691
x5: 0.328225
x6: 0.614527",
"Arm 22_0
hartmann6: -3.29515 (SEM: 0)
x1: 0.171681
x2: 0.149614
x3: 0.506709
x4: 0.283262
x5: 0.310522
x6: 0.64222",
"Arm 23_0
hartmann6: -3.1194 (SEM: 0)
x1: 0.108207
x2: 0.170155
x3: 0.494763
x4: 0.271517
x5: 0.326443
x6: 0.599013",
"Arm 24_0
hartmann6: -3.22333 (SEM: 0)
x1: 0.182323
x2: 0.141367
x3: 0.524248
x4: 0.312218
x5: 0.311563
x6: 0.691436",
"Arm 25_0
hartmann6: -3.30107 (SEM: 0)
x1: 0.191753
x2: 0.110631
x3: 0.470378
x4: 0.270521
x5: 0.306451
x6: 0.658885",
"Arm 26_0
hartmann6: -3.32039 (SEM: 0)
x1: 0.195242
x2: 0.151862
x3: 0.481962
x4: 0.26942
x5: 0.310001
x6: 0.659504",
"Arm 27_0
hartmann6: -3.28954 (SEM: 0)
x1: 0.191181
x2: 0.13792
x3: 0.507368
x4: 0.251294
x5: 0.306137
x6: 0.668741",
"Arm 28_0
hartmann6: -3.30061 (SEM: 0)
x1: 0.194044
x2: 0.151527
x3: 0.472256
x4: 0.274827
x5: 0.291174
x6: 0.658163"
],
"type": "scatter",
"x": [
0.9759641289710999,
0.21770938578993082,
0.7119279755279422,
0.6494527263566852,
0.7289469903334975,
0.8631518771871924,
0.7773963799700141,
0.5690317526459694,
0.4151366576552391,
0.40960385277867317,
0.002110629342496395,
0.04510190524160862,
0.3510748823445168,
0.31973305127722557,
0.2735166845653052,
0.3042719823357397,
0.34912789481567513,
0.29314910156971596,
0.2558096076467809,
0.2589604719927361,
0.2886837243982971,
0.23864284891634618,
0.17168124841266877,
0.10820727387436124,
0.18232256413954012,
0.1917529936554243,
0.19524173623547994,
0.19118142367775978,
0.19404434527211528
],
"xaxis": "x2",
"y": [
0.5867407917976379,
0.3971428479999304,
0.6151680527254939,
0.0012811338528990746,
0.8720307173207402,
0.2044670507311821,
0.7145317681133747,
0.695448974147439,
0.4765600124374032,
0.6152042439207435,
0.6091442983597517,
0.48623493779450655,
0.4285141073570215,
0.35793997439598574,
0.33542273729941907,
0.2682847277024079,
0.19817114731671928,
0.1792720927679513,
0.08100936908036654,
0.1525842241711457,
0.13420014132708646,
0.15558663835829906,
0.14961431140726664,
0.17015519549082322,
0.14136652238141903,
0.11063109038479423,
0.15186164835050317,
0.13791982592927482,
0.15152694845255968
],
"yaxis": "y2"
}
],
"layout": {
"annotations": [
{
"font": {
"size": 14
},
"showarrow": false,
"text": "Mean",
"x": 0.25,
"xanchor": "center",
"xref": "paper",
"y": 1,
"yanchor": "bottom",
"yref": "paper"
},
{
"font": {
"size": 14
},
"showarrow": false,
"text": "Standard Error",
"x": 0.8,
"xanchor": "center",
"xref": "paper",
"y": 1,
"yanchor": "bottom",
"yref": "paper"
}
],
"autosize": false,
"height": 450,
"hovermode": "closest",
"legend": {
"orientation": "h",
"x": 0,
"y": -0.25
},
"margin": {
"b": 100,
"l": 35,
"pad": 0,
"r": 35,
"t": 35
},
"template": {
"data": {
"bar": [
{
"error_x": {
"color": "#2a3f5f"
},
"error_y": {
"color": "#2a3f5f"
},
"marker": {
"line": {
"color": "#E5ECF6",
"width": 0.5
},
"pattern": {
"fillmode": "overlay",
"size": 10,
"solidity": 0.2
}
},
"type": "bar"
}
],
"barpolar": [
{
"marker": {
"line": {
"color": "#E5ECF6",
"width": 0.5
},
"pattern": {
"fillmode": "overlay",
"size": 10,
"solidity": 0.2
}
},
"type": "barpolar"
}
],
"carpet": [
{
"aaxis": {
"endlinecolor": "#2a3f5f",
"gridcolor": "white",
"linecolor": "white",
"minorgridcolor": "white",
"startlinecolor": "#2a3f5f"
},
"baxis": {
"endlinecolor": "#2a3f5f",
"gridcolor": "white",
"linecolor": "white",
"minorgridcolor": "white",
"startlinecolor": "#2a3f5f"
},
"type": "carpet"
}
],
"choropleth": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"type": "choropleth"
}
],
"contour": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
],
"type": "contour"
}
],
"contourcarpet": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"type": "contourcarpet"
}
],
"heatmap": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
],
"type": "heatmap"
}
],
"heatmapgl": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
],
"type": "heatmapgl"
}
],
"histogram": [
{
"marker": {
"pattern": {
"fillmode": "overlay",
"size": 10,
"solidity": 0.2
}
},
"type": "histogram"
}
],
"histogram2d": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
],
"type": "histogram2d"
}
],
"histogram2dcontour": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
],
"type": "histogram2dcontour"
}
],
"mesh3d": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"type": "mesh3d"
}
],
"parcoords": [
{
"line": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "parcoords"
}
],
"pie": [
{
"automargin": true,
"type": "pie"
}
],
"scatter": [
{
"fillpattern": {
"fillmode": "overlay",
"size": 10,
"solidity": 0.2
},
"type": "scatter"
}
],
"scatter3d": [
{
"line": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatter3d"
}
],
"scattercarpet": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattercarpet"
}
],
"scattergeo": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattergeo"
}
],
"scattergl": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattergl"
}
],
"scattermapbox": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattermapbox"
}
],
"scatterpolar": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatterpolar"
}
],
"scatterpolargl": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatterpolargl"
}
],
"scatterternary": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scatterternary"
}
],
"surface": [
{
"colorbar": {
"outlinewidth": 0,
"ticks": ""
},
"colorscale": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
],
"type": "surface"
}
],
"table": [
{
"cells": {
"fill": {
"color": "#EBF0F8"
},
"line": {
"color": "white"
}
},
"header": {
"fill": {
"color": "#C8D4E3"
},
"line": {
"color": "white"
}
},
"type": "table"
}
]
},
"layout": {
"annotationdefaults": {
"arrowcolor": "#2a3f5f",
"arrowhead": 0,
"arrowwidth": 1
},
"autotypenumbers": "strict",
"coloraxis": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"colorscale": {
"diverging": [
[
0,
"#8e0152"
],
[
0.1,
"#c51b7d"
],
[
0.2,
"#de77ae"
],
[
0.3,
"#f1b6da"
],
[
0.4,
"#fde0ef"
],
[
0.5,
"#f7f7f7"
],
[
0.6,
"#e6f5d0"
],
[
0.7,
"#b8e186"
],
[
0.8,
"#7fbc41"
],
[
0.9,
"#4d9221"
],
[
1,
"#276419"
]
],
"sequential": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
],
"sequentialminus": [
[
0.0,
"#0d0887"
],
[
0.1111111111111111,
"#46039f"
],
[
0.2222222222222222,
"#7201a8"
],
[
0.3333333333333333,
"#9c179e"
],
[
0.4444444444444444,
"#bd3786"
],
[
0.5555555555555556,
"#d8576b"
],
[
0.6666666666666666,
"#ed7953"
],
[
0.7777777777777778,
"#fb9f3a"
],
[
0.8888888888888888,
"#fdca26"
],
[
1.0,
"#f0f921"
]
]
},
"colorway": [
"#636efa",
"#EF553B",
"#00cc96",
"#ab63fa",
"#FFA15A",
"#19d3f3",
"#FF6692",
"#B6E880",
"#FF97FF",
"#FECB52"
],
"font": {
"color": "#2a3f5f"
},
"geo": {
"bgcolor": "white",
"lakecolor": "white",
"landcolor": "#E5ECF6",
"showlakes": true,
"showland": true,
"subunitcolor": "white"
},
"hoverlabel": {
"align": "left"
},
"hovermode": "closest",
"mapbox": {
"style": "light"
},
"paper_bgcolor": "white",
"plot_bgcolor": "#E5ECF6",
"polar": {
"angularaxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
},
"bgcolor": "#E5ECF6",
"radialaxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
}
},
"scene": {
"xaxis": {
"backgroundcolor": "#E5ECF6",
"gridcolor": "white",
"gridwidth": 2,
"linecolor": "white",
"showbackground": true,
"ticks": "",
"zerolinecolor": "white"
},
"yaxis": {
"backgroundcolor": "#E5ECF6",
"gridcolor": "white",
"gridwidth": 2,
"linecolor": "white",
"showbackground": true,
"ticks": "",
"zerolinecolor": "white"
},
"zaxis": {
"backgroundcolor": "#E5ECF6",
"gridcolor": "white",
"gridwidth": 2,
"linecolor": "white",
"showbackground": true,
"ticks": "",
"zerolinecolor": "white"
}
},
"shapedefaults": {
"line": {
"color": "#2a3f5f"
}
},
"ternary": {
"aaxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
},
"baxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
},
"bgcolor": "#E5ECF6",
"caxis": {
"gridcolor": "white",
"linecolor": "white",
"ticks": ""
}
},
"title": {
"x": 0.05
},
"xaxis": {
"automargin": true,
"gridcolor": "white",
"linecolor": "white",
"ticks": "",
"title": {
"standoff": 15
},
"zerolinecolor": "white",
"zerolinewidth": 2
},
"yaxis": {
"automargin": true,
"gridcolor": "white",
"linecolor": "white",
"ticks": "",
"title": {
"standoff": 15
},
"zerolinecolor": "white",
"zerolinewidth": 2
}
}
},
"width": 950,
"xaxis": {
"anchor": "y",
"autorange": false,
"domain": [
0.05,
0.45
],
"exponentformat": "e",
"range": [
0.0,
1.0
],
"tickfont": {
"size": 11
},
"tickmode": "auto",
"title": {
"text": "x1"
},
"type": "linear"
},
"xaxis2": {
"anchor": "y2",
"autorange": false,
"domain": [
0.6,
1
],
"exponentformat": "e",
"range": [
0.0,
1.0
],
"tickfont": {
"size": 11
},
"tickmode": "auto",
"title": {
"text": "x1"
},
"type": "linear"
},
"yaxis": {
"anchor": "x",
"autorange": false,
"domain": [
0,
1
],
"exponentformat": "e",
"range": [
0.0,
1.0
],
"tickfont": {
"size": 11
},
"tickmode": "auto",
"title": {
"text": "x2"
},
"type": "linear"
},
"yaxis2": {
"anchor": "x2",
"autorange": false,
"domain": [
0,
1
],
"exponentformat": "e",
"range": [
0.0,
1.0
],
"tickfont": {
"size": 11
},
"tickmode": "auto",
"type": "linear"
}
}
},
"text/html": [
"