{
"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-09-15T17:05:47.492017Z",
"iopub.status.busy": "2022-09-15T17:05:47.491045Z",
"iopub.status.idle": "2022-09-15T17:05:50.650658Z",
"shell.execute_reply": "2022-09-15T17:05:50.649749Z"
}
},
"outputs": [
{
"data": {
"text/html": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-15 17:05:50] 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-09-15T17:05:50.717869Z",
"iopub.status.busy": "2022-09-15T17:05:50.716783Z",
"iopub.status.idle": "2022-09-15T17:05:50.724355Z",
"shell.execute_reply": "2022-09-15T17:05:50.723487Z"
}
},
"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-09-15T17:05:50.728570Z",
"iopub.status.busy": "2022-09-15T17:05:50.728242Z",
"iopub.status.idle": "2022-09-15T17:10:20.011432Z",
"shell.execute_reply": "2022-09-15T17:10:20.010441Z"
}
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-15 17:05:50] 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 09-15 17:05:50] 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 09-15 17:05:50] 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 09-15 17:05:50] 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 09-15 17:05:50] 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 09-15 17:05:50] 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 09-15 17:05:50] 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 09-15 17:05:50] 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 09-15 17:05:50] ax.service.managed_loop: Started full optimization with 30 steps.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-15 17:05:50] ax.service.managed_loop: Running optimization trial 1...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-15 17:05:50] ax.service.managed_loop: Running optimization trial 2...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-15 17:05:50] ax.service.managed_loop: Running optimization trial 3...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-15 17:05:50] ax.service.managed_loop: Running optimization trial 4...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-15 17:05:50] ax.service.managed_loop: Running optimization trial 5...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-15 17:05:50] ax.service.managed_loop: Running optimization trial 6...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-15 17:05:50] ax.service.managed_loop: Running optimization trial 7...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-15 17:05:50] ax.service.managed_loop: Running optimization trial 8...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-15 17:05:50] ax.service.managed_loop: Running optimization trial 9...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-15 17:05:51] ax.service.managed_loop: Running optimization trial 10...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-15 17:05:51] ax.service.managed_loop: Running optimization trial 11...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-15 17:05:51] ax.service.managed_loop: Running optimization trial 12...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-15 17:05:51] ax.service.managed_loop: Running optimization trial 13...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/opt/hostedtoolcache/Python/3.8.13/x64/lib/python3.8/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.8.13/x64/lib/python3.8/site-packages/botorch/optim/optimize.py:298: RuntimeWarning:\n",
"\n",
"Optimization failed on the second try, after generating a new set of initial conditions.\n",
"\n",
"[INFO 09-15 17:06:12] ax.service.managed_loop: Running optimization trial 14...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/opt/hostedtoolcache/Python/3.8.13/x64/lib/python3.8/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.8.13/x64/lib/python3.8/site-packages/botorch/optim/optimize.py:298: RuntimeWarning:\n",
"\n",
"Optimization failed on the second try, after generating a new set of initial conditions.\n",
"\n",
"[INFO 09-15 17:06:33] ax.service.managed_loop: Running optimization trial 15...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/opt/hostedtoolcache/Python/3.8.13/x64/lib/python3.8/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.8.13/x64/lib/python3.8/site-packages/botorch/optim/optimize.py:298: RuntimeWarning:\n",
"\n",
"Optimization failed on the second try, after generating a new set of initial conditions.\n",
"\n",
"[INFO 09-15 17:06:54] ax.service.managed_loop: Running optimization trial 16...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/opt/hostedtoolcache/Python/3.8.13/x64/lib/python3.8/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.8.13/x64/lib/python3.8/site-packages/botorch/optim/optimize.py:298: RuntimeWarning:\n",
"\n",
"Optimization failed on the second try, after generating a new set of initial conditions.\n",
"\n",
"[INFO 09-15 17:07:14] ax.service.managed_loop: Running optimization trial 17...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/opt/hostedtoolcache/Python/3.8.13/x64/lib/python3.8/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.8.13/x64/lib/python3.8/site-packages/botorch/optim/optimize.py:298: RuntimeWarning:\n",
"\n",
"Optimization failed on the second try, after generating a new set of initial conditions.\n",
"\n",
"[INFO 09-15 17:07:33] ax.service.managed_loop: Running optimization trial 18...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/opt/hostedtoolcache/Python/3.8.13/x64/lib/python3.8/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.8.13/x64/lib/python3.8/site-packages/botorch/optim/optimize.py:298: RuntimeWarning:\n",
"\n",
"Optimization failed on the second try, after generating a new set of initial conditions.\n",
"\n",
"[INFO 09-15 17:07:52] ax.service.managed_loop: Running optimization trial 19...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/opt/hostedtoolcache/Python/3.8.13/x64/lib/python3.8/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 09-15 17:08:09] ax.service.managed_loop: Running optimization trial 20...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/opt/hostedtoolcache/Python/3.8.13/x64/lib/python3.8/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.8.13/x64/lib/python3.8/site-packages/botorch/optim/optimize.py:298: RuntimeWarning:\n",
"\n",
"Optimization failed on the second try, after generating a new set of initial conditions.\n",
"\n",
"[INFO 09-15 17:08:29] ax.service.managed_loop: Running optimization trial 21...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/opt/hostedtoolcache/Python/3.8.13/x64/lib/python3.8/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.8.13/x64/lib/python3.8/site-packages/botorch/optim/optimize.py:298: RuntimeWarning:\n",
"\n",
"Optimization failed on the second try, after generating a new set of initial conditions.\n",
"\n",
"[INFO 09-15 17:08:50] ax.service.managed_loop: Running optimization trial 22...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-15 17:08:58] ax.service.managed_loop: Running optimization trial 23...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-15 17:09:07] ax.service.managed_loop: Running optimization trial 24...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-15 17:09:16] ax.service.managed_loop: Running optimization trial 25...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/opt/hostedtoolcache/Python/3.8.13/x64/lib/python3.8/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.8.13/x64/lib/python3.8/site-packages/botorch/optim/optimize.py:298: RuntimeWarning:\n",
"\n",
"Optimization failed on the second try, after generating a new set of initial conditions.\n",
"\n",
"[INFO 09-15 17:09:36] ax.service.managed_loop: Running optimization trial 26...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-15 17:09:46] ax.service.managed_loop: Running optimization trial 27...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-15 17:09:53] ax.service.managed_loop: Running optimization trial 28...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-15 17:10:01] ax.service.managed_loop: Running optimization trial 29...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-15 17:10:10] 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-09-15T17:10:20.016827Z",
"iopub.status.busy": "2022-09-15T17:10:20.016500Z",
"iopub.status.idle": "2022-09-15T17:10:20.031219Z",
"shell.execute_reply": "2022-09-15T17:10:20.030305Z"
}
},
"outputs": [
{
"data": {
"text/plain": [
"{'x1': 0.2960399268816468,\n",
" 'x2': 0.051018639601891375,\n",
" 'x3': 0.4244664445819664,\n",
" 'x4': 0.31821727714367903,\n",
" 'x5': 0.2720471541434911,\n",
" 'x6': 0.5853630435103842}"
]
},
"execution_count": 4,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"best_parameters"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {
"execution": {
"iopub.execute_input": "2022-09-15T17:10:20.036839Z",
"iopub.status.busy": "2022-09-15T17:10:20.034893Z",
"iopub.status.idle": "2022-09-15T17:10:20.043971Z",
"shell.execute_reply": "2022-09-15T17:10:20.043097Z"
}
},
"outputs": [
{
"data": {
"text/plain": [
"{'hartmann6': -2.869572675007806, 'l2norm': 0.8878918208206112}"
]
},
"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-09-15T17:10:20.050059Z",
"iopub.status.busy": "2022-09-15T17:10:20.048363Z",
"iopub.status.idle": "2022-09-15T17:10:20.057594Z",
"shell.execute_reply": "2022-09-15T17:10:20.056324Z"
}
},
"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-09-15T17:10:20.061879Z",
"iopub.status.busy": "2022-09-15T17:10:20.061425Z",
"iopub.status.idle": "2022-09-15T17:10:21.263272Z",
"shell.execute_reply": "2022-09-15T17:10:21.262138Z"
}
},
"outputs": [
{
"data": {
"application/vnd.plotly.v1+json": {
"config": {
"linkText": "Export to plot.ly",
"plotlyServerURL": "https://plot.ly",
"showLink": false
},
"data": [
{
"autocolorscale": false,
"autocontour": true,
"colorbar": {
"tickfont": {
"size": 8
},
"ticksuffix": "",
"x": 0.45,
"y": 0.5
},
"colorscale": [
[
0.0,
"rgb(247,252,253)"
],
[
0.125,
"rgb(229,245,249)"
],
[
0.25,
"rgb(204,236,230)"
],
[
0.375,
"rgb(153,216,201)"
],
[
0.5,
"rgb(102,194,164)"
],
[
0.625,
"rgb(65,174,118)"
],
[
0.75,
"rgb(35,139,69)"
],
[
0.875,
"rgb(0,109,44)"
],
[
1.0,
"rgb(0,68,27)"
]
],
"contours": {
"coloring": "heatmap"
},
"hoverinfo": "x+y+z",
"ncontours": 25,
"type": "contour",
"x": [
0.0,
0.02040816326530612,
0.04081632653061224,
0.061224489795918366,
0.08163265306122448,
0.1020408163265306,
0.12244897959183673,
0.14285714285714285,
0.16326530612244897,
0.18367346938775508,
0.2040816326530612,
0.22448979591836732,
0.24489795918367346,
0.26530612244897955,
0.2857142857142857,
0.3061224489795918,
0.32653061224489793,
0.3469387755102041,
0.36734693877551017,
0.3877551020408163,
0.4081632653061224,
0.42857142857142855,
0.44897959183673464,
0.4693877551020408,
0.4897959183673469,
0.5102040816326531,
0.5306122448979591,
0.5510204081632653,
0.5714285714285714,
0.5918367346938775,
0.6122448979591836,
0.6326530612244897,
0.6530612244897959,
0.673469387755102,
0.6938775510204082,
0.7142857142857142,
0.7346938775510203,
0.7551020408163265,
0.7755102040816326,
0.7959183673469387,
0.8163265306122448,
0.836734693877551,
0.8571428571428571,
0.8775510204081632,
0.8979591836734693,
0.9183673469387754,
0.9387755102040816,
0.9591836734693877,
0.9795918367346939,
1.0
],
"xaxis": "x",
"y": [
0.0,
0.02040816326530612,
0.04081632653061224,
0.061224489795918366,
0.08163265306122448,
0.1020408163265306,
0.12244897959183673,
0.14285714285714285,
0.16326530612244897,
0.18367346938775508,
0.2040816326530612,
0.22448979591836732,
0.24489795918367346,
0.26530612244897955,
0.2857142857142857,
0.3061224489795918,
0.32653061224489793,
0.3469387755102041,
0.36734693877551017,
0.3877551020408163,
0.4081632653061224,
0.42857142857142855,
0.44897959183673464,
0.4693877551020408,
0.4897959183673469,
0.5102040816326531,
0.5306122448979591,
0.5510204081632653,
0.5714285714285714,
0.5918367346938775,
0.6122448979591836,
0.6326530612244897,
0.6530612244897959,
0.673469387755102,
0.6938775510204082,
0.7142857142857142,
0.7346938775510203,
0.7551020408163265,
0.7755102040816326,
0.7959183673469387,
0.8163265306122448,
0.836734693877551,
0.8571428571428571,
0.8775510204081632,
0.8979591836734693,
0.9183673469387754,
0.9387755102040816,
0.9591836734693877,
0.9795918367346939,
1.0
],
"yaxis": "y",
"z": [
[
-1.7820470158273376,
-1.8410629901603488,
-1.8993236844405055,
-1.9564534288221584,
-2.012046087863158,
-2.065666498050074,
-2.116852951274727,
-2.1651209817249626,
-2.2099687425952386,
-2.250884264587157,
-2.2873548471880643,
-2.318878716975091,
-2.344978868563298,
-2.365218678272809,
-2.3792184857950245,
-2.386671964492382,
-2.3873608649055242,
-2.381166711222101,
-2.3680782707485353,
-2.3481940317018344,
-2.3217194113330226,
-2.2889588976385475,
-2.2503037713584515,
-2.206216444361733,
-2.1572127504206104,
-2.1038436750927074,
-2.0466779589462334,
-1.986286744108814,
-1.9232310131555337,
-1.8580520932419313,
-1.7912650749038326,
-1.7233546998339673,
-1.6547731313899439,
-1.5859390176511057,
-1.5172373461645916,
-1.449019723335482,
-1.3816048494271496,
-1.3152790764779672,
-1.2502970194798042,
-1.1868822400578756,
-1.125228042234531,
-1.0654984199157975,
-1.0078291838065816,
-0.9523292784057354,
-0.8990822824456446,
-0.8481480715781672,
-0.7995646116510939,
-0.7533498448240519,
-0.7095036286079508,
-0.66800968889696
],
[
-1.7803570808955305,
-1.8394673919988749,
-1.897823501834194,
-1.9550475142749475,
-2.0107306888144527,
-2.0644348644193378,
-2.1156949414377078,
-2.1640226841208214,
-2.208912136198321,
-2.2498469481777517,
-2.2863098741910663,
-2.3177945788146728,
-2.343819674030711,
-2.363944578241035,
-2.377786390455151,
-2.385036592214168,
-2.385476144667904,
-2.378987529873151,
-2.3655625081490714,
-2.3453047614305937,
-2.3184270712957633,
-2.285243173618669,
-2.2461549142437676,
-2.2016357820883075,
-2.1522122651638225,
-2.0984446750042327,
-2.040909038495983,
-1.9801813482452593,
-1.91682496410538,
-1.8513813999941822,
-1.784364246558858,
-1.716255660918936,
-1.647504723798773,
-1.5785269918705662,
-1.5097047013139555,
-1.441387247439902,
-1.3738917283640797,
-1.3075034708752145,
-1.2424765438063958,
-1.1790343104615821,
-1.117370085597939,
-1.0576479548347635,
-1.0000037951091623,
-0.9445465117021556,
-0.8913594856343374,
-0.8405022077856071,
-0.7920120640596081,
-0.7459062292254234,
-0.7021836249781197,
-0.6608268992193465
],
[
-1.776199283727217,
-1.8352691030988328,
-1.8935827614030933,
-1.9507608092360627,
-2.00639273319893,
-2.0600383877686967,
-2.111230496953159,
-2.1594784910093745,
-2.2042739729390934,
-2.2450981147461495,
-2.2814312412910085,
-2.312764741127183,
-2.3386152236316766,
-2.3585405157818093,
-2.3721566971318104,
-2.3791549937694088,
-2.3793171032664504,
-2.3725274894946224,
-2.3587813829986293,
-2.3381875912379986,
-2.3109656825620837,
-2.277437607049107,
-2.2380143399101486,
-2.1931786556603106,
-2.1434655908738023,
-2.0894424116845918,
-2.0316898631172506,
-1.9707861185242135,
-1.9072942594647029,
-1.8417534656626655,
-1.7746735478352145,
-1.7065321164385021,
-1.6377735659568162,
-1.5688091215178384,
-1.50001736760337,
-1.431744885275621,
-1.3643068126352458,
-1.2979872854884096,
-1.2330398040298216,
-1.1696876125108782,
-1.1081241844298297,
-1.0485138890832728,
-0.9909928879448571,
-0.9356702798535715,
-0.8826294878032868,
-0.8319298599563472,
-0.7836084441360615,
-0.7376818880298465,
-0.6941484155521612,
-0.6529898319432197
],
[
-1.769558068241765,
-1.8284506674794851,
-1.8865820025571451,
-1.9435717579643743,
-1.999008499647747,
-2.0524511375004977,
-2.103431468857832,
-2.1514580684970044,
-2.1960218182525493,
-2.236603372106595,
-2.272682807851897,
-2.3037515966698825,
-2.329326803947971,
-2.3489671157850234,
-2.3622899022242536,
-2.368988161194985,
-2.368845939822232,
-2.3617507811546465,
-2.3477019085117794,
-2.326813188580364,
-2.299310344904765,
-2.2655223924778696,
-2.225867826414741,
-2.1808366964302293,
-2.130970238397114,
-2.0768400585697337,
-2.019028834858974,
-1.9581140821165082,
-1.8946558397981605,
-1.8291883894076144,
-1.7622154981747362,
-1.6942083311398548,
-1.6256050868543128,
-1.556811526860266,
-1.4882017919551993,
-1.4201191442849441,
-1.3528764867014629,
-1.2867566626980984,
-1.2220126278840104,
-1.1588676175144308,
-1.097515429901071,
-1.0381209185789715,
-0.9808207500259667,
-0.9257244477118093,
-0.8729157127208993,
-0.8224539885601098,
-0.7743762233636902,
-0.7286987756348161,
-0.6854194084292518,
-0.6445193198646036
],
[
-1.7604330625861198,
-1.8190111482202092,
-1.876819720738979,
-1.9334783022783095,
-1.9885754106331137,
-2.0416700748802423,
-2.092294442321998,
-2.1399577398721172,
-2.1841518775177517,
-2.2243589803615866,
-2.2600610873619966,
-2.2907521338683607,
-2.315952120995326,
-2.3352230673656855,
-2.348185972929831,
-2.3545376746383924,
-2.3540662320182717,
-2.346663416632549,
-2.3323330066045846,
-2.31119386963765,
-2.2834772119971367,
-2.2495178640470623,
-2.209740072865361,
-2.1646389501330017,
-2.114759358944423,
-2.0606744182269163,
-2.002965779132852,
-1.9422073444096573,
-1.8789533033936634,
-1.8137304991121208,
-1.7470344711751231,
-1.6793281571799765,
-1.611042184254879,
-1.542575852417416,
-1.474298187677297,
-1.4065487283057687,
-1.3396379419886035,
-1.2738473299536217,
-1.2094293575857864,
-1.1466073745625083,
-1.085575670958001,
-1.0264997776774183,
-0.9695170744783375,
-0.9147377263443364,
-0.8622459343685986,
-0.8121014625558951,
-0.7643413868629516,
-0.7189820059697796,
-0.6760208528180681,
-0.6354387499467449
],
[
-1.748839399717692,
-1.8069664907468141,
-1.8643127773823964,
-1.9204983419942283,
-1.9751125468430892,
-2.027715624247497,
-2.077841366857993,
-2.1250011761392633,
-2.1686897474840006,
-2.2083926643365213,
-2.243596121102171,
-2.273798872727377,
-2.298526300634168,
-2.3173461920529954,
-2.329885486153592,
-2.3358469120190213,
-2.3350242103398116,
-2.327314551861209,
-2.3127268543476087,
-2.291384932223922,
-2.2635247663730853,
-2.2294856642690792,
-2.1896957148139222,
-2.1446526978046503,
-2.0949023402555205,
-2.0410162779524814,
-1.983572060254172,
-1.9231369808805416,
-1.8602566040147432,
-1.7954478933586242,
-1.7291961229309836,
-1.661954390135598,
-1.5941445452925613,
-1.5261585825115942,
-1.4583598679439094,
-1.391083904779224,
-1.3246385873301025,
-1.259304057902789,
-1.1953323563544596,
-1.1329470635920984,
-1.0723431105459362,
-1.0136868743982166,
-0.9571166296982949,
-0.9027433732964185,
-0.8506520037408314,
-0.8009028093224868,
-0.7535332035318265,
-0.7085596403912403,
-0.6659796426506732,
-0.6257738809769497
],
[
-1.734807800902201,
-1.7923496150659453,
-1.8490964998253179,
-1.904669840675905,
-1.958660755977508,
-2.010631781012724,
-2.0601196586372406,
-2.106639486986352,
-2.1496904900047022,
-2.18876366495891,
-2.2233515041464793,
-2.2529598659810075,
-2.277121870037917,
-2.2954134154544157,
-2.3074696034268354,
-2.3130010401838494,
-2.3118087739507596,
-2.303796527117888,
-2.288978936224968,
-2.2674846955783896,
-2.239553812306647,
-2.2055286504246574,
-2.1658391056787467,
-2.1209830812117376,
-2.0715042578542207,
-2.0179696847587074,
-1.9609496946353522,
-1.9010020172056612,
-1.8386609363747692,
-1.7744312749294484,
-1.7087862151279194,
-1.6421676180145621,
-1.574987549953967,
-1.5076300190889225,
-1.4404523095100783,
-1.3737856588031987,
-1.3079352923000347,
-1.2431799880997254,
-1.1797714132388353,
-1.1179334689413574,
-1.0578618392658443,
-0.999723875935332,
-0.9436588892098517,
-0.8897788602079322,
-0.8381695485985967,
-0.7888919418493207,
-0.7419839768080962,
-0.6974624588715442,
-0.6553251056564238,
-0.6155526484765066
],
[
-1.7183844141908868,
-1.7752102278898056,
-1.8312244609737092,
-1.8860505653919568,
-1.9392823437065339,
-1.9904857434933199,
-2.0392017616810247,
-2.084950699167191,
-2.127238015795383,
-2.1655620183764555,
-2.199423553448653,
-2.228337755260295,
-2.2518477079570562,
-2.269539624778875,
-2.2810588545422137,
-2.286125745910071,
-2.2845501881202632,
-2.2762435429334644,
-2.2612267000153983,
-2.239633126065113,
-2.2117060516364857,
-2.177789396333671,
-2.138312722651233,
-2.0937714003051533,
-2.044704065675517,
-1.9916700468373956,
-1.9352293950869368,
-1.8759274581721859,
-1.8142847951265275,
-1.7507920830035202,
-1.685908856486744,
-1.6200645980875368,
-1.5536607986986548,
-1.4870729655317336,
-1.4206519898635275,
-1.3547246746959256,
-1.289593500366938,
-1.2255358629400612,
-1.162803074535974,
-1.1016193975298492,
-1.042181326840862,
-0.9846572615328539,
-0.9291876357855708,
-0.8758855196816564,
-0.8248376561110569,
-0.7761058715091362,
-0.7297287830557468,
-0.6857237204064028,
-0.6440887829411367,
-0.6048049611881592
],
[
-1.699630408278746,
-1.7556143557294819,
-1.8107679408390815,
-1.8647174641518514,
-1.9170603526751946,
-1.9673670775222036,
-2.0151841808996225,
-2.0600386403885658,
-2.1014438024240354,
-2.1389070938305146,
-2.171939655881711,
-2.2000679260272338,
-2.2228470111344167,
-2.23987545952185,
-2.2508107723602624,
-2.2553847390562956,
-2.2534174804553806,
-2.244828970488053,
-2.229646795488083,
-2.208009010202746,
-2.180161190889513,
-2.146447231825884,
-2.107294141711277,
-2.0631920378830375,
-2.014671498641352,
-1.9622810557815031,
-1.9065675634612123,
-1.8480614038732175,
-1.7872672631144875,
-1.7246599917922032,
-1.6606842367567451,
-1.595756237187676,
-1.5302663373243877,
-1.4645811842331988,
-1.3990450585961698,
-1.3339801981607105,
-1.2696862572747611,
-1.2064391960227732,
-1.144489933540759,
-1.0840630678051304,
-1.0253558928048545,
-0.9685378602236204,
-0.9137505541344708,
-0.8611081831284062,
-0.8106985480443446,
-0.7625844144214615,
-0.7168052042677107,
-0.6733789182802381,
-0.6323042038643047,
-0.5935624932490918
],
[
-1.6786213305598696,
-1.733643610190342,
-1.7878150843089453,
-1.840765699392104,
-1.8920974530165964,
-1.9413864436474806,
-1.9881860245585639,
-2.0320312754835137,
-2.072445003826816,
-2.1089454590194077,
-2.1410558766676147,
-2.1683158527246,
-2.1902943775020542,
-2.206604142124038,
-2.216916487818348,
-2.220976134638555,
-2.2186146361609467,
-2.2097613868843813,
-2.1944509750966454,
-2.172825744152095,
-2.145132642557583,
-2.111713882281702,
-2.0729916501642682,
-2.0294480916161,
-1.9816027825829658,
-1.9299905407593645,
-1.8751423562500213,
-1.8175713866044987,
-1.7577646653575147,
-1.6961799093573915,
-1.633245979361375,
-1.5693652903840003,
-1.5049166807120313,
-1.440257715565175,
-1.3757259169381362,
-1.3116388403383348,
-1.2482932047218769,
-1.1859634233982808,
-1.1248999110673699,
-1.065327495349698,
-1.0074441770529798,
-0.9514203899091593,
-0.8973988253719385,
-0.8454948202605328,
-0.7957972571928493,
-0.748369898566756,
-0.7032530610475407,
-0.6604655352127551,
-0.620006660494637,
-0.58185847573514
],
[
-1.6554462461370179,
-1.7093942061769711,
-1.762469780772655,
-1.8143073692074052,
-1.8645144834925276,
-1.9126739349881983,
-1.958347114816307,
-2.0010785657310155,
-2.0404020359116313,
-2.075848172366941,
-2.1069539430931283,
-2.1332737644800686,
-2.1543921511685866,
-2.169937506808623,
-2.1795964544848383,
-2.183127891885297,
-2.180375776632954,
-2.17127952384626,
-2.1558808484610212,
-2.1343259351418613,
-2.106862021586522,
-2.0738279175431775,
-2.035638716458019,
-1.9927659441109338,
-1.9457153909630618,
-1.8950054981262203,
-1.84114906408726,
-1.784640159735158,
-1.725946803888971,
-1.6655086707173627,
-1.6037382829209077,
-1.5410239234983443,
-1.4777327569373566,
-1.4142131576817298,
-1.3507957854712294,
-1.2877933872287226,
-1.2254995891441254,
-1.1641870744672924,
-1.1041055567704112,
-1.0454798983776208,
-0.9885086282632807,
-0.9333630118231537,
-0.8801867343204834,
-0.8290961890328122,
-0.7801813121618619,
-0.7335068774858172,
-0.6891141507375549,
-0.6470228025120766,
-0.6072329851911165,
-0.5697274906651508
],
[
-1.630206681521897,
-1.682975761903429,
-1.7348503007760812,
-1.7854699590796856,
-1.8344486950710825,
-1.8813770882315441,
-1.9258257411964328,
-1.9673499402612302,
-2.0054957428579914,
-2.039807623866488,
-2.0698377433770836,
-2.0951567902930783,
-2.115366207839927,
-2.1301114254494777,
-2.139095522093889,
-2.142092550525403,
-2.138959582523703,
-2.1296464117622467,
-2.1142017931013544,
-2.0927751374193355,
-2.0656127788730956,
-2.033048369145235,
-1.9954876893783986,
-1.953389149754024,
-1.9072422249358034,
-1.8575466605899245,
-1.8047951467835954,
-1.7494612492958441,
-1.6919930476504994,
-1.632811660334826,
-1.572313047949751,
-1.5108712994867746,
-1.4488418994423768,
-1.3865640071649243,
-1.3243613370972702,
-1.2625416730987786,
-1.2013953297203652,
-1.141192995500814,
-1.0821833958202522,
-1.0245911414211388,
-0.968615023903203,
-0.9144269107641664,
-0.8621712976303038,
-0.8119655023006455,
-0.7639004355383305,
-0.7180418547122439,
-0.6744319941927595,
-0.6330914662522684,
-0.5940213339610778,
-0.557205269829837
],
[
-1.6030154023973961,
-1.65450991605366,
-1.705087732190567,
-1.7543945750569911,
-1.8020517578271724,
-1.8476586401715287,
-1.890796142554609,
-1.9310314799298647,
-1.9679242609629237,
-2.001034059438601,
-2.029929495366511,
-2.054198759902262,
-2.0734613804167563,
-2.0873808560977523,
-2.095677613174832,
-2.09814154957425,
-2.0946432800636057,
-2.0851430729754123,
-2.0696964107039326,
-2.0484551456973983,
-2.0216634241779845,
-1.989647990408645,
-1.9528032128387784,
-1.911572123139909,
-1.8664256856993264,
-1.817843045083948,
-1.766295321679272,
-1.7122346169302713,
-1.6560885735142925,
-1.598259608081232,
-1.5391271845432983,
-1.479051341895886,
-1.4183760044514861,
-1.3574311483220878,
-1.2965334598585452,
-1.2359855646333933,
-1.1760741789839868,
-1.1170676493651022,
-1.0592133374860324,
-1.0027352288168543,
-0.9478320300192,
-0.8946759069836203,
-0.8434119170651609,
-0.7941581145302721,
-0.7470062581289216,
-0.7020230211942793,
-0.659251593182393,
-0.6187135622740128,
-0.5804109772651075,
-0.5443285000162659
],
[
-1.5739950588537996,
-1.6241288018726134,
-1.6733242631661218,
-1.7212340143852343,
-1.767487597253286,
-1.8116941073929689,
-1.853445808152621,
-1.892322918822988,
-1.9278997013543389,
-1.9597519280313276,
-1.9874657442004657,
-2.010647841784908,
-2.028936731464294,
-2.04201474960179,
-2.049620270884147,
-2.051559433419494,
-2.0477165356463916,
-2.038062151700249,
-2.022657958510654,
-2.0016573144295844,
-1.975300838059685,
-1.943906678714269,
-1.9078558803549717,
-1.8675741411266307,
-1.8235121224970838,
-1.7761269197190879,
-1.7258670924776416,
-1.6731627628984618,
-1.6184210282399252,
-1.5620257731591005,
-1.5043402664372911,
-1.4457107992518115,
-1.3864699438002743,
-1.3269385549562083,
-1.2674261935058324,
-1.2082300851218233,
-1.1496329949540807,
-1.0919005032181255,
-1.0352781526353914,
-0.979988851955775,
-0.9262308029188617,
-0.8741761007841238,
-0.8239700584726486,
-0.7757312288648819,
-0.7295520495408834,
-0.6855000060511623,
-0.6436191988757745,
-0.6039322005848328,
-0.5664420989540737,
-0.5311346354019656
],
[
-1.54327673384934,
-1.5919734202974358,
-1.6397113613354455,
-1.6861507314981643,
-1.73093012747341,
-1.773669267386093,
-1.8139726881719367,
-1.8514345670982864,
-1.8856447701031227,
-1.9161961864949704,
-1.942693342502456,
-1.9647621928923846,
-1.9820608712835832,
-1.9942910407952352,
-2.001209336204065,
-2.002638238877792,
-1.9984755908253298,
-1.9887018523467161,
-1.973384165510962,
-1.9526763449485973,
-1.9268141374858347,
-1.896105533769358,
-1.8609165963534573,
-1.8216541028602462,
-1.7787470634886264,
-1.7326295491836137,
-1.6837270239225992,
-1.632447519010369,
-1.5791778083014685,
-1.524283665412569,
-1.468112640445408,
-1.4109976865752016,
-1.3532602838693455,
-1.295212236291745,
-1.237155857909202,
-1.179382687494082,
-1.1221711275915007,
-1.0657835033552945,
-1.0104630173654512,
-0.956430986659081,
-0.9038846289566487,
-0.85299554630042,
-0.803908953386959,
-0.756743622056369,
-0.7115924631826294,
-0.6685236392683689,
-0.6275820904812763,
-0.5887913586205211,
-0.5521556031212133,
-0.5176617171565898
],
[
-1.5109984313030709,
-1.5581919545307736,
-1.60440789848329,
-1.6493147562535848,
-1.6925609468135625,
-1.7337776160253422,
-1.7725823990292273,
-1.808584251966984,
-1.8413894351200792,
-1.8706086855543043,
-1.8958655520264172,
-1.9168057766962798,
-1.933107498240083,
-1.9444919236842582,
-1.9507339793835436,
-1.9516723156927558,
-1.947217918719059,
-1.937360494659305,
-1.9221717652864547,
-1.9018048884888907,
-1.8764894489305983,
-1.8465218989957934,
-1.8122519719215524,
-1.774066344564748,
-1.7323714872907574,
-1.6875779330910436,
-1.6400879330092175,
-1.5902876609608971,
-1.5385440505533345,
-1.4852053663524378,
-1.430604029144024,
-1.375060123337679,
-1.318884316620558,
-1.262379424103512,
-1.2058403648594227,
-1.1495526648390268,
-1.093789907125087,
-1.0388106248800568,
-0.9848551113144508,
-0.9321425305016957,
-0.8808685936788818,
-0.8312039471575341,
-0.783293317309506,
-0.7372553825206203,
-0.69318329199632,
-0.651145723537405,
-0.6111883619860136,
-0.573335681920352,
-0.5375929279073489,
-0.5039481996724842
],
[
-1.4773035393381213,
-1.522938066915164,
-1.5675782674859375,
-1.6109016177740103,
-1.6525670562392938,
-1.6922178696630645,
-1.7294855000713465,
-1.7639943623348284,
-1.7953677349830737,
-1.8232347424576572,
-1.847238383734982,
-1.8670444790361067,
-1.88235130452586,
-1.8928995685330836,
-1.8984822588193124,
-1.8989537686386466,
-1.8942376031893613,
-1.8843318965331113,
-1.8693119599740493,
-1.849329175252341,
-1.8246057856819375,
-1.79542556034446,
-1.762120899650701,
-1.725057619940589,
-1.6846192117117758,
-1.6411925822361515,
-1.5951570150864454,
-1.546877337717995,
-1.4967013164744527,
-1.4449604228115476,
-1.391972594044173,
-1.338045532629733,
-1.283479367399203,
-1.2285679672561898,
-1.1735986820771938,
-1.118850670432439,
-1.0645922097355405,
-1.0110774751381975,
-0.9585432528654795,
-0.9072059652855868,
-0.8572592681857516,
-0.8088723641707802,
-0.7621890767997059,
-0.7173276553019414,
-0.6743812300786178,
-0.6334188115205839,
-0.5944867141888874,
-0.5576102901421213,
-0.5227958647691805,
-0.4900327823946363
],
[
-1.4423393019721336,
-1.4863692158853465,
-1.5293905341545926,
-1.5710903217244327,
-1.6111386539878023,
-1.6491915709051805,
-1.6848949066534766,
-1.7178890682043253,
-1.7478148070347217,
-1.7743199840031516,
-1.7970672664448133,
-1.8157426182853746,
-1.8300643499230371,
-1.8397923886285978,
-1.8447373187381708,
-1.844768633430066,
-1.8398215497371284,
-1.8299016846982914,
-1.815086900163013,
-1.7955257319467783,
-1.77143206314989,
-1.7430761035249762,
-1.7107722748131375,
-1.674865182427514,
-1.635715311028025,
-1.5936862273753678,
-1.549134791387174,
-1.5024052040911597,
-1.4538268615181587,
-1.403715213869965,
-1.3523743708720746,
-1.3001001246445614,
-1.247182313706673,
-1.1939058780804688,
-1.1405504029735103,
-1.087388308773258,
-1.0346820689250678,
-0.9826809250364377,
-0.9316175502272284,
-0.881705027698857,
-0.8331343990974942,
-0.7860729242293416,
-0.7406630967695387,
-0.6970223871716967,
-0.6552436348977686,
-0.6153959844436685,
-0.5775262488882709,
-0.541660586043182,
-0.50780638144438,
-0.4759542459636048
],
[
-1.4062553292693523,
-1.4486450265073731,
-1.4900146611380285,
-1.530061421914045,
-1.5684670510166523,
-1.6049008463379184,
-1.6390234913299655,
-1.67049176973454,
-1.6989641923969416,
-1.7241075197592195,
-1.7456041052119011,
-1.7631599111935166,
-1.7765129634173435,
-1.7854419126537535,
-1.7897742743757115,
-1.789393823574264,
-1.784246548425997,
-1.7743445308869585,
-1.7597671498599303,
-1.74065912374294,
-1.7172251524237727,
-1.6897212948426552,
-1.6584436972498997,
-1.6237157804562667,
-1.5858753595299466,
-1.545263255489031,
-1.502214679962156,
-1.4570540731699841,
-1.4100933259379438,
-1.361632649365191,
-1.3119629572692446,
-1.26136856531365,
-1.2101292339855025,
-1.1585209651981585,
-1.1068153697452003,
-1.055277755821222,
-1.0041642993344237,
-0.9537187418715323,
-0.9041690474911845,
-0.8557243716137556,
-0.8085725890375364,
-0.7628785200263157,
-0.7187828998321698,
-0.6764020654528148,
-0.6358282850854078,
-0.5971306280996588,
-0.560356262187565,
-0.5255320650910137,
-0.4926664468332609,
-0.46175129133215986
],
[
-1.369202171921518,
-1.4099257430335737,
-1.4496208347219894,
-1.4879952193212254,
-1.5247427423730242,
-1.5595463529310907,
-1.5920819109773483,
-1.622022814176261,
-1.6490454556154879,
-1.6728354815162694,
-1.6930947622865238,
-1.7095489220180813,
-1.721955192444118,
-1.7301102712833243,
-1.73385777800428,
-1.7330948215175783,
-1.727777137123657,
-1.7179222319217584,
-1.703610021420277,
-1.684980570345619,
-1.6622287877255955,
-1.6355962715961636,
-1.6053609175754664,
-1.5718253164818665,
-1.5353052498294424,
-1.4961196298635733,
-1.4545829628062221,
-1.4110008841215547,
-1.3656686688447912,
-1.3188720490261276,
-1.2708893281854992,
-1.2219937291473884,
-1.1724551060474402,
-1.1225404895937654,
-1.072513300523402,
-1.0226313702021628,
-0.9731441034092958,
-0.9242892007533738,
-0.8762893478894551,
-0.829349208195711,
-0.7836529568405679,
-0.7393624921855431,
-0.6966163710710491,
-0.6555294453524614,
-0.6161931296956776,
-0.5786762030316589,
-0.5430260343797462,
-0.5092701237153319,
-0.4774178562482124,
-0.4474623806571164
],
[
-1.3313299817101172,
-1.3703707863775394,
-1.4083779186538488,
-1.4450701135548463,
-1.4801536599125282,
-1.5133254383439643,
-1.5442766840806401,
-1.5726975029198735,
-1.5982821379269845,
-1.6207349431507174,
-1.6397769680482934,
-1.6551529931520115,
-1.666638785796005,
-1.6740482683501245,
-1.6772402165476226,
-1.6761240411366254,
-1.670664164675923,
-1.6608825031373673,
-1.646858618599771,
-1.6287272443660816,
-1.6066731099323177,
-1.5809233046339806,
-1.5517377789855986,
-1.5193989188580361,
-1.484201341604085,
-1.4464430640033517,
-1.406418939522844,
-1.3644168000170207,
-1.3207161864100934,
-1.2755890694070475,
-1.2293016708708515,
-1.182116450304129,
-1.1342934880918347,
-1.0860907924680296,
-1.037763381546853,
-0.9895612660161077,
-0.9417266389043775,
-0.8944906581195807,
-0.848070201835786,
-0.8026649144183853,
-0.7584547703006167,
-0.7155982882424885,
-0.6742314439109238,
-0.6344672624066184,
-0.5963960262392949,
-0.5600860067467339,
-0.5255846146895009,
-0.49291986481891414,
-0.46210205591930453,
-0.4331255790742653
],
[
-1.292787274598094,
-1.3301374337783614,
-1.3664520524189654,
-1.4014611238532404,
-1.4348836225227308,
-1.466430529565009,
-1.495808529929581,
-1.5227243965446833,
-1.546890046753056,
-1.5680282164970416,
-1.5858786484402871,
-1.6002046322528893,
-1.6107996709036598,
-1.6174939799693704,
-1.6201604637941154,
-1.6187197614963096,
-1.6131439289618508,
-1.6034583346104387,
-1.589741413100953,
-1.5721220567661531,
-1.5507746358187569,
-1.5259119145299138,
-1.4977764354405223,
-1.466631213787647,
-1.4327507405375997,
-1.3964132662381807,
-1.3578951045339431,
-1.3174672944349928,
-1.2753944950396507,
-1.2319355807713177,
-1.1873451612948533,
-1.1418752111032486,
-1.0957761362640237,
-1.0492968608247593,
-1.0026837997317986,
-0.9561788297672201,
-0.9100165350008927,
-0.8644210788765296,
-0.8196030539061305,
-0.7757566059301774,
-0.7330570486035171,
-0.6916590964167534,
-0.6516957655497189,
-0.6132779288395828,
-0.5764944665262615,
-0.5414129271547236,
-0.5080806001837165,
-0.4765258999483263,
-0.4467599662315491,
-0.4187783968955141
],
[
-1.253719808549031,
-1.2893796324626225,
-1.3240054050322234,
-1.3573385893651881,
-1.38911099157052,
-1.4190477547226878,
-1.4468709706559064,
-1.4723039136798632,
-1.4950758706835623,
-1.514927504284093,
-1.5316166398624045,
-1.5449243146473202,
-1.5546608698748523,
-1.560671809479119,
-1.5628430967300526,
-1.5611055219411005,
-1.5554377604182457,
-1.5458677627434192,
-1.5324721922063365,
-1.5153737566657148,
-1.4947364758043753,
-1.47075916586385,
-1.4436676782193365,
-1.4137066415526864,
-1.3811315670731656,
-1.3462021317605624,
-1.3091772421611947,
-1.2703121383763956,
-1.2298574073218767,
-1.1880594366837076,
-1.1451616381118366,
-1.1014057356503435,
-1.0570325360384052,
-1.0122818157536038,
-0.9673912064570183,
-0.9225941764809031,
-0.8781173550113628,
-0.8341775169970895,
-0.7909785496634467,
-0.7487086757008022,
-0.7075381360329448,
-0.6676174557039225,
-0.6290763432965765,
-0.5920232149487525,
-0.556545291183926,
-0.5227091878711648,
-0.49056190929113275,
-0.4601321484007058,
-0.43143180383893265,
-0.40445763227334175
],
[
-1.2142695837752902,
-1.2482469540528984,
-1.2811950896356945,
-1.312867051934027,
-1.3430075319949728,
-1.3713557948335646,
-1.397649188229451,
-1.4216272100101792,
-1.4430360992162536,
-1.4616338809229146,
-1.4771957523216486,
-1.4895196502904011,
-1.4984317906391906,
-1.5037919205074153,
-1.5054979837321596,
-1.5034898720110084,
-1.4977519317223935,
-1.4883139278023227,
-1.4752502419387168,
-1.458677208624816,
-1.438748667160865,
-1.4156500152410267,
-1.3895912589909212,
-1.3607997200926047,
-1.3295131338567898,
-1.2959738163572496,
-1.2604243879308987,
-1.223105248212101,
-1.1842536720630332,
-1.1441041165629315,
-1.1028891618753787,
-1.060840482370716,
-1.0181893460434723,
-0.9751663256519616,
-0.9320001173355285,
-0.8889155513438992,
-0.846131012772381,
-0.8038555568215408,
-0.7622860092747876,
-0.7216043048104731,
-0.6819752525687446,
-0.6435448471009022,
-0.6064391758345832,
-0.5707639187907998,
-0.5366043954620964,
-0.5040260874207879,
-0.4730755514825721,
-0.4437816344184832,
-0.4161569034844791,
-0.3901992149059845
],
[
-1.1745739691243038,
-1.2068836919748311,
-1.238172239182444,
-1.2682043190892605,
-1.2967374734779695,
-1.3235249558567825,
-1.348319121835729,
-1.370875316934855,
-1.390956219814262,
-1.4083365657001639,
-1.4228081363620888,
-1.4341848608856844,
-1.4423078282827564,
-1.4470499725906927,
-1.4483201589152266,
-1.4460663817354746,
-1.440277792792848,
-1.4309853134567476,
-1.4182606626783114,
-1.402213749504486,
-1.38298853401125,
-1.3607576368657537,
-1.335716147743561,
-1.3080752094340646,
-1.2780559998473244,
-1.245884672589467,
-1.2117886473704464,
-1.1759943940592434,
-1.1387265837643994,
-1.100208250736459,
-1.0606614718794056,
-1.0203080496576982,
-0.9793697695948612,
-0.9380679600887926,
-0.8966222635855164,
-0.855248691943922,
-0.8141571569050416,
-0.7735487280761766,
-0.7336128795990082,
-0.6945249556438511,
-0.6564440302211008,
-0.6195112734493182,
-0.5838488756352633,
-0.5495595292664862,
-0.5167264304321629,
-0.485413735598756,
-0.45566739565305747,
-0.4275162844200361,
-0.4009735409902151,
-0.3760380518579465
],
[
-1.134764954826626,
-1.1654281002819393,
-1.1950812393305998,
-1.2235007005176548,
-1.2504567614920865,
-1.275716446704667,
-1.2990467864136688,
-1.3202185150436725,
-1.3390101610988618,
-1.355212450181162,
-1.3686329080410493,
-1.3791005136181815,
-1.3864702153113244,
-1.390627090988679,
-1.3914899084552663,
-1.3890138342962763,
-1.3831920519740803,
-1.374056091322369,
-1.3616747458908822,
-1.3461515625867224,
-1.327621023610879,
-1.306243688791873,
-1.2822007029716533,
-1.2556881680991139,
-1.2269119043885761,
-1.1960830616293627,
-1.163414892844771,
-1.1291207939525674,
-1.0934134895350522,
-1.056505056916244,
-1.018607369281619,
-0.9799325222779507,
-0.9406928801291595,
-0.9011005088102598,
-0.8613659176671327,
-0.8216961718532756,
-0.7822925417103146,
-0.7433479113788398,
-0.705044179533209,
-0.6675498603539527,
-0.6310180461414281,
-0.5955848372439927,
-0.561368290332747,
-0.5284678890407182,
-0.4969645048170337,
-0.4669207911939477,
-0.43838194053525414,
-0.41137672686494753,
-0.3859187594129476,
-0.3620078770006705
],
[
-1.0949685289054527,
-1.1240117691929445,
-1.1520591113963057,
-1.1788984079335658,
-1.204312484700911,
-1.2280818457058016,
-1.249987790338642,
-1.2698159153838429,
-1.2873599497153037,
-1.3024258416348709,
-1.3148359879596667,
-1.324433461928105,
-1.3310860663157662,
-1.3346900123314123,
-1.3351730083485789,
-1.3324965405413562,
-1.3266571455348222,
-1.3176865181297002,
-1.305650367851443,
-1.2906460354461078,
-1.2727989976303777,
-1.2522585114840206,
-1.2291927583624362,
-1.2037839171397415,
-1.1762236064007352,
-1.1467090731048608,
-1.1154403755348106,
-1.0826186333548689,
-1.0484452334629117,
-1.0131217271020239,
-0.9768500634997308,
-0.9398327929461759,
-0.9022729321393861,
-0.8643732946510816,
-0.8263352191932035,
-0.788356748930408,
-0.7506304055676862,
-0.713340752719622,
-0.6766619548527636,
-0.6407555187120214,
-0.6057683646533651,
-0.5718313267375513,
-0.539058131747012,
-0.5075448645222214,
-0.477369893388098,
-0.4485942058939473,
-0.4212620910091034,
-0.3954020978124987,
-0.37102820075243237,
-0.348141105906109
],
[
-1.0553041722018264,
-1.082759130217758,
-1.1092350357893286,
-1.1345311059279035,
-1.15844246305094,
-1.180762736238013,
-1.2012870290056445,
-1.2198152210446864,
-1.2361555490254126,
-1.2501283862915784,
-1.261570114086781,
-1.2703369495736414,
-1.2763085707484294,
-1.2793913586287393,
-1.2795210667199481,
-1.276664731136694,
-1.2708216562134593,
-1.2620233534357914,
-1.2503323774082198,
-1.2358400891522616,
-1.2186634772406877,
-1.1989412686036185,
-1.176829646154788,
-1.1524979407651461,
-1.1261246645767276,
-1.0978941936802566,
-1.0679942960477122,
-1.0366145543482073,
-1.0039455820345005,
-0.9701788065401903,
-0.9355065207518488,
-0.9001218947690995,
-0.8642186900232334,
-0.8279905095544083,
-0.7916295272929523,
-0.7553247417149467,
-0.7192598776241034,
-0.6836111053099718,
-0.6485447587188345,
-0.6142152194587506,
-0.5807631004168982,
-0.5483138208081091,
-0.5169766214362761,
-0.48684403035732193,
-0.45799175811884507,
-0.43047897945357794,
-0.40434894443116787,
-0.37962985547843686,
-0.3563359458255706,
-0.3344686982296381
],
[
-1.015884465186432,
-1.0417870819966244,
-1.0667300047104897,
-1.090523599935117,
-1.112974979779809,
-1.1338904916081942,
-1.153078531077663,
-1.1703526424519213,
-1.1855348497278473,
-1.1984591395159547,
-1.2089749929512243,
-1.2169508408406713,
-1.222277296047826,
-1.22487000265518,
-1.2246719361160876,
-1.2216549960094873,
-1.215820756466275,
-1.2072002811221678,
-1.1958529698094962,
-1.1818644802489713,
-1.1653438528882736,
-1.1464200497592767,
-1.1252381846605912,
-1.1019557573434482,
-1.0767391970012004,
-1.0497609657264513,
-1.0211973763240447,
-0.9912271570323139,
-0.9600306717883765,
-0.9277896036783185,
-0.8946868508498171,
-0.8609063775457814,
-0.8266328046617968,
-0.7920506004683565,
-0.7573428233609523,
-0.722689455257284,
-0.6882654317603562,
-0.6542385156434652,
-0.6207671727318927,
-0.5879985982257745,
-0.5560670141239908,
-0.5250923224497525,
-0.4951791612292423,
-0.4664163756095425,
-0.43887688811822845,
-0.4126179311301019,
-0.38768159109256173,
-0.364095607123605,
-0.34187436497664314,
-0.3210200296907175
],
[
-0.976814798466285,
-1.0012047268258704,
-1.0246565919288118,
-1.0469916467800005,
-1.068028640285258,
-1.0875861895047536,
-1.1054854350906973,
-1.1215529415289176,
-1.1356237852793098,
-1.1475447539166532,
-1.1571775590150235,
-1.1644019463750954,
-1.16911857134683,
-1.1712514969915184,
-1.1707501715148023,
-1.167590751671653,
-1.1617766631392212,
-1.153338328520026,
-1.1423320481305785,
-1.1288380848313275,
-1.1129580754606172,
-1.0948119584697704,
-1.0745346586075746,
-1.052272793542652,
-1.0281816557182804,
-1.0024226730783212,
-0.9751614701416578,
-0.9465665497220163,
-0.9168085142668752,
-0.8860596640445888,
-0.8544937626503324,
-0.8222857556259906,
-0.7896112627252314,
-0.7566457275388068,
-0.7235631842366191,
-0.6905346742835515,
-0.6577264038119053,
-0.6252977680138717,
-0.5933993812051119,
-0.5621712432590096,
-0.5317411506236988,
-0.5022234295461867,
-0.47371803625095554,
-0.4463100380826599,
-0.420069463837182,
-0.39505149200799006,
-0.37129693265104247,
-0.3488329514352171,
-0.3276739821877983,
-0.30782277570204
],
[
-0.9381931780962339,
-0.9611132072133968,
-0.9831188270664422,
-1.0040418732040117,
-1.0237123411629017,
-1.0419606372456924,
-1.0586200756530224,
-1.0735295821934436,
-1.0865365481712386,
-1.097499760548307,
-1.1062923171708767,
-1.1128044202228842,
-1.1169459289886077,
-1.1186485466756029,
-1.117867517832686,
-1.1145827250466642,
-1.1087990978325262,
-1.1005462835757038,
-1.0898775789764366,
-1.0768681773806084,
-1.06161284685114,
-1.0442232077980407,
-1.024824818163589,
-1.0035542897929561,
-0.9805566457321142,
-0.955983083760465,
-0.929989241727196,
-0.9027339764596691,
-0.8743785853008414,
-0.845086333256706,
-0.8150221113276406,
-0.7843520483702431,
-0.7532429276664996,
-0.7218613116013741,
-0.6903723410369632,
-0.658938237334123,
-0.6277165842837555,
-0.5968584984911762,
-0.566506808545665,
-0.5367943578151928,
-0.507842527403502,
-0.479760049967067,
-0.45264215664491014,
-0.42657007220198906,
-0.4016108502267498,
-0.37781752221048004,
-0.3552295219124605,
-0.3338733392146659,
-0.31376335490443097,
-0.294902808523813
],
[
-0.9001101164041072,
-0.9216056316076355,
-0.9422121618881121,
-0.9617717881799126,
-0.9801253335495221,
-0.9971144903767054,
-1.0125841603902388,
-1.0263849672246987,
-1.0383758863878934,
-1.048426922358663,
-1.0564217480046307,
-1.0622602089757047,
-1.0658605868456879,
-1.0671615114104158,
-1.0661234166257092,
-1.062729447888611,
-1.0569857518597012,
-1.0489211138972927,
-1.0385859510490005,
-1.0260507172047386,
-1.011403826307886,
-0.9947492427155851,
-0.9762039174814829,
-0.9558952588507724,
-0.9339588104410846,
-0.9105362713259662,
-0.885773933328133,
-0.8598215415887988,
-0.8328315170508944,
-0.8049584261279344,
-0.7763585529203687,
-0.7471894271600206,
-0.717609184919965,
-0.6877756821799075,
-0.6578453336914072,
-0.6279717009243504,
-0.5983038947545904,
-0.5689848858184099,
-0.5401498265646464,
-0.5119244854707258,
-0.4844238791207981,
-0.4577511661560324,
-0.4319968426475943,
-0.4072382546077433,
-0.3835394225124519,
-0.3609511561918657,
-0.3395114267091126,
-0.3192459547032881,
-0.30016897152509137,
-0.2822841095479173
],
[
-0.8626485989642636,
-0.8827670785876875,
-0.9020235165082618,
-0.9202698755711708,
-0.9373573660470302,
-0.9531384487580962,
-0.967469020866132,
-0.9802107441412592,
-0.9912334625122506,
-1.0004176426825462,
-1.0076567595508037,
-1.0128595383222565,
-1.0159519589749397,
-1.0168789277143433,
-1.015605525734824,
-1.012117759257222,
-1.0064227570982756,
-0.9985483926830201,
-0.9885423449051602,
-0.9764706535519847,
-0.9624158656571056,
-0.9464749035492667,
-0.9287568076557673,
-0.9093805122818016,
-0.8884727977823734,
-0.8661665282297857,
-0.8425992341315272,
-0.8179120426615931,
-0.7922489029552351,
-0.7657560109321887,
-0.7385813141899193,
-0.7108739760573878,
-0.682783697573264,
-0.6544598315516181,
-0.6260502661605607,
-0.5977000982571959,
-0.5695501521571491,
-0.5417354231585593,
-0.5143835354435721,
-0.48761330189743146,
-0.4615334615708131,
-0.4362416524169219,
-0.4118236560215476,
-0.3883529302435358,
-0.3658904271248353,
-0.3444846783931419,
-0.32417211989358585,
-0.3049776193017566,
-0.2869151680567663,
-0.26998869797180003
],
[
-0.8258841185391155,
-0.8446746692059335,
-0.8626313940946897,
-0.879615754663523,
-0.8954888938183587,
-0.9101135159740013,
-0.9233559228027127,
-0.9350881652238552,
-0.9451902608159695,
-0.953552414774447,
-0.9600771726838075,
-0.9646814258076497,
-0.9672981855512636,
-0.9678780445028992,
-0.9663902481929438,
-0.962823315303891,
-0.957185164838534,
-0.9495027361978604,
-0.9398211206611989,
-0.9282022576436324,
-0.9147232824806282,
-0.899474639783973,
-0.8825580930067269,
-0.8640847630022669,
-0.8441733141847265,
-0.8229483771771169,
-0.800539255317855,
-0.7770789154074327,
-0.7527032183885697,
-0.7275503108664997,
-0.7017600792185035,
-0.6754735670795273,
-0.6488322731525276,
-0.621977275321071,
-0.5950481626993689,
-0.5681817928665402,
-0.5415109214124331,
-0.5151627713230135,
-0.48925761917039157,
-0.46390747410163924,
-0.43921491625039255,
-0.41527214618426345,
-0.3921602792143126,
-0.3699489003393258,
-0.34869587917098943,
-0.3284474305904471,
-0.30923839668960085,
-0.291092718812461,
-0.2740240649375181,
-0.2580365767296333
],
[
-0.7898847671875042,
-0.8073976977625585,
-0.824106053476711,
-0.8398803971950733,
-0.8545913418381543,
-0.8681113095948274,
-0.8803164229255204,
-0.8910884891046287,
-0.9003170301978025,
-0.9079013010668141,
-0.9137522300459913,
-0.917794211288683,
-0.9199666754741338,
-0.9202253676295096,
-0.9185432681528505,
-0.9149111063033653,
-0.9093374345183801,
-0.9018482562637282,
-0.8924862281900522,
-0.8813094866892949,
-0.8683901762595811,
-0.8538127786722675,
-0.8376723541807867,
-0.8200728061439267,
-0.8011252672600735,
-0.7809466800664888,
-0.7596586096906753,
-0.7373862882262614,
-0.7142578537538539,
-0.6904037189278106,
-0.6659559886780066,
-0.641047845924513,
-0.6158128374238082,
-0.5903840156055452,
-0.5648929215747077,
-0.5394684239930518,
-0.5142354536698955,
-0.48931369121707236,
-0.4648162736710657,
-0.4408485858256771,
-0.41750719465184793,
-0.39487897279374773,
-0.37304044207670695,
-0.35205735237348845,
-0.33198449671662844,
-0.312865751330099,
-0.2947343198646829,
-0.2776131546973367,
-0.2615155245122657,
-0.2464456961342577
],
[
-0.7547113782558984,
-0.7709978120000371,
-0.7865097299871522,
-0.8011263906621032,
-0.814727411670878,
-0.8271944114504162,
-0.8384127616068782,
-0.8482734133772535,
-0.8566747529984329,
-0.8635244330569685,
-0.86874112057994,
-0.8722560985682233,
-0.8740146567289669,
-0.8739772101519259,
-0.8721200922535174,
-0.8684359808333968,
-0.862933933434634,
-0.8556390296364607,
-0.8465916419899617,
-0.8358463818682683,
-0.8234707888033516,
-0.8095438489155633,
-0.7941544370032065,
-0.7773997757122204,
-0.7593839932339475,
-0.7402168391756627,
-0.7200125893873345,
-0.6988891388352653,
-0.6769672520476262,
-0.6543699179391245,
-0.6312217434539455,
-0.6076483199990272,
-0.5837755074042466,
-0.5597285995066726,
-0.5356313594979202,
-0.5116049376119697,
-0.4877667047776457,
-0.46422905085008936,
-0.4410982037018515,
-0.4184731258657526,
-0.3964445396812666,
-0.37509412172402845,
-0.35449389461578995,
-0.3347058309149369,
-0.3157816711278283,
-0.29776294697373074,
-0.28068119245577583,
-0.26455831923133555,
-0.2494071291422647,
-0.23523193527167097
],
[
-0.7204177105738427,
-0.7355292344810507,
-0.7498968958252268,
-0.7634082388242769,
-0.7759514224818951,
-0.7874167485786516,
-0.7976982821357914,
-0.806695529445255,
-0.8143151315304771,
-0.820472524508495,
-0.8250935133957672,
-0.8281157031323015,
-0.8294897306949904,
-0.8291802457676132,
-0.8271665949975535,
-0.8234431765745929,
-0.8180194474774747,
-0.8109195844933467,
-0.8021818206932736,
-0.791857499567173,
-0.7800099072027531,
-0.7667129563202756,
-0.7520498024798308,
-0.736111470879073,
-0.718995561471808,
-0.7008050816355929,
-0.6816474316524381,
-0.661633542281135,
-0.640877139650575,
-0.6194940943140614,
-0.5976018013188605,
-0.5753185377745903,
-0.5527627531244091,
-0.5300522630645456,
-0.5073033377249699,
-0.4846296948902058,
-0.4621414266235704,
-0.4399439004269968,
-0.41813668288290995,
-0.39681253451723986,
-0.3760565201909092,
-0.35594527101191775,
-0.3365464231205588,
-0.31791824723779305,
-0.3001094718362157,
-0.28315929310818977,
-0.2670975571187195,
-0.25194509387166797,
-0.2377141794590404,
-0.22440910080004295
],
[
-0.6870506678290393,
-0.701039017713277,
-0.7143145521785443,
-0.726772691433988,
-0.7383096782292276,
-0.7488239968776247,
-0.7582178688967078,
-0.766398792325507,
-0.7732810856522176,
-0.778787392063889,
-0.7828500959591929,
-0.7854126019307917,
-0.7864304272915379,
-0.7858720631736282,
-0.7837195665848125,
-0.7799688566086633,
-0.7746297018753852,
-0.7677254027631597,
-0.7592921893191564,
-0.7493783730043205,
-0.7380433051813307,
-0.7253562058503631,
-0.7113949308242036,
-0.6962447432567598,
-0.6799971460328078,
-0.6627488159076526,
-0.6446006604330143,
-0.625656997415331,
-0.6060248370836387,
-0.5858132322345392,
-0.5651326535263121,
-0.5440943467625439,
-0.5228096360306801,
-0.5013891493192429,
-0.4799419592843063,
-0.4585746484338187,
-0.4373903226454615,
-0.41648760776699867,
-0.3959596700546144,
-0.3758933022321389,
-0.3563681135645065,
-0.33745585557033375,
-0.3192199061066644,
-0.3017149247918023,
-0.2849866831654976,
-0.26907206443178233,
-0.25399922060937696,
-0.23978786967569288,
-0.22644971185729335,
-0.2139889424539987
],
[
-0.6546505467666928,
-0.6675673263765886,
-0.679802546256528,
-0.691259096243999,
-0.7018408541138764,
-0.7114540006979604,
-0.7200083979935816,
-0.7274189993825044,
-0.7336072559248226,
-0.7385024784715275,
-0.7420431125249254,
-0.7441778818528259,
-0.7448667582809182,
-0.7440817192072748,
-0.7418072613982076,
-0.7380406494922374,
-0.7327918900080224,
-0.7260834358170414,
-0.717949640940486,
-0.7084359997926695,
-0.6975982170715862,
-0.6855011628532628,
-0.672217770803514,
-0.6578279350188014,
-0.6424174528272284,
-0.6260770477552511,
-0.608901490452399,
-0.5909888179324675,
-0.5724396355553362,
-0.5533564740623791,
-0.5338431673843589,
-0.5140042166123796,
-0.49394411114674563,
-0.47376658834354746,
-0.45357382603607954,
-0.43346557593272106,
-0.413538258056918,
-0.39388404554855483,
-0.3745899743998101,
-0.35573711384914763,
-0.33739983058996537,
-0.31964517446144214,
-0.30253240588397545,
-0.2861126770103777,
-0.2704288703021148,
-0.2555155907228689,
-0.2413993014505934,
-0.22809858819899387,
-0.21562453397077708,
-0.20398118425290646
],
[
-0.6232513085181347,
-0.635147740768814,
-0.6463939072439309,
-0.656899767289346,
-0.6665763963772136,
-0.6753372026675026,
-0.6830991949253784,
-0.689784273014171,
-0.6953205078704472,
-0.6996433744929716,
-0.7026968994418505,
-0.7044346840457496,
-0.7048207663059751,
-0.7038302886246401,
-0.7014499450754343,
-0.6976781908736234,
-0.6925252076214024,
-0.6860126301529921,
-0.6781730534485442,
-0.6690493499724666,
-0.6586938376525522,
-0.6471673453315785,
-0.6345382249182341,
-0.6208813571058486,
-0.6062771904833456,
-0.5908108428782275,
-0.5745712802243074,
-0.5576505739746382,
-0.5401432250944893,
-0.5221455328083775,
-0.5037549808765083,
-0.4850696138310767,
-0.46618738007367166,
-0.44720542702773736,
-0.428219344133408,
-0.40932236062475014,
-0.3906045150997144,
-0.3721518215963374,
-0.35404546144991444,
-0.33636103139741613,
-0.3191678764700562,
-0.3025285317785503,
-0.28649829114722714,
-0.2711249135390724,
-0.25644847110704394,
-0.242501336131708,
-0.22930829849992673,
-0.21688680099563862,
-0.20524727659767683,
-0.19439357016725478
],
[
-0.5928808679968219,
-0.6038075762992796,
-0.6141151959690182,
-0.6237203642862947,
-0.6325409304245297,
-0.6404970789514127,
-0.6475124948221624,
-0.6535155431729838,
-0.6584404336363265,
-0.6622283362330851,
-0.6648284144881192,
-0.6661987415865317,
-0.6663070674107076,
-0.6651314083496674,
-0.6626604378915713,
-0.6588936640519594,
-0.6538413892920627,
-0.6475244591495931,
-0.6399738165298737,
-0.6312298885197283,
-0.6213418406557707,
-0.6103667388395231,
-0.5983686608007589,
-0.5854177967993724,
-0.5715895732440495,
-0.5569638237459098,
-0.5416240209600965,
-0.525656570885181,
-0.5091501606951857,
-0.4921951431307027,
-0.474882936029837,
-0.45730541520962065,
-0.43955428243339156,
-0.4217203968451749,
-0.4038930668191971,
-0.3861593082750995,
-0.3686030838190909,
-0.35130454352690677,
-0.3343392921162617,
-0.317777708429399,
-0.30168434171696357,
-0.2861174056382677,
-0.27112838580183585,
-0.256761770754937,
-0.2430549102395141,
-0.23003799880567488,
-0.21773417790579352,
-0.20615974562507033,
-0.19532446033884587,
-0.1852319228113316
],
[
-0.5635613968930234,
-0.5735682145153933,
-0.5829868637910238,
-0.5917402787422875,
-0.5997526730288268,
-0.6069505759296246,
-0.613263901509162,
-0.6186270263170542,
-0.6229798480057086,
-0.6262687951708419,
-0.6284477578077742,
-0.6294789082905761,
-0.6293333849258049,
-0.6279918140235681,
-0.625444652055793,
-0.6216923366681177,
-0.6167452437289254,
-0.6106234567058353,
-0.6033563637586664,
-0.5949821062205081,
-0.5855469087648552,
-0.5751043257649512,
-0.5637144395785844,
-0.5514430444870204,
-0.538360844924559,
-0.524542689021826,
-0.5100668492948797,
-0.4950143527468186,
-0.47946835399261356,
-0.46351353842983356,
-0.44723553879538447,
-0.43072034805045845,
-0.41405371428845394,
-0.3973205086608218,
-0.3806040642203633,
-0.36398549098603006,
-0.34754297936729206,
-0.3313511094722291,
-0.3154801871894657,
-0.299995629047475,
-0.2849574168039256,
-0.27041963984077966,
-0.2564301392348969,
-0.24303026239827874,
-0.23025473197944912,
-0.2181316277496036,
-0.20668247581634203,
-0.1959224359398215,
-0.18586057508142884,
-0.17650021360433443
],
[
-0.5353096363447074,
-0.5444454417408625,
-0.5530236168431684,
-0.5609730230287874,
-0.5682238450380463,
-0.5747085449350378,
-0.5803628423000813,
-0.5851266979712809,
-0.5889452762141755,
-0.5917698586005795,
-0.5935586823538888,
-0.5942776766728467,
-0.593901072730373,
-0.5924118667254064,
-0.5898021205016449,
-0.5860730906590983,
-0.5812351844478709,
-0.5753077485757089,
-0.5683187047865333,
-0.560304053002678,
-0.5513072682881526,
-0.5413786212828455,
-0.5305744526516514,
-0.5189564303218583,
-0.506590813999332,
-0.493547745144722,
-0.47990057303252187,
-0.46572521968148695,
-0.4510995793619894,
-0.43610294297641616,
-0.4208154345392917,
-0.40531744656011826,
-0.38968906325653263,
-0.3740094647294745,
-0.35835631077480257,
-0.34280510900807837,
-0.3274285775783158,
-0.31229601722060363,
-0.29747271025814914,
-0.2830193651925538,
-0.2689916247549158,
-0.2554396529792833,
-0.24240781339081297,
-0.22993444622622827,
-0.2180517481731571,
-0.20678575382156705,
-0.19615641417469687,
-0.18617776437706757,
-0.17685817039639729,
-0.1682006427710242
],
[
-0.5081372158570542,
-0.5164497919345684,
-0.5242347823241451,
-0.5314266192402016,
-0.5379610815815126,
-0.543776172254698,
-0.5488130159502507,
-0.5530167565630633,
-0.5563374314548323,
-0.558730798549216,
-0.5601590920245587,
-0.560591683283684,
-0.5600056260432348,
-0.5583860678286339,
-0.5557265148190049,
-0.5520289426816566,
-0.5473037524675477,
-0.5415695773935316,
-0.5348529529060781,
-0.5271878682466967,
-0.5186152222691004,
-0.5091822090187792,
-0.4989416592540715,
-0.4879513625577463,
-0.4762733911089412,
-0.463973440970871,
-0.4511202005390952,
-0.4377847493748891,
-0.4240399848422166,
-0.40996006951013275,
-0.39561988970766393,
-0.38109451517349735,
-0.3664586513585173,
-0.35178607925315597,
-0.33714908204048966,
-0.3226178627227103,
-0.3082599614372882,
-0.2941396848775987,
-0.2803175626470502,
-0.266849846303134,
-0.2537880662931238,
-0.24117866012731137,
-0.22906268227753301,
-0.21747560279317923,
-0.20644719786271404,
-0.19600153185113312,
-0.18615702698172698,
-0.17692661399442977,
-0.16831795491354995,
-0.16033372753272424
],
[
-0.48205097548605746,
-0.4895868908470402,
-0.49662467401595733,
-0.5031039851541786,
-0.5089658372587346,
-0.5141534020671672,
-0.5186128316424292,
-0.5222940765993553,
-0.5251516803102781,
-0.5271455275358686,
-0.5282415259252482,
-0.5284121998405749,
-0.5276371780596714,
-0.525903560101424,
-0.5232061501237897,
-0.5195475523902511,
-0.5149381279147022,
-0.5093958177158256,
-0.502945843709244,
-0.4956203031764681,
-0.4874576765272298,
-0.47850227034222215,
-0.46880361820269223,
-0.4584158605160211,
-0.44739712157372713,
-0.4358088977795572,
-0.42371546588517284,
-0.41118331480595227,
-0.3982805998203879,
-0.3850766142718536,
-0.37164127171750616,
-0.35804459100915764,
-0.3443561779965275,
-0.33064470013549174,
-0.316977353804481,
-0.3034193280282629,
-0.2900332720195218,
-0.27687877698997476,
-0.2640118847055035,
-0.2514846360789692,
-0.23934467269473092,
-0.22763490266672426,
-0.21639323987961212,
-0.20565242273952722,
-0.1954399153712938,
-0.18577789102394104,
-0.1766832945186747,
-0.16816797806461992,
-0.16023890278271447,
-0.15289839686242934
],
[
-0.45705328869438633,
-0.4638577989618299,
-0.4701929546260458,
-0.47600331502969373,
-0.481234784207325,
-0.4858353503853532,
-0.48975583724816973,
-0.49295064958905954,
-0.4953784946483112,
-0.4970030598005024,
-0.4977936274150778,
-0.497725608773528,
-0.4967809809307243,
-0.4949486133432712,
-0.4922244748697596,
-0.4886117162106679,
-0.48412062775541265,
-0.4787684778270551,
-0.4725792410962809,
-0.46558323109361954,
-0.45781665391975246,
-0.4493211021433773,
-0.4401430082996748,
-0.4303330763223646,
-0.419945706787633,
-0.40903842831290915,
-0.397671343267088,
-0.38590659162734664,
-0.3738078328919582,
-0.36143974290025627,
-0.34886752056378156,
-0.33615639904304007,
-0.3233711567814541,
-0.31057562581623455,
-0.2978321975678404,
-0.2852013294246486,
-0.27274105843934193,
-0.2605065309402338,
-0.24854955854187444,
-0.23691821175016847,
-0.22565646206780476,
-0.21480388230427405,
-0.20439541285842677,
-0.19446119930030414,
-0.18502650388152764,
-0.17611169088462353,
-0.1677322831815734,
-0.15989908516253026,
-0.15261836541567575,
-0.145892091236985
],
[
-0.433142383633059,
-0.43925935106550706,
-0.44493499291304994,
-0.4501184533387921,
-0.45476020129632255,
-0.4588127084073025,
-0.46223113541850647,
-0.46497401139884353,
-0.46700388877447296,
-0.46828795685757796,
-0.46879859680297453,
-0.4685138619976438,
-0.46741786977920496,
-0.46550109306402354,
-0.46276054385671594,
-0.4591998445558382,
-0.4548291872486746,
-0.44966518552910806,
-0.44373062746922876,
-0.43705414191095315,
-0.429669792924677,
-0.4216166188744167,
-0.4129381328931109,
-0.40368180068850634,
-0.39389850958522965,
-0.38364203980730194,
-0.3729685455707423,
-0.36193605000490336,
-0.3506039546817965,
-0.33903256198460907,
-0.3272826069669219,
-0.31541479488095614,
-0.30348934116802095,
-0.2915655122425621,
-0.27970116758211994,
-0.26795230611207266,
-0.25637262228399316,
-0.2450130792673676,
-0.23392150805970824,
-0.22314224192583543,
-0.21271579536485707,
-0.20267859583255166,
-0.19306277485200019,
-0.18389602310802267,
-0.17520151184352672,
-0.16699788055318843,
-0.15929928877347788,
-0.1521155278304659,
-0.14545218682006988,
-0.13931086590717412
],
[
-0.4103126609046879,
-0.41578449059901357,
-0.4208422138657575,
-0.4254392598334048,
-0.429530352987167,
-0.43307213395862554,
-0.43602378632035954,
-0.4383476549727694,
-0.4400098408566555,
-0.4409807564361592,
-0.4412356267544737,
-0.44075492192053634,
-0.43952470865193405,
-0.43753691094321734,
-0.43478947296254455,
-0.4312864207616969,
-0.4270378231226156,
-0.4220596556231849,
-0.41637357552704646,
-0.4100066181237856,
-0.4029908274294298,
-0.395362835516197,
-0.38716340506955205,
-0.3784369490621512,
-0.36923103978992844,
-0.35959591714028816,
-0.3495840031448436,
-0.33924942694780436,
-0.328647561641343,
-0.31783457228728507,
-0.3068669730854282,
-0.2958011911769566,
-0.2846931349787317,
-0.2735977661044998,
-0.26256867562388986,
-0.25165766736406703,
-0.24091435288279373,
-0.23038576437151936,
-0.2201159928785389,
-0.2101458597486584,
-0.20051262901596456,
-0.19124976769820035,
-0.18238675962578665,
-0.17394897673886467,
-0.16595760986533825,
-0.15842965901320805,
-0.15137798131647473,
-0.14481139308183888,
-0.1387348209756788,
-0.13314949631530182
],
[
-0.388555006127946,
-0.3934225972101726,
-0.39790244047073164,
-0.4019519646092301,
-0.40552985665525865,
-0.408596629947906,
-0.4111151960578404,
-0.4130514275537681,
-0.4143746978315018,
-0.4150583840533869,
-0.41508031965300185,
-0.4144231838820934,
-0.41307481751540387,
-0.41102845604527105,
-0.4082828744078856,
-0.40484244035782346,
-0.4007170768775934,
-0.39592213727260894,
-0.39047819964096864,
-0.3844107900032693,
-0.37775004533742673,
-0.3705303289381653,
-0.3627898108302611,
-0.35457002540822435,
-0.3459154171418931,
-0.33687288324676,
-0.32749131990715385,
-0.31782117623360207,
-0.3079140179129243,
-0.29782210071826354,
-0.28759795286969103,
-0.2772939647707192,
-0.2669619848896213,
-0.25665292141260465,
-0.2464163505977216,
-0.23630013428700125,
-0.22635005055759128,
-0.21660944279647232,
-0.2071188933974758,
-0.19791592869459207,
-0.1890347616196808,
-0.18050607792893059,
-0.17235687075506456,
-0.16461032682419374,
-0.15728576605844224,
-0.15039863460106284,
-0.14396054967222982,
-0.13797939319101282,
-0.13245944985644542,
-0.12740158441346994
],
[
-0.36785709585355086,
-0.372159806158591,
-0.3761002258327011,
-0.3796395120509205,
-0.3827400373784715,
-0.38536590895896383,
-0.3874834900086247,
-0.3890619117250982,
-0.39007356317415365,
-0.3904945466364529,
-0.3903050863309564,
-0.3894898794067845,
-0.38803837960572374,
-0.38594500600132786,
-0.38320927163880847,
-0.37983582961563744,
-0.37583443700786245,
-0.3712198398876797,
-0.3660115853096686,
-0.36023376838550347,
-0.3539147242610057,
-0.34708667583719066,
-0.33978534837584295,
-0.33204956170457267,
-0.3239208096623545,
-0.31544283484487523,
-0.3066612048138595,
-0.2976228939489187,
-0.2883758732712961,
-0.2789687090571433,
-0.2694501700338712,
-0.2598688424976545,
-0.25027275280657957,
-0.24070899732084983,
-0.23122338084722827,
-0.2218600658276525,
-0.21266123570649376,
-0.2036667769436583,
-0.19491398487031886,
-0.18643729891685534,
-0.17826807263784694,
-0.17043438342861417,
-0.16296088592671631,
-0.15586871190776275,
-0.1491754181228625,
-0.1428949820942471,
-0.13703784448852596,
-0.13161099540967935,
-0.12661810086181358,
-0.12205966476743657
]
],
"zauto": true,
"zmax": 2.3873608649055242,
"zmin": -2.3873608649055242
},
{
"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.3672756886415219,
0.3542624693991282,
0.3412926376728919,
0.3284610577341625,
0.3158668563204765,
0.3036108634840846,
0.2917926539248497,
0.2805074776162177,
0.2698435353824332,
0.2598801968617272,
0.25068779990245627,
0.24232951646102086,
0.2348653377932195,
0.22835750947557618,
0.22287586362822023,
0.2185007649912931,
0.21532126443933056,
0.2134269503850016,
0.2128939604462812,
0.2137680824624729,
0.21604968282917747,
0.21968522507775917,
0.22456812675107246,
0.23054860496537172,
0.23744953512335767,
0.2450842673663598,
0.25327283970041525,
0.26185437787731275,
0.270694884255483,
0.2796906394616115,
0.28876799035482337,
0.2978804910567623,
0.30700435036129975,
0.3161330268399046,
0.32527166092807713,
0.3344318683478337,
0.3436272552051607,
0.35286986204996795,
0.36216761091765226,
0.3715227227569204,
0.38093099639030537,
0.39038179426685576,
0.39985856146567594,
0.40933970713678713,
0.41879969526319655,
0.4282102178972468,
0.4375413534576647,
0.44676264127552057,
0.45584402882150926,
0.4647566686858987
],
[
0.36878751214797095,
0.35584536340239703,
0.3429210178591504,
0.33010125392006356,
0.31747612927031926,
0.3051366389088224,
0.29317213435564754,
0.2816678187308819,
0.27070278040033735,
0.26034914149877386,
0.25067290645205875,
0.24173691165211342,
0.2336058232890861,
0.22635239041097802,
0.22006324802073127,
0.21484177880197378,
0.21080535360282918,
0.20807517116796087,
0.20675908531842524,
0.20693072151237923,
0.20861053699111265,
0.2117547709527867,
0.21625589478070398,
0.22195426037233817,
0.22865720638178055,
0.2361604589742404,
0.24426735371451797,
0.25280321896760344,
0.2616240947924471,
0.2706202204844805,
0.2797153424998684,
0.2888630630172612,
0.2980413802146115,
0.3072464033506863,
0.31648602582545715,
0.32577413439299285,
0.3351257352603359,
0.34455319801311624,
0.35406366568369463,
0.36365756110398045,
0.37332803925014113,
0.3830611913256165,
0.392836793698031,
0.402629405926363,
0.41240964863082097,
0.42214552615134915,
0.4318036946469661,
0.44135060926274694,
0.4507535118304865,
0.45998124235845345
],
[
0.3707632447159394,
0.3579238248248526,
0.3450767705914561,
0.33230052526417064,
0.3196758438279367,
0.3072836795729076,
0.2952029843751157,
0.2835087566668841,
0.2722708004071579,
0.26155374640872653,
0.25141886917104295,
0.24192802770525199,
0.23314959536373062,
0.22516550040038816,
0.21807756876441015,
0.2120105147145195,
0.20710863267469673,
0.20352406487922234,
0.2013967847126758,
0.2008297653979078,
0.2018658151257092,
0.20447334632290629,
0.20854585249908475,
0.21391509017618346,
0.22037350080403564,
0.2276994575900599,
0.2356797712055448,
0.24412623786208085,
0.2528853553504364,
0.2618418771420381,
0.2709175722464699,
0.2800666955646933,
0.2892695393013699,
0.2985252044528046,
0.3078444773400924,
0.3172434454782787,
0.3267382513697899,
0.33634117272887776,
0.34605804378201205,
0.35588690236197124,
0.3658176640816335,
0.37583258487461596,
0.3859072690494877,
0.396012001634746,
0.40611322072445155,
0.41617498861183766,
0.42616036284265935,
0.43603260558073237,
0.44575619974784236,
0.4552976628558121
],
[
0.3731537316497912,
0.36044433092499445,
0.34770208982841827,
0.33499704819742526,
0.32240065619091085,
0.30998390319992514,
0.29781550047863403,
0.28596046233018996,
0.27447954139683295,
0.2634300385494068,
0.25286846826630466,
0.242855344325265,
0.23346189128654837,
0.22477775846345974,
0.21691788475769602,
0.21002576853320234,
0.20426998070294908,
0.19983142284822017,
0.19688106375201525,
0.19555152649479268,
0.19590961222618905,
0.19793836137331947,
0.20153486664224565,
0.2065244760642635,
0.2126863575774679,
0.21978268836693712,
0.22758464074998352,
0.23589126103378422,
0.24454026967946055,
0.2534116953121986,
0.26242605085134957,
0.27153886658088827,
0.28073319160870536,
0.2900113746989294,
0.29938712112563703,
0.3088785193314337,
0.3185024513835498,
0.3282705566675028,
0.3381867210893697,
0.34824592235179863,
0.3584341769982992,
0.368729301347186,
0.37910220545274603,
0.38951847367493075,
0.3999400343999061,
0.41032677425344205,
0.4206380013020043,
0.43083370298839335,
0.4408755763064156,
0.45072783022904117
],
[
0.3759080641968581,
0.36335170862705524,
0.35073766748398627,
0.33812768264937987,
0.3255841128109304,
0.3131683190395527,
0.300939228395144,
0.28895242208385225,
0.2772601868504876,
0.2659130123288935,
0.25496296090344084,
0.24446911708983438,
0.23450488019552868,
0.22516616749548926,
0.21657869312492103,
0.2089015705442013,
0.20232395139203468,
0.1970518672332011,
0.19328450361815613,
0.19118291174976826,
0.19083851279170616,
0.1922511614716291,
0.19532458721058024,
0.19988087081688224,
0.20568866943153322,
0.2124961932596417,
0.22006072876739763,
0.22816997528219607,
0.23665403790467815,
0.24538920031646774,
0.25429552794548854,
0.2633304425977994,
0.2724801415035948,
0.28175036237947537,
0.2911576154138208,
0.3007216403452977,
0.3104595159172936,
0.3203815650801862,
0.3304889765773661,
0.34077291024037343,
0.35121476897651044,
0.3617872961865219,
0.37245617850880625,
0.3831818834733319,
0.39392152418371384,
0.40463060630712655,
0.4152645685302236,
0.4257800723480478,
0.4361360297708225,
0.446294379369106
],
[
0.3789750766551521,
0.3665908174955884,
0.3541245684597082,
0.3416300393159237,
0.32916090205457077,
0.3167694458135613,
0.30450551635182665,
0.2924160793072695,
0.28054582032581105,
0.2689392202454676,
0.2576444746529609,
0.2467194100671763,
0.23623913085014414,
0.22630448123810176,
0.2170495547617845,
0.20864557548414586,
0.20129784950911764,
0.19523271565016706,
0.19067321442187665,
0.18780590748528264,
0.18674608214693153,
0.18751191605544293,
0.19001697988721372,
0.1940840776580836,
0.19947530919439238,
0.20592834605851912,
0.21318933787470393,
0.22103675710877072,
0.22929470725075213,
0.23783694605259376,
0.2465839840143315,
0.2554957273955458,
0.2645618188311068,
0.27379138914299833,
0.2832034810867459,
0.2928189742459858,
0.3026544500999605,
0.3127181074447881,
0.32300758761978265,
0.3335094044693553,
0.34419959254634847,
0.35504517546847814,
0.3660060948927539,
0.37703730796967455,
0.38809083862942856,
0.3991176419305553,
0.41006920291519994,
0.4208988387864216,
0.4315627059952156,
0.44202053416260145
],
[
0.382304644373673,
0.3701079785172122,
0.357805786561562,
0.34544415343242246,
0.3330686300465191,
0.32072316661217254,
0.3084494180661516,
0.29628674551765305,
0.2842732936614275,
0.2724485321392384,
0.2608575702929419,
0.24955734418245637,
0.2386243872571212,
0.22816330279682034,
0.21831427261641997,
0.20925707075403757,
0.20120837698098176,
0.19440921848533835,
0.18910083666430527,
0.18549074642447672,
0.18371574565614074,
0.18381275966473368,
0.1857081544817355,
0.18923001025807698,
0.19413889696744105,
0.20016658336241616,
0.20705189248990544,
0.2145669781971546,
0.2225320612944306,
0.2308198622747943,
0.23935232440858423,
0.24809240640018423,
0.25703339169225414,
0.26618766280610917,
0.27557635929060914,
0.2852208278510237,
0.29513631462933204,
0.30532796970736537,
0.3157889526304123,
0.32650025263797117,
0.33743176157846133,
0.34854414224347124,
0.3597910942328554,
0.37112170695623947,
0.38248268292188775,
0.3938202990439465,
0.405082041507359,
0.41621789870575326,
0.42718132853309493,
0.4379299342667313
],
[
0.3858487434277234,
0.37385210825584425,
0.36172744130805623,
0.3495137276087209,
0.33724908823528005,
0.3249699957769465,
0.31271093025167024,
0.3005047772476353,
0.2883843093116905,
0.2763850844257875,
0.2645500096364883,
0.2529356162662715,
0.2416197388148853,
0.23070975725384402,
0.22034985873103505,
0.21072497750837776,
0.20205839723224275,
0.19459989105541856,
0.1886024322337698,
0.18428861543105665,
0.18181282262496287,
0.1812297867479206,
0.18248090677571985,
0.1854041894962245,
0.18976444313781632,
0.1952932049177616,
0.2017267934104353,
0.20883475753482686,
0.2164361000725783,
0.22440430192463134,
0.2326638509050527,
0.24118131975793664,
0.24995373853193992,
0.2589964653173011,
0.268332150366817,
0.27798179090227365,
0.28795833757909683,
0.29826287623531783,
0.3088830941232543,
0.31979355496250894,
0.330957240328124,
0.34232783999914673,
0.3538523575699702,
0.36547370737978074,
0.3771330891077621,
0.38877202120121973,
0.40033398659221775,
0.41176569343753566,
0.42301798320116873,
0.43404643307804086
],
[
0.3895622578725043,
0.3777755493103667,
0.36583961427942946,
0.35378695323367365,
0.3416490364367932,
0.32945579910491085,
0.3172356263998078,
0.305016102753211,
0.2928258237136898,
0.28069754809901126,
0.2686728772877231,
0.25680845713647227,
0.24518337704640866,
0.2339069692790754,
0.22312559227553935,
0.21302627077842226,
0.2038344319650609,
0.19580279273931508,
0.18918935378031676,
0.18422515310400733,
0.18107698761170482,
0.1798150516944521,
0.18039690468575342,
0.18267465476394315,
0.18642331256436476,
0.1913805033109395,
0.19728566731679348,
0.203910195818495,
0.21107508899159488,
0.21865673119701395,
0.22658343304193185,
0.23482597557077525,
0.24338518684385504,
0.25227902362281784,
0.2615309456457405,
0.2711606777553786,
0.2811778326696508,
0.29157836616339255,
0.30234348629295427,
0.313440444754169,
0.3248245840185983,
0.33644206354242034,
0.34823279968805826,
0.3601332877789805,
0.3720791019088873,
0.3840069722204243,
0.3958564146565264,
0.40757093627086904,
0.4190988653589725,
0.43039386621792053
],
[
0.39340354161981317,
0.3818346133534498,
0.3700968535780335,
0.35821695469137016,
0.3462205647607355,
0.3341320532218408,
0.32197479777805604,
0.3097722361085107,
0.2975499357559418,
0.28533890399835704,
0.27318026525347316,
0.261131253219021,
0.249272176117424,
0.23771360019662935,
0.22660246063159425,
0.21612519323963,
0.20650541962677857,
0.19799352164751768,
0.19084615977015282,
0.18529608930545904,
0.18151668568700288,
0.17959009934790554,
0.17948987156658636,
0.18108536350080365,
0.18416727810604688,
0.1884857180681758,
0.19378929185846935,
0.19985621889924488,
0.2065131997634394,
0.21364201959484547,
0.2211762969863902,
0.22909169980394964,
0.2373929062690993,
0.246100051028727,
0.25523664526899387,
0.26482017137767516,
0.2748558379178679,
0.2853334105023727,
0.2962266460103472,
0.3074946567085526,
0.3190844925381812,
0.3309343082423694,
0.3429766240871933,
0.35514134794080643,
0.3673583701166424,
0.37955965427176885,
0.39168082413903793,
0.40366229113734675,
0.41544998946192374,
0.4269957909119489
],
[
0.39733475777452487,
0.38598987093689713,
0.37445839478986426,
0.3627619219822026,
0.35092112014217125,
0.33895575253713256,
0.3268852345700481,
0.3147299367711774,
0.30251344256933377,
0.29026592853138156,
0.2780287389514145,
0.26586005772858823,
0.253841321890796,
0.24208366189982153,
0.23073319694597194,
0.21997349512004472,
0.21002304024104312,
0.201125386301124,
0.19353028909154493,
0.18746605261399132,
0.1831068122805106,
0.18054249343636172,
0.17976120893692615,
0.1806513349068194,
0.18302364334292312,
0.18664650376401093,
0.19128363121589617,
0.19672526583433508,
0.2028078349879276,
0.2094213242778137,
0.2165063649780855,
0.22404432122427248,
0.23204383870703843,
0.24052683898816993,
0.24951614786941498,
0.25902606664097916,
0.26905638560136547,
0.27958969588273375,
0.29059142773904656,
0.30201183696808376,
0.31378914296148974,
0.325853133147877,
0.3381287239562743,
0.3505391531609504,
0.3630086374048917,
0.3754644464167687,
0.387838421097283,
0.40006800345498694,
0.41209686220630515,
0.42387519801115053
],
[
0.4013220283769864,
0.3902062326598479,
0.3788881569693128,
0.3673850064202934,
0.3557132902696621,
0.34388907615514575,
0.33192877977024854,
0.319850666951609,
0.3076772325758745,
0.29543857316811284,
0.2831767744384962,
0.2709511777363271,
0.2588441591274687,
0.2469667450650001,
0.2354630051053403,
0.22451173880943442,
0.2143236075423905,
0.20513176699232358,
0.19717460812626444,
0.19067086577042225,
0.18579026017877182,
0.18262621966583029,
0.18117910725838005,
0.18135660692829705,
0.18299238812899937,
0.18587766992700797,
0.1897965222656987,
0.1945561624486644,
0.2000068157145681,
0.2060496284827589,
0.21263412398002116,
0.21974832041309633,
0.22740506896753682,
0.23562779454714486,
0.244438010549678,
0.25384602157253816,
0.2638453260636064,
0.2744105125258452,
0.2854979745633053,
0.29704856022725107,
0.30899127717574026,
0.32124732303398534,
0.3337339208341459,
0.3463676495556072,
0.35906713222817715,
0.37175506529270425,
0.3843596456362473,
0.39681548651774906,
0.4090641227901282,
0.4210542000675627
],
[
0.40533543236155156,
0.39445287010785596,
0.38335457416292057,
0.37205405331750824,
0.36056443310023123,
0.34889891749194313,
0.3370717725740333,
0.3250999758255518,
0.31300565395933194,
0.3008193798631719,
0.2885843052474601,
0.2763609604318286,
0.2642323490168194,
0.2523087007933545,
0.24073093019426994,
0.2296715139504016,
0.21933123679825856,
0.20993023699287866,
0.20169230891094805,
0.1948228224266209,
0.18948298570823602,
0.18576589646611183,
0.1836813964347483,
0.18315551293605056,
0.18404597174765966,
0.1861698267956701,
0.18933555374123082,
0.19337158854364378,
0.19814570187380087,
0.2035730845818876,
0.20961408316050412,
0.21626444056468472,
0.22354159682692976,
0.23147036684760705,
0.24007051875393282,
0.24934776103567058,
0.25928865943243656,
0.26985921191513446,
0.2810063020073404,
0.2926610403779897,
0.3047430389653,
0.3171648495100855,
0.3298360449726252,
0.34266665674699226,
0.3555698642396804,
0.36846395564577056,
0.3812736465254757,
0.3939308702640999,
0.406375156378634,
0.418553700766605
],
[
0.4093488900696806,
0.3987030235968466,
0.38783031892304437,
0.3767412378957951,
0.36544622787249337,
0.3539563614013317,
0.34228447335073453,
0.3304469073116541,
0.318465955943815,
0.306373024746864,
0.2942124580049713,
0.2820458329597453,
0.26995634983170513,
0.25805272268962937,
0.24647172178320312,
0.23537826663579078,
0.22496179887334689,
0.2154277216780024,
0.20698320214167854,
0.19981782178969915,
0.1940814505375507,
0.18986382131372542,
0.18718149605459106,
0.18597703130695137,
0.18613188866998265,
0.1874902529948629,
0.18988754524348214,
0.19317653703779442,
0.1972455791010798,
0.20202641096399915,
0.2074919890332044,
0.21364686406922057,
0.22051356841890307,
0.22811839181690613,
0.2364791800136379,
0.24559674120296635,
0.25545038376339646,
0.26599724560254023,
0.2771745296827637,
0.2889035527484595,
0.3010945804548362,
0.31365165165935843,
0.32647687733464353,
0.3394739565111867,
0.3525508439781967,
0.3656216253988202,
0.37860771660644965,
0.3914385230567473,
0.4040516896283755,
0.4163930530174017
],
[
0.41333996996578504,
0.40293373877319844,
0.3922919662898676,
0.38142265894300037,
0.3703342072500495,
0.3590361719949876,
0.3475405346082521,
0.33586349381116903,
0.3240278589245878,
0.3120660340025703,
0.3000235008514363,
0.28796258923189655,
0.2759661682990898,
0.26414070935278283,
0.2526179714990297,
0.24155438391439762,
0.23112711045327597,
0.2215259026324657,
0.21294033721703134,
0.20554303641407268,
0.19947095270148196,
0.19480837612164623,
0.19157619928798952,
0.18973130648109932,
0.1891774931847424,
0.18978587009066708,
0.19141977123069898,
0.19395805268912691,
0.19731164793872213,
0.20143066684758443,
0.20630208053512206,
0.21194018658349806,
0.218373151547882,
0.22562900134309688,
0.2337237593696389,
0.2426533725134631,
0.25238994327493625,
0.26288185860921215,
0.2740568260656012,
0.28582662600642633,
0.29809248912299136,
0.3107502807743792,
0.3236949914185767,
0.33682430961933846,
0.35004125264258706,
0.3632559472933166,
0.3763867069151948,
0.38936056093084126,
0.4021133798564248,
0.414589714945089
],
[
0.41728964842232286,
0.40712556702175084,
0.3967196367641184,
0.38607793136309754,
0.37520731292685006,
0.36411633264440196,
0.3528165559245668,
0.34132436698578733,
0.3296632734108754,
0.3178666755322107,
0.30598098528995654,
0.29406887278340305,
0.2822122877251146,
0.27051475467008024,
0.25910229237997495,
0.24812219304043667,
0.23773887637871968,
0.22812619888296146,
0.2194560602767335,
0.21188398510729653,
0.20553350624823724,
0.20048233002699842,
0.19675385959538175,
0.19431711196895377,
0.19309619386882382,
0.19298780331561435,
0.1938827548951364,
0.1956863385258688,
0.19833287101257757,
0.2017917442913708,
0.20606474603916133,
0.21117653578323575,
0.21716136851989873,
0.2240493707476042,
0.23185509141738514,
0.24057000119896157,
0.25015944656710554,
0.26056358133089247,
0.2717011878027304,
0.2834751054628773,
0.29577811990284775,
0.3084984787045958,
0.32152455150251846,
0.33474844649657015,
0.34806859841205107,
0.361391456021458,
0.3746324423156846,
0.38771636219953126,
0.40057741184945905,
0.4131589147145299
],
[
0.4211820475716334,
0.4112622566780793,
0.4010966463947345,
0.39068980560935423,
0.38004750084809535,
0.36917766032034877,
0.3580917383632196,
0.3468064913260656,
0.33534616014475466,
0.32374500122612426,
0.31205003395553693,
0.3003237803062957,
0.2886466631826634,
0.2771186142955131,
0.26585933749227353,
0.25500661119837126,
0.2447120441484124,
0.23513389032052975,
0.2264269532543488,
0.21873029901989333,
0.2121543764806218,
0.2067699709368154,
0.20260179755486443,
0.19962907703728133,
0.19779398602596882,
0.19701675864002932,
0.1972141784217663,
0.1983170815144641,
0.2002827775643219,
0.203099848355273,
0.20678495099803262,
0.21137324189242096,
0.21690529077287912,
0.22341368127665417,
0.2309120058383243,
0.23938794226160995,
0.24880090433993382,
0.2590837291434755,
0.27014722655071405,
0.28188622908211985,
0.2941859464697606,
0.3069277809864973,
0.3199941394791455,
0.3332720883706962,
0.346655903519769,
0.3600486751544855,
0.3733631651662326,
0.38652210787203123,
0.3994581180707936,
0.4121133363252995
],
[
0.4250041700785901,
0.41533045419411796,
0.40540918237604207,
0.3952438302665463,
0.3848394084776982,
0.37420350083882764,
0.36334763676742743,
0.35228900819241177,
0.3410525056845312,
0.32967299802555833,
0.31819771382917794,
0.30668850456191216,
0.2952236802842073,
0.2838990226506964,
0.2728275118109572,
0.2621372829639363,
0.25196739463786166,
0.24246119289298265,
0.23375743551627126,
0.2259799019379087,
0.21922688156351852,
0.21356251745233942,
0.20901220350351418,
0.20556381866884063,
0.2031754292658903,
0.20178841411802909,
0.20134330477006396,
0.20179464702377534,
0.20312133158833676,
0.2053300891754611,
0.20845171738792082,
0.21253143560586502,
0.21761601114358475,
0.22374071317978173,
0.23091875523587363,
0.2391349112285203,
0.2483437863534027,
0.2584721615384786,
0.26942417041198713,
0.2810878834750268,
0.29334206489543774,
0.3060622495291732,
0.31912569191784085,
0.3324150620444253,
0.34582097063149075,
0.3592435110598278,
0.3725930354430773,
0.3857903695855157,
0.3987666388370331,
0.4114628390481221
],
[
0.42874564386670816,
0.41931942732738203,
0.4096460141860039,
0.3997280644629797,
0.38957008591652953,
0.37917950024947444,
0.3685679968206927,
0.35775316711477695,
0.3467603785734746,
0.33562480009349016,
0.3243934340308078,
0.3131269435020206,
0.30190099486697,
0.29080677377564373,
0.27995029548929223,
0.2694501402412294,
0.25943333303827937,
0.2500292871816576,
0.2413620632921256,
0.23354164867006663,
0.22665546391812444,
0.22076170941276835,
0.21588627215883147,
0.2120245336393089,
0.20914848072723924,
0.20721817803957754,
0.2061953117233842,
0.20605568215275194,
0.20679759596209135,
0.20844412045963134,
0.21103876682711828,
0.2146358179475809,
0.21928772044779105,
0.22503243208081847,
0.23188330789962636,
0.23982319270821276,
0.24880319712068893,
0.25874555611422195,
0.26954929123214794,
0.28109721063909876,
0.2932629851982443,
0.3059174409176388,
0.3189336294806213,
0.3321905713964304,
0.34557577676497175,
0.3589867505593978,
0.37233171528186193,
0.3855297663212062,
0.39851063866281405,
0.4112142228639723
],
[
0.43239848472007447,
0.42322081649967397,
0.41379824364776113,
0.40413283960291413,
0.394228785248633,
0.38409344038906074,
0.37373865739015955,
0.36318231645049853,
0.35245002931745484,
0.3415769167243447,
0.33060931565277013,
0.31960621898426533,
0.30864019829289013,
0.29779752034466084,
0.2871771538943405,
0.27688839507300994,
0.2670469396958336,
0.2577694196880366,
0.24916670635520166,
0.2413366453312358,
0.23435726331455878,
0.22828176226726457,
0.22313664567764385,
0.21892396943590675,
0.21562793052640514,
0.21322491903339658,
0.21169507002784796,
0.21103266995775982,
0.21125281908168042,
0.21239258327049118,
0.2145062344992644,
0.2176556455444505,
0.22189803809925368,
0.22727378710315177,
0.23379675665506988,
0.24144880053377207,
0.25017890875856524,
0.25990640815449567,
0.27052693632765307,
0.28191971205232563,
0.29395482833582004,
0.3064997029408798,
0.319424250733237,
0.3326046811654638,
0.345926037349305,
0.3592836948905432,
0.3725840627958724,
0.3857447088889236,
0.3986940932933329,
0.41137105103768407
],
[
0.43595688049310644,
0.4270284158618887,
0.41785909243409497,
0.4084505650500233,
0.39880679799811714,
0.3889351229801231,
0.37884749650349653,
0.36856192558880707,
0.358104000676396,
0.3475084381876376,
0.3368204941439639,
0.32609706819799306,
0.3154072804487092,
0.30483228058287265,
0.29446405262359215,
0.2844030241096418,
0.2747543917489674,
0.26562324814674265,
0.2571088355206334,
0.2492985393175936,
0.24226251270431254,
0.23605000385150712,
0.23068843284455035,
0.22618593841317647,
0.2225374593061312,
0.21973352917758326,
0.2177700881827628,
0.2166570685732096,
0.21642355392397844,
0.21711800221337918,
0.2188031824665301,
0.22154676237457585,
0.22540952918924548,
0.23043373754319496,
0.23663392021241866,
0.2439917402162161,
0.25245537487049685,
0.2619428777884015,
0.2723482757432132,
0.28354894611555753,
0.29541300859446273,
0.30780586423920603,
0.32059544208172064,
0.33365605375315777,
0.3468709722507852,
0.36013395472197157,
0.37334995438008955,
0.3864352470820727,
0.39931715899619796,
0.41193353882822714
],
[
0.43941699745518475,
0.43073798229894444,
0.42182372233941534,
0.4126755695870599,
0.40329732853078915,
0.39369628581991833,
0.3838844002353337,
0.3738796142015808,
0.36370722114943116,
0.35340119181303625,
0.343005329166336,
0.3325740898940895,
0.32217288577590136,
0.31187766913460907,
0.3017736227411233,
0.29195282774773906,
0.2825108838749531,
0.27354260972212285,
0.2651371522726533,
0.2573730601917206,
0.2503140790221907,
0.24400653852175974,
0.23847914155604644,
0.23374566258004553,
0.22981050934885755,
0.22667637823364248,
0.22435253287842397,
0.22286180730442942,
0.22224448165944155,
0.22255775719801807,
0.22387053828069464,
0.22625434782859394,
0.2297721463641454,
0.23446732237863446,
0.24035502133828676,
0.2474173144464748,
0.2556027066142217,
0.2648294916208429,
0.2749917861303084,
0.28596684619098156,
0.29762242974453107,
0.30982334376575577,
0.32243672754909997,
0.3353359593757917,
0.3484032907995672,
0.36153142028570684,
0.3746242469957898,
0.38759702884153374,
0.40037613167001296,
0.4128985144377555
],
[
0.4427768070393665,
0.4343470684906987,
0.42568908187912435,
0.41680396933769503,
0.4076953910512949,
0.3983705357607586,
0.3888412366958534,
0.3791251691485902,
0.36924706222667386,
0.3592398311725164,
0.3491455102710073,
0.3390158434104795,
0.3289123749823028,
0.31890588479276055,
0.30907503507506656,
0.29950415383247414,
0.2902801731179219,
0.28148887489241053,
0.27321076283245566,
0.26551705394134384,
0.25846643008636727,
0.25210325184282284,
0.24645785397868847,
0.2415492665797036,
0.2373902366123783,
0.23399383494423223,
0.23138037667987607,
0.22958305222497008,
0.2286507212496348,
0.22864680945380733,
0.22964407592028696,
0.23171598048969208,
0.2349262163666234,
0.23931843943186762,
0.24490816893139108,
0.2516782608900237,
0.2595784564861808,
0.26852859086312675,
0.27842439910026845,
0.28914461321158064,
0.3005581671434927,
0.31253066445081495,
0.32492965067439245,
0.3376285567607897,
0.35050939593285363,
0.36346440836318994,
0.37639688297400214,
0.38922137426185605,
0.4018634986000764,
0.4142594548613032
],
[
0.446035929847499,
0.43785487502296294,
0.4294537721484353,
0.4208335529396065,
0.41199771894901016,
0.4029532855705428,
0.39371182126693866,
0.38429053539972063,
0.374713347670561,
0.36501185079081916,
0.3552260578563989,
0.3454048103682839,
0.3356057164221597,
0.3258944968697715,
0.31634364640253,
0.30703037227291863,
0.2980338593166141,
0.2894320248942144,
0.28129806228804366,
0.2736972059966383,
0.26668425471445656,
0.26030241428552536,
0.254583927765582,
0.24955271130187842,
0.24522881881856473,
0.24163407938228648,
0.23879781132109673,
0.2367612672785071,
0.23557952657860987,
0.23531996462615953,
0.23605712536018447,
0.23786464093940154,
0.24080556914324064,
0.24492294116229246,
0.25023228617952503,
0.25671741521440106,
0.2643299591177762,
0.2729923296613004,
0.2826031656482872,
0.29304407392805915,
0.30418655780383613,
0.31589831645250865,
0.3280484510444906,
0.3405114191609196,
0.35316979083846894,
0.3659159754549631,
0.3786531307079942,
0.39129546051164277,
0.40376808070648246,
0.4160065956204666
],
[
0.44919549304656525,
0.44126211620325567,
0.4331179250801844,
0.4247636757000143,
0.41620267711762154,
0.40744168474786563,
0.3984918634768243,
0.38936977290984137,
0.38009830992744503,
0.3707075266558008,
0.36123522717747,
0.35172723680758006,
0.34223723735995504,
0.3328260749728721,
0.323560478324122,
0.3145111781992319,
0.3057504958775144,
0.29734956492626263,
0.2893754595059897,
0.2818886044420441,
0.2749409111242212,
0.26857508474804725,
0.26282544869776836,
0.2577204107845237,
0.2532863643680276,
0.24955243042296205,
0.24655510247107498,
0.2443416714705349,
0.2429713757035235,
0.2425135721068395,
0.2430428089256337,
0.2446313684667319,
0.24734046852655475,
0.2512116816678611,
0.25626012446851265,
0.2624705671445782,
0.26979693940712074,
0.2781649824898317,
0.28747724351231896,
0.29761935493495073,
0.30846658513357184,
0.3198898861495411,
0.3317609744872947,
0.3439562619952623,
0.3563596571871833,
0.36886437551468865,
0.3813739462809847,
0.39380260744110523,
0.406075258375977,
0.4181271097798772
],
[
0.4522579971191017,
0.4445708944666669,
0.43668308800558403,
0.42859515589642305,
0.4203101700946067,
0.4118345374686484,
0.40317888992190226,
0.394358976257394,
0.3853964943120753,
0.3763197886399595,
0.3671643287278606,
0.35797287798098004,
0.3487952676578741,
0.3396877060068351,
0.3307115843128125,
0.32193179066064276,
0.31341460903342777,
0.30522536229415687,
0.29742604374636755,
0.29007325785832444,
0.28321683420856414,
0.2768994633144824,
0.2711576042631154,
0.26602372009652125,
0.2615296211138112,
0.25771038600374135,
0.25460806418637216,
0.2522742297124532,
0.250770528519218,
0.25016665989062736,
0.2505357196194509,
0.25194740639108226,
0.2544601127474418,
0.25811323831847677,
0.2629210663953231,
0.2688692160507156,
0.2759141158085524,
0.28398532125359616,
0.29299000598620395,
0.3028187088647985,
0.31335142932675353,
0.3244633515150034,
0.3360297418559453,
0.3479298162642939,
0.36004956391134124,
0.37228363239132806,
0.38453643449122504,
0.3967226484492188,
0.4087672698945291,
0.420605348470492
],
[
0.4552271881566642,
0.4477845788674629,
0.4401521095077669,
0.43233016802858343,
0.424321541125319,
0.41613220373112225,
0.40777214111756094,
0.3992561577754404,
0.3906046157140469,
0.3818440348450542,
0.37300748146992296,
0.36413466975757935,
0.3552717079940289,
0.34647043888980683,
0.33778735355242046,
0.3292821030164858,
0.321015688623805,
0.3130484790806031,
0.3054382694418759,
0.29823865231141733,
0.29149799622841266,
0.28525930024711627,
0.2795610998440364,
0.2744394315487953,
0.2699306365010109,
0.2660745365578528,
0.26291731261317314,
0.2605133223786976,
0.2589251674508552,
0.25822157366597903,
0.25847305242107493,
0.25974578391236836,
0.2620945921762679,
0.265556145116705,
0.27014352040354367,
0.2758430119708366,
0.28261358491309574,
0.2903888617377192,
0.2990810939419066,
0.30858634071248203,
0.3187900580800971,
0.3295724433861444,
0.3408130976065068,
0.3523947870356032,
0.3642062604200721,
0.37614419234273244,
0.3881143834823244,
0.40003236753481336,
0.4118235684460195,
0.42342313263441794
],
[
0.45810793237853925,
0.4509076839825909,
0.4435290227803218,
0.43597212947851427,
0.4282394593420358,
0.4203364822472849,
0.412272442935339,
0.4040610977932944,
0.3957213753063618,
0.387277900085787,
0.3787613166106017,
0.37020835032467597,
0.3616615524595254,
0.35316869277786195,
0.34478179274802817,
0.33655583082027524,
0.32854720006291177,
0.32081205239506744,
0.31340471559617855,
0.30637640798725563,
0.29977448679421614,
0.29364243442774496,
0.2880207004875419,
0.28294837431621944,
0.27846547768091207,
0.2746154731371981,
0.2714474297305375,
0.2690172265701184,
0.26738724626355215,
0.2666242254768575,
0.2667952625227804,
0.26796236794128253,
0.270176292557785,
0.273470581780022,
0.2778568131289761,
0.2833217606373506,
0.2898268505531187,
0.2973098389922296,
0.305688276497928,
0.3148641120726757,
0.32472875127112283,
0.33516798317244534,
0.3460663649618616,
0.35731083838488886,
0.36879350812452544,
0.38041362081295743,
0.3920788454749257,
0.4037059815769338,
0.4152212218090988,
0.4265600840276295
],
[
0.46090609020991197,
0.4539457464800956,
0.446818923927553,
0.4395255785584539,
0.4320677940383197,
0.4244504756108755,
0.41668205532816016,
0.4087751675217868,
0.40074724626411057,
0.3926209915529826,
0.3844246493869393,
0.3761920542216118,
0.367962391990075,
0.35977965922411087,
0.3516918196098524,
0.3437496933587792,
0.3360056553449259,
0.3285122611737041,
0.32132095967923024,
0.3144810765139473,
0.30803925518921826,
0.30203950786309935,
0.296523950705336,
0.2915341785313169,
0.28711308402460606,
0.28330677591119047,
0.2801661362259765,
0.2777475192707442,
0.27611216324682364,
0.27532406683169297,
0.27544635497862285,
0.27653646975598783,
0.2786408011617687,
0.2817895437400056,
0.28599257161442265,
0.29123695488927354,
0.2974864364750724,
0.30468283545814645,
0.31274903705131046,
0.32159303986953774,
0.3311124811361721,
0.3411991266415504,
0.3517429468581263,
0.3626355537498543,
0.37377290839166766,
0.3850573097188905,
0.3963987367729388,
0.40771564675239297,
0.4189353383038838,
0.4299939827304282
],
[
0.46362838798008355,
0.4569051975385541,
0.45002784378090327,
0.4429960432435973,
0.43581147645902785,
0.4284784397405247,
0.42100450240455906,
0.4134011311808687,
0.40568423804743114,
0.39787460446751927,
0.3899981350559549,
0.38208589818739447,
0.3741739210592349,
0.3663027230756572,
0.35851659445429446,
0.3508626561248339,
0.34338977043790303,
0.3361474063470293,
0.32918459195289806,
0.3225491040435062,
0.3162870397870293,
0.3104428819090986,
0.3050601008687348,
0.3001822380563691,
0.2958542950282562,
0.29212413781802693,
0.289043542223186,
0.2866684857008751,
0.28505835526068,
0.2842738922409778,
0.2843739153783039,
0.28541111226065813,
0.2874274097659754,
0.29044956792108895,
0.2944856462041654,
0.2995228573453719,
0.30552708290634734,
0.31244404164242146,
0.3202018495174693,
0.32871454533915184,
0.3378860998838018,
0.3476144659955196,
0.3577953279604672,
0.36832533167181963,
0.3791046922730879,
0.3900391660003654,
0.40104143284460286,
0.41203196936876185,
0.4229395031027145,
0.43370113848200487
],
[
0.4662822860399133,
0.4597932301828947,
0.4531626128054025,
0.446389900963455,
0.43947635061122,
0.43242562058867623,
0.4252443886779109,
0.4179429343420714,
0.41053564859752656,
0.4030414295536281,
0.3954839233346787,
0.38789157522997786,
0.3802974657532049,
0.37273892132203035,
0.3652569094976439,
0.3578952533898892,
0.3506997270927961,
0.3437171206520362,
0.33699438435033663,
0.3305779719741211,
0.32451349457066386,
0.3188457643349242,
0.3136192501618997,
0.3088788852156858,
0.3046710732631506,
0.30104465267007713,
0.2980515178202623,
0.2957465896603153,
0.29418688506983204,
0.29342956019412253,
0.2935289799780964,
0.294533062488716,
0.2964793185863667,
0.29939111059985724,
0.3032746560235639,
0.30811719714538793,
0.3138865686266886,
0.32053217033454545,
0.3279871478826369,
0.33617144248859626,
0.3449953144652519,
0.354362964499794,
0.3641759498434952,
0.3743361892525162,
0.3847484461246568,
0.395322258201535,
0.4059733382500573,
0.4166245038979189,
0.42720621050674357,
0.4376567639548036
],
[
0.46887584280574346,
0.46261766139125926,
0.45623071950801736,
0.44971423066036614,
0.4430690153579641,
0.4362980816872311,
0.4294072065994868,
0.42240548530384003,
0.41530581305290815,
0.4081252626840369,
0.4008853231953582,
0.39361197002198006,
0.3863355470268779,
0.3790904537617975,
0.37191464907192723,
0.36484900274517457,
0.3579365488941565,
0.3512217152969197,
0.3447496181028784,
0.338565516374835,
0.3327145109702927,
0.32724154342878314,
0.3221917017598702,
0.3176107747802497,
0.31354592404330445,
0.31004627689610886,
0.3071632032956783,
0.30495003916136165,
0.30346107059192645,
0.30274969604145224,
0.3028658243418804,
0.30385271979280326,
0.3057436380123064,
0.30855867445513124,
0.31230224798772,
0.3169615599241416,
0.3225062220142423,
0.3288890703887159,
0.3360480180116985,
0.34390867990836405,
0.35238745030191326,
0.36139471668492373,
0.3708379466706427,
0.3806244575634694,
0.39066375622620425,
0.40086940443099583,
0.41116041585697943,
0.42146222420776935,
0.4317072799249067,
0.44183533944378117
],
[
0.4714175748870721,
0.4653867895088674,
0.4592401634331904,
0.4529766589337064,
0.4465966605305899,
0.44010252634789343,
0.4334991404000223,
0.42679443578884163,
0.419999856504695,
0.4131307252963067,
0.4062064874181602,
0.39925080542058256,
0.3922914888102902,
0.3853602544156441,
0.3784923282893103,
0.3717259170726166,
0.3651015943322934,
0.3586616630628468,
0.35244956615811013,
0.34650941852353856,
0.3408857240619467,
0.33562331554635555,
0.33076751526742393,
0.32636446273357805,
0.32246150022571385,
0.3191074590110377,
0.3163526616973333,
0.3142484614758771,
0.3128461838217655,
0.3121954194356929,
0.3123417279411994,
0.3133239302675198,
0.3151712684784462,
0.3179007702931942,
0.3215151546180142,
0.3260015508052249,
0.3313311909471035,
0.33746009710033725,
0.344330654653458,
0.3518738651472058,
0.36001202099688195,
0.36866154121073885,
0.37773574098969465,
0.3871473634826969,
0.39681076371678886,
0.4066436914090423,
0.41656866457043057,
0.4265139574899954,
0.43641424578339016,
0.4462109601694631
],
[
0.4739163140307137,
0.46810924807240845,
0.46219930434886647,
0.45618520250220057,
0.4500669000374848,
0.44384611832791376,
0.43752687092118964,
0.43111596648435313,
0.42462345703320875,
0.4180630023237159,
0.41145212381816415,
0.40481232677116474,
0.3981690768500098,
0.3915516282169374,
0.38499271272796554,
0.37852811396890773,
0.3721961638356322,
0.3660372112666468,
0.36009312003045174,
0.3544068523815115,
0.3490221854079332,
0.34398358550498126,
0.3393362340586313,
0.3351261572843049,
0.3314003714677831,
0.32820692037783084,
0.3255946641776343,
0.3236126872525402,
0.3223092305175425,
0.32173012030931186,
0.32191675206687104,
0.322903777422421,
0.32471671916300215,
0.327369781643605,
0.330864122354077,
0.33518680124687755,
0.34031053746190293,
0.3461942968928336,
0.35278463110315983,
0.36001760806775657,
0.3678211297634438,
0.37611742263185105,
0.38482550805573457,
0.3938635003566149,
0.4031506279511393,
0.4126089198982857,
0.42216453924857517,
0.43174877381607135,
0.44129871417836253,
0.4507576592913825
],
[
0.47638106210621267,
0.4707938576038564,
0.46511670960422097,
0.4593481094669617,
0.45348760501100654,
0.44753630458341553,
0.44149738560984997,
0.4353765820526416,
0.42918262393079726,
0.42292760256054507,
0.4166272377309565,
0.4103010278135639,
0.40397227084663895,
0.39766795375366065,
0.39141851758959556,
0.3852575182409746,
0.3792212131078387,
0.3733481133224454,
0.36767854604028516,
0.36225427021474604,
0.35711818030790166,
0.35231411477644287,
0.34788676063773755,
0.3438816147676177,
0.340344931802411,
0.3373235643053556,
0.3348645904072113,
0.3330146333960948,
0.3318188095267245,
0.3313192928149932,
0.33155355172620943,
0.3325523808939286,
0.3343379073607997,
0.3369217821645688,
0.3403037656477802,
0.344470877140315,
0.3493972133523529,
0.35504445828035996,
0.3613630269628108,
0.3682937206935771,
0.37576973167652944,
0.3837188230896191,
0.3920655225207246,
0.4007331953554717,
0.40964590148769137,
0.418729976319366,
0.42791531028445917,
0.43713632736323466,
0.44633268155023587,
0.45544970163469767
],
[
0.47882084576126155,
0.4734494772811058,
0.46800100189562954,
0.46247370197572657,
0.4568667399652887,
0.45118064342526504,
0.44541779725150515,
0.43958291930710913,
0.4336834947147782,
0.42773014469054976,
0.42173690825847865,
0.4157214195551875,
0.40970496966416986,
0.40371244978021437,
0.3977721815317728,
0.39191564974425064,
0.3861771617683683,
0.3805934643990379,
0.37520335285763246,
0.3700473048079049,
0.36516716477390926,
0.36060589025457374,
0.35640735113125027,
0.352616151023217,
0.34927741698409204,
0.3464364873701743,
0.34413842204332384,
0.34242726838689186,
0.3413450425702369,
0.34093042631583137,
0.3412172295771872,
0.34223272037768104,
0.3439959644008049,
0.3465163393291792,
0.34979238620856945,
0.3538111312269744,
0.35854796099258784,
0.36396707214296736,
0.3700224536311628,
0.37665930816378734,
0.3838157854022519,
0.3914248863389211,
0.39941640391769245,
0.4077187846246863,
0.41626082335556974,
0.4249731336807961,
0.4337893633591191,
0.4426471479775448,
0.45148881285561376,
0.46026184491944677
],
[
0.4812445726895211,
0.4760848586406065,
0.470860709826237,
0.4655702229017127,
0.4602122047756234,
0.45478664101651256,
0.4492951743944189,
0.4437415713481643,
0.4381321533390916,
0.43247617071661854,
0.4267860990060407,
0.42107784145880217,
0.4153708271776356,
0.4096880008858859,
0.4040557080090745,
0.39850348652483425,
0.39306378414664256,
0.3877716247856069,
0.38266425073846344,
0.37778076561312646,
0.37316179689091783,
0.3688491861424165,
0.36488570010389093,
0.36131473904180705,
0.3581800031029952,
0.3555250663708183,
0.35339280580914123,
0.35182464092876686,
0.3508595607574073,
0.3505329459343451,
0.35087523124087583,
0.3519104912428136,
0.35365506161726556,
0.3561163244637123,
0.35929178310224624,
0.3631685298092012,
0.3677231719400899,
0.37292223459346974,
0.3787230097236399,
0.385074780375187,
0.39192032023929146,
0.399197555554924,
0.4068412778182146,
0.41478480874755913,
0.4229615392212577,
0.43130628716440317,
0.4397564420897656,
0.44825288381488587,
0.4567406785575943,
0.4651695668622794
],
[
0.48366089167516824,
0.4787085036199089,
0.4737041237005456,
0.4686456890805453,
0.4635316850648646,
0.45836159874315857,
0.45313638580511933,
0.4478589296255314,
0.44253447096798704,
0.43717098727890535,
0.4317795026136892,
0.42637431273308823,
0.42097311469515536,
0.4155970360814381,
0.4102705654246307,
0.40502139188327946,
0.3998801680245968,
0.3948802139054736,
0.3900571826319756,
0.38544870648391866,
0.381094038064301,
0.3770336928364337,
0.37330908861045003,
0.3699621655974927,
0.3670349598394893,
0.3645690958270671,
0.3626051635074916,
0.36118195246985146,
0.36033553230973736,
0.3600981916647782,
0.36049727598343556,
0.36155399111793757,
0.36328226109241735,
0.3656877391789955,
0.3687670686680645,
0.37250747291228187,
0.37688672562070535,
0.3818735165976464,
0.38742819105823023,
0.39350380810209346,
0.4000474403093986,
0.4070016240102572,
0.41430586856240575,
0.42189814111048773,
0.4297162578853749,
0.437699130966095,
0.44578783777362935,
0.45392649732620666,
0.46206295121503294,
0.4701492578469556
],
[
0.48607805870761595,
0.4813285293102988,
0.47653915896914506,
0.47170775351216043,
0.4668325133155026,
0.4619124735768809,
0.45694796072686344,
0.4519410451677532,
0.4468959698026823,
0.441819534353475,
0.4367214173046689,
0.4316144204005639,
0.4265146248094852,
0.42144145309437886,
0.4164176366188564,
0.41146909348960675,
0.40662472701059493,
0.40191615826353866,
0.397377408205005,
0.393044544070385,
0.38895530163830316,
0.3851486891729807,
0.3816645712804429,
0.37854322269617974,
0.375824834843915,
0.3735489537723466,
0.37175382854639694,
0.37047565550595596,
0.36974771617033747,
0.3695994238675413,
0.3700553140568374,
0.3711340324942132,
0.3728473901969068,
0.37519956131750637,
0.37818649741426197,
0.38179561879912055,
0.38600582217369594,
0.39078781679055247,
0.3961047730316624,
0.4019132417594649,
0.4081642834309354,
0.4148047347232927,
0.4217785376630207,
0.4290280609606246,
0.43649535350711954,
0.44412328350093694,
0.45185653127866937,
0.45964241788228805,
0.46743156353665005,
0.4751783799172552
],
[
0.488503811495642,
0.48395254176492775,
0.47937322963768764,
0.4747635787427915,
0.4701215427318805,
0.46544575314491987,
0.46073596619987994,
0.45599350960638163,
0.4512217097576004,
0.4464262800791654,
0.44161565292295124,
0.4368012401157412,
0.43199761094787736,
0.42722258076722425,
0.422497208096132,
0.41784570290420264,
0.41329525287973484,
0.40887577775636813,
0.40461962350889547,
0.40056120818405466,
0.3967366291349315,
0.39318323763942203,
0.3899391818325583,
0.38704291347699954,
0.3845326495418962,
0.3824457771819752,
0.38081819168351333,
0.3796835620028983,
0.3790725276869818,
0.3790118433908613,
0.3795235012160417,
0.3806238743759444,
0.3823229357252989,
0.38462360920927013,
0.3875213098210061,
0.3910037178853759,
0.39505081739753406,
0.399635207873074,
0.4047226775721437,
0.41027300603630146,
0.41624094815517876,
0.42257734208837316,
0.4292302798416704,
0.43614628165465225,
0.44327142237344624,
0.45055236805070986,
0.45793729249292175,
0.4653766549449681,
0.4728238305140112,
0.4802355936438028
],
[
0.49094525465290234,
0.4865875210992619,
0.4822131337842019,
0.4778197234027487,
0.4734050355637451,
0.46896734683598207,
0.4645059022504977,
0.4600213561212202,
0.4555161972576975,
0.45099513994716284,
0.44646546347641963,
0.4419372853643782,
0.4374237567236939,
0.432941172033122,
0.428508989785954,
0.4241497646383976,
0.4198889954376854,
0.4157548964841475,
0.411778101237303,
0.40799130817423074,
0.40442887757279755,
0.40112638576903775,
0.39812014033329257,
0.3954466562822556,
0.39314209073857304,
0.39124163226487957,
0.38977884220748327,
0.3887849492356698,
0.3882881048158462,
0.3883126159985004,
0.3888781814507785,
0.3899991655662637,
0.3916839520111701,
0.39393442069035406,
0.396745589815918,
0.40010545727843877,
0.40399506347231223,
0.40838878252634975,
0.4132548324951053,
0.4185559795982662,
0.42425039894189237,
0.43029264564247804,
0.436634686492636,
0.4432269431084738,
0.4500193021441545,
0.4569620555479212,
0.46400674274863546,
0.4711068759744663,
0.4782185387106861,
0.4853008549799186
],
[
0.49340875767870973,
0.48923971993204923,
0.4850649530947734,
0.4808820435938805,
0.47668856727445236,
0.47248249390391195,
0.46826261536320835,
0.464028980034863,
0.4597833150543792,
0.4555294182753661,
0.45127350299713054,
0.4470244806292179,
0.44279416936496135,
0.43859742039175964,
0.43445215691871386,
0.4303793250597193,
0.4264027590658403,
0.4225489662602794,
0.4188468390416967,
0.4153273023194687,
0.4120229046849396,
0.40896736062302314,
0.4061950494241132,
0.40374047462701174,
0.40163768638233355,
0.39991966866630063,
0.3986176942926927,
0.3977606534384246,
0.3973743658637885,
0.3974808927447307,
0.3980978702595723,
0.399237892746212,
0.40090797723291555,
0.4031091424220307,
0.40583613306779565,
0.40907731492367444,
0.4128147564053148,
0.4170245017350716,
0.4216770279212694,
0.4267378659692637,
0.4321683566149081,
0.4379265036740471,
0.4439678843887336,
0.4502465759716078,
0.4567160604944212,
0.46333007560473377,
0.47004338540397583,
0.47681245330190836,
0.48359600602045066,
0.4903554845852211
],
[
0.4958998676236696,
0.4919145769516978,
0.4879339680348871,
0.48395561050096825,
0.47997694759701465,
0.4759956891816337,
0.4720102303085257,
0.46802007847531174,
0.46402627171016847,
0.46003176974146714,
0.4560418015239019,
0.452064154290633,
0.44810939191665433,
0.4441909935173497,
0.440325406637183,
0.43653201285663706,
0.4328330069091858,
0.42925319322084277,
0.4258197059708612,
0.42256166019953906,
0.4195097421266033,
0.4166957467731494,
0.4141520704019436,
0.4119111645112088,
0.4100049575089242,
0.4084642501383404,
0.4073180915322319,
0.40659314460968815,
0.4063130523564224,
0.40649782007432184,
0.40716323245337777,
0.40832032764940995,
0.409974952716618,
0.4121274250741997,
0.4147723226993553,
0.4178984212565054,
0.4214887895892429,
0.42552104648677486,
0.4299677722609211,
0.43479705946465463,
0.43997317906636396,
0.44545733239826135,
0.4512084557453376,
0.45718404368831084,
0.4633409590667272,
0.469636201221969,
0.4760276093897049,
0.48247448406765264,
0.4889381152701596,
0.49538221229619805
],
[
0.4984232380172149,
0.4946166470627461,
0.4908245899292298,
0.4870446452488649,
0.48327415917077643,
0.4795106266839276,
0.47575210010146557,
0.4719976082879498,
0.46824756925516625,
0.4645041787265029,
0.4607717581534303,
0.4570570473748443,
0.45336942950103326,
0.449721078498585,
0.4461270231444796,
0.4426051242908039,
0.4391759655246197,
0.43586266013028896,
0.4326905796108161,
0.42968701080083743,
0.42688074977492446,
0.4243016413664309,
0.4219800732876966,
0.41994643377203605,
0.41823054157247075,
0.41686105728567385,
0.41586488551450795,
0.41526657844520903,
0.415087752981349,
0.41534653549329625,
0.41605705022192496,
0.41722896902684387,
0.41886714104734857,
0.42097132052203795,
0.42353600916355,
0.42655042595841597,
0.42999861214306406,
0.433859672732823,
0.43810814891094074,
0.4427145085223804,
0.44764573559721504,
0.4528659948955768,
0.458337344374616,
0.46402046743064435,
0.469875397709888,
0.47586221193021494,
0.48194167008323735,
0.488075787091004,
0.49422832498153985,
0.5003651994960633
],
[
0.5009825752547901,
0.49734954918072344,
0.493740310835678,
0.4901524716485216,
0.48658331409372896,
0.4830301610568849,
0.4794907736019088,
0.47596376119591666,
0.4724489874452945,
0.46894795428734776,
0.46546414834502886,
0.46200333470578625,
0.4585737855985378,
0.4551864341489021,
0.45185494640659934,
0.44859570796975967,
0.4454277245969096,
0.44237243903762646,
0.4394534687982208,
0.4366962716014873,
0.43412774686037264,
0.43177578257739085,
0.42966875776818914,
0.4278350108944623,
0.4263022850104089,
0.42509716051575236,
0.4242444866850837,
0.42376682358327483,
0.4236839065924638,
0.4240121465051941,
0.42476417884110457,
0.42594847651381273,
0.4275690399583524,
0.4296251780680102,
0.43211139156348766,
0.43501736760179815,
0.43832809054245353,
0.4420240690074124,
0.44608167404502475,
0.45047357780637914,
0.4551692771882468,
0.46013568288248435,
0.46533775157921975,
0.47073913791498856,
0.4763028431621521,
0.48199183947047236,
0.487769651408223,
0.4936008802425068,
0.49945166046091954,
0.5052900421140231
],
[
0.5035806032114007,
0.5001159323149076,
0.4966836716811789,
0.49328148707884806,
0.48990662836485477,
0.48655628652358957,
0.4832279800319034,
0.47991995506626334,
0.47663158302974157,
0.4733637386992202,
0.47011914295768165,
0.4669026555056363,
0.4637215050167225,
0.460585446761649,
0.45750684060248314,
0.45450064528461864,
0.4515843279652918,
0.44877769077373997,
0.4461026187837263,
0.44358275601094044,
0.4412431178765715,
0.4391096499901076,
0.43720874411784194,
0.4355667228648628,
0.434209304973526,
0.4331610633063815,
0.4324448876103722,
0.43208146411329623,
0.4320887839200653,
0.43248169205858983,
0.43327148883501,
0.434465594812854,
0.43606729010821293,
0.4380755376462063,
0.4404848984091834,
0.44328554442011575,
0.4464633722199291,
0.4500002159979585,
0.4538741555218566,
0.45805990989180106,
0.4625293042802656,
0.4672517935833629,
0.47219502461576346,
0.4773254173338037,
0.482608745640249,
0.48801069954118337,
0.49349741260666435,
0.4990359415699055,
0.5045946881882971,
0.5101437568937089
],
[
0.5062190463835706,
0.5029174601237443,
0.49965624869237696,
0.496433151348376,
0.4932454138339741,
0.4900901326810976,
0.4869646294712662,
0.48386684002629554,
0.4807957024437333,
0.47775152766025747,
0.4747363368109529,
0.4717541509802816,
0.4688112208966295,
0.46591618656333933,
0.46308015958850324,
0.4603167239164874,
0.4576418536292016,
0.45507374934507794,
0.4526325973910339,
0.45034025827409646,
0.4482198929760362,
0.4462955372012251,
0.4445916349117229,
0.4431325432908059,
0.44194202171057845,
0.4410427173791975,
0.4404556601585279,
0.4401997786304782,
0.44029144890737243,
0.44074408697737977,
0.44156779457969286,
0.4427690677148568,
0.44435057587613397,
0.446311018866354,
0.448645066550171,
0.45134338499843907,
0.4543927501618663,
0.45777624748501583,
0.4614735528446082,
0.4654612870572274,
0.4697134332027925,
0.47420180342563667,
0.47889653995589787,
0.4837666340251774,
0.48878044622218714,
0.49390621263153606,
0.4991125227109677,
0.5043687571058961,
0.5096454762509045,
0.5149147534338628
],
[
0.5088986313836387,
0.5057548136654755,
0.5026586577180322,
0.49960799298347586,
0.49660008693174157,
0.4936319762265531,
0.49070082819955324,
0.48780431808209473,
0.4849410063678459,
0.48211070040862153,
0.47931478486622736,
0.4765565068873488,
0.4738412037286489,
0.47117646290108517,
0.4685722075792881,
0.4660407028872321,
0.46359648158801803,
0.46125619055134554,
0.45903836204343834,
0.4569631162956086,
0.4550518038923968,
0.45332659822776356,
0.4518100495736816,
0.45052461317091796,
0.4494921641852443,
0.4487335123909707,
0.4482679290851387,
0.44811269805712667,
0.4482827015123068,
0.44879005075383643,
0.4496437702356587,
0.45084954236313,
0.45240951915183136,
0.45432220553806385,
0.4565824177113886,
0.45918131824118485,
0.4621065279378485,
0.46534231230722767,
0.46886983816678707,
0.47266749360420607,
0.47671126214142373,
0.48097513991935736,
0.485431583138049,
0.4900519720338761,
0.4948070774451359,
0.499667516526777,
0.5046041853635624,
0.5095886579739544,
0.5145935433280195,
0.5195927943386469
],
[
0.5116191061399682,
0.5086277116160727,
0.5056905756202432,
0.5028056320119567,
0.49997019312935476,
0.4971812674355712,
0.49443590757998784,
0.49173157481456886,
0.48906650462707696,
0.48644005815388314,
0.483853044403394,
0.48130799949441155,
0.4788094108905005,
0.47636387686503334,
0.47398019402341285,
0.4716693685003028,
0.46944454930979296,
0.4673208851378149,
0.4653153085265606,
0.4634462538229393,
0.4617333173739618,
0.46019687019085564,
0.4588576346229741,
0.457736237448971,
0.45685275219092003,
0.45622624339373125,
0.4558743251200329,
0.4558127450487367,
0.4560550044167732,
0.45661202270480716,
0.4574918545367349,
0.45869946482020674,
0.46023656675105434,
0.46210152594748866,
0.4642893326411766,
0.46679164247627974,
0.4695968849947918,
0.47269043727812116,
0.47605485847413626,
0.4796701791224835,
0.48351423740645955,
0.4875630528496439,
0.4917912266921442,
0.49617235735893855,
0.5006794591630288,
0.5052853727032995,
0.5099631562937647,
0.5146864491156176,
0.5194297984947367,
0.5241689456327117
],
[
0.5143792757147837,
0.5115349468068922,
0.5087507775238149,
0.5060248179658592,
0.5033544457863899,
0.500736669990153,
0.49816846503157874,
0.49564712166594804,
0.49317059993614687,
0.4907378693600921,
0.4883492218095203,
0.4860065436817961,
0.483713535667169,
0.4814758705843824,
0.47930128226588903,
0.4771995811872635,
0.4751825953278071,
0.4732640375061554,
0.4714593030544529,
0.46978520408841845,
0.4682596487211308,
0.4669012752893163,
0.46572905295755535,
0.46476186089796034,
0.4640180585890539,
0.4635150596406808,
0.4632689209631475,
0.46329395812016916,
0.46360239642504814,
0.46420406586437096,
0.46510614637366726,
0.46631296844197206,
0.4678258725552267,
0.46964312963066124,
0.4717599233340435,
0.4741683939655906,
0.47685774239144735,
0.4798143912370791,
0.48302219922629575,
0.48646272316615435,
0.49011552070834546,
0.4939584857609171,
0.49796820739578346,
0.5021203424068251,
0.5063899914037495,
0.5107520685200102,
0.515181655463156,
0.5196543316919852,
0.5241464738797061,
0.5286355194069591
]
]
},
{
"hoverinfo": "text",
"legendgroup": "In-sample",
"marker": {
"color": "black",
"opacity": 0.5,
"symbol": 1
},
"mode": "markers",
"name": "In-sample",
"text": [
"Arm 0_0
hartmann6: -0.0673179 (SEM: 0)
x1: 0.00500019
x2: 0.874178
x3: 0.246325
x4: 0.0464745
x5: 0.501489
x6: 0.957827",
"Arm 10_0
hartmann6: -0.139477 (SEM: 0)
x1: 0.285348
x2: 0.344471
x3: 0.807655
x4: 0.350814
x5: 0.936768
x6: 0.256351",
"Arm 11_0
hartmann6: -0.0654073 (SEM: 0)
x1: 0.0255972
x2: 0.359241
x3: 0.534968
x4: 0.538254
x5: 0.507815
x6: 0.0103999",
"Arm 12_0
hartmann6: -0.455707 (SEM: 0)
x1: 0.673263
x2: 0.484185
x3: 0.434073
x4: 0.0235592
x5: 0.374813
x6: 0.824877",
"Arm 13_0
hartmann6: -0.828721 (SEM: 0)
x1: 0.570419
x2: 0.467727
x3: 0.451646
x4: 0.0412614
x5: 0.358356
x6: 0.670113",
"Arm 14_0
hartmann6: -1.05982 (SEM: 0)
x1: 0.578893
x2: 0.447142
x3: 0.475639
x4: 0.0895918
x5: 0.319048
x6: 0.624406",
"Arm 15_0
hartmann6: -1.17634 (SEM: 0)
x1: 0.58632
x2: 0.428264
x3: 0.496297
x4: 0.132332
x5: 0.280331
x6: 0.581561",
"Arm 16_0
hartmann6: -1.28544 (SEM: 0)
x1: 0.614484
x2: 0.353611
x3: 0.49863
x4: 0.156342
x5: 0.280051
x6: 0.561208",
"Arm 17_0
hartmann6: -1.31589 (SEM: 0)
x1: 0.612976
x2: 0.291934
x3: 0.44681
x4: 0.149275
x5: 0.243753
x6: 0.563262",
"Arm 18_0
hartmann6: -0.978163 (SEM: 0)
x1: 0.678597
x2: 0.265128
x3: 0.517192
x4: 0.116097
x5: 0.235119
x6: 0.558417",
"Arm 19_0
hartmann6: -1.59089 (SEM: 0)
x1: 0.587128
x2: 0.295911
x3: 0.436473
x4: 0.187468
x5: 0.296084
x6: 0.551781",
"Arm 1_0
hartmann6: -0.223056 (SEM: 0)
x1: 0.512245
x2: 0.489062
x3: 0.314054
x4: 0.0678942
x5: 0.563168
x6: 0.904405",
"Arm 20_0
hartmann6: -1.80269 (SEM: 0)
x1: 0.546708
x2: 0.273753
x3: 0.401711
x4: 0.231875
x5: 0.328642
x6: 0.528128",
"Arm 21_0
hartmann6: -1.79892 (SEM: 0)
x1: 0.537004
x2: 0.260776
x3: 0.355933
x4: 0.272078
x5: 0.349691
x6: 0.514127",
"Arm 22_0
hartmann6: -2.06653 (SEM: 0)
x1: 0.485569
x2: 0.231123
x3: 0.403705
x4: 0.250465
x5: 0.343469
x6: 0.521525",
"Arm 23_0
hartmann6: -2.40991 (SEM: 0)
x1: 0.427831
x2: 0.17197
x3: 0.43445
x4: 0.254316
x5: 0.335737
x6: 0.533183",
"Arm 24_0
hartmann6: -2.75068 (SEM: 0)
x1: 0.361593
x2: 0.087317
x3: 0.466545
x4: 0.272066
x5: 0.315675
x6: 0.555154",
"Arm 25_0
hartmann6: -2.84342 (SEM: 0)
x1: 0.298804
x2: 0.0166056
x3: 0.476615
x4: 0.290996
x5: 0.300872
x6: 0.572355",
"Arm 26_0
hartmann6: -2.6478 (SEM: 0)
x1: 0.263035
x2: 0
x3: 0.5077
x4: 0.242947
x5: 0.314993
x6: 0.531817",
"Arm 27_0
hartmann6: -2.8284 (SEM: 0)
x1: 0.320571
x2: 0.0399479
x3: 0.497476
x4: 0.343857
x5: 0.296859
x6: 0.604373",
"Arm 28_0
hartmann6: -2.84664 (SEM: 0)
x1: 0.326197
x2: 9.4964e-19
x3: 0.427433
x4: 0.302079
x5: 0.299208
x6: 0.613003",
"Arm 2_0
hartmann6: -0.413463 (SEM: 0)
x1: 0.731866
x2: 0.509426
x3: 0.367735
x4: 0.271838
x5: 0.43733
x6: 0.91647",
"Arm 3_0
hartmann6: -7.46619e-05 (SEM: 0)
x1: 0.967263
x2: 0.655116
x3: 0.197203
x4: 0.75531
x5: 0.856316
x6: 0.985118",
"Arm 4_0
hartmann6: -0.182484 (SEM: 0)
x1: 0.426973
x2: 0.688982
x3: 0.894953
x4: 0.0615389
x5: 0.43926
x6: 0.0651191",
"Arm 5_0
hartmann6: -0.372979 (SEM: 0)
x1: 0.801046
x2: 0.583434
x3: 0.62531
x4: 0.934193
x5: 0.224422
x6: 0.996276",
"Arm 6_0
hartmann6: -0.0031755 (SEM: 0)
x1: 0.248954
x2: 0.997674
x3: 0.1948
x4: 0.946118
x5: 0.616622
x6: 0.658008",
"Arm 7_0
hartmann6: -0.0313259 (SEM: 0)
x1: 0.769907
x2: 0.797368
x3: 0.0479959
x4: 0.640898
x5: 0.977106
x6: 0.4298",
"Arm 8_0
hartmann6: -0.249127 (SEM: 0)
x1: 0.315442
x2: 0.174175
x3: 0.769119
x4: 0.413574
x5: 0.639991
x6: 0.968338",
"Arm 9_0
hartmann6: -0.0513974 (SEM: 0)
x1: 0.504292
x2: 0.902958
x3: 0.489927
x4: 0.937511
x5: 0.234177
x6: 0.479394"
],
"type": "scatter",
"x": [
0.005000186152756214,
0.28534774389117956,
0.02559724450111389,
0.6732627264880868,
0.5704185639515666,
0.5788929442959532,
0.5863204280181247,
0.6144842401447831,
0.61297612641924,
0.6785971764678485,
0.5871277012272785,
0.5122449044138193,
0.5467075339617112,
0.5370042911982217,
0.4855692237413777,
0.4278305858635204,
0.36159312642398184,
0.29880443357331465,
0.26303539471407406,
0.3205711290269389,
0.3261971566620133,
0.7318663941696286,
0.9672631155699492,
0.4269726099446416,
0.801046334207058,
0.24895355477929115,
0.7699069436639547,
0.31544242426753044,
0.5042920913547277
],
"xaxis": "x",
"y": [
0.8741776347160339,
0.34447056986391544,
0.35924113634973764,
0.484185164700876,
0.46772671741689187,
0.44714209163123436,
0.42826389964633044,
0.3536107484553733,
0.2919338659362389,
0.2651282371799706,
0.295910898319476,
0.4890619143843651,
0.27375325986134913,
0.26077598501022686,
0.23112297528674897,
0.1719699250718645,
0.08731696580665907,
0.016605625132793345,
0.0,
0.039947903482525436,
9.496397417940653e-19,
0.5094257295131683,
0.6551159676164389,
0.6889820275828242,
0.5834340136498213,
0.9976742928847671,
0.7973677506670356,
0.17417488992214203,
0.9029575204476714
],
"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.0673179 (SEM: 0)
x1: 0.00500019
x2: 0.874178
x3: 0.246325
x4: 0.0464745
x5: 0.501489
x6: 0.957827",
"Arm 10_0
hartmann6: -0.139477 (SEM: 0)
x1: 0.285348
x2: 0.344471
x3: 0.807655
x4: 0.350814
x5: 0.936768
x6: 0.256351",
"Arm 11_0
hartmann6: -0.0654073 (SEM: 0)
x1: 0.0255972
x2: 0.359241
x3: 0.534968
x4: 0.538254
x5: 0.507815
x6: 0.0103999",
"Arm 12_0
hartmann6: -0.455707 (SEM: 0)
x1: 0.673263
x2: 0.484185
x3: 0.434073
x4: 0.0235592
x5: 0.374813
x6: 0.824877",
"Arm 13_0
hartmann6: -0.828721 (SEM: 0)
x1: 0.570419
x2: 0.467727
x3: 0.451646
x4: 0.0412614
x5: 0.358356
x6: 0.670113",
"Arm 14_0
hartmann6: -1.05982 (SEM: 0)
x1: 0.578893
x2: 0.447142
x3: 0.475639
x4: 0.0895918
x5: 0.319048
x6: 0.624406",
"Arm 15_0
hartmann6: -1.17634 (SEM: 0)
x1: 0.58632
x2: 0.428264
x3: 0.496297
x4: 0.132332
x5: 0.280331
x6: 0.581561",
"Arm 16_0
hartmann6: -1.28544 (SEM: 0)
x1: 0.614484
x2: 0.353611
x3: 0.49863
x4: 0.156342
x5: 0.280051
x6: 0.561208",
"Arm 17_0
hartmann6: -1.31589 (SEM: 0)
x1: 0.612976
x2: 0.291934
x3: 0.44681
x4: 0.149275
x5: 0.243753
x6: 0.563262",
"Arm 18_0
hartmann6: -0.978163 (SEM: 0)
x1: 0.678597
x2: 0.265128
x3: 0.517192
x4: 0.116097
x5: 0.235119
x6: 0.558417",
"Arm 19_0
hartmann6: -1.59089 (SEM: 0)
x1: 0.587128
x2: 0.295911
x3: 0.436473
x4: 0.187468
x5: 0.296084
x6: 0.551781",
"Arm 1_0
hartmann6: -0.223056 (SEM: 0)
x1: 0.512245
x2: 0.489062
x3: 0.314054
x4: 0.0678942
x5: 0.563168
x6: 0.904405",
"Arm 20_0
hartmann6: -1.80269 (SEM: 0)
x1: 0.546708
x2: 0.273753
x3: 0.401711
x4: 0.231875
x5: 0.328642
x6: 0.528128",
"Arm 21_0
hartmann6: -1.79892 (SEM: 0)
x1: 0.537004
x2: 0.260776
x3: 0.355933
x4: 0.272078
x5: 0.349691
x6: 0.514127",
"Arm 22_0
hartmann6: -2.06653 (SEM: 0)
x1: 0.485569
x2: 0.231123
x3: 0.403705
x4: 0.250465
x5: 0.343469
x6: 0.521525",
"Arm 23_0
hartmann6: -2.40991 (SEM: 0)
x1: 0.427831
x2: 0.17197
x3: 0.43445
x4: 0.254316
x5: 0.335737
x6: 0.533183",
"Arm 24_0
hartmann6: -2.75068 (SEM: 0)
x1: 0.361593
x2: 0.087317
x3: 0.466545
x4: 0.272066
x5: 0.315675
x6: 0.555154",
"Arm 25_0
hartmann6: -2.84342 (SEM: 0)
x1: 0.298804
x2: 0.0166056
x3: 0.476615
x4: 0.290996
x5: 0.300872
x6: 0.572355",
"Arm 26_0
hartmann6: -2.6478 (SEM: 0)
x1: 0.263035
x2: 0
x3: 0.5077
x4: 0.242947
x5: 0.314993
x6: 0.531817",
"Arm 27_0
hartmann6: -2.8284 (SEM: 0)
x1: 0.320571
x2: 0.0399479
x3: 0.497476
x4: 0.343857
x5: 0.296859
x6: 0.604373",
"Arm 28_0
hartmann6: -2.84664 (SEM: 0)
x1: 0.326197
x2: 9.4964e-19
x3: 0.427433
x4: 0.302079
x5: 0.299208
x6: 0.613003",
"Arm 2_0
hartmann6: -0.413463 (SEM: 0)
x1: 0.731866
x2: 0.509426
x3: 0.367735
x4: 0.271838
x5: 0.43733
x6: 0.91647",
"Arm 3_0
hartmann6: -7.46619e-05 (SEM: 0)
x1: 0.967263
x2: 0.655116
x3: 0.197203
x4: 0.75531
x5: 0.856316
x6: 0.985118",
"Arm 4_0
hartmann6: -0.182484 (SEM: 0)
x1: 0.426973
x2: 0.688982
x3: 0.894953
x4: 0.0615389
x5: 0.43926
x6: 0.0651191",
"Arm 5_0
hartmann6: -0.372979 (SEM: 0)
x1: 0.801046
x2: 0.583434
x3: 0.62531
x4: 0.934193
x5: 0.224422
x6: 0.996276",
"Arm 6_0
hartmann6: -0.0031755 (SEM: 0)
x1: 0.248954
x2: 0.997674
x3: 0.1948
x4: 0.946118
x5: 0.616622
x6: 0.658008",
"Arm 7_0
hartmann6: -0.0313259 (SEM: 0)
x1: 0.769907
x2: 0.797368
x3: 0.0479959
x4: 0.640898
x5: 0.977106
x6: 0.4298",
"Arm 8_0
hartmann6: -0.249127 (SEM: 0)
x1: 0.315442
x2: 0.174175
x3: 0.769119
x4: 0.413574
x5: 0.639991
x6: 0.968338",
"Arm 9_0
hartmann6: -0.0513974 (SEM: 0)
x1: 0.504292
x2: 0.902958
x3: 0.489927
x4: 0.937511
x5: 0.234177
x6: 0.479394"
],
"type": "scatter",
"x": [
0.005000186152756214,
0.28534774389117956,
0.02559724450111389,
0.6732627264880868,
0.5704185639515666,
0.5788929442959532,
0.5863204280181247,
0.6144842401447831,
0.61297612641924,
0.6785971764678485,
0.5871277012272785,
0.5122449044138193,
0.5467075339617112,
0.5370042911982217,
0.4855692237413777,
0.4278305858635204,
0.36159312642398184,
0.29880443357331465,
0.26303539471407406,
0.3205711290269389,
0.3261971566620133,
0.7318663941696286,
0.9672631155699492,
0.4269726099446416,
0.801046334207058,
0.24895355477929115,
0.7699069436639547,
0.31544242426753044,
0.5042920913547277
],
"xaxis": "x2",
"y": [
0.8741776347160339,
0.34447056986391544,
0.35924113634973764,
0.484185164700876,
0.46772671741689187,
0.44714209163123436,
0.42826389964633044,
0.3536107484553733,
0.2919338659362389,
0.2651282371799706,
0.295910898319476,
0.4890619143843651,
0.27375325986134913,
0.26077598501022686,
0.23112297528674897,
0.1719699250718645,
0.08731696580665907,
0.016605625132793345,
0.0,
0.039947903482525436,
9.496397417940653e-19,
0.5094257295131683,
0.6551159676164389,
0.6889820275828242,
0.5834340136498213,
0.9976742928847671,
0.7973677506670356,
0.17417488992214203,
0.9029575204476714
],
"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": [
"