{
"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-28T16:12:27.794483Z",
"iopub.status.busy": "2022-09-28T16:12:27.794025Z",
"iopub.status.idle": "2022-09-28T16:12:30.163360Z",
"shell.execute_reply": "2022-09-28T16:12:30.162585Z"
}
},
"outputs": [
{
"data": {
"text/html": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-28 16:12:30] 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-28T16:12:30.221902Z",
"iopub.status.busy": "2022-09-28T16:12:30.221016Z",
"iopub.status.idle": "2022-09-28T16:12:30.225651Z",
"shell.execute_reply": "2022-09-28T16:12:30.224975Z"
}
},
"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-28T16:12:30.228703Z",
"iopub.status.busy": "2022-09-28T16:12:30.228481Z",
"iopub.status.idle": "2022-09-28T16:15:04.551460Z",
"shell.execute_reply": "2022-09-28T16:15:04.550826Z"
}
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-28 16:12:30] 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-28 16:12:30] 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-28 16:12:30] 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-28 16:12:30] 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-28 16:12:30] 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-28 16:12:30] 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-28 16:12:30] 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-28 16:12:30] 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-28 16:12:30] ax.service.managed_loop: Started full optimization with 30 steps.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-28 16:12:30] ax.service.managed_loop: Running optimization trial 1...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/home/runner/work/Ax/Ax/ax/core/observation.py:274: FutureWarning:\n",
"\n",
"In a future version of pandas, a length 1 tuple will be returned when iterating over a groupby with a grouper equal to a list of length 1. Don't supply a list with a single grouper to avoid this warning.\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-28 16:12:30] ax.service.managed_loop: Running optimization trial 2...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-28 16:12:30] ax.service.managed_loop: Running optimization trial 3...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-28 16:12:30] ax.service.managed_loop: Running optimization trial 4...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-28 16:12:30] ax.service.managed_loop: Running optimization trial 5...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-28 16:12:30] ax.service.managed_loop: Running optimization trial 6...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-28 16:12:30] ax.service.managed_loop: Running optimization trial 7...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-28 16:12:30] ax.service.managed_loop: Running optimization trial 8...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-28 16:12:30] ax.service.managed_loop: Running optimization trial 9...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-28 16:12:30] ax.service.managed_loop: Running optimization trial 10...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-28 16:12:30] ax.service.managed_loop: Running optimization trial 11...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-28 16:12:30] ax.service.managed_loop: Running optimization trial 12...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-28 16:12:30] ax.service.managed_loop: Running optimization trial 13...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/opt/hostedtoolcache/Python/3.8.14/x64/lib/python3.8/site-packages/botorch/optim/optimize.py:306: 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.14/x64/lib/python3.8/site-packages/botorch/optim/optimize.py:328: RuntimeWarning:\n",
"\n",
"Optimization failed on the second try, after generating a new set of initial conditions.\n",
"\n",
"[INFO 09-28 16:12:42] ax.service.managed_loop: Running optimization trial 14...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/opt/hostedtoolcache/Python/3.8.14/x64/lib/python3.8/site-packages/botorch/optim/optimize.py:306: 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.14/x64/lib/python3.8/site-packages/botorch/optim/optimize.py:328: RuntimeWarning:\n",
"\n",
"Optimization failed on the second try, after generating a new set of initial conditions.\n",
"\n",
"[INFO 09-28 16:12:55] ax.service.managed_loop: Running optimization trial 15...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/opt/hostedtoolcache/Python/3.8.14/x64/lib/python3.8/site-packages/botorch/optim/optimize.py:306: 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.14/x64/lib/python3.8/site-packages/botorch/optim/optimize.py:328: RuntimeWarning:\n",
"\n",
"Optimization failed on the second try, after generating a new set of initial conditions.\n",
"\n",
"[INFO 09-28 16:13:08] ax.service.managed_loop: Running optimization trial 16...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/opt/hostedtoolcache/Python/3.8.14/x64/lib/python3.8/site-packages/botorch/optim/optimize.py:306: 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.14/x64/lib/python3.8/site-packages/botorch/optim/optimize.py:328: RuntimeWarning:\n",
"\n",
"Optimization failed on the second try, after generating a new set of initial conditions.\n",
"\n",
"[INFO 09-28 16:13:20] ax.service.managed_loop: Running optimization trial 17...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/opt/hostedtoolcache/Python/3.8.14/x64/lib/python3.8/site-packages/botorch/optim/optimize.py:306: 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.14/x64/lib/python3.8/site-packages/botorch/optim/optimize.py:328: RuntimeWarning:\n",
"\n",
"Optimization failed on the second try, after generating a new set of initial conditions.\n",
"\n",
"[INFO 09-28 16:13:32] ax.service.managed_loop: Running optimization trial 18...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/opt/hostedtoolcache/Python/3.8.14/x64/lib/python3.8/site-packages/botorch/optim/optimize.py:306: 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.14/x64/lib/python3.8/site-packages/botorch/optim/optimize.py:328: RuntimeWarning:\n",
"\n",
"Optimization failed on the second try, after generating a new set of initial conditions.\n",
"\n",
"[INFO 09-28 16:13:44] ax.service.managed_loop: Running optimization trial 19...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/opt/hostedtoolcache/Python/3.8.14/x64/lib/python3.8/site-packages/botorch/optim/optimize.py:306: 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.14/x64/lib/python3.8/site-packages/botorch/optim/optimize.py:328: RuntimeWarning:\n",
"\n",
"Optimization failed on the second try, after generating a new set of initial conditions.\n",
"\n",
"[INFO 09-28 16:13:56] ax.service.managed_loop: Running optimization trial 20...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/opt/hostedtoolcache/Python/3.8.14/x64/lib/python3.8/site-packages/botorch/optim/optimize.py:306: 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.14/x64/lib/python3.8/site-packages/botorch/optim/optimize.py:328: RuntimeWarning:\n",
"\n",
"Optimization failed on the second try, after generating a new set of initial conditions.\n",
"\n",
"[INFO 09-28 16:14:08] ax.service.managed_loop: Running optimization trial 21...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/opt/hostedtoolcache/Python/3.8.14/x64/lib/python3.8/site-packages/botorch/optim/optimize.py:306: 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.14/x64/lib/python3.8/site-packages/botorch/optim/optimize.py:328: RuntimeWarning:\n",
"\n",
"Optimization failed on the second try, after generating a new set of initial conditions.\n",
"\n",
"[INFO 09-28 16:14:19] ax.service.managed_loop: Running optimization trial 22...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-28 16:14:24] ax.service.managed_loop: Running optimization trial 23...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-28 16:14:29] ax.service.managed_loop: Running optimization trial 24...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-28 16:14:34] ax.service.managed_loop: Running optimization trial 25...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-28 16:14:39] ax.service.managed_loop: Running optimization trial 26...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-28 16:14:44] ax.service.managed_loop: Running optimization trial 27...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-28 16:14:48] ax.service.managed_loop: Running optimization trial 28...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-28 16:14:54] ax.service.managed_loop: Running optimization trial 29...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-28 16:14:59] 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-28T16:15:04.556635Z",
"iopub.status.busy": "2022-09-28T16:15:04.555231Z",
"iopub.status.idle": "2022-09-28T16:15:04.566949Z",
"shell.execute_reply": "2022-09-28T16:15:04.566425Z"
}
},
"outputs": [
{
"data": {
"text/plain": [
"{'x1': 0.19372487101765848,\n",
" 'x2': 0.17317519181499047,\n",
" 'x3': 0.5143756879433657,\n",
" 'x4': 0.2769825879747112,\n",
" 'x5': 0.31721781462784565,\n",
" 'x6': 0.6469683382255459}"
]
},
"execution_count": 4,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"best_parameters"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {
"execution": {
"iopub.execute_input": "2022-09-28T16:15:04.571357Z",
"iopub.status.busy": "2022-09-28T16:15:04.570069Z",
"iopub.status.idle": "2022-09-28T16:15:04.576709Z",
"shell.execute_reply": "2022-09-28T16:15:04.576192Z"
}
},
"outputs": [
{
"data": {
"text/plain": [
"{'hartmann6': -3.298383227394422, 'l2norm': 0.9633375165774383}"
]
},
"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-28T16:15:04.580232Z",
"iopub.status.busy": "2022-09-28T16:15:04.579838Z",
"iopub.status.idle": "2022-09-28T16:15:04.586033Z",
"shell.execute_reply": "2022-09-28T16:15:04.585512Z"
}
},
"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-28T16:15:04.589502Z",
"iopub.status.busy": "2022-09-28T16:15:04.589106Z",
"iopub.status.idle": "2022-09-28T16:15:05.378915Z",
"shell.execute_reply": "2022-09-28T16:15:05.378337Z"
}
},
"outputs": [
{
"data": {
"application/vnd.plotly.v1+json": {
"config": {
"linkText": "Export to plot.ly",
"plotlyServerURL": "https://plot.ly",
"showLink": false
},
"data": [
{
"autocolorscale": false,
"autocontour": true,
"colorbar": {
"tickfont": {
"size": 8
},
"ticksuffix": "",
"x": 0.45,
"y": 0.5
},
"colorscale": [
[
0.0,
"rgb(247,252,253)"
],
[
0.125,
"rgb(229,245,249)"
],
[
0.25,
"rgb(204,236,230)"
],
[
0.375,
"rgb(153,216,201)"
],
[
0.5,
"rgb(102,194,164)"
],
[
0.625,
"rgb(65,174,118)"
],
[
0.75,
"rgb(35,139,69)"
],
[
0.875,
"rgb(0,109,44)"
],
[
1.0,
"rgb(0,68,27)"
]
],
"contours": {
"coloring": "heatmap"
},
"hoverinfo": "x+y+z",
"ncontours": 25,
"type": "contour",
"x": [
0.0,
0.02040816326530612,
0.04081632653061224,
0.061224489795918366,
0.08163265306122448,
0.1020408163265306,
0.12244897959183673,
0.14285714285714285,
0.16326530612244897,
0.18367346938775508,
0.2040816326530612,
0.22448979591836732,
0.24489795918367346,
0.26530612244897955,
0.2857142857142857,
0.3061224489795918,
0.32653061224489793,
0.3469387755102041,
0.36734693877551017,
0.3877551020408163,
0.4081632653061224,
0.42857142857142855,
0.44897959183673464,
0.4693877551020408,
0.4897959183673469,
0.5102040816326531,
0.5306122448979591,
0.5510204081632653,
0.5714285714285714,
0.5918367346938775,
0.6122448979591836,
0.6326530612244897,
0.6530612244897959,
0.673469387755102,
0.6938775510204082,
0.7142857142857142,
0.7346938775510203,
0.7551020408163265,
0.7755102040816326,
0.7959183673469387,
0.8163265306122448,
0.836734693877551,
0.8571428571428571,
0.8775510204081632,
0.8979591836734693,
0.9183673469387754,
0.9387755102040816,
0.9591836734693877,
0.9795918367346939,
1.0
],
"xaxis": "x",
"y": [
0.0,
0.02040816326530612,
0.04081632653061224,
0.061224489795918366,
0.08163265306122448,
0.1020408163265306,
0.12244897959183673,
0.14285714285714285,
0.16326530612244897,
0.18367346938775508,
0.2040816326530612,
0.22448979591836732,
0.24489795918367346,
0.26530612244897955,
0.2857142857142857,
0.3061224489795918,
0.32653061224489793,
0.3469387755102041,
0.36734693877551017,
0.3877551020408163,
0.4081632653061224,
0.42857142857142855,
0.44897959183673464,
0.4693877551020408,
0.4897959183673469,
0.5102040816326531,
0.5306122448979591,
0.5510204081632653,
0.5714285714285714,
0.5918367346938775,
0.6122448979591836,
0.6326530612244897,
0.6530612244897959,
0.673469387755102,
0.6938775510204082,
0.7142857142857142,
0.7346938775510203,
0.7551020408163265,
0.7755102040816326,
0.7959183673469387,
0.8163265306122448,
0.836734693877551,
0.8571428571428571,
0.8775510204081632,
0.8979591836734693,
0.9183673469387754,
0.9387755102040816,
0.9591836734693877,
0.9795918367346939,
1.0
],
"yaxis": "y",
"z": [
[
-2.354600925810583,
-2.396922071285302,
-2.4351890613104477,
-2.4689891587387436,
-2.4979356156978234,
-2.5216773264664503,
-2.5399080261349716,
-2.5523745170023897,
-2.5588834705996244,
-2.5593064756959123,
-2.553583153133523,
-2.5417223010901138,
-2.5238011414236112,
-2.4999628007953785,
-2.470412191863784,
-2.4354104833144348,
-2.395268382067037,
-2.350338501250034,
-2.301007142268508,
-2.2476858587099393,
-2.190803175852756,
-2.1307968038499405,
-2.0681066094365628,
-2.003168514363399,
-1.9364093870771097,
-1.8682429043007704,
-1.7990662925338403,
-1.7292578207843405,
-1.65917490384907,
-1.5891526849007398,
-1.519502989735553,
-1.4505135751673182,
-1.3824476240282224,
-1.315543464067502,
-1.2500145048596978,
-1.1860493948993862,
-1.123812401393558,
-1.0634440100457105,
-1.0050617339765688,
-0.9487611122771896,
-0.8946168713631578,
-0.8426842173449299,
-0.7930002253734192,
-0.7455852921458477,
-0.7004446199324279,
-0.6575697039633753,
-0.6169397991861723,
-0.578523346767443,
-0.5422793449173686,
-0.508158652441902
],
[
-2.4117930188591115,
-2.456310688710156,
-2.4966470932414655,
-2.5323578405353766,
-2.563025065729799,
-2.588268329064122,
-2.607755065963806,
-2.6212099499847117,
-2.6284226086779237,
-2.6292532926334786,
-2.6236362985370536,
-2.6115811339476243,
-2.593171541700851,
-2.568562563937185,
-2.537975842230181,
-2.50169336015307,
-2.4600498685518337,
-2.4134242978452964,
-2.3622305371664285,
-2.3069080163383333,
-2.2479125369335,
-2.1857077520147845,
-2.1207575980866533,
-2.053519858254318,
-1.984440908141138,
-1.9139515875824433,
-1.8424640648199033,
-1.7703695198956289,
-1.6980364668801737,
-1.6258095527475895,
-1.5540087046463298,
-1.4829285376398293,
-1.412837973697454,
-1.3439800539504043,
-1.2765719467292058,
-1.210805163029578,
-1.1468459903734192,
-1.0848361485119034,
-1.0248936595089446,
-0.9671139135515855,
-0.9115709025982034,
-0.858318587892806,
-0.8073923647089332,
-0.7588105880448058,
-0.7125761256275404,
-0.668677908662086,
-0.6270924555281592,
-0.5877853485048883,
-0.5507126481978476,
-0.5158222344356023
],
[
-2.46375194536812,
-2.5103658579636274,
-2.552683371693818,
-2.590228538794117,
-2.6225522280755564,
-2.6492443594070325,
-2.6699457214865783,
-2.684358587871303,
-2.69225543690289,
-2.6934852871364474,
-2.6879774256186484,
-2.6757425519350644,
-2.6568715209556735,
-2.6315319251813234,
-2.5999627505202616,
-2.562467328760829,
-2.519404842051924,
-2.4711807161342203,
-2.4182363401490425,
-2.3610386263936327,
-2.300069936672317,
-2.23581883988291,
-2.1687720410055964,
-2.0994076647648305,
-2.0281899219589787,
-1.9555650596602419,
-1.8819584124908075,
-1.8077723331680005,
-1.7333847802717552,
-1.6591483693263407,
-1.5853897383133426,
-1.512409129820043,
-1.4404801400183973,
-1.3698496228092354,
-1.3007377619693095,
-1.2333383343712314,
-1.1678191854060465,
-1.1043229274887114,
-1.0429678583855548,
-0.9838490819669874,
-0.9270398025708825,
-0.8725927568092985,
-0.820541743534755,
-0.7709032131866776,
-0.7236778808674539,
-0.6788523322016481,
-0.6364005964097398,
-0.5962856664138313,
-0.5584609507647326,
-0.5228716465193626
],
[
-2.509724798429228,
-2.5582931284405417,
-2.6024637505145325,
-2.6417300048185406,
-2.6756120549753852,
-2.70367051732904,
-2.7255197394561095,
-2.740839774092926,
-2.749386190920974,
-2.750997125861674,
-2.745597313599712,
-2.7331991700508347,
-2.7139011903488433,
-2.687883980094692,
-2.6554041994717954,
-2.6167866628809424,
-2.5724148660335073,
-2.522720313893784,
-2.4681711520318963,
-2.4092606985681417,
-2.346496486695979,
-2.280390345126921,
-2.2114498861631886,
-2.1401715795024456,
-2.0670354074660415,
-1.9925009551714083,
-1.917004700900596,
-1.8409582364356125,
-1.764747154717697,
-1.6887303800730487,
-1.6132397717129376,
-1.538579892678134,
-1.4650278938267463,
-1.392833508063088,
-1.3222191791251947,
-1.253380360965755,
-1.186486020602557,
-1.1216793640959384,
-1.059078787566239,
-0.9987790377195529,
-0.9408525524736533,
-0.8853509434831874,
-0.8323065787107017,
-0.7817342238066766,
-0.7336327046701436,
-0.6879865588811765,
-0.6447676496686205,
-0.603936721952,
-0.5654448853238028,
-0.5292350134052124
],
[
-2.5489859515362525,
-2.5993230217221877,
-2.6451765347864273,
-2.68601086634209,
-2.7213169263237855,
-2.7506271871695898,
-2.7735304695474765,
-2.789685347743527,
-2.7988311281941414,
-2.8007956627233517,
-2.7954996954016837,
-2.7829578542293523,
-2.7632766479553696,
-2.736649877320505,
-2.703351797958879,
-2.6637283061258055,
-2.6181864442654805,
-2.5671826444278603,
-2.5112102823323865,
-2.4507872236988892,
-2.386444050777187,
-2.3187135485892028,
-2.248121837262799,
-2.175181311953475,
-2.100385346879363,
-2.0242045682187855,
-1.9470844127133762,
-1.8694436588323098,
-1.791673631961719,
-1.7141378302696106,
-1.6371717812586075,
-1.56108300934753,
-1.4861510615427014,
-1.4126275921573868,
-1.3407365424394242,
-1.27067446511129,
-1.2026110399190038,
-1.1366898101280372,
-1.0730291483166616,
-1.0117234387345717,
-0.9528444468584091,
-0.8964428363142888,
-0.8425497889928892,
-0.7911786848043272,
-0.7423268015325328,
-0.6959770011249471,
-0.6520993752723212,
-0.6106528294609588,
-0.5715865903356001,
-0.5348416259886397
],
[
-2.5808606951534703,
-2.6327363783522504,
-2.680059424874405,
-2.7222680276624818,
-2.7588263513320106,
-2.7892408878830386,
-2.8130767214687085,
-2.829972379875365,
-2.8396520227367885,
-2.841934066304402,
-2.8367358739465667,
-2.8240746546853344,
-2.8040650240029246,
-2.7769137372824773,
-2.7429120069235937,
-2.702425722011139,
-2.6558839104765917,
-2.6037659180021846,
-2.5465879486364065,
-2.4848897248946367,
-2.4192220170714536,
-2.3501356538058524,
-2.278172399041729,
-2.203857828771369,
-2.1276961224136053,
-2.0501665307883705,
-1.9717212002580977,
-1.8927840086164611,
-1.8137500864868605,
-1.7349857452273263,
-1.6568285989190972,
-1.5795877446357904,
-1.5035439409746492,
-1.4289497884181581,
-1.3560299577161354,
-1.284981530700913,
-1.2159745142744833,
-1.1491525695458944,
-1.0846339725664214,
-1.0225127980868112,
-0.9628602980179767,
-0.9057264338353376,
-0.85114151687739,
-0.7991179109197379,
-0.7496517556716894,
-0.7027246761628843,
-0.6583054499731875,
-0.6163516109863678,
-0.5768109743030538,
-0.539623071925886
],
[
-2.6047506988728752,
-2.6578921156001707,
-2.7064294777421596,
-2.7497786754391855,
-2.7873808038686945,
-2.8187196855397176,
-2.8433394860086922,
-2.8608609362125184,
-2.8709947139110317,
-2.8735509097081007,
-2.8684441095948383,
-2.8556942365660767,
-2.8354236792304377,
-2.807851318515074,
-2.773283956577518,
-2.732105544007066,
-2.6847646147283983,
-2.6317604723309835,
-2.573628841074287,
-2.5109277969865467,
-2.444224763840292,
-2.3740851913579935,
-2.3010632790019723,
-2.225694841631922,
-2.148492194129089,
-2.0699407884036423,
-1.9904972640523506,
-1.910588554245696,
-1.8306117036935807,
-1.7509340967047389,
-1.6718938565336279,
-1.5938002567690226,
-1.5169340703312055,
-1.4415478570285245,
-1.3678662437461933,
-1.2960862759995746,
-1.226377917628769,
-1.15888475468002,
-1.0937249300887375,
-1.0309923065412034,
-0.9707578316516151,
-0.913071064774415,
-0.8579618181835357,
-0.8054418652993908,
-0.7555066729365494,
-0.708137121143652,
-0.6633011815482904,
-0.6209555321798504,
-0.5810470929668453,
-0.543514471278278
],
[
-2.62015966870901,
-2.6742556784888087,
-2.7237143191903384,
-2.7679341139301403,
-2.806337935378979,
-2.8383914447786918,
-2.863621818992057,
-2.8816351553335733,
-2.8921309410254445,
-2.8949123456630215,
-2.8898917476199992,
-2.877091592957919,
-2.85664114808315,
-2.8287698437706057,
-2.7937978243981947,
-2.7521242091248648,
-2.704213573487194,
-2.6505812760130913,
-2.59177840118982,
-2.528377165229167,
-2.4609575708441667,
-2.390095903100779,
-2.3163553883834664,
-2.240279071544439,
-2.1623847616592666,
-2.083161772984118,
-2.003069129170346,
-1.9225348793207746,
-1.8419561777146332,
-1.7616998038637268,
-1.6821028514789813,
-1.6034733937745378,
-1.5260910266890275,
-1.4502072815139613,
-1.3760459654329265,
-1.3038035224238733,
-1.233649508580276,
-1.165727254090529,
-1.1001547509859717,
-1.0370257721181397,
-0.9764111997005466,
-0.9183605241113184,
-0.8629034653375501,
-0.8100516685375028,
-0.7598004292193383,
-0.7121304101954744,
-0.6670093200244507,
-0.6243935299638259,
-0.5842296129151446,
-0.5464557932078663
],
[
-2.6267169731558875,
-2.681425691910894,
-2.7314818795142464,
-2.7762725147817098,
-2.81520812254759,
-2.8477418087884967,
-2.873388758531455,
-2.8917445189836877,
-2.902500344621404,
-2.9054542269127888,
-2.9005168893530313,
-2.8877127579749073,
-2.8671764499203825,
-2.839145534972133,
-2.8039502977039117,
-2.762001142072622,
-2.713774268888991,
-2.659796337642015,
-2.600628927630539,
-2.536853646561755,
-2.4690586403042696,
-2.397827042493308,
-2.3237276302285386,
-2.247307701914427,
-2.16908801803279,
-2.0895595507648017,
-2.0091817448178784,
-1.9283819666814208,
-1.847555800411787,
-1.7670678457079991,
-1.6872527067678595,
-1.6084159351000318,
-1.530834793494372,
-1.4547588156297564,
-1.3804102201168067,
-1.307984283897697,
-1.23764978705222,
-1.1695496192491937,
-1.1038016016857035,
-1.0404995402820618,
-0.9797144946102669,
-0.921496226157325,
-0.8658747790299693,
-0.8128621440275461,
-0.762453960412918,
-0.7146312161699451,
-0.6693619151244572,
-0.6266026867649963,
-0.5863003212449187,
-0.548393217600085
],
[
-2.6241966688456015,
-2.6791557887326505,
-2.7294651654139304,
-2.7745066572911754,
-2.813685048607363,
-2.8464473205299274,
-2.872302511421071,
-2.8908404824874463,
-2.901747824530367,
-2.9048194446633424,
-2.8999649964200302,
-2.8872100468649933,
-2.8666924560775997,
-2.8386547405934754,
-2.803433245069347,
-2.7614449009679074,
-2.7131723308200932,
-2.6591480939613206,
-2.5999389165382683,
-2.536130730031342,
-2.468315212342959,
-2.3970782972042572,
-2.3229908562563386,
-2.246601539418152,
-2.168431624769322,
-2.088971668919425,
-2.0086797193877586,
-1.9279808134116643,
-1.8472674368159892,
-1.766900577877688,
-1.6872110181206978,
-1.6085005696285304,
-1.5310430826050598,
-1.4550851735649355,
-1.3808467286804484,
-1.3085212974184088,
-1.2382765060683447,
-1.1702546002469276,
-1.1045731865827961,
-1.041326201625118,
-0.9805851005427414,
-0.9224002337969175,
-0.8668023668990624,
-0.8138042944844341,
-0.7634025023333941,
-0.7155788369263433,
-0.6703021495275187,
-0.6275298892676128,
-0.5872096264600097,
-0.5492804931034867
],
[
-2.612529514756507,
-2.6673686478105405,
-2.7175784916851633,
-2.762542447565213,
-2.801666491203906,
-2.834398315380942,
-2.86024712162709,
-2.878802427091456,
-2.8897501506949563,
-2.8928844960465607,
-2.888114712024732,
-2.875466505911166,
-2.8550784853974456,
-2.8271943741028998,
-2.7921518828853062,
-2.7503691265860013,
-2.7023294566844296,
-2.648565576836051,
-2.589643796289933,
-2.5261492037695574,
-2.458672381099003,
-2.3877980424619727,
-2.314095745860815,
-2.238112645740784,
-2.1603681677360025,
-2.0813504615826064,
-2.001514469965387,
-1.9212813969488676,
-1.841039271536241,
-1.761144221752574,
-1.681922052198221,
-1.60366977647874,
-1.526656879297901,
-1.4511262290187759,
-1.3772946860832556,
-1.3053535288752205,
-1.2354688418578015,
-1.1677819930938114,
-1.1024102881739744,
-1.039447842192276,
-0.9789666721379533,
-0.9210179841833365,
-0.8656336144404471,
-0.8128275758028791,
-0.7625976645013207,
-0.7149270851178716,
-0.669786059781198,
-0.6271333945842227,
-0.5869179830495915,
-0.5490802323040039
],
[
-2.59180634187801,
-2.646160143834904,
-2.6959225301532355,
-2.7404849660003983,
-2.7792614265595326,
-2.811707072488648,
-2.8373375652912918,
-2.8557474824945324,
-2.866626184221908,
-2.8697696883053982,
-2.8650876000774375,
-2.8526047745547083,
-2.8324579780837116,
-2.804888230122427,
-2.7702297153829116,
-2.7288962189569466,
-2.6813660300618407,
-2.628166227534331,
-2.569857198089588,
-2.5070181189320304,
-2.4402339473662806,
-2.3700842300253497,
-2.297133834251609,
-2.221925570764523,
-2.1449746332869344,
-2.06676478646302,
-1.987746221700367,
-1.9083349271478869,
-1.828913292622524,
-1.749831549593464,
-1.671409594524818,
-1.5939387916276702,
-1.517683480878036,
-1.442882079528526,
-1.3697478082940466,
-1.2984691646399404,
-1.229210298509992,
-1.1621114326136142,
-1.097289429948293,
-1.0348385641083868,
-0.9748315057842257,
-0.9173205078269285,
-0.8623387524780021,
-0.809901816065315,
-0.7600092057374083,
-0.7126459267439312,
-0.6677840450292627,
-0.6253842168599439,
-0.5853971638688188,
-0.5477650777697711
],
[
-2.5622724006069024,
-2.615793050029062,
-2.664777382411101,
-2.708630959908671,
-2.746782028074178,
-2.7786994343061204,
-2.8039111178114515,
-2.8220217555240295,
-2.832728045889591,
-2.835830277539375,
-2.8312392429948403,
-2.8189781126126903,
-2.79917943449451,
-2.7720778532154933,
-2.737999397537992,
-2.6973482967461653,
-2.650592297615132,
-2.598247407545149,
-2.5408628933491038,
-2.4790072131490097,
-2.413255356172116,
-2.344177847010239,
-2.2723314931879504,
-2.198251862288267,
-2.1224474674186924,
-2.0453956665374733,
-1.967540270526209,
-1.889290763246247,
-1.8110228804575144,
-1.7330801405825615,
-1.65577584325652,
-1.5793950876457372,
-1.5041964937201282,
-1.4304134820989365,
-1.3582551244637036,
-1.2879066805223967,
-1.2195299802810347,
-1.1532638034488825,
-1.0892243713063543,
-1.0275060195590613,
-0.968182077120068,
-0.9113059423756186,
-0.8569123270931595,
-0.8050186273961171,
-0.7556263784909637,
-0.7087227522667945,
-0.6642820621313671,
-0.6222672457925839,
-0.5826313030567899,
-0.5453186715009359
],
[
-2.5243136598485734,
-2.5766814450497586,
-2.624585010817744,
-2.6674492906258687,
-2.704722217943039,
-2.7358916591824296,
-2.7605028093565225,
-2.7781747768432363,
-2.7886149951035306,
-2.7916302326176843,
-2.7871333152750397,
-2.775145150152814,
-2.7557921335141504,
-2.7292994386387894,
-2.6959809574782723,
-2.656226812079262,
-2.610489384590396,
-2.5592687673036334,
-2.503098422693141,
-2.4425316770305474,
-2.378129469018252,
-2.310449576203048,
-2.240037396307384,
-2.1674183007876175,
-2.0930915936509455,
-2.017526144336444,
-1.9411577484883327,
-1.8643881646364022,
-1.7875855987972304,
-1.711086234371554,
-1.6351963097929239,
-1.5601942702767353,
-1.4863326460136197,
-1.413839482890095,
-1.3429193143831273,
-1.273753776107986,
-1.2065020165093927,
-1.141301058091984,
-1.0782662324876244,
-1.0174917685709972,
-0.9590515696701221,
-0.9030001813369053,
-0.8493739276870025,
-0.7981921812769094,
-0.7494587266082317,
-0.703163178034149,
-0.6592824167949408,
-0.6177820173936595,
-0.5786176393805177,
-0.5417363661616016
],
[
-2.4784370573933843,
-2.5293682700202544,
-2.5759239732991674,
-2.617552814509877,
-2.6537267890564937,
-2.683957025988456,
-2.7078099076975874,
-2.724922398520122,
-2.7350153862290574,
-2.7379039498927416,
-2.7335037492542873,
-2.721833128369698,
-2.7030109551386827,
-2.677250597222847,
-2.6448507112954402,
-2.6061836806159038,
-2.561682585586135,
-2.5118275524322726,
-2.457132214545643,
-2.3981308579024776,
-2.3353666338709553,
-2.2693810495260136,
-2.2007048293338154,
-2.129850204934783,
-2.0573047150191,
-1.9835266304698866,
-1.908942096504021,
-1.833943969453363,
-1.758892143639263,
-1.6841149829569542,
-1.609911367944933,
-1.5365528811867901,
-1.464285767991715,
-1.393332474863415,
-1.3238927287342606,
-1.256144236610195,
-1.1902431449468809,
-1.12632440771343,
-1.0645021885283827,
-1.004870383258643,
-0.947503308746327,
-0.8924565689922335,
-0.8397680854620011,
-0.7894592632148264,
-0.741536257598109,
-0.695991305060873,
-0.6528040840874109,
-0.6119430766480477,
-0.5733669057071816,
-0.5370256294651036
],
[
-2.4252471587114397,
-2.47449902313606,
-2.5194800414872627,
-2.5596659119940965,
-2.5945559577472586,
-2.6236876676013887,
-2.6466514409580113,
-2.6631045572936656,
-2.6727833387666085,
-2.675512565648914,
-2.6712114341931272,
-2.659895674349138,
-2.6416758077803926,
-2.6167518607736353,
-2.5854051047795457,
-2.547987557180746,
-2.5049100354685185,
-2.4566295306980974,
-2.403636568058962,
-2.346443076119337,
-2.2855711222513535,
-2.2215427272055166,
-2.15487088066505,
-2.086051855499648,
-2.015558941862418,
-1.9438377442613635,
-1.871303150913941,
-1.7983379686408423,
-1.7252930405420572,
-1.652488489890202,
-1.5802156295316188,
-1.508739077614691,
-1.4382987175762028,
-1.36911128954384,
-1.3013715508546697,
-1.2352530584735362,
-1.1709086909299167,
-1.1084710456399867,
-1.048052832774682,
-0.9897473548592551,
-0.933629124900849,
-0.8797546432862813,
-0.8281633288894046,
-0.7788785835587978,
-0.7319089603975523,
-0.6872494032169657,
-0.6448825253906534,
-0.6047798994737539,
-0.5669033331987063,
-0.5312061120140912
],
[
-2.365421588034223,
-2.412794402316222,
-2.4560159977841387,
-2.4945914682784296,
-2.5280496597405366,
-2.555956426974393,
-2.5779279750510593,
-2.5936434441226908,
-2.602855860277204,
-2.6054006524568276,
-2.6012011223203455,
-2.5902705210632213,
-2.572710688453274,
-2.5487074951568527,
-2.518523559794641,
-2.4824888636162044,
-2.4409899514256206,
-2.394458393356441,
-2.343359103166319,
-2.288178987282592,
-2.229416264085928,
-2.167570677112825,
-2.1031347549515464,
-2.0365862518945828,
-1.9683819176847357,
-1.8989527512338746,
-1.8287008495306463,
-1.7579978504784162,
-1.6871848075453157,
-1.6165731767665412,
-1.5464464989279334,
-1.4770623528671722,
-1.408654233522899,
-1.3414331359200133,
-1.275588760839713,
-1.2112903663798709,
-1.148687356442152,
-1.087909722809971,
-1.029068451901818,
-0.9722559834713047,
-0.9175467779502248,
-0.8649980197770955,
-0.8146504602555772,
-0.766529386717249,
-0.7206456946755622,
-0.6769970350058758,
-0.6355690074616446,
-0.5963363736451807,
-0.5592642657739606,
-0.5243093714143168
],
[
-2.2996871428736156,
-2.345024087096882,
-2.3863430899365143,
-2.4231800698103365,
-2.4550946273223593,
-2.481682025735964,
-2.5025851552762086,
-2.5175057659166247,
-2.526214230686346,
-2.528557167604019,
-2.5244623998651763,
-2.5139409497165888,
-2.4970860076524355,
-2.474069057413616,
-2.4451335361051156,
-2.410586545867989,
-2.3707891999614996,
-2.3261461843889952,
-2.277095058439785,
-2.22409572359833,
-2.1676203855178473,
-2.1081442442107856,
-2.0461370921772737,
-1.9820559819889856,
-1.9163391269959684,
-1.8494011897975875,
-1.7816300620546768,
-1.7133851344078113,
-1.6449969143956786,
-1.5767677142573524,
-1.5089730433676793,
-1.4418633272833734,
-1.3756656339244901,
-1.3105851912910722,
-1.2468065961409254,
-1.1844947109331905,
-1.1237953118448982,
-1.0648355815556387,
-1.007724543213786,
-0.9525535165544144,
-0.8993966532195865,
-0.8483115832722554,
-0.7993401831635961,
-0.7525094590106595,
-0.7078325282422024,
-0.6653096767702491,
-0.6249294667291915,
-0.5866698703407235,
-0.5504994076126363,
-0.516378268591801
],
[
-2.2287979160992384,
-2.2719830974863027,
-2.3112956803324747,
-2.3463030369397675,
-2.376595935507213,
-2.401799288054617,
-2.4215828026200543,
-2.435670936361692,
-2.4438515339638633,
-2.445982592318092,
-2.4419967150881625,
-2.4319029939994614,
-2.4157862526336347,
-2.393803784689874,
-2.366179886237785,
-2.333198601857821,
-2.295195168689657,
-2.2525466509377794,
-2.2056622196474347,
-2.154973464815541,
-2.100925049474943,
-2.043965948103915,
-1.9845414677015394,
-1.9230862298654292,
-1.860018282696949,
-1.7957344894996476,
-1.7306072861320048,
-1.6649828041845511,
-1.5991802375208555,
-1.53349221599778,
-1.4681858752997008,
-1.4035042956132915,
-1.3396680234854736,
-1.2768764722288835,
-1.2153090907134512,
-1.1551262752505438,
-1.0964700605245703,
-1.0394646591300223,
-0.9842169286356464,
-0.9308168373558448,
-0.8793379828794462,
-0.8298381972670525,
-0.7823602539905232,
-0.7369326764615738,
-0.6935706371540016,
-0.6522769296549568,
-0.6130429927713442,
-0.5758499651889598,
-0.5406697502977117,
-0.5074660729599247
],
[
-2.1535161932418,
-2.194471489670097,
-2.23170982041321,
-2.2648299748647283,
-2.2934536388404605,
-2.317234978529945,
-2.3358700701056243,
-2.349105669200517,
-2.356746809738874,
-2.358662769983769,
-2.3547910427774252,
-2.3451390853795897,
-2.3297837837703987,
-2.3088687254790417,
-2.2825995139321,
-2.251237460869922,
-2.215092053476999,
-2.174512609145342,
-2.1298795100555497,
-2.0815953644416045,
-2.0300763868298874,
-1.9757442400284504,
-1.9190185459712583,
-1.8603102503403888,
-1.8000160072259628,
-1.7385137194306686,
-1.676159314231834,
-1.613284750879773,
-1.550197156568465,
-1.4871788945641096,
-1.424488305401924,
-1.3623608443859923,
-1.3010103664597346,
-1.2406303703590709,
-1.1813950888866631,
-1.1234603831350534,
-1.0669644533634297,
-1.0120284130916448,
-0.9587567869169431,
-0.9072379912194767,
-0.857544846078665,
-0.8097351516238255,
-0.7638523465906419,
-0.7199262534432761,
-0.6779739041562186,
-0.638000433825432,
-0.6000000253453908,
-0.5639568868482197,
-0.5298462438028098,
-0.4976353290231914
],
[
-2.074596448505785,
-2.113277636335537,
-2.1484059026128257,
-2.1796108857389043,
-2.2065444263644496,
-2.2288890712085045,
-2.246366382694061,
-2.258744632293281,
-2.265845455840144,
-2.2675490902904984,
-2.2637978914157477,
-2.25459794222534,
-2.2400186890763965,
-2.2201906706217316,
-2.19530151878012,
-2.1655904989020858,
-2.1313419114879304,
-2.092877699304052,
-2.0505495962207627,
-2.00473112650839,
-1.9558097266166152,
-1.9041792255253374,
-1.850232890298583,
-1.79435721986487,
-1.7369266454891392,
-1.6782992610498852,
-1.6188136524916388,
-1.5587868234407896,
-1.49851313213381,
-1.4382640795748096,
-1.3782887369591048,
-1.318814582623126,
-1.2600485360773015,
-1.2021780208419006,
-1.1453719454535376,
-1.089781549547239,
-1.03554110926769,
-0.9827685283825662,
-0.9315658579252423,
-0.882019790642498,
-0.834202171011267,
-0.7881705512018047,
-0.7439688114324268,
-0.701627851960827,
-0.6611663547621376,
-0.6225916062357126,
-0.5859003680143986,
-0.5510797807803345,
-0.5181082854577559,
-0.48695654678849576
],
[
-1.992772449391123,
-2.0291650000529833,
-2.0621751832682564,
-2.0914625126345427,
-2.1167078424785197,
-2.137620882996141,
-2.153947497148805,
-2.1654764280884216,
-2.172045109460245,
-2.1735442458882113,
-2.169920915490439,
-2.161180034068752,
-2.147384121770493,
-2.1286514158412215,
-2.1051524661829637,
-2.077105424667891,
-2.0447702890629293,
-2.0084423868465078,
-1.9684453861231317,
-1.9251241063462643,
-1.8788373780833219,
-1.8299511751883848,
-1.7788322181408431,
-1.7258422234564756,
-1.6713329467237914,
-1.6156421301877866,
-1.559090416008867,
-1.5019792244375214,
-1.4445895292540458,
-1.3871814022594315,
-1.3299941559786665,
-1.2732468966837638,
-1.2171393094648144,
-1.1618525281065144,
-1.107549985717991,
-1.0543781874372857,
-1.0024673860713191,
-0.9519321705568675,
-0.9028719943294894,
-0.8553716772950377,
-0.8095019137404815,
-0.7653198122014295,
-0.7228694847093712,
-0.6821826939971137,
-0.6432795594354727,
-0.6061693163595288,
-0.5708511191936446,
-0.5373148762746764,
-0.5055421032160075,
-0.47550678170996985
],
[
-1.9087472812896256,
-1.9428621100292858,
-1.9737697785065147,
-2.001158406661509,
-2.0247364574955005,
-2.044239356909904,
-2.0594358838709277,
-2.070134039154205,
-2.0761861063248324,
-2.0774926481071385,
-2.074005233369956,
-2.0657277598528982,
-2.0527163182072266,
-2.0350776253143774,
-2.0129661307059497,
-1.9865799623040985,
-1.9561559222774951,
-1.9219637692955727,
-1.884300031554879,
-1.8434815895361447,
-1.7998392533568028,
-1.7537115410605812,
-1.7054388435694627,
-1.6553581390765522,
-1.6037983919853798,
-1.551076736066622,
-1.4974954967454404,
-1.4433400550449342,
-1.3888775011320609,
-1.3343559766103628,
-1.280004569674323,
-1.2260336113319947,
-1.1726352251425602,
-1.1199840039720108,
-1.0682377188520518,
-1.017537999959715,
-0.9680109618373267,
-0.919767770181513,
-0.8729051641593116,
-0.8275059565477697,
-0.7836395355897526,
-0.7413623893981054,
-0.700718668078375,
-0.6617407921719488,
-0.6244501097446472,
-0.5888575991756382,
-0.5549646107545021,
-0.5227636376061431,
-0.4922391050966375,
-0.46336816750411947
],
[
-1.8231859927581515,
-1.85505535515813,
-1.883895655763435,
-1.9094221506407,
-1.9313693366639435,
-1.9494967674003136,
-1.9635946376043703,
-1.9734888941585957,
-1.9790456375518268,
-1.9801746027733909,
-1.976831550543696,
-1.9690194555445504,
-1.9567884423960358,
-1.9402344862274379,
-1.9194969565312054,
-1.894755135332013,
-1.8662238800918458,
-1.8341486269091243,
-1.7987999412283822,
-1.760467823771919,
-1.7194559717227627,
-1.6760761819941838,
-1.6306430662291953,
-1.5834692260077727,
-1.534861010468914,
-1.4851149458776889,
-1.4345148873798235,
-1.3833298991768872,
-1.3318128247938972,
-1.2801994696214436,
-1.2287082890084764,
-1.1775404605897801,
-1.1268802201249681,
-1.0768953538148238,
-1.0277377626059165,
-0.9795440403115288,
-0.9324360328097006,
-0.8865213667686606,
-0.8418939515519592,
-0.7986344669015002,
-0.7568108524736207,
-0.7164788146658136,
-0.6776823629149039,
-0.6404543831154145,
-0.6048172510410336,
-0.5707834843497592,
-0.5383564283018337,
-0.5075309678625255,
-0.4782942573760671,
-0.45062645836034587
],
[
-1.7367105126339573,
-1.7663841742641422,
-1.7932081320420212,
-1.8169231833646722,
-1.8372881893437711,
-1.8540851735091635,
-1.8671241946138084,
-1.8762477925217147,
-1.8813348126179341,
-1.8823034349295154,
-1.8791132681400824,
-1.871766413251322,
-1.860307452843201,
-1.8448223750598625,
-1.8254364919501198,
-1.8023114556549484,
-1.7756415104103007,
-1.7456491421520346,
-1.7125803008330749,
-1.6766993746304495,
-1.6382840917811188,
-1.5976205164672794,
-1.5549982909815205,
-1.5107062575559698,
-1.465028569402846,
-1.4182413714124322,
-1.370610097106682,
-1.3223873916971185,
-1.2738116346502726,
-1.2251060030299588,
-1.1764779928894042,
-1.1281193027393446,
-1.0802059813261207,
-1.032898750316483,
-0.9863434281602559,
-0.940671400819838,
-0.8960001047686185,
-0.8524335049842593,
-0.810062563981075,
-0.7689657066840796,
-0.7292092904320475,
-0.6908480904184312,
-0.6539258094685511,
-0.6184756182251234,
-0.5845207284257281,
-0.552074998635238,
-0.5211435689435655,
-0.49172351895916844,
-0.4638045419769181,
-0.4373696274329144
],
[
-1.6498964801468823,
-1.6774382315167922,
-1.702309415721468,
-1.7242747133466332,
-1.7431156435040323,
-1.7586350260665171,
-1.7706612286626018,
-1.7790520314559701,
-1.7836979489829397,
-1.7845248656355346,
-1.7814958689126805,
-1.7746122003168894,
-1.7639132848307146,
-1.7494758428355712,
-1.7314121296744809,
-1.7098673847942423,
-1.685016602327295,
-1.6570607568916667,
-1.6262226320810031,
-1.5927424051316876,
-1.556873140539503,
-1.5188763389198185,
-1.4790176758543727,
-1.4375630491730422,
-1.394775032206712,
-1.3509098053016457,
-1.30621460915322,
-1.2609257329800294,
-1.2152670206926044,
-1.1694488519096977,
-1.123667534629465,
-1.0781050344185816,
-1.0329289617041346,
-0.9882927433373345,
-0.9443359151453359,
-0.9011844862062613,
-0.8589513405515617,
-0.8177366558254544,
-0.7776283297085064,
-0.7387024129814016,
-0.7010235529459066,
-0.6646454529617746,
-0.6296113537723007,
-0.5959545408073772,
-0.5636988794412626,
-0.5328593777742106,
-0.5034427742802257,
-0.4754481458431843,
-0.44886753039476446,
-0.4236865575831461
],
[
-1.563271642992855,
-1.5887561934591239,
-1.6117477724312388,
-1.6320332697943067,
-1.6494151639121084,
-1.663715421330865,
-1.6747791954534446,
-1.6824781853352389,
-1.686713521541044,
-1.687418060404049,
-1.684557990370846,
-1.678133682898958,
-1.6681797534309306,
-1.6547643327577204,
-1.6379875830103159,
-1.6179795232674696,
-1.5948972555621195,
-1.568921701806313,
-1.5402539754086666,
-1.5091115182492016,
-1.4757241346555086,
-1.440330049645707,
-1.4031721094545382,
-1.3644942286153299,
-1.3245381699938306,
-1.2835407227065334,
-1.2417313187549814,
-1.199330103935592,
-1.1565464540671924,
-1.1135779059370445,
-1.0706094555257772,
-1.0278131653579354,
-0.9853480186892729,
-0.943359960197848,
-0.9019820696258889,
-0.861334824690526,
-0.8215264207157146,
-0.7826531252302461,
-0.7447996550581907,
-0.7080395705375162,
-0.6724356862527313,
-0.6380405002349716,
-0.6048966443716426,
-0.5730373582800984,
-0.542486987634047,
-0.5132615063172039,
-0.4853690601458187,
-0.4588105284714059,
-0.43358009887430926,
-0.4096658494357923
],
[
-1.4773155053104936,
-1.5008257627657042,
-1.5220179458927732,
-1.5406995002609618,
-1.5566922046790894,
-1.569835575327164,
-1.5799900853822129,
-1.5870400845122397,
-1.5908963077997387,
-1.591497875589891,
-1.588813703912448,
-1.5828432683706648,
-1.573616691113495,
-1.5611941488071523,
-1.5456646274365402,
-1.5271440755035168,
-1.5057730293011964,
-1.4817138014413376,
-1.4551473361716336,
-1.4262698421187534,
-1.395289315085422,
-1.3624220607167528,
-1.3278893195824315,
-1.2919140858747695,
-1.2547181959509044,
-1.2165197449885579,
-1.1775308700008253,
-1.1379559166141027,
-1.0979899868598408,
-1.0578178473466449,
-1.0176131629667746,
-0.9775380117238488,
-0.9377426317113272,
-0.8983653514404394,
-0.859532658768027,
-0.8213593704089183,
-0.7839488721134592,
-0.7473934078376503,
-0.711774403682533,
-0.6771628184271318,
-0.6436195168608455,
-0.6111956648559992,
-0.5799331464271759,
-0.5498650032252893,
-0.5210158963684965,
-0.4934025895480707,
-0.4670344512400608,
-0.4419139728018011,
-0.4180372983676208,
-0.3953947618471907
],
[
-1.392459940800581,
-1.4140846660433863,
-1.4335625154863045,
-1.450719883462807,
-1.4653962534085176,
-1.4774471665347702,
-1.486747023896863,
-1.4931916254045827,
-1.496700353839051,
-1.4972179217783221,
-1.4947156140883386,
-1.489191977457679,
-1.4806729301343593,
-1.469211288127349,
-1.454885727164345,
-1.437799221245096,
-1.4180770175141915,
-1.3958642225219149,
-1.3713230861981034,
-1.3446300767834443,
-1.3159728425286847,
-1.2855471543334185,
-1.253553917906237,
-1.220196334836137,
-1.1856772796356163,
-1.1501969449794207,
-1.1139507908558972,
-1.0771278162117037,
-1.0399091550894282,
-1.0024669844277707,
-0.9649637186600535,
-0.9275514577378997,
-0.8903716505252322,
-0.8535549344991333,
-0.8172211148013805,
-0.7814792500774317,
-0.7464278182706099,
-0.7121549417002163,
-0.6787386565927083,
-0.6462472172295558,
-0.6147394287389121,
-0.5842650052201708,
-0.5548649514436886,
-0.5265719670074733,
-0.49941087180110655,
-0.4733990511684003,
-0.448546918490097,
-0.4248583921972817,
-0.4023313835964051,
-0.3809582914126939
],
[
-1.3090905216799307,
-1.328922334991397,
-1.3467739205078086,
-1.3624890797068858,
-1.375923483388676,
-1.386947258497007,
-1.3954474269144534,
-1.4013301156140314,
-1.4045224613694545,
-1.4049741412762289,
-1.4026584723131457,
-1.3975730384399323,
-1.38973982136965,
-1.3792048300816626,
-1.3660372431923251,
-1.3503280963607536,
-1.3321885630038446,
-1.3117478899603698,
-1.2891510598473088,
-1.2645562583875123,
-1.238132227850953,
-1.2100555869961587,
-1.1805081937102058,
-1.1496746192297884,
-1.1177397928152186,
-1.08488686361988,
-1.0512953129758789,
-1.0171393362632895,
-0.9825864998793812,
-0.9477966664965856,
-0.9129211715849606,
-0.8781022266372781,
-0.8434725199265211,
-0.8091549838759781,
-0.7752626988685658,
-0.7418989059921189,
-0.7091571051334072,
-0.6771212193209644,
-0.6458658106888155,
-0.6154563374497766,
-0.5859494445542366,
-0.5573932831517977,
-0.5298278555832834,
-0.5032853835132345,
-0.4777906971237236,
-0.4533616432013752,
-0.4300095096241783,
-0.4077394633319831,
-0.38655099845028795,
-0.36643839090360597
],
[
-1.2275483493984205,
-1.245682060169806,
-1.2619969253461032,
-1.276352689570882,
-1.288619782002771,
-1.2986815688338613,
-1.3064364765216852,
-1.3117999182033113,
-1.3147059588789678,
-1.3151086614685414,
-1.312983065535482,
-1.3083257628607454,
-1.3011550484430192,
-1.2915106410577633,
-1.279452983318383,
-1.2650621463514233,
-1.248436377918348,
-1.2296903444215121,
-1.208953126227408,
-1.1863660318070406,
-1.162080299181937,
-1.136254753074195,
-1.1090534831238785,
-1.0806436028156368,
-1.0511931407286985,
-1.0208691058942452,
-0.9898357580261534,
-0.9582531018891082,
-0.9262756138258622,
-0.8940511981974708,
-0.8617203628111723,
-0.8294155957572987,
-0.7972609216688754,
-0.7653716132371048,
-0.733854033632136,
-0.7028055868996088,
-0.6723147559465438,
-0.642461210896794,
-0.6133159739338918,
-0.5849416298976445,
-0.5573925746128545,
-0.5307152950716361,
-0.5049486771322087,
-0.4801243373794797,
-0.4562669763087164,
-0.4333947501578044,
-0.41151965864580364,
-0.39064794568228756,
-0.37078050988224986,
-0.3519133215195964
],
[
-1.1481322068763746,
-1.1646634337375594,
-1.1795313398711906,
-1.192610234150751,
-1.2037839685120655,
-1.2129478981666701,
-1.220010731048402,
-1.2248962097797855,
-1.2275445718775433,
-1.2279137391059025,
-1.2259801946803013,
-1.221739517067569,
-1.215206550893228,
-1.2064152082962303,
-1.195417907241803,
-1.1822846660862019,
-1.1671018854059678,
-1.1499708581813504,
-1.1310060574079588,
-1.1103332557924803,
-1.08808753520027,
-1.0644112439325413,
-1.039451957812492,
-1.0133604966671097,
-0.9862890414273414,
-0.9583893891614162,
-0.9298113744162777,
-0.90070147584459,
-0.8712016178315346,
-0.8414481682718278,
-0.8115711262640569,
-0.7816934876373689,
-0.7519307720943746,
-0.7223906933599068,
-0.6931729529264741,
-0.6643691385187257,
-0.636062709918403,
-0.6083290569321899,
-0.5812356167013287,
-0.554842039954636,
-0.5292003979814246,
-0.5043554239154897,
-0.4803447833185377,
-0.4571993700348487,
-0.43494362390594965,
-0.41359586725738007,
-0.3931686571810671,
-0.37366915061745676,
-0.3550994791597799,
-0.3374571304155165
],
[
-1.071100883972137,
-1.0861249317197403,
-1.0996348454739102,
-1.1115182080147363,
-1.121671053623607,
-1.1299995729608403,
-1.1364217251923372,
-1.1408687095999985,
-1.1432862506794255,
-1.1436356547628552,
-1.1418946024129912,
-1.138057648954188,
-1.1321364151374689,
-1.1241594605545602,
-1.1141718434392467,
-1.10223438131827,
-1.088422637024677,
-1.0728256633622137,
-1.0555445468021258,
-1.036690795713979,
-1.016384621608803,
-0.9947531626557946,
-0.971928697387988,
-0.94804689320961,
-0.9232451293285553,
-0.8976609274171271,
-0.8714305160760142,
-0.8446875475067278,
-0.8175619771619886,
-0.7901791099916279,
-0.7626588106168742,
-0.7351148696338252,
-0.7076545144331151,
-0.6803780504634039,
-0.6533786176815879,
-0.6267420468440209,
-0.6005468010609377,
-0.5748639893924643,
-0.5497574409464169,
-0.5252838297168645,
-0.5014928420972145,
-0.47842738048994304,
-0.4561237976490915,
-0.434612157312382,
-0.4139165173231676,
-0.3940552318512154,
-0.3750412695481291,
-0.3568825445760344,
-0.3395822574792464,
-0.32313924287336393
],
[
-0.9966755579188437,
-1.0102865178969749,
-1.022525809979142,
-1.0332930898042076,
-1.0424954278835743,
-1.0500487915984134,
-1.0558794517441998,
-1.0599252732623494,
-1.062136850931445,
-1.0624784538138146,
-1.0609287471247089,
-1.0574812667285856,
-1.0521446293566799,
-1.0449424704664123,
-1.0359131109419888,
-1.0251089630589507,
-1.012595694809435,
-0.9984511793672257,
-0.9827642627980672,
-0.9656333878211214,
-0.9471651143372937,
-0.9274725784990756,
-0.9066739313476666,
-0.8848907956234778,
-0.8622467754888031,
-0.838866048879859,
-0.8148720663772006,
-0.7903863742280635,
-0.7655275728556425,
-0.7404104162098913,
-0.7151450519620234,
-0.6898363980557166,
-0.6645836476467935,
-0.6394798920389165,
-0.614611849815209,
-0.5900596898586287,
-0.5658969361805104,
-0.5421904432417852,
-0.5190004315576215,
-0.49638057464348817,
-0.47437812964063086,
-0.45303410514244513,
-0.4323834607608745,
-0.41245533379225363,
-0.39327328896208,
-0.3748555876676325,
-0.35721547342891946,
-0.3403614704402256,
-0.3242976922254237,
-0.30902415747452494
],
[
-0.9250421387168861,
-0.9373321806489654,
-0.94838600466467,
-0.9581142260075051,
-0.9664338969379473,
-0.9732697942842051,
-0.9785556479548756,
-0.9822352761850838,
-0.9842635938166484,
-0.9846074620464491,
-0.9832463518178172,
-0.9801727982561724,
-0.9753926300190882,
-0.9689249648027044,
-0.9608019701123988,
-0.9510683963274986,
-0.9397808966352164,
-0.9270071551845545,
-0.9128248504876401,
-0.8973204854264177,
-0.8805881180494975,
-0.8627280286040923,
-0.8438453579670794,
-0.82404875092714,
-0.8034490348091059,
-0.7821579599639491,
-0.7602870239586833,
-0.7379463961993941,
-0.7152439545196662,
-0.6922844402591642,
-0.669168733795951,
-0.6459932485768474,
-0.6228494385406868,
-0.5998234115037853,
-0.5769956395621753,
-0.5544407567878465,
-0.532227434342194,
-0.5104183234573458,
-0.4890700573984197,
-0.4682333043762772,
-0.4479528643109514,
-0.4282678032563225,
-0.4092116201215563,
-0.3908124410268259,
-0.3730932371957094,
-0.3560720627193037,
-0.33976230884454717,
-0.32417297166549086,
-0.3093089302583063,
-0.2951712324236959
],
[
-0.8563535160830091,
-0.8674123413529329,
-0.8773631643440463,
-0.8861265314448294,
-0.89362850985771,
-0.8998018055768586,
-0.9045868377248228,
-0.9079327401011197,
-0.9097982607581128,
-0.9101525317692152,
-0.9089756841347597,
-0.9062592869088919,
-0.9020065949379783,
-0.8962325957930328,
-0.888963853201507,
-0.8802381511515724,
-0.8701039494671566,
-0.8586196676806,
-0.8458528191621394,
-0.8318790214741476,
-0.8167809116559857,
-0.8006469965479265,
-0.7835704683445753,
-0.7656480144173737,
-0.7469786482111538,
-0.7276625849021172,
-0.7078001817380045,
-0.6874909588200935,
-0.6668327117865894,
-0.6459207236573175,
-0.624847079209566,
-0.6037000818386082,
-0.5825637700259861,
-0.561517528350643,
-0.5406357864358494,
-0.5199877982858851,
-0.49963749405244573,
-0.47964339628171926,
-0.4600585930186907,
-0.44093076067776993,
-0.42230223023174385,
-0.40421009094471705,
-0.38668632652056845,
-0.36975797911746766,
-0.3534473371715119,
-0.33777214337339556,
-0.322745819457801,
-0.30837770470925907,
-0.2946733052780137,
-0.2816345515523888
],
[
-0.7907316695491562,
-0.8006460983729446,
-0.80957335716972,
-0.8174429758039795,
-0.8241891524970762,
-0.8297517239702304,
-0.8340771062129378,
-0.8371191809464477,
-0.8388401022896897,
-0.8392109987953381,
-0.8382125479875764,
-0.8358354037662407,
-0.8320804613976971,
-0.826958950047307,
-0.8204923486074363,
-0.812712126589255,
-0.8036593177235385,
-0.793383939330726,
-0.781944275198154,
-0.7694060434336997,
-0.7558414734119293,
-0.7413283174287509,
-0.7259488230400934,
-0.7097886913500205,
-0.6929360448576257,
-0.6754804260359789,
-0.6575118447952063,
-0.6391198895847465,
-0.6203929133287168,
-0.6014173018598599,
-0.5822768291967148,
-0.563052101033448,
-0.5438200852814604,
-0.5246537264720674,
-0.505621639313883,
-0.48678787567559456,
-0.4682117586818497,
-0.4499477773974647,
-0.4320455356505508,
-0.41454974882673024,
-0.3975002828770926,
-0.38093223025647593,
-0.364876017994308,
-0.34935754356052695,
-0.334398334601977,
-0.32001572897901354,
-0.3062230718273766,
-0.29302992661299077,
-0.2804422973462093,
-0.2684628592903804
],
[
-0.7282696264298798,
-0.7371232941184664,
-0.7451031544032972,
-0.7521468491531695,
-0.7581959013043539,
-0.7631965561581335,
-0.7671006063424385,
-0.7698661790139001,
-0.7714584628365831,
-0.7718503523330675,
-0.7710229884740876,
-0.7689661768536922,
-0.7656786683721689,
-0.7611682918047488,
-0.7554519326847717,
-0.7485553582519209,
-0.740512893483241,
-0.7313669581340367,
-0.7211674790134331,
-0.7099711952100293,
-0.6978408765398524,
-0.6848444770500006,
-0.6710542459803016,
-0.6565458182185405,
-0.6413973050866516,
-0.6256884044043741,
-0.609499546356229,
-0.5929110889118885,
-0.5760025735949378,
-0.5588520494250073,
-0.5415354700197912,
-0.5241261662539052,
-0.506694394618719,
-0.4893069595636559,
-0.4720269066457574,
-0.45491328226165106,
-0.4380209550518608,
-0.4214004937022744,
-0.4050980957616508,
-0.3891555621845928,
-0.3736103125360175,
-0.35849543610199275,
-0.3438397744985533,
-0.32966803172122483,
-0.31600090791061164,
-0.3028552534100253,
-0.2902442399547247,
-0.2781775460593001,
-0.2666615538650918,
-0.25569955488019414
],
[
-0.669033273069444,
-0.6769064135813555,
-0.6840116114110725,
-0.6902938203032741,
-0.6957011537568354,
-0.7001856140639393,
-0.7037038167412607,
-0.7062176918546151,
-0.7076951422749084,
-0.7081106384448264,
-0.7074457299214525,
-0.7056894558153323,
-0.7028386391802715,
-0.6988980542274236,
-0.693880459677231,
-0.687806496318834,
-0.6807044516115999,
-0.6726098986531335,
-0.6635652208138988,
-0.6536190366195435,
-0.6428255419288419,
-0.6312437880506193,
-0.6189369151664226,
-0.6059713603246842,
-0.5924160584349543,
-0.5783416532351053,
-0.5638197332675929,
-0.5489221056303276,
-0.533720117810575,
-0.5182840354053218,
-0.5026824811020505,
-0.48698193804069856,
-0.47124631867786126,
-0.4555365985769355,
-0.43991051317741214,
-0.42442231455226054,
-0.4091225844256461,
-0.39405809925949176,
-0.3792717429837442,
-0.36480246289375606,
-0.3506852643219578,
-0.3369512398660077,
-0.3236276291851785,
-0.310737905630563,
-0.29830188623127385,
-0.2863358618038059,
-0.2748527441770259,
-0.2638622277284175,
-0.25337096260928726,
-0.24338273720070736
],
[
-0.6130630421575253,
-0.6200323403110976,
-0.6263320887254613,
-0.6319138193737054,
-0.6367315688527917,
-0.6407425096566867,
-0.6439075871919094,
-0.6461921464878276,
-0.6475665307278149,
-0.6480066328315832,
-0.6474943815166962,
-0.6460181446037808,
-0.6435730347339282,
-0.640161105961226,
-0.6357914336183326,
-0.6304800741396921,
-0.6242499058720768,
-0.6171303560368335,
-0.6091570227073528,
-0.6003712037595037,
-0.5908193471305289,
-0.5805524383297394,
-0.5696253419795347,
-0.5580961142682418,
-0.5460253026434475,
-0.5334752479659275,
-0.5205094027981503,
-0.5071916776423648,
-0.49358582489634273,
-0.47975486817805746,
-0.46576058258823605,
-0.45166302951942483,
-0.43752014784923055,
-0.42338740181930423,
-0.40931748462568684,
-0.39536007573597276,
-0.38156164919410474,
-0.36796532965200957,
-0.3546107925470472,
-0.341534204690189,
-0.32876820150460184,
-0.31634189722357986,
-0.30428092448897814,
-0.29260749996119984,
-0.28134051273909577,
-0.2704956325788501,
-0.2600854350858455,
-0.25011954122793867,
-0.24060476868110015,
-0.23154529266989066
],
[
-0.5603755118781167,
-0.5665140088561996,
-0.5720739550614818,
-0.5770127888387295,
-0.5812898637947886,
-0.5848669949734272,
-0.5877090196990101,
-0.589784359107694,
-0.5910655642618589,
-0.5915298294898764,
-0.5911594553890964,
-0.589942244838237,
-0.587871817328593,
-0.5849478297787654,
-0.5811760955071307,
-0.5765685969240939,
-0.5711433914914289,
-0.5649244143231229,
-0.5579411842575027,
-0.5502284231546883,
-0.5418256004624158,
-0.5327764166963,
-0.5231282403941642,
-0.5129315133630608,
-0.5022391387082779,
-0.4911058653030418,
-0.47958768112771266,
-0.46774122638490523,
-0.455623235589387,
-0.44329001603960294,
-0.4307969682910855,
-0.41819815254617265,
-0.40554590330917706,
-0.39289049327275594,
-0.3802798462247672,
-0.36775929780502437,
-0.35537140219333474,
-0.3431557822601854,
-0.33114902033639426,
-0.319384586532109,
-0.30789280142954345,
-0.2967008299606222,
-0.2858327033341441,
-0.2753093659760508,
-0.2651487445724099,
-0.2553658364449849,
-0.24597281463417864,
-0.23697914720776536,
-0.22839172845357014,
-0.2202150197488284
],
[
-0.5109649601615474,
-0.5163420001834489,
-0.5212242215725107,
-0.5255743545750764,
-0.529356520037721,
-0.5325367015607407,
-0.535083239803277,
-0.5369673367139567,
-0.5381635551115838,
-0.5386502975060643,
-0.5384102475224863,
-0.5374307578473663,
-0.5357041702097527,
-0.5332280553906501,
-0.5300053643958258,
-0.5260444854659474,
-0.5213592052655185,
-0.515968576144421,
-0.5098966946000665,
-0.5031723988344059,
-0.4958288954990737,
-0.48790332730709385,
-0.47943629415552214,
-0.47047134078088315,
-0.4610544238163916,
-0.451233370512812,
-0.44105734041212097,
-0.43057630001782754,
-0.41984051908030584,
-0.4089000955966047,
-0.3978045150900442,
-0.38660224825076894,
-0.37534038963699556,
-0.3640643388957394,
-0.3528175248855603,
-0.34164117218332746,
-0.3305741087327503,
-0.3196526128348829,
-0.30891029727514807,
-0.29837802810737335,
-0.2880838754513044,
-0.2780530935839638,
-0.26830812759633327,
-0.2588686439268706,
-0.24975158215671556,
-0.24097122554632255,
-0.23253928790017264,
-0.22446501445926836,
-0.2167552946364688,
-0.20941478452509266
],
[
-0.4648049186058558,
-0.4694861277126574,
-0.4737491575766162,
-0.47756146919860654,
-0.48089145246785114,
-0.48370883398188247,
-0.4859851130691446,
-0.48769401529186895,
-0.4888119502034607,
-0.48931845839345134,
-0.4891966320745613,
-0.48843349373474587,
-0.48702031865799755,
-0.48495288927190394,
-0.48223167209438755,
-0.4788619112758219,
-0.47485363611023423,
-0.47022158318818064,
-0.4649850368921864,
-0.45916759455006373,
-0.45279686466972047,
-0.4459041082352597,
-0.4385238340424302,
-0.43069335951871146,
-0.42245234846009083,
-0.4138423366902735,
-0.4049062558864931,
-0.395687964800131,
-0.386231795910841,
-0.3765821242652181,
-0.3667829639331581,
-0.3568775962241897,
-0.34690823258879777,
-0.3369157140203676,
-0.32693924779451033,
-0.31701618154672806,
-0.30718181399899747,
-0.2974692410966666,
-0.2879092358976729,
-0.2785301602528947,
-0.26935790611208166,
-0.26041586416722873,
-0.2517249174878424,
-0.24330345779484763,
-0.23516742204882335,
-0.22733034708323596,
-0.21980344008568875,
-0.21259566281396447,
-0.20571382752459333,
-0.19916270268713765
],
[
-0.42184976563461474,
-0.4258970562668656,
-0.42959593236710036,
-0.43291807414754646,
-0.4358356895117792,
-0.4383218660127426,
-0.44035095567885607,
-0.44189898328637467,
-0.4429440660688666,
-0.4434668309771814,
-0.44345081463744185,
-0.44288283119093275,
-0.4417532942130482,
-0.4400564807722289,
-0.437790728205419,
-0.4349585571172565,
-0.4315667172151818,
-0.42762615565118556,
-0.4231519103715671,
-0.4181629334428183,
-0.412681851336516,
-0.40673467067471103,
-0.40035043895226874,
-0.39356087028690534,
-0.3863999463456991,
-0.37890350231825165,
-0.37110880721935846,
-0.3630541469800652,
-0.35477841779522,
-0.3463207361050098,
-0.33772007045631147,
-0.3290148993678519,
-0.3202428982523955,
-0.3114406574601267,
-0.3026434326219323,
-0.2938849277013911,
-0.28519711051493446,
-0.2766100599484085,
-0.26815184367867007,
-0.2598484248901216,
-0.25172359624544227,
-0.24379893921418505,
-0.23609380676844438,
-0.22862532740929442,
-0.22140842847998976,
-0.21445587674262123,
-0.20777833423659708,
-0.20138442749402685,
-0.1952808282546965,
-0.1894723438988799
],
[
-0.38203638794844075,
-0.38550798523416474,
-0.3886943163425811,
-0.39157081534989824,
-0.39411310025328405,
-0.39629727647042534,
-0.39810027656807345,
-0.39950022793235873,
-0.4004768374885166,
-0.40101178062797027,
-0.4010890804049181,
-0.4006954629166213,
-0.3998206755644429,
-0.3984577564941072,
-0.3966032457502304,
-0.39425733133281193,
-0.39142392618580124,
-0.3881106749738312,
-0.384328892140263,
-0.3800934350598928,
-0.37542251801796644,
-0.3703374742205183,
-0.3648624740601367,
-0.3590242084450119,
-0.35285154618616654,
-0.3463751742803991,
-0.3396272294850595,
-0.33264092891819597,
-0.3254502065962275,
-0.3180893618993341,
-0.31059272498466317,
-0.3029943431939033,
-0.29532769156153815,
-0.28762540965114525,
-0.27991906614928386,
-0.27223895194240355,
-0.26461390179693445,
-0.2570711442567908,
-0.2496361789614714,
-0.24233268026407329,
-0.23518242578290116,
-0.22820524834193523,
-0.22141900963385885,
-0.21483959386458662,
-0.20848091960063808,
-0.2023549680329344,
-0.1964718258853122,
-0.1908397412286973,
-0.18546519050776245,
-0.18035295514342087
],
[
-0.3452859249669189,
-0.3482364122774302,
-0.35095845929446234,
-0.35343083165454026,
-0.35563218890214787,
-0.3575413459942416,
-0.3591375732016786,
-0.36040092711827243,
-0.36131260292335465,
-0.36185529607858613,
-0.3620135604642245,
-0.36177414966896304,
-0.3611263287318651,
-0.3600621449966199,
-0.3585766487120545,
-0.3566680563974789,
-0.3543378525786134,
-0.35159082809679854,
-0.34843505563991006,
-0.34488180531607493,
-0.3409454049098033,
-0.3366430508814404,
-0.3319945771836652,
-0.3270221895876184,
-0.3217501734694903,
-0.3162045829514961,
-0.3104129189725666,
-0.3044038033387122,
-0.2982066551268612,
-0.29185137503983594,
-0.2853680424806895,
-0.2787866292718324,
-0.27213673312074316,
-0.26544733315522895,
-0.25874656913542227,
-0.2520615453090522,
-0.24541815931720534,
-0.23884095608101252,
-0.2323530062036181,
-0.2259758081006693,
-0.21972921281989066,
-0.21363137031776214,
-0.20769869582061617,
-0.20194585480048421,
-0.19638576503496163,
-0.19102961418903974,
-0.1858868913487688,
-0.1809654309480666,
-0.17627146755620737,
-0.1718097000325991
],
[
-0.31150559503003916,
-0.31398597737371237,
-0.3162887466822215,
-0.3183956179348466,
-0.3202879596226811,
-0.3219470188926379,
-0.3233541861996183,
-0.3244912930600834,
-0.32534093402534636,
-0.3258868020597001,
-0.32611402529644073,
-0.32600949274625757,
-0.32556215694672885,
-0.3247633026839791,
-0.3236067726427847,
-0.3220891429672974,
-0.3202098440518908,
-0.31797122425267754,
-0.3153785564651512,
-0.31243998953703644,
-0.3091664482006915,
-0.3055714865721586,
-0.3016711012613764,
-0.29748351078040924,
-0.2930289082509756,
-0.2883291944395079,
-0.28340769793289944,
-0.2782888888609809,
-0.2729980920204029,
-0.2675612046056568,
-0.26200442304670957,
-0.25635398272566867,
-0.2506359136255618,
-0.2448758142765819,
-0.23909864572537431,
-0.23332854667319358,
-0.22758867041498387,
-0.22190104376660846,
-0.2162864477901829,
-0.21076431981482124,
-0.20535267599664375,
-0.20006805346182466,
-0.19492547092302703,
-0.18993840654651528,
-0.1851187917680419,
-0.1804770197052772,
-0.17602196678767723,
-0.171761026217649,
-0.16770015188602772,
-0.16384391138776278
],
[
-0.2805905870798868,
-0.2826483713483512,
-0.28457371869634907,
-0.2863509484965543,
-0.2879638383788359,
-0.28939581791795876,
-0.2906302020352003,
-0.2916504584911175,
-0.29244050149982614,
-0.2929850016323361,
-0.29326970096335114,
-0.2932817219412287,
-0.2930098587301402,
-0.2924448407168194,
-0.2915795593650763,
-0.2904092514787904,
-0.28893163402775945,
-0.287146987839183,
-0.28505818952237494,
-0.2826706928676994,
-0.27999246256867827,
-0.2770338644149175,
-0.27380751707738105,
-0.2703281112626448,
-0.2666122023714572,
-0.2626779828927679,
-0.25854504063798434,
-0.2542341086141804,
-0.24976681189270478,
-0.24516541629137145,
-0.2404525830910944,
-0.235651133383318,
-0.23078382501896066,
-0.2258731445245279,
-0.22094111578171405,
-0.21600912674436712,
-0.21109777499791083,
-0.2062267325540763,
-0.2014146299182813,
-0.1966789591665674,
-0.19203599551951056,
-0.1875007366980177,
-0.18308685918500434,
-0.17880669039273167,
-0.1746711956430469,
-0.17068997880241454,
-0.16687129537145906,
-0.1632220768061976,
-0.15974796484250953,
-0.15645335460400545
],
[
-0.2524259894704324,
-0.2541052805565569,
-0.2556920240651386,
-0.25717283336292085,
-0.2585336253009216,
-0.25975978670685773,
-0.26083638004957543,
-0.2617483833501961,
-0.2624809572235971,
-0.2630197301701487,
-0.2633510920519364,
-0.2634624851634786,
-0.26334268245519366,
-0.26298204323232,
-0.26237273792437166,
-0.2615089351613513,
-0.26038694625126246,
-0.25900532408383614,
-0.25736491536221395,
-0.2554688667865772,
-0.25332258731129387,
-0.25093366982635046,
-0.2483117765568883,
-0.2454684931332367,
-0.24241715667550112,
-0.2391726633896094,
-0.23575126112009448,
-0.23217033208631332,
-0.22844817068141254,
-0.22460376077238875,
-0.22065655643855564,
-0.2166262695524679,
-0.2125326670662353,
-0.20839538033592242,
-0.2042337283124429,
-0.20006655595888256,
-0.1959120888285566,
-0.19178780435874776,
-0.1877103201029171,
-0.1836952988383942,
-0.17975737024466532,
-0.1759100686463,
-0.1721657861502961,
-0.1685357403764527,
-0.16502995587725633,
-0.16165725826711808,
-0.1584252800264494,
-0.15534047691082975,
-0.15240815387717555,
-0.14963249943517343
],
[
-0.22688871979937808,
-0.228230331336706,
-0.22951437230756788,
-0.2307294715837136,
-0.2318634425338706,
-0.23290342601734793,
-0.23383607141497476,
-0.23464775139268568,
-0.23532480407503176,
-0.2358537946613315,
-0.23622178738030786,
-0.23641661812821257,
-0.23642715818454163,
-0.2362435600052719,
-0.23585747716565653,
-0.23526225194348704,
-0.23445306566734914,
-0.23342704867425113,
-0.23218334841280663,
-0.2307231558001821,
-0.22904969132573338,
-0.22716815354941544,
-0.22508563354840927,
-0.22281099951894334,
-0.2203547561553192,
-0.21772888362642773,
-0.21494666098171633,
-0.2120224786752496,
-0.2089716446315435,
-0.20581018792176264,
-0.20255466370292385,
-0.19922196262113556,
-0.1958291274145758,
-0.19239317899005504,
-0.18893095380222458,
-0.18545895394664758,
-0.1819932109935396,
-0.17854916424198652,
-0.17514155376626928,
-0.17178432835674728,
-0.1684905682256932,
-0.16527242215205673,
-0.16214105857460126,
-0.15910663000817626,
-0.15617825004956254,
-0.15336398215431868,
-0.1506708393025069,
-0.14810479362552798,
-0.14567079503776448,
-0.14337279790227764
]
],
"zauto": true,
"zmax": 2.9054542269127888,
"zmin": -2.9054542269127888
},
{
"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.3505520175215137,
0.3407741597455164,
0.3314645263218748,
0.3226636257515085,
0.3144120005611344,
0.30675170369748134,
0.29972785926311935,
0.29338993501123267,
0.2877922377464014,
0.2829931177096416,
0.2790524898391348,
0.27602756967923175,
0.27396714186850046,
0.27290512752326584,
0.2728545506448324,
0.2738030899533681,
0.2757111785984321,
0.278513127262008,
0.28212114367156366,
0.28643158904867094,
0.29133249208465656,
0.29671128055527507,
0.3024618426193024,
0.3084902967821613,
0.3147191351180065,
0.3210896455124876,
0.3275626916674207,
0.33411803901116305,
0.3407524776120265,
0.3474770269206059,
0.35431352276584754,
0.3612908886215051,
0.36844138023874445,
0.3757970635480845,
0.38338674009180274,
0.39123347502800454,
0.39935281580841486,
0.40775172257759623,
0.4164281717377611,
0.42537134784926917,
0.434562309258153,
0.44397499980414934,
0.4535774804910364,
0.4633332674197326,
0.4732026814109067,
0.48314413670630074,
0.4931153178793148,
0.5030742135537525,
0.5129799916250243,
0.522793713061491
],
[
0.3381070679304772,
0.32811456598329664,
0.3186199407115164,
0.309661574534021,
0.3012770107971222,
0.2935047686156785,
0.2863864068082998,
0.27996840631948716,
0.2743032623646715,
0.2694491080698922,
0.2654673149761635,
0.2624178703879008,
0.26035287082631214,
0.25930905628510426,
0.2593007461630181,
0.260314645500077,
0.26230769087305716,
0.26520847279358667,
0.26892201189651754,
0.2733370260546885,
0.27833447894357094,
0.28379618534027795,
0.2896124814117847,
0.2956883134302783,
0.301947436238562,
0.30833467625646954,
0.31481638788994587,
0.32137933399896973,
0.3280282774711716,
0.3347826035169911,
0.3416723115230393,
0.34873372166818173,
0.35600523022937464,
0.3635234137813425,
0.37131972541627606,
0.3794179502102899,
0.3878325016266663,
0.39656755677271827,
0.4056169570661293,
0.4149647493786704,
0.4245862141704827,
0.4344492203093798,
0.4445157568851894,
0.45474351456201484,
0.4650874170057463,
0.4755010318107315,
0.4859378167270972,
0.4963521789486811,
0.5067003420824494,
0.5169410273614232
],
[
0.32691951645849987,
0.31675972063363206,
0.30712602233056324,
0.29805398687383167,
0.2895772862165303,
0.2817298432169837,
0.27454842779897876,
0.2680752261969188,
0.26235964840326514,
0.2574585067390135,
0.2534338134429462,
0.25034786949468596,
0.24825599440149093,
0.24719799249815774,
0.24719000507816202,
0.24821852663419425,
0.2502379745318849,
0.2531724040138392,
0.2569210310211979,
0.261366478089865,
0.2663842973188534,
0.2718523693737243,
0.2776591006911178,
0.2837097641753132,
0.28993071097841366,
0.29627145628191254,
0.3027048089569144,
0.3092253059873046,
0.3158462645439375,
0.32259580195937704,
0.32951220386102037,
0.3366390376588636,
0.3440204015246112,
0.3516966594488886,
0.3597009398970472,
0.36805657678351,
0.37677556142248503,
0.3858579696513787,
0.3952922440502045,
0.4050561560323854,
0.4151182486547858,
0.42543956446825454,
0.4359754861118663,
0.44667755201581416,
0.4574951477751633,
0.46837700976849267,
0.4792725080138369,
0.4901326986880615,
0.5009111532405408,
0.5115645815110641
],
[
0.3171887906396984,
0.30690957447104644,
0.2971816149254964,
0.28803702753752003,
0.27950487849443767,
0.2716136269986223,
0.2643942445227014,
0.2578835014943321,
0.2521265657755296,
0.24717784449870098,
0.2430990942008411,
0.2399543187072606,
0.23780180272868065,
0.23668455018099932,
0.23662107404245222,
0.23759863009471008,
0.2395704982895843,
0.2424579467294951,
0.24615641701101243,
0.25054462720520776,
0.2554949270564296,
0.26088335389838846,
0.26659825008530225,
0.2725467937454605,
0.2786592072055229,
0.28489068198452533,
0.29122121213326096,
0.297653608120038,
0.30421001744166937,
0.3109273300353103,
0.3178518970578153,
0.32503402573763196,
0.33252271191236377,
0.3403610231526764,
0.34858244925920717,
0.35720840685465793,
0.36624694316952044,
0.37569255519607964,
0.38552694334171167,
0.3957204632992077,
0.4062340256957628,
0.4170212120809482,
0.42803041604032005,
0.4392068676602257,
0.45049444863056864,
0.46183724780947927,
0.47318084022337453,
0.48447329585281107,
0.495665939284503,
0.5067138891966744
],
[
0.3090941131037295,
0.29874131810307486,
0.28895986091346004,
0.2797778691178972,
0.27121929529183403,
0.2633066083704901,
0.25606438041648144,
0.24952325192935404,
0.24372331983153045,
0.23871568671548815,
0.23456096837930843,
0.23132411515299095,
0.22906588266111177,
0.22783238318524288,
0.2276449426397904,
0.2284926395331525,
0.23032931164898365,
0.2330756892282775,
0.23662607561812102,
0.24085808454330773,
0.2456435959417078,
0.25085927383767087,
0.25639547603862567,
0.26216292265480623,
0.2680969127144409,
0.27415913832794964,
0.2803372806768236,
0.2866426472116807,
0.29310617701745273,
0.2997732214518069,
0.3066975896637109,
0.31393540610904686,
0.3215393315238085,
0.32955363438043694,
0.33801047053382566,
0.3469275570869051,
0.3563072460028137,
0.3661368472299714,
0.3763899438999565,
0.3870283924918866,
0.39800470356754264,
0.4092645393042542,
0.4207491250134695,
0.43239743750219634,
0.44414809255635707,
0.45594090121018543,
0.4677180982451389,
0.47942526769380706,
0.4910120014929375,
0.5024323316251523
],
[
0.3027831847601208,
0.2923980960534263,
0.2825971320367759,
0.2734040176382331,
0.2648373777704292,
0.2569136211260388,
0.24965089260763865,
0.24307359412752352,
0.23721645402009528,
0.23212672762120878,
0.22786312526225128,
0.22449067148399957,
0.2220718131766636,
0.2206553413460796,
0.22026557501546357,
0.22089439604161495,
0.22249803857385894,
0.2249992877312314,
0.22829441288513508,
0.2322632207908683,
0.23678029592484373,
0.24172573151964402,
0.24699418470348736,
0.2525016387162098,
0.25818966076702204,
0.2640271766650457,
0.2700099009410793,
0.27615764290495215,
0.28250980784224,
0.28911953808415447,
0.2960470648797736,
0.30335292638596,
0.31109171201378183,
0.31930690214756097,
0.3280271962963524,
0.33726449805555664,
0.3470134999944527,
0.3572526299179327,
0.36794600911886116,
0.37904603857370306,
0.39049625742292504,
0.40223418647868686,
0.41419395392346686,
0.42630858200938127,
0.43851188119728945,
0.4507399474947663,
0.4629322903426233,
0.4750326354344294,
0.48698945332079674,
0.49875626426929615
],
[
0.2983615416055967,
0.2879789019528098,
0.2781838056607017,
0.26899530775338615,
0.2604268123511808,
0.252489096945427,
0.24519449332627852,
0.23856175905872085,
0.23262060375706897,
0.2274143644140585,
0.2229992920573324,
0.219439544994035,
0.21679819043255194,
0.215125865326327,
0.21444967690711847,
0.21476503214556852,
0.21603232479598988,
0.21817909419625867,
0.22110692092905862,
0.22470140958790383,
0.22884333519189712,
0.23341929769082465,
0.23833075888612124,
0.24350085352024617,
0.24887872412780154,
0.25444132279547194,
0.26019273068926335,
0.2661611543940643,
0.272393911488534,
0.27895090743001716,
0.28589728455628693,
0.29329603286712075,
0.3012013460775058,
0.3096533718161223,
0.31867476623707547,
0.32826917534885713,
0.3384214937721739,
0.34909955086504707,
0.3602567716129805,
0.3718353525790694,
0.3837695567869106,
0.39598883233236093,
0.4084205676440283,
0.42099239113779713,
0.43363399473693176,
0.44627850791986223,
0.45886347511030084,
0.47133149977343347,
0.4836306189326847,
0.4957144663854918
],
[
0.2958842629016686,
0.28553133502796285,
0.2757585199093482,
0.26658010819542705,
0.2580046904520233,
0.2500382820068584,
0.2426885791909929,
0.23596992013561074,
0.2299079487062436,
0.22454247866270852,
0.21992699028492263,
0.21612382135616212,
0.21319534994921016,
0.21119284263714558,
0.21014555891260284,
0.21005276070851006,
0.2108804698498148,
0.21256350675033509,
0.2150120567742201,
0.21812118010611561,
0.2217814661385618,
0.22588930539590163,
0.23035573111538218,
0.23511321735859736,
0.24012009782275154,
0.2453624166552623,
0.25085313584397506,
0.25662878643508813,
0.2627438864310077,
0.2692637188075759,
0.27625629588415823,
0.2837844571837558,
0.29189900961112364,
0.3006336183746869,
0.31000183938312303,
0.31999632725287147,
0.3305899419325354,
0.3417382725775428,
0.3533830211452851,
0.36545572341210464,
0.37788139200352977,
0.3905818007365274,
0.40347825775807517,
0.4164938170662628,
0.42955494784655984,
0.4425927213352728,
0.4555435924642713,
0.4683498559043804,
0.4809598497532843,
0.49332796970203824
],
[
0.2953515543529989,
0.285048552848448,
0.27530692874117235,
0.266136316856071,
0.2575411421057593,
0.24952381405010024,
0.24208890946585096,
0.23524794729835075,
0.22902383129045084,
0.2234535575989904,
0.21858771382239425,
0.21448589528509698,
0.21120835265844418,
0.2088054969996534,
0.20730772823427795,
0.20671804710719266,
0.20700909775091503,
0.20812505586691873,
0.20998762980430583,
0.21250474853595933,
0.21558036714918355,
0.21912407040689283,
0.22305953475942583,
0.22733121295585382,
0.23190877332439702,
0.23678892627998788,
0.24199441384774045,
0.24757018986763485,
0.25357716433042227,
0.26008424634901967,
0.26715969571412646,
0.2748628990618338,
0.28323758387109027,
0.29230719044347675,
0.30207271261815716,
0.3125128979774444,
0.32358636756555303,
0.3352350335060804,
0.34738816649809173,
0.35996655691179663,
0.37288636700119615,
0.3860624357676536,
0.399410937778193,
0.4128513977268344,
0.426308123331853,
0.43971114782911713,
0.4529967798105787,
0.46610785154224016,
0.47899374401159045,
0.49161025226315186
],
[
0.29670903990455555,
0.2864708984708204,
0.27676491893552396,
0.2675964201398313,
0.25896647040250975,
0.25087511703852194,
0.24332536373998656,
0.2363275165755275,
0.22990307890009654,
0.22408697555775503,
0.21892684316891933,
0.21447867363855164,
0.21079916706506965,
0.20793630900901497,
0.20592039030404186,
0.20475761208483467,
0.20442763997814387,
0.20488537796813944,
0.2060662799992722,
0.20789399582029736,
0.21028908184950296,
0.21317771569709887,
0.2164995976799426,
0.2202143607284641,
0.22430585240103987,
0.22878371767280334,
0.23368191735847757,
0.23905419566178004,
0.24496698884692356,
0.2514907143730956,
0.25869066769807314,
0.2666187999196036,
0.2753074378784546,
0.2847655949008424,
0.29497801726891176,
0.30590665096362063,
0.3174939000887087,
0.3296669263927984,
0.3423422876919336,
0.3554303701805161,
0.3688392658622355,
0.38247792792394075,
0.39625857511975954,
0.4100984043345985,
0.4239207151973691,
0.437655564064265,
0.45124005902971004,
0.46461839241330144,
0.47774168883779716,
0.490567729274448
],
[
0.29985254513012743,
0.289691585763374,
0.280025156276465,
0.2708548385430023,
0.26217923291081013,
0.2539971693710317,
0.24631137013758458,
0.2391321892593057,
0.2324807291654441,
0.2263903503075278,
0.2209056007330125,
0.21607808411176563,
0.2119596843105435,
0.20859450581961805,
0.20601141577486776,
0.20421893160986593,
0.2032034884063572,
0.20293120407968396,
0.20335252732614154,
0.2044088096825782,
0.20603984893672808,
0.2081916037610331,
0.21082337364278708,
0.21391370098189763,
0.21746417513725652,
0.22150037418634935,
0.2260694890602902,
0.2312347152030568,
0.2370671190972162,
0.24363619700549133,
0.2510005896762233,
0.2592003363264773,
0.26825167661325616,
0.2781448536349373,
0.28884479187105594,
0.3002940699594937,
0.31241736797252734,
0.3251265493938043,
0.3383256810900523,
0.3519155154743147,
0.36579718289113927,
0.379875022865991,
0.3940586037435794,
0.40826404543342787,
0.42241478321126535,
0.43644190714631004,
0.4502841944837638,
0.46388793004411166,
0.4772065876530924,
0.4902004263768285
],
[
0.30463615678855527,
0.29456495316724685,
0.28494519163323584,
0.27577550339486506,
0.26705291351939386,
0.25877595638179857,
0.2509479364497936,
0.24357996406021817,
0.23669319075682635,
0.23031951350920007,
0.22450009220027262,
0.21928145433299137,
0.21470967093929427,
0.21082378670942062,
0.20765002690374168,
0.2051981078833273,
0.20346035898280368,
0.20241363592070138,
0.20202348137255458,
0.20224979809653795,
0.2030533545159531,
0.20440253013751275,
0.20627965828949868,
0.20868613285446944,
0.21164528400943944,
0.2152021189492396,
0.21941947900947797,
0.22437089537734609,
0.23013118756548068,
0.23676637600638425,
0.24432460565460687,
0.2528294838390571,
0.2622766388330049,
0.27263360123154345,
0.28384250086266316,
0.29582469773415915,
0.3084863656938536,
0.32172416963629913,
0.3354304214762612,
0.3494973688220351,
0.36382049738119043,
0.37830088564795034,
0.3928467388479309,
0.40737426361641493,
0.42180804427063534,
0.4360810620798739,
0.45013447220358016,
0.46391722596166457,
0.47738560235971583,
0.49050269359843374
],
[
0.31088182139067344,
0.3009155184157543,
0.29135544329070256,
0.2821981936406683,
0.2734400486441364,
0.265079896048097,
0.25712202957712044,
0.24957846074208193,
0.2424702931211161,
0.23582766804593303,
0.22968792163232893,
0.22409195972627657,
0.21907938550102848,
0.2146833862761451,
0.21092655897097823,
0.20781862389396083,
0.20535645724470178,
0.20352632002238252,
0.20230780751939909,
0.20167895806650252,
0.2016220242248219,
0.20212942064807204,
0.20320919031518106,
0.20488903359620697,
0.20721775731503442,
0.21026318388513685,
0.21410620701168045,
0.21883162268204043,
0.2245172500709861,
0.2312233386947483,
0.23898416322778918,
0.24780310044739112,
0.25765160985534125,
0.26847170415820976,
0.28018093146929873,
0.2926786871681021,
0.30585277909276865,
0.31958545640383756,
0.3337584462423849,
0.3482568306123735,
0.36297179797814466,
0.3778024184215071,
0.3926566366798239,
0.40745167797886717,
0.42211403808249703,
0.4365791961411088,
0.4507911556276605,
0.4647018893875532,
0.4782707412265792,
0.49146381854330023
],
[
0.3183888677433306,
0.3085464342369646,
0.2990660438232138,
0.28994320360873704,
0.2811741571576767,
0.2727585336264113,
0.2647016508652757,
0.25701614689244506,
0.24972260486253844,
0.24284888545062722,
0.23642804694569414,
0.23049503773836572,
0.22508271805819866,
0.22021805396467464,
0.21591937304530878,
0.2121953315776993,
0.20904582209079176,
0.20646464376070411,
0.20444352547217856,
0.202977053609446,
0.2020680877402873,
0.20173317022043408,
0.20200716722877457,
0.20294603056085758,
0.20462642068738024,
0.20714126088166493,
0.21059116589702748,
0.21507285622165906,
0.22066665976260486,
0.22742557541136413,
0.23536795846447384,
0.24447487504566517,
0.2546919889191666,
0.265934919708918,
0.27809658122168396,
0.2910550586998634,
0.304680937849862,
0.31884344811987075,
0.3334151786713507,
0.3482754017452178,
0.3633121916832472,
0.37842358683356075,
0.3935180407022493,
0.40851437699401666,
0.4233414203052943,
0.4379374315721727,
0.4522494403797969,
0.46623253671049597,
0.4798491624860692,
0.49306842730966727
],
[
0.3269424273143185,
0.317246670104371,
0.3078723764449684,
0.2988148280576993,
0.2900707863735603,
0.28164079641633033,
0.2735309987063491,
0.26575416880154323,
0.25832975494456095,
0.25128278802847104,
0.24464171644723248,
0.2384354633248368,
0.23269025320769407,
0.22742690679437189,
0.22265926817254103,
0.21839420121962608,
0.21463326089130322,
0.2113758505854899,
0.20862351669560603,
0.20638499350282163,
0.20468157733772635,
0.20355224026419333,
0.20305755661582606,
0.2032811632610341,
0.20432740896091856,
0.20631435087201191,
0.20936236525139884,
0.2135800285793288,
0.21905000506312655,
0.22581790231639826,
0.23388626650770317,
0.24321442377688346,
0.25372338001080685,
0.2653040272666315,
0.277826674743632,
0.2911502688979424,
0.3051302733008514,
0.31962476781958205,
0.33449875470341733,
0.3496269011033242,
0.3648950422702757,
0.38020077220263726,
0.39545340506585497,
0.41057353174337935,
0.42549233807541864,
0.44015080207090856,
0.45449884866956375,
0.4684945118932769,
0.4821031338292298,
0.4952966159908351
],
[
0.336320419058557,
0.32679692493654017,
0.3175597143442761,
0.30860455429819783,
0.29992910674050727,
0.2915348529122663,
0.28342844892183705,
0.2756222861938866,
0.2681341165436355,
0.2609857309154302,
0.25420085200432757,
0.2478025918828196,
0.24181098569645423,
0.23624117655186563,
0.23110275156985802,
0.22640052767876592,
0.22213683070761,
0.21831509544660302,
0.21494448890953133,
0.2120451924208734,
0.20965386960822954,
0.2078286013563835,
0.2066521952780372,
0.20623245391849673,
0.20669801769924143,
0.2081890563200941,
0.21084338257968907,
0.21478012777578862,
0.22008426431829747,
0.22679535032811116,
0.23490273978572362,
0.24434763376266744,
0.2550305900542758,
0.2668221359365252,
0.2795740993258821,
0.29312988943314383,
0.30733277572028955,
0.32203190767585976,
0.3370862591410034,
0.3523668853082985,
0.3677579228287348,
0.3831567193587984,
0.3984734019422494,
0.4136301140777307,
0.42856008270924156,
0.44320662260504273,
0.45752214596443913,
0.471467217190891,
0.4850096738827023,
0.49812382280605755
],
[
0.34629926067198885,
0.3369746478557196,
0.32790754403432454,
0.31909472159613944,
0.3105349645751812,
0.3022306132880457,
0.29418852211294305,
0.2864202598097752,
0.2789414830128205,
0.27177054672547596,
0.2649265676695487,
0.258427300884174,
0.25228728820166574,
0.24651675046707106,
0.24112160667261787,
0.23610483368207946,
0.23146918407544723,
0.22722111380501936,
0.22337565585547314,
0.21996187247114485,
0.21702834885340552,
0.21464789931135142,
0.2129202846165513,
0.21197147036766212,
0.21194807643331215,
0.2130064230167135,
0.21529697148149607,
0.21894659644865497,
0.22404229056765315,
0.23061990632039792,
0.2386602071823586,
0.24809239056746715,
0.2588033248238935,
0.27064976280679875,
0.2834708891902523,
0.2970993429750624,
0.3113698083927388,
0.3261250289396448,
0.3412195511465225,
0.3565216875143837,
0.37191419873130943,
0.3872941223652584,
0.40257207709259135,
0.4176712785294553,
0.43252642668138674,
0.44708256781344125,
0.4612939928267866,
0.47512320645810696,
0.4885399833916026,
0.5015205158967309
],
[
0.35665866348586156,
0.34755858330171935,
0.3386939868837801,
0.3300629838557376,
0.32166556896017084,
0.3135048140619522,
0.3055874994135023,
0.29792406505827196,
0.2905278655984969,
0.2834138352872333,
0.27659679808021764,
0.27008976410856905,
0.2639026118386638,
0.25804154225193227,
0.2525096045611721,
0.24730845360651393,
0.24244134474966844,
0.23791723478612226,
0.23375573941989222,
0.22999256332161908,
0.22668481391874237,
0.2239153107124496,
0.22179466843031215,
0.22045973698340832,
0.220067171996385,
0.22078169221134514,
0.22275994256904358,
0.22613245592940084,
0.2309873125337825,
0.23735906902010107,
0.2452251874370758,
0.2545100756326571,
0.26509491386896317,
0.2768304508817869,
0.28955005373620674,
0.30308110569589375,
0.3172538311139653,
0.3319074153823718,
0.34689375523673077,
0.362079361306102,
0.37734594170371144,
0.39259011555998347,
0.40772260009248673,
0.4226671159252818,
0.43735917510282973,
0.4517448563134226,
0.4657796295281035,
0.47942726365011223,
0.4926588321600201,
0.505451820139128
],
[
0.3671858319398868,
0.3583330971587517,
0.3497004383093846,
0.34128747556421923,
0.33309540790316355,
0.3251278968704696,
0.3173914448976177,
0.3098951928033322,
0.30265015599707035,
0.29566802656882385,
0.28895977139544293,
0.2825343337854739,
0.2763977783694528,
0.2705531943757739,
0.2650015938700152,
0.25974392667732615,
0.2547842070005214,
0.2501336244594858,
0.24581538911864875,
0.24186990827344973,
0.2383596805782493,
0.2353730197637877,
0.2330254526059058,
0.23145752301760758,
0.23082797472759015,
0.23130203355008153,
0.23303573947859696,
0.23615866781810588,
0.24075834719083464,
0.24686965682865494,
0.25447129457357026,
0.2634894942545692,
0.27380737201841704,
0.28527729739397883,
0.297733697778434,
0.3110044078012119,
0.32491958997768416,
0.33931802158164953,
0.35405102233354263,
0.3689845080387917,
0.38399968386146965,
0.3989928253229655,
0.4138744970538516,
0.4285684628326913,
0.4430104598984673,
0.4571469491792752,
0.47093390909335314,
0.48433571043222007,
0.4973240899719056,
0.5098772278941701
],
[
0.37767925198817964,
0.36909234164123184,
0.36071629727752796,
0.35255230741282173,
0.34460271289245975,
0.33687163427638406,
0.3293651653156949,
0.32209109185596985,
0.3150581786921805,
0.308275156449181,
0.3017496210460457,
0.29548711329220556,
0.28949066223961617,
0.2837610471632027,
0.2782979638113795,
0.273102183947746,
0.268178688287654,
0.26354063931416544,
0.25921393565259854,
0.25524193585587857,
0.25168974257344606,
0.24864721213613725,
0.24622966415304326,
0.24457523092629294,
0.2438380542795958,
0.2441772104792548,
0.2457422807420471,
0.24865762196216867,
0.2530081755001755,
0.25882963484336546,
0.26610483174402894,
0.27476662182425665,
0.28470600431550297,
0.29578328198778686,
0.3078399600625642,
0.3207096003182452,
0.3342266127278924,
0.3482326639573865,
0.3625808557828207,
0.3771380654338292,
0.3917859047071996,
0.40642071921039424,
0.42095297094618617,
0.43530626185086424,
0.4494161800072626,
0.463229089911905,
0.476700943373471,
0.4897961559528597,
0.5024865723569625,
0.5147505301561741
],
[
0.3879521210157076,
0.3796441781023455,
0.371543537289667,
0.3636529423472338,
0.35597579192356754,
0.3485165623150703,
0.34128087417157255,
0.3342751884825405,
0.3275061872290358,
0.32097996613054613,
0.3147012282158534,
0.30867270501591415,
0.30289503788035926,
0.29736732222312284,
0.2920884564263337,
0.2870593537076593,
0.2822859786286904,
0.2777830637328651,
0.273578241574136,
0.2697161844242841,
0.26626217667272495,
0.2633043746442384,
0.2609538918297817,
0.2593418751222619,
0.2586130100955306,
0.2589154693771252,
0.26038814741516914,
0.26314690136391694,
0.26727210897279446,
0.2727998407477841,
0.2797182178486955,
0.28796931118505237,
0.2974556940839042,
0.30804993843203043,
0.3196051411572925,
0.33196488751955433,
0.3449716378557734,
0.35847310952692274,
0.37232666540153897,
0.386401975541217,
0.40058232022974793,
0.41476490381533726,
0.4288604988624778,
0.4427926726068561,
0.45649678171039043,
0.46991886531120497,
0.4830145226158112,
0.4957478289735713,
0.5080903215207611,
0.5200200699138471
],
[
0.39783539311350025,
0.3898137251360325,
0.3820008668301641,
0.3744010718583957,
0.3670187167365939,
0.3598585657066922,
0.35292575692968875,
0.34622551377118566,
0.3397626421088593,
0.3335409309645412,
0.32756261921784513,
0.321828116375048,
0.3163361640629163,
0.3110845954535264,
0.3060717953354165,
0.3012988901156576,
0.29677261044912595,
0.2925086718661909,
0.28853540920372805,
0.2848972770991393,
0.28165769720891315,
0.27890061616294354,
0.2767300824204859,
0.27526721961616724,
0.27464423208042726,
0.2749955516781325,
0.27644687190798595,
0.2791034604743335,
0.2830395639679638,
0.2882907030563704,
0.2948501310224574,
0.3026698364043708,
0.3116655222012824,
0.32172430901485494,
0.33271365904227995,
0.34449017358616363,
0.35690731554591865,
0.3698215631805764,
0.3830968811589312,
0.3966076458811412,
0.41024028894299513,
0.4238939578626569,
0.4374804735285008,
0.45092381855580915,
0.46415933886256994,
0.47713279255081154,
0.4897993399301919,
0.5021225371339785,
0.5140733724668651,
0.5256293679765975
],
[
0.407180390481007,
0.39944641484211546,
0.3919272957775669,
0.3846287482519189,
0.3775560673980212,
0.37071427461683903,
0.3641080578002945,
0.3577415217310676,
0.35161781009377213,
0.345738703452073,
0.34010433012941627,
0.33471314228102217,
0.32956230318094953,
0.3246486029288114,
0.31996997073213906,
0.31552758687147725,
0.3113285205194141,
0.3073887332406499,
0.3037361934013654,
0.30041374661409725,
0.2974812911407726,
0.29501673604425416,
0.29311520856233353,
0.29188606872265493,
0.2914475200782189,
0.29191898205065153,
0.29341186372353467,
0.29601983847996216,
0.29981000844728106,
0.3048163292496558,
0.3110362936763669,
0.318431238675346,
0.32692994345959164,
0.336434644085254,
0.34682833610867597,
0.3579822800784843,
0.36976287351599335,
0.3820373819990825,
0.3946783277840036,
0.40756656137477143,
0.42059317750572495,
0.4336604965518554,
0.4466823393880078,
0.45958380090779444,
0.47230069173359474,
0.4847787797611585,
0.49697292874436744,
0.5088462024613072,
0.5203689805022975,
0.5315181148151573
],
[
0.4158609452486595,
0.4084104891935061,
0.4011850160135462,
0.394191669094476,
0.38743663181655424,
0.3809251855707218,
0.37466162803307124,
0.3686490753028921,
0.36288920653255363,
0.3573820413082582,
0.35212586224968007,
0.3471174030151552,
0.34235241206558603,
0.3378266746353892,
0.3335375311803229,
0.3294858733043949,
0.32567853119837187,
0.3221308928564523,
0.3188695177414661,
0.3159344312046737,
0.3133807209508437,
0.31127902074515146,
0.30971448413572444,
0.3087839491477643,
0.30859119218062825,
0.3092404611374221,
0.3108288233606525,
0.31343818367139303,
0.31712802026114584,
0.3219298654059547,
0.3278442974196255,
0.3348407674280822,
0.3428600853754108,
0.35181897622069513,
0.36161588817250406,
0.3721372127015307,
0.3832632156077208,
0.39487320110072793,
0.40684966204270845,
0.41908136015264486,
0.431465410298377,
0.44390851488128835,
0.456327520698963,
0.46864946715753975,
0.48081127482045144,
0.4927591967696606,
0.5044481281886095,
0.515840845180028,
0.5269072234371346,
0.5376234712040429
],
[
0.4237750640930895,
0.4165989225350787,
0.4096615864115071,
0.4029716204374508,
0.3965360963856202,
0.3903605855371162,
0.3844490702078115,
0.37880380202764335,
0.3734251607520904,
0.3683115896495786,
0.3634596973883516,
0.35886461816632703,
0.35452070949778514,
0.35042264040635795,
0.3465668833028518,
0.3429535731897165,
0.33958864110975495,
0.3364860681785808,
0.33367004597579597,
0.33117677428522807,
0.3290555873806525,
0.32736908873259485,
0.3261920077732232,
0.325608586821152,
0.32570846890070065,
0.32658127865215253,
0.3283103362191282,
0.33096616289983855,
0.33460056231317414,
0.33924203948434334,
0.3448931380000976,
0.35152996871072206,
0.35910385098758235,
0.36754468060547,
0.37676544601187945,
0.38666726194451867,
0.3971443567660694,
0.40808859149372567,
0.41939325387427373,
0.4309560212960625,
0.44268110091577806,
0.45448062894669117,
0.46627544852723196,
0.47799539625458753,
0.4895792209843326,
0.5009742428297065,
0.5121358411001267,
0.5230268407307508,
0.5336168494797154,
0.5438815836139789
],
[
0.43084613445662867,
0.42393079833974473,
0.4172714690515333,
0.4108781545329665,
0.4047588427134211,
0.39891944361975246,
0.39336370235923623,
0.38809311228875953,
0.383106876171414,
0.37840197764582095,
0.3739734325388972,
0.36981478685384,
0.3659189143314239,
0.3622791414328492,
0.35889069284966607,
0.3557524085553687,
0.35286863685044395,
0.35025116010781765,
0.3479209650239833,
0.3459096325744008,
0.3442601021151877,
0.3430265688411276,
0.3422733145706255,
0.34207235675624076,
0.34249993100533827,
0.34363198781346455,
0.34553905974476806,
0.3482810035542489,
0.35190220141389006,
0.3564277850421973,
0.3618613186351957,
0.36818416446758057,
0.37535650792367325,
0.3833197946706376,
0.3920001787380689,
0.40131251819571157,
0.4111644790274562,
0.4214603922483037,
0.43210462201257077,
0.4430043151743755,
0.4540714970385777,
0.46522454587317674,
0.47638912009378487,
0.48749863137381977,
0.49849436040594897,
0.5093253055119275,
0.5199478424844934,
0.5303252602843611,
0.5404272236148513,
0.5502292011193327
],
[
0.4370237073085675,
0.43035219173636236,
0.42395699192265657,
0.4178496082716034,
0.41203899465417365,
0.40653145925607526,
0.40133058196354715,
0.39643717763591263,
0.39184934660708726,
0.38756266186948385,
0.3835705442465987,
0.3798648707461777,
0.3764368464902953,
0.3732781475348536,
0.37038231190646614,
0.367746321427929,
0.3653722800071336,
0.36326905809577065,
0.3614537416605746,
0.35995270185319267,
0.35880209433459787,
0.358047611420515,
0.35774335199188656,
0.35794974703974314,
0.358730581026912,
0.3601492713146965,
0.3622646913122879,
0.36512692269902847,
0.36877337205528915,
0.3732256688490727,
0.37848767143723194,
0.3845447607564508,
0.39136442844264374,
0.39889800415138,
0.40708324732951634,
0.4158474688008171,
0.4251108475132738,
0.43478965442405315,
0.4447991689822252,
0.4550561545434885,
0.46548083267534024,
0.475998354424555,
0.48653980664300406,
0.49704281473014256,
0.5074518129971618,
0.5177180541904464,
0.5277994240967534,
0.5376601184149178,
0.5472702292267856,
0.5566052787212442
],
[
0.4422838943766619,
0.43583661387943956,
0.4296888171794017,
0.4238535689397864,
0.418340853882989,
0.41315744052987785,
0.4083068022156676,
0.40378912382762266,
0.39960142911414576,
0.3957378661602223,
0.3921901861547708,
0.38894844190863753,
0.38600191751259766,
0.3833402796749231,
0.3809549159991363,
0.3788403976571697,
0.37699597587669015,
0.37542699602841273,
0.37414609291238415,
0.37317401965630476,
0.3725399644802212,
0.3722812285437662,
0.37244217740893726,
0.37307243927565387,
0.37422440212649,
0.37595015117311426,
0.3782980742832302,
0.38130942976383553,
0.3850152017351338,
0.38943355235712224,
0.3945681159669192,
0.40040727774048895,
0.40692445822741685,
0.414079308526095,
0.4218196298456358,
0.4300837785692392,
0.4388033062682599,
0.4479056070506586,
0.45731639048133865,
0.4669618542320092,
0.47677048576374736,
0.4866744694852695,
0.4966107114873525,
0.5065215176424404,
0.5163549739913279,
0.5260650832183027,
0.5356117101012222,
0.5449603842958473,
0.554082002395474,
0.5629524641298945
],
[
0.44662940831155257,
0.4403850630019719,
0.4344659791496515,
0.428886873360544,
0.42365883398333437,
0.41878914812441764,
0.41428122310077076,
0.4101346294362578,
0.4063452940175649,
0.40290587019235624,
0.3998063055702614,
0.39703461771140347,
0.39457787297323144,
0.39242334532753526,
0.39055981123151645,
0.3889789152658859,
0.3876765211083122,
0.38665394556335,
0.3859189621107394,
0.38548645727858666,
0.38537863071461803,
0.38562465047221284,
0.38625971017236505,
0.3873234839450285,
0.3888580352665276,
0.39090530062458884,
0.39350432902800786,
0.39668850281248863,
0.40048298386561076,
0.40490261587925874,
0.40995046720267475,
0.4156171269484207,
0.4218807815810337,
0.428708015338152,
0.43605520930459807,
0.4438703700505491,
0.45209520256344204,
0.46066725105354783,
0.46952195843838784,
0.47859453270413527,
0.4878215482549542,
0.4971422470231687,
0.5064995340749634,
0.5158406843705278,
0.5251177914422668,
0.5342879961835807,
0.5433135362279676,
0.55216165509428,
0.5608044067319586,
0.569218386386442
],
[
0.4500892546873855,
0.4440257040378357,
0.4383155286551175,
0.4329751928804963,
0.4280169622141415,
0.4234486912724357,
0.41927374111956484,
0.4154910516781831,
0.4120953920318835,
0.40907780556828527,
0.4064262578718108,
0.40412648323371964,
0.40216301116747266,
0.4005203383008759,
0.3991841946059249,
0.3981428374127879,
0.3973882934114821,
0.39691745932053246,
0.3967329676260498,
0.396843726358786,
0.3972650528094429,
0.39801834156126015,
0.3991302376163651,
0.40063132472895807,
0.40255438452945996,
0.4049323288271637,
0.4077959491644744,
0.41117165714849513,
0.4150794000416471,
0.4195309248339921,
0.4245285306996823,
0.43006439880727165,
0.43612052788516104,
0.4426692434398952,
0.44967419722860175,
0.4570917380714566,
0.46487251823213227,
0.47296320055490226,
0.4813081466736743,
0.4898509908015401,
0.4985360316628656,
0.507309402703315,
0.5161200048162764,
0.524920204865401,
0.5336663168377057,
0.5423188909151281,
0.5508428399455507,
0.5592074337376918,
0.5673861902833034,
0.5753566902764303
],
[
0.4527180581562761,
0.44681316812292243,
0.44129178492052107,
0.43617221603818995,
0.4314679716185942,
0.4271875092375594,
0.42333414202472625,
0.4199061346343301,
0.41689700457996975,
0.41429603688601163,
0.4120890082778703,
0.4102591038951379,
0.408787995618275,
0.4076570374976679,
0.4068485214124471,
0.40634692586270493,
0.4061400835503865,
0.40622018994158904,
0.406584576146359,
0.4072361760243763,
0.40818363015707587,
0.40944098864925466,
0.41102700046289076,
0.4129640080352106,
0.41527650000695887,
0.41798940849996125,
0.42112626616095333,
0.42470735754263017,
0.4287480054683293,
0.4332571236995335,
0.43823614283913526,
0.4436783799659526,
0.4495688791982556,
0.4558847065328499,
0.4625956439760059,
0.4696651997872148,
0.4770518359890534,
0.48471031118712304,
0.4925930442831479,
0.5006514197590621,
0.5088369744100593,
0.5171024255776553,
0.5254025196798393,
0.5336946956328195,
0.5419395699057179,
0.5501012583862384,
0.5581475553282906,
0.5660499919956234,
0.5737837978738554,
0.581327786130994
],
[
0.4545949749679336,
0.44882742913967455,
0.4434751579165681,
0.4385583979051197,
0.43409195887158447,
0.43008492026532696,
0.4265405251546871,
0.4234562952672647,
0.42082437985442045,
0.4186321379858413,
0.4168629396089781,
0.41549715640001517,
0.41451330018319804,
0.41388925543809096,
0.4136035438445852,
0.41363655338638045,
0.41397166251819734,
0.41459619148895394,
0.4155021182892775,
0.416686506069119,
0.4181516024269589,
0.4199045887015954,
0.4219569789046889,
0.4243236922222023,
0.42702184835834556,
0.4300693589653674,
0.43348340809711855,
0.43727892712767025,
0.44146717254253526,
0.4460545072530562,
0.45104146799171224,
0.4564221749670336,
0.4621841087025449,
0.4683082469902469,
0.4747695262104212,
0.48153756912760565,
0.48857760754903895,
0.4958515233124787,
0.5033189340256782,
0.5109382589775605,
0.5186677134430427,
0.526466194015193,
0.5342940317878327,
0.5421136028708015,
0.5498897960876848,
0.5575903454963774,
0.5651860406566657,
0.572650830643958,
0.5799618390864122,
0.5870993074251541
],
[
0.4558221145903953,
0.45017218117330376,
0.44497046695991305,
0.4402392045784613,
0.43599453961481965,
0.43224617359888573,
0.42899723939733,
0.42624443235878007,
0.42397840558776434,
0.4221844210462605,
0.4208432313810735,
0.419932152019907,
0.4194262704725508,
0.4192997307846573,
0.41952702610246506,
0.4200842312795257,
0.4209501100817512,
0.4221070374180634,
0.4235416857761168,
0.4252454364172762,
0.4272144896981072,
0.42944966491512976,
0.431955897896033,
0.43474146341655684,
0.4378169682041653,
0.4411941771852037,
0.4448847488847577,
0.4488989636880986,
0.45324452962197015,
0.4579255437782367,
0.4629416738473961,
0.46828760486190646,
0.47395277343062486,
0.4799213882087514,
0.48617271381322963,
0.4926815781040396,
0.4994190511390143,
0.5063532386582528,
0.513450133267213,
0.5206744715066883,
0.5279905532965087,
0.5353629903143439,
0.5427573603711552,
0.5501407547151193,
0.5574822137299467,
0.5647530533200027,
0.57192708929761,
0.5789807704114345,
0.5858932325058818,
0.5926462869651177
],
[
0.45652236953666514,
0.45097261367717345,
0.44590465119052153,
0.44134274842356147,
0.43730439803635285,
0.43379990368642163,
0.4308322335236525,
0.42839716598806526,
0.4264837323036925,
0.42507493969794713,
0.42414873996232844,
0.42367919152881856,
0.42363775125184133,
0.42399462531081766,
0.42472010709424196,
0.42578583301887446,
0.4271658940712753,
0.4288377504605101,
0.4307829083008914,
0.4329873300915174,
0.43544156452596344,
0.43814059556122864,
0.44108342537515244,
0.4442724203518905,
0.44771246281329113,
0.4514099628757733,
0.45537179343601303,
0.45960421579980476,
0.46411186306733404,
0.4688968427643561,
0.4739580096819578,
0.47929044542904164,
0.4848851643211828,
0.49072904774469317,
0.4968049928780141,
0.5030922481818031,
0.5095668984495981,
0.5162024569078814,
0.5229705207470668,
0.5298414489595004,
0.5367850265618765,
0.5437710861745265,
0.5507700655483497,
0.5577534871553929,
0.5646943527885837,
0.5715674518729051,
0.5783495867004087,
0.5850197210525274,
0.5915590607661453,
0.5979510759028661
],
[
0.4568365413166958,
0.45137246711892215,
0.44642375105723436,
0.4420166912314637,
0.4381701076985822,
0.4348948653071406,
0.43219370324605594,
0.43006139539207544,
0.4284852421189501,
0.42744587000065803,
0.42691829368955303,
0.42687317666566454,
0.42727821617873823,
0.4280995731263125,
0.429303269410938,
0.4308564823440246,
0.432728676398933,
0.4348925255520369,
0.4373245933417265,
0.4400057517570457,
0.4429213336365348,
0.4460610261579027,
0.4494185250675793,
0.4529909803249574,
0.4567782734699034,
0.46078217475943584,
0.46500543335818023,
0.4694508560236361,
0.4741204283813103,
0.4790145279155531,
0.4841312694775289,
0.48946601310523097,
0.49501105127381906,
0.5007554795607786,
0.506685242355615,
0.5127833347467764,
0.5190301338579867,
0.5254038280807981,
0.5318809108709098,
0.5384367067219887,
0.5450459000478607,
0.5516830423190954,
0.558323018228212,
0.5649414572866003,
0.5715150825977477,
0.5780219932644518,
0.584441880774388,
0.5907561826949043,
0.5969481791152774,
0.6030030385889363
],
[
0.4569196595668407,
0.45153025914641515,
0.4466890456270584,
0.4424242969677298,
0.4387561044485858,
0.43569583201281825,
0.43324592135692175,
0.4314000677840235,
0.43014376390002096,
0.4294551799631452,
0.42930632470009095,
0.4296644116410303,
0.4304933452786016,
0.4317552389911775,
0.4334118817856208,
0.4354260817374701,
0.4377628284097415,
0.4403902324998791,
0.44328021690857466,
0.4464089483066914,
0.4497570115731434,
0.4533093410327218,
0.4570549322735942,
0.4609863665315678,
0.46509918617385215,
0.46939116456055663,
0.47386151627455886,
0.47851009413557566,
0.48333661737370337,
0.48833997082004493,
0.493517608196585,
0.4988650840201868,
0.504375728953912,
0.5100404734514361,
0.5158478150785464,
0.5217839167020218,
0.527832816370258,
0.5339767254912788,
0.5401963899065861,
0.5464714884987809,
0.5527810457179394,
0.5591038374234902,
0.5654187732385673,
0.571705242753012,
0.5779434170085574,
0.5841145004664564,
0.5902009319032216,
0.5961865353041544,
0.6020566238024794,
0.6077980610761534
],
[
0.4569364290283067,
0.4516146086055775,
0.44687226750224496,
0.4427395525172687,
0.4392377288658351,
0.43637857693278426,
0.43416417407811275,
0.4325870876150262,
0.43163097251872223,
0.43127153502930626,
0.4314777954385476,
0.4322135634408007,
0.4334390293625766,
0.435112374465684,
0.43719131191103816,
0.43963448445881886,
0.44240266283128393,
0.4454597073941397,
0.44877327354806856,
0.45231525682197654,
0.4560619866402531,
0.45999418808816595,
0.4640967389697234,
0.4683582553565404,
0.4727705429213751,
0.4773279537773054,
0.4820266893334256,
0.48686408879860354,
0.49183794039112794,
0.496945848094639,
0.5021846811151248,
0.5075501263600517,
0.5130363567283714,
0.5186358203032303,
0.524339148231859,
0.5301351726640587,
0.536011040996324,
0.54195240907633,
0.5479436940391004,
0.5539683669924306,
0.5600092666393434,
0.5660489168304335,
0.5720698336512785,
0.5780548106452713,
0.5839871738611887,
0.5898510013639725,
0.5956313044879141,
0.6013141703395875,
0.6068868668263082,
0.6123379127939937
],
[
0.45705581143836094,
0.45179865900393046,
0.44714989279435563,
0.4431413514306379,
0.43979533275867966,
0.4371239319952101,
0.4351288031574175,
0.4338013709730338,
0.43312348332297074,
0.43306845782259434,
0.4336024455028285,
0.43468601360791737,
0.43627584022556765,
0.4383264156013897,
0.4407916565688673,
0.4436263584879935,
0.4467874301159042,
0.4502348780300362,
0.4539325264919598,
0.45784847478845414,
0.4619553067168008,
0.46623007615154616,
0.470654098998426,
0.4752125858503851,
0.4798941517935624,
0.48469024042182807,
0.4895944984253851,
0.49460213523974794,
0.49970929924844026,
0.5049124980092129,
0.5102080850578914,
0.5155918302514332,
0.5210585846345592,
0.5266020447973988,
0.5322146159971441,
0.5378873682803962,
0.5436100757352994,
0.5493713260004525,
0.5551586853305084,
0.560958903831082,
0.5667581458038904,
0.5725422312987007,
0.5782968767281806,
0.5840079245343274,
0.5896615541858993,
0.5952444690525461,
0.6007440558023868,
0.6061485148091349,
0.6114469615779755,
0.616629500387639
],
[
0.4574448575609612,
0.452253715741233,
0.44769661982458125,
0.44380685418904214,
0.4406075637246653,
0.4381110407491031,
0.43631847062080253,
0.435220164066122,
0.43479626278896666,
0.4350178647379702,
0.43584848227361656,
0.43724572470948475,
0.4391630882572228,
0.44155174074239617,
0.4443622030268343,
0.44754585019985965,
0.4510561794469253,
0.45484981481464365,
0.45888723960537947,
0.46313326366077046,
0.4675572450428712,
0.472133093924138,
0.47683909150719606,
0.4816575592498048,
0.48657441423369896,
0.49157864570179877,
0.4966617459483123,
0.5018171260984561,
0.507039543992036,
0.5123245674870832,
0.5176680921330686,
0.5230659274680884,
0.5285134613522015,
0.5340054069741187,
0.5395356326879777,
0.5450970708662657,
0.5506816986720552,
0.5562805811798642,
0.5618839656636931,
0.5674814151078597,
0.5730619690056202,
0.5786143201692834,
0.5841269974320686,
0.5895885456139106,
0.5949876957939064,
0.6003135206422364,
0.6055555712014046,
0.6107039929876279,
0.6157496205547683,
0.620684050699164
],
[
0.45826204028383133,
0.4531423543360875,
0.4486782986483871,
0.44490429049094143,
0.44184409516917217,
0.43951007248337887,
0.43790291248740704,
0.4370118889055298,
0.43681561338267055,
0.43728323037691935,
0.43837595736526813,
0.44004885274400146,
0.4422526862893399,
0.4449357934221472,
0.44804581172852964,
0.4515312220171801,
0.4553426423683059,
0.45943384861885894,
0.4637625161686473,
0.4682906947202949,
0.47298503941121894,
0.47781682924682645,
0.48276180762291904,
0.4877998809272138,
0.4929147105380094,
0.49809323162270047,
0.5033251294244544,
0.5086023004963016,
0.5139183227689698,
0.5192679545276094,
0.5246466784047854,
0.5300503024584445,
0.5354746263978261,
0.5409151771699884,
0.5463670145574833,
0.5518246042924785,
0.5572817535734841,
0.5627316018545152,
0.5681666583986452,
0.5735788773408098,
0.5789597608401134,
0.5843004812391832,
0.5895920138844899,
0.5948252732838614,
0.5999912464730947,
0.605081118729399,
0.6100863880182656,
0.6149989657244689,
0.6198112622501025,
0.6245162569350663
],
[
0.45965048266507635,
0.4546114086744135,
0.45024473204691934,
0.446585631858275,
0.44365823345131106,
0.44147482820880896,
0.4400356063999884,
0.43932893114820176,
0.43933213351457445,
0.4400127630025621,
0.44133019131490353,
0.44323744475573157,
0.44568313410874544,
0.44861335894897403,
0.45197348267342435,
0.4557097004404303,
0.4597703500940662,
0.46410694230775545,
0.46867490819385793,
0.47343407938061305,
0.47834892698916076,
0.4833885926702627,
0.4885267478339856,
0.493741317438141,
0.49901410309460315,
0.5043303375181191,
0.5096781989863691,
0.5150483108307035,
0.5204332472283909,
0.5258270628270268,
0.5312248600625872,
0.5366224044815708,
0.542015794994192,
0.5474011928283206,
0.5527746100887502,
0.5581317563203347,
0.5634679393847811,
0.5687780153310094,
0.5740563807862216,
0.5792970007115761,
0.5844934641195831,
0.5896390604858213,
0.5947268700353644,
0.5997498617662553,
0.6047009939089211,
0.6095733124366932,
0.6143600441733863,
0.6190546819362409,
0.6236510599674202,
0.628143418619169
],
[
0.4617315933980887,
0.45678537524444685,
0.4525229018712272,
0.4489796999310054,
0.4461799719663438,
0.44413580543107456,
0.44284690997589155,
0.44230090997675126,
0.4424741694946916,
0.443333079919449,
0.4448357035536912,
0.44693364421400295,
0.4495740102784201,
0.45270134506254034,
0.45625942017959487,
0.4601928147525534,
0.4644482322272237,
0.46897553329117675,
0.47372848561632863,
0.4786652477533445,
0.4837486155292061,
0.4889460654419719,
0.49422963184316704,
0.499575654233149,
0.5049644287316221,
0.5103797944857452,
0.5158086819878634,
0.5212406463494392,
0.5266674047264316,
0.5320823934231228,
0.537480356765867,
0.5428569766562785,
0.5482085487975542,
0.5535317089523311,
0.5588232102553611,
0.5640797505920083,
0.5692978473852244,
0.5744737558235617,
0.5796034256139132,
0.5846824907441224,
0.5897062864671893,
0.5946698877322665,
0.5995681635401313,
0.6043958421385062,
0.6091475825402483,
0.6138180484920629,
0.6184019816957463,
0.6228942717484851,
0.6272900208929053,
0.6315846022299983
],
[
0.4645996796431356,
0.4597608318084162,
0.45561124074434717,
0.4521863438996566,
0.4495101301706725,
0.44759435508890894,
0.446438289650966,
0.4460290279379456,
0.446342328451176,
0.4473439171228905,
0.44899114332723844,
0.4512348586986269,
0.45402138373067746,
0.4572944373855215,
0.4609969263840494,
0.46507251851544884,
0.46946695340499406,
0.4741290709369866,
0.47901155956741226,
0.4840714430655654,
0.48927033485593063,
0.49457449483616606,
0.49995472539092517,
0.5053861424178248,
0.510847854520627,
0.5163225798914023,
0.5217962263654192,
0.5272574560624922,
0.5326972521462051,
0.5381085016490592,
0.5434856050697983,
0.5488241205537274,
0.5541204479063461,
0.5593715554502606,
0.5645747508029338,
0.5697274950203263,
0.5748272582130486,
0.5798714136910803,
0.5848571669206651,
0.5897815150673213,
0.5946412326300318,
0.599432878615097,
0.6041528208202401,
0.6087972730634365,
0.6133623415588854,
0.6178440770781866,
0.6222385300051214,
0.6265418058693665,
0.6307501194054211,
0.6348598456115389
],
[
0.46831807330569203,
0.46360243415180635,
0.4595755332882725,
0.4562722835620314,
0.4537161774047041,
0.4519185247120054,
0.4508782194371536,
0.45058205754847946,
0.4510055797055306,
0.4521143662391514,
0.4538656766187833,
0.45621030509967253,
0.4590945200713709,
0.4624619651258598,
0.46625542116640395,
0.4704183561371524,
0.47489621750287664,
0.47963744878410297,
0.4845942329527873,
0.489722981340778,
0.49498459697319114,
0.5003445466446416,
0.5057727776577717,
0.511243514040495,
0.5167349642342102,
0.5222289684873831,
0.5277106100717519,
0.5331678103442153,
0.5385909238340181,
0.5439723460576977,
0.5493061436944368,
0.5545877140889768,
0.5598134787628761,
0.5649806136746695,
0.5700868173426437,
0.5751301166015228,
0.5801087086817962,
0.585020837456349,
0.5898647010737263,
0.5946383877708523,
0.5993398364091458,
0.6039668181838654,
0.6085169359926469,
0.612987638090206,
0.6173762428767977,
0.6216799719441966,
0.6258959888128207,
0.630021441118308,
0.6340535043299868,
0.6379894253954869
],
[
0.47291717118221527,
0.4683409109582266,
0.4644468810285355,
0.46126905992321926,
0.4588301844004805,
0.4571410248102473,
0.4562001742664717,
0.45599437129575043,
0.4564993285234327,
0.45768099651095767,
0.4594971584562713,
0.46189923230644275,
0.46483415315341575,
0.46824621898315455,
0.47207880326403917,
0.4762758639162868,
0.4807832054968002,
0.48554947649315844,
0.4905269042488636,
0.49567178528727235,
0.5009447586988951,
0.5063108954815222,
0.5117396382630778,
0.5172046247419196,
0.5226834253972938,
0.5281572223231966,
0.5336104519915515,
0.5390304307407922,
0.5444069780480874,
0.5497320492993498,
0.5549993868648816,
0.5602041958157788,
0.5653428485460741,
0.5704126208552958,
0.575411460650785,
0.5803377893065792,
0.5851903348287743,
0.5899679952941588,
0.5946697305221489,
0.5992944795857715,
0.6038411015440781,
0.60830833666604,
0.6126947853958675,
0.616998902364189,
0.6212190028619755,
0.6253532793494532,
0.6293998257570571,
0.6333566675382373,
0.6372217956452306,
0.6409932028113455
],
[
0.478394569874907,
0.4739732438044068,
0.47022192146280223,
0.46717328454798623,
0.4648490916384186,
0.4632595030179238,
0.46240289552675,
0.46226618386722756,
0.46282562092856705,
0.4640480094777765,
0.4658922267668109,
0.4683109459903792,
0.47125243518590276,
0.474662323617661,
0.47848524459701297,
0.48266628788771504,
0.4871522202941201,
0.4918924565205545,
0.49683978185559763,
0.5019508427414299,
0.5071864308137857,
0.5125115911249112,
0.5178955868813063,
0.5233117521065288,
0.5287372610671601,
0.5341528398115769,
0.5395424413203243,
0.5448929019365731,
0.5501935931748058,
0.5554360798245809,
0.5606137925246609,
0.5657217206804489,
0.5707561297036873,
0.5757143050220185,
0.5805943240864417,
0.5853948566476457,
0.5901149928327818,
0.5947540979937509,
0.5993116928838027,
0.6037873574241227,
0.6081806561237374,
0.6124910830961156,
0.6167180245589826,
0.6208607366973794,
0.6249183368033439,
0.6288898056699714,
0.6327739993058273,
0.6365696681419462,
0.6402754820232957,
0.6438900594060046
],
[
0.4847172173437062,
0.48046494472666407,
0.476865205350999,
0.47394908490956683,
0.4717371870483758,
0.47023901615172775,
0.4694528191874608,
0.4693658997802697,
0.4699553778205749,
0.47118933155919185,
0.4730282313503325,
0.4754265582709649,
0.4783344977137753,
0.4816996064300461,
0.4854683684627953,
0.48958757727673646,
0.4940055045633476,
0.49867283777452365,
0.5035433865031966,
0.5085745714691834,
0.513727718989967,
0.5189681888867145,
0.5242653655648765,
0.5295925413781973,
0.5349267191474394,
0.5402483575458863,
0.545541079511086,
0.5507913602711291,
0.5559882082258027,
0.5611228489348179,
0.5661884198962491,
0.5711796816549974,
0.5760927490373144,
0.5809248449190106,
0.5856740778503841,
0.5903392440279648,
0.5949196534734291,
0.5994149798108876,
0.603825132689186,
0.6081501516466787,
0.6123901200389475,
0.6165450975274235,
0.6206150695456061,
0.6245999121099981,
0.6284993703184146,
0.6323130488746073,
0.6360404129924248,
0.6396807980634696,
0.6432334265184521,
0.6466974303737147
],
[
0.4918252617304482,
0.487754089567775,
0.48431337237627875,
0.48153237329522336,
0.47943041430955213,
0.4780163218314695,
0.4772882952261392,
0.47723420837307,
0.47783231893595063,
0.4790523278520921,
0.48085670697256894,
0.4832021985846311,
0.4860413875520527,
0.4893242539370048,
0.4929996287398716,
0.49701649465615255,
0.5013250943797015,
0.505877828412801,
0.510629940833391,
0.5155400041304606,
0.5205702228841457,
0.5256865810816741,
0.530858859859446,
0.5360605521885378,
0.541268699197845,
0.546463670080587,
0.5516289043502975,
0.5567506319623476,
0.5618175837372473,
0.5668207017553284,
0.5717528570073751,
0.5766085795981585,
0.5813838051908794,
0.5860756401112189,
0.5906821465511467,
0.5952021485734672,
0.5996350590692191,
0.6039807274174305,
0.6082393073029744,
0.612411143932894,
0.6164966797309548,
0.6204963774668708,
0.6244106596786575,
0.6282398631662417,
0.6319842072678352,
0.6356437745761725,
0.6392185027099708,
0.6427081857282985,
0.6461124837638952,
0.6494309394576849
],
[
0.4996371055565254,
0.49575658573164016,
0.4924805808842058,
0.4898363799091,
0.48784194605873965,
0.4865054267387912,
0.48582504708910274,
0.4857893946990788,
0.4863780719637753,
0.4875626646853998,
0.4893079541663667,
0.4915732875595774,
0.49431401834781385,
0.4974829346540132,
0.5010316056015941,
0.5049115925189203,
0.5090754897687497,
0.513477777160376,
0.518075480710557,
0.5228286501110813,
0.5277006694065707,
0.5326584223109189,
0.5376723357951374,
0.5427163256832436,
0.5477676666202846,
0.5528068064840217,
0.5578171425521392,
0.5627847738506514,
0.5676982413321195,
0.5725482650111141,
0.5773274849959528,
0.5820302115255981,
0.5866521876389789,
0.5911903669391285,
0.5956427080227766,
0.6000079864792961,
0.6042856248738253,
0.6084755407745513,
0.6125780126261408,
0.6165935630794879,
0.6205228592386014,
0.6243666291614014,
0.6281255938411523,
0.6318004137927411,
0.6353916492706635,
0.6388997330537869,
0.6423249546482147,
0.6456674546874569,
0.648927228252462,
0.6521041357966195
],
[
0.5080550978571523,
0.50437207748405,
0.5012645725625329,
0.49875781703325234,
0.49686838384750814,
0.4956037575293476,
0.4949622502733654,
0.4949332666056331,
0.4954978952502354,
0.49662978304809097,
0.4982962275044243,
0.5004594137081881,
0.5030777185766905,
0.5061070099690876,
0.509501878557011,
0.5132167543003224,
0.5172068747584685,
0.5214290873879722,
0.5258424810654795,
0.5304088525391474,
0.5350930210724556,
0.5398630093231035,
0.5446901108694789,
0.5495488652575485,
0.5544169605168058,
0.5592750812688101,
0.5641067182321883,
0.5688979524288948,
0.5736372249441737,
0.5783151008344373,
0.5829240337967027,
0.5874581365447689,
0.5919129604806571,
0.5962852871815424,
0.6005729334055983,
0.6047745707118225,
0.608889560345036,
0.6129178037166728,
0.6168596085784966,
0.6207155708100394,
0.6244864715980444,
0.6281731896607756,
0.631776628050843,
0.6352976549515189,
0.63873705776189,
0.6420955096471381,
0.6453735476155869,
0.6485715610787381,
0.6516897897596652,
0.654728329743709
]
]
},
{
"hoverinfo": "text",
"legendgroup": "In-sample",
"marker": {
"color": "black",
"opacity": 0.5,
"symbol": 1
},
"mode": "markers",
"name": "In-sample",
"text": [
"Arm 0_0
hartmann6: -0.315376 (SEM: 0)
x1: 0.767981
x2: 0.0311841
x3: 0.940596
x4: 0.102218
x5: 0.46916
x6: 0.763907",
"Arm 1_0
hartmann6: -0.063271 (SEM: 0)
x1: 0.0258238
x2: 0.769722
x3: 0.0859231
x4: 0.182398
x5: 0.500031
x6: 0.0307439",
"Arm 2_0
hartmann6: -0.124625 (SEM: 0)
x1: 0.835388
x2: 0.888192
x3: 0.747861
x4: 0.557998
x5: 0.946443
x6: 0.0746776",
"Arm 3_0
hartmann6: -0.0790351 (SEM: 0)
x1: 0.397979
x2: 0.87215
x3: 0.928142
x4: 0.0778982
x5: 0.586364
x6: 0.382941",
"Arm 4_0
hartmann6: -0.0266301 (SEM: 0)
x1: 0.831706
x2: 0.925053
x3: 0.406772
x4: 0.414333
x5: 0.856513
x6: 0.351484",
"Arm 5_0
hartmann6: -0.00425621 (SEM: 0)
x1: 0.0532233
x2: 0.573603
x3: 0.033096
x4: 0.786813
x5: 0.823035
x6: 0.551498",
"Arm 6_0
hartmann6: -0.351751 (SEM: 0)
x1: 0.0599181
x2: 0.853483
x3: 0.346709
x4: 0.20757
x5: 0.429791
x6: 0.792271",
"Arm 7_0
hartmann6: -0.660013 (SEM: 0)
x1: 0.243316
x2: 0.728403
x3: 0.853215
x4: 0.237459
x5: 0.290725
x6: 0.922517",
"Arm 8_0
hartmann6: -1.3292 (SEM: 0)
x1: 0.621368
x2: 0.198342
x3: 0.546443
x4: 0.21358
x5: 0.215746
x6: 0.827688",
"Arm 9_0
hartmann6: -0.124734 (SEM: 0)
x1: 0.296231
x2: 0.0998787
x3: 0.473381
x4: 0.619773
x5: 0.97057
x6: 0.369737",
"Arm 10_0
hartmann6: -0.11923 (SEM: 0)
x1: 0.821728
x2: 0.883455
x3: 0.812193
x4: 0.699862
x5: 0.814668
x6: 0.133008",
"Arm 11_0
hartmann6: -0.232751 (SEM: 0)
x1: 0.194408
x2: 0.412507
x3: 0.858039
x4: 0.31831
x5: 0.227866
x6: 0.0891625",
"Arm 12_0
hartmann6: -1.07921 (SEM: 0)
x1: 0.585672
x2: 0.225632
x3: 0.506273
x4: 0.239403
x5: 0.155454
x6: 0.864002",
"Arm 13_0
hartmann6: -1.41737 (SEM: 0)
x1: 0.62864
x2: 0.189333
x3: 0.558258
x4: 0.208759
x5: 0.246185
x6: 0.816666",
"Arm 14_0
hartmann6: -1.48976 (SEM: 0)
x1: 0.632544
x2: 0.17994
x3: 0.569992
x4: 0.205932
x5: 0.289476
x6: 0.805065",
"Arm 15_0
hartmann6: -1.71818 (SEM: 0)
x1: 0.609462
x2: 0.186058
x3: 0.556327
x4: 0.20222
x5: 0.309559
x6: 0.7408",
"Arm 16_0
hartmann6: -1.66682 (SEM: 0)
x1: 0.624241
x2: 0.178229
x3: 0.525482
x4: 0.180171
x5: 0.298799
x6: 0.687267",
"Arm 17_0
hartmann6: -2.01726 (SEM: 0)
x1: 0.550792
x2: 0.229409
x3: 0.575838
x4: 0.221883
x5: 0.29682
x6: 0.710097",
"Arm 18_0
hartmann6: -2.17712 (SEM: 0)
x1: 0.503206
x2: 0.26482
x3: 0.603417
x4: 0.232242
x5: 0.313804
x6: 0.665508",
"Arm 19_0
hartmann6: -2.50703 (SEM: 0)
x1: 0.42158
x2: 0.233858
x3: 0.614225
x4: 0.224671
x5: 0.306594
x6: 0.656939",
"Arm 20_0
hartmann6: -2.70305 (SEM: 0)
x1: 0.357911
x2: 0.185952
x3: 0.617758
x4: 0.205481
x5: 0.30328
x6: 0.659356",
"Arm 21_0
hartmann6: -2.94223 (SEM: 0)
x1: 0.29327
x2: 0.140264
x3: 0.617547
x4: 0.246371
x5: 0.280036
x6: 0.65376",
"Arm 22_0
hartmann6: -2.92167 (SEM: 0)
x1: 0.236005
x2: 0.115173
x3: 0.623783
x4: 0.3018
x5: 0.260353
x6: 0.649997",
"Arm 23_0
hartmann6: -2.72778 (SEM: 0)
x1: 0.30027
x2: 0.0786082
x3: 0.620319
x4: 0.264951
x5: 0.249232
x6: 0.621804",
"Arm 24_0
hartmann6: -3.11731 (SEM: 0)
x1: 0.218469
x2: 0.167108
x3: 0.607528
x4: 0.273403
x5: 0.291938
x6: 0.669281",
"Arm 25_0
hartmann6: -3.20094 (SEM: 0)
x1: 0.146903
x2: 0.170399
x3: 0.563282
x4: 0.261643
x5: 0.313175
x6: 0.673041",
"Arm 26_0
hartmann6: -2.8873 (SEM: 0)
x1: 0.067777
x2: 0.18752
x3: 0.594446
x4: 0.240353
x5: 0.278575
x6: 0.669619",
"Arm 27_0
hartmann6: -3.23261 (SEM: 0)
x1: 0.189443
x2: 0.148401
x3: 0.52518
x4: 0.285228
x5: 0.344165
x6: 0.679223",
"Arm 28_0
hartmann6: -3.29839 (SEM: 0)
x1: 0.193725
x2: 0.173175
x3: 0.514376
x4: 0.276983
x5: 0.317218
x6: 0.646968"
],
"type": "scatter",
"x": [
0.7679807543754578,
0.025823820382356644,
0.8353883028030396,
0.3979791020974517,
0.8317060004919767,
0.05322327185422182,
0.05991810839623213,
0.2433156594634056,
0.6213680133223534,
0.29623059928417206,
0.8217283608391881,
0.1944083208218217,
0.5856721623950196,
0.6286400437729261,
0.632544248917124,
0.6094616801785352,
0.6242410036122836,
0.5507922168743413,
0.5032063541590669,
0.42157975037730705,
0.3579112551852473,
0.29327025320133915,
0.2360045277427609,
0.3002695352149524,
0.21846904772169257,
0.14690326130830286,
0.06777701777422179,
0.1894430862529444,
0.19372487101765848
],
"xaxis": "x",
"y": [
0.0311841182410717,
0.7697224952280521,
0.8881923444569111,
0.8721499759703875,
0.9250532584264874,
0.5736028533428907,
0.8534833677113056,
0.7284026276320219,
0.1983416499570012,
0.0998786585405469,
0.8834551805630326,
0.41250686813145876,
0.2256319054783046,
0.18933335365208143,
0.17994021051908107,
0.18605753097877425,
0.17822913525689005,
0.22940866376533858,
0.26481981030245316,
0.23385785750717608,
0.18595186322422202,
0.14026447368070066,
0.11517339766435924,
0.0786082121547813,
0.16710797442970202,
0.17039929436009935,
0.18752000198030566,
0.14840068588063537,
0.17317519181499047
],
"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.315376 (SEM: 0)
x1: 0.767981
x2: 0.0311841
x3: 0.940596
x4: 0.102218
x5: 0.46916
x6: 0.763907",
"Arm 1_0
hartmann6: -0.063271 (SEM: 0)
x1: 0.0258238
x2: 0.769722
x3: 0.0859231
x4: 0.182398
x5: 0.500031
x6: 0.0307439",
"Arm 2_0
hartmann6: -0.124625 (SEM: 0)
x1: 0.835388
x2: 0.888192
x3: 0.747861
x4: 0.557998
x5: 0.946443
x6: 0.0746776",
"Arm 3_0
hartmann6: -0.0790351 (SEM: 0)
x1: 0.397979
x2: 0.87215
x3: 0.928142
x4: 0.0778982
x5: 0.586364
x6: 0.382941",
"Arm 4_0
hartmann6: -0.0266301 (SEM: 0)
x1: 0.831706
x2: 0.925053
x3: 0.406772
x4: 0.414333
x5: 0.856513
x6: 0.351484",
"Arm 5_0
hartmann6: -0.00425621 (SEM: 0)
x1: 0.0532233
x2: 0.573603
x3: 0.033096
x4: 0.786813
x5: 0.823035
x6: 0.551498",
"Arm 6_0
hartmann6: -0.351751 (SEM: 0)
x1: 0.0599181
x2: 0.853483
x3: 0.346709
x4: 0.20757
x5: 0.429791
x6: 0.792271",
"Arm 7_0
hartmann6: -0.660013 (SEM: 0)
x1: 0.243316
x2: 0.728403
x3: 0.853215
x4: 0.237459
x5: 0.290725
x6: 0.922517",
"Arm 8_0
hartmann6: -1.3292 (SEM: 0)
x1: 0.621368
x2: 0.198342
x3: 0.546443
x4: 0.21358
x5: 0.215746
x6: 0.827688",
"Arm 9_0
hartmann6: -0.124734 (SEM: 0)
x1: 0.296231
x2: 0.0998787
x3: 0.473381
x4: 0.619773
x5: 0.97057
x6: 0.369737",
"Arm 10_0
hartmann6: -0.11923 (SEM: 0)
x1: 0.821728
x2: 0.883455
x3: 0.812193
x4: 0.699862
x5: 0.814668
x6: 0.133008",
"Arm 11_0
hartmann6: -0.232751 (SEM: 0)
x1: 0.194408
x2: 0.412507
x3: 0.858039
x4: 0.31831
x5: 0.227866
x6: 0.0891625",
"Arm 12_0
hartmann6: -1.07921 (SEM: 0)
x1: 0.585672
x2: 0.225632
x3: 0.506273
x4: 0.239403
x5: 0.155454
x6: 0.864002",
"Arm 13_0
hartmann6: -1.41737 (SEM: 0)
x1: 0.62864
x2: 0.189333
x3: 0.558258
x4: 0.208759
x5: 0.246185
x6: 0.816666",
"Arm 14_0
hartmann6: -1.48976 (SEM: 0)
x1: 0.632544
x2: 0.17994
x3: 0.569992
x4: 0.205932
x5: 0.289476
x6: 0.805065",
"Arm 15_0
hartmann6: -1.71818 (SEM: 0)
x1: 0.609462
x2: 0.186058
x3: 0.556327
x4: 0.20222
x5: 0.309559
x6: 0.7408",
"Arm 16_0
hartmann6: -1.66682 (SEM: 0)
x1: 0.624241
x2: 0.178229
x3: 0.525482
x4: 0.180171
x5: 0.298799
x6: 0.687267",
"Arm 17_0
hartmann6: -2.01726 (SEM: 0)
x1: 0.550792
x2: 0.229409
x3: 0.575838
x4: 0.221883
x5: 0.29682
x6: 0.710097",
"Arm 18_0
hartmann6: -2.17712 (SEM: 0)
x1: 0.503206
x2: 0.26482
x3: 0.603417
x4: 0.232242
x5: 0.313804
x6: 0.665508",
"Arm 19_0
hartmann6: -2.50703 (SEM: 0)
x1: 0.42158
x2: 0.233858
x3: 0.614225
x4: 0.224671
x5: 0.306594
x6: 0.656939",
"Arm 20_0
hartmann6: -2.70305 (SEM: 0)
x1: 0.357911
x2: 0.185952
x3: 0.617758
x4: 0.205481
x5: 0.30328
x6: 0.659356",
"Arm 21_0
hartmann6: -2.94223 (SEM: 0)
x1: 0.29327
x2: 0.140264
x3: 0.617547
x4: 0.246371
x5: 0.280036
x6: 0.65376",
"Arm 22_0
hartmann6: -2.92167 (SEM: 0)
x1: 0.236005
x2: 0.115173
x3: 0.623783
x4: 0.3018
x5: 0.260353
x6: 0.649997",
"Arm 23_0
hartmann6: -2.72778 (SEM: 0)
x1: 0.30027
x2: 0.0786082
x3: 0.620319
x4: 0.264951
x5: 0.249232
x6: 0.621804",
"Arm 24_0
hartmann6: -3.11731 (SEM: 0)
x1: 0.218469
x2: 0.167108
x3: 0.607528
x4: 0.273403
x5: 0.291938
x6: 0.669281",
"Arm 25_0
hartmann6: -3.20094 (SEM: 0)
x1: 0.146903
x2: 0.170399
x3: 0.563282
x4: 0.261643
x5: 0.313175
x6: 0.673041",
"Arm 26_0
hartmann6: -2.8873 (SEM: 0)
x1: 0.067777
x2: 0.18752
x3: 0.594446
x4: 0.240353
x5: 0.278575
x6: 0.669619",
"Arm 27_0
hartmann6: -3.23261 (SEM: 0)
x1: 0.189443
x2: 0.148401
x3: 0.52518
x4: 0.285228
x5: 0.344165
x6: 0.679223",
"Arm 28_0
hartmann6: -3.29839 (SEM: 0)
x1: 0.193725
x2: 0.173175
x3: 0.514376
x4: 0.276983
x5: 0.317218
x6: 0.646968"
],
"type": "scatter",
"x": [
0.7679807543754578,
0.025823820382356644,
0.8353883028030396,
0.3979791020974517,
0.8317060004919767,
0.05322327185422182,
0.05991810839623213,
0.2433156594634056,
0.6213680133223534,
0.29623059928417206,
0.8217283608391881,
0.1944083208218217,
0.5856721623950196,
0.6286400437729261,
0.632544248917124,
0.6094616801785352,
0.6242410036122836,
0.5507922168743413,
0.5032063541590669,
0.42157975037730705,
0.3579112551852473,
0.29327025320133915,
0.2360045277427609,
0.3002695352149524,
0.21846904772169257,
0.14690326130830286,
0.06777701777422179,
0.1894430862529444,
0.19372487101765848
],
"xaxis": "x2",
"y": [
0.0311841182410717,
0.7697224952280521,
0.8881923444569111,
0.8721499759703875,
0.9250532584264874,
0.5736028533428907,
0.8534833677113056,
0.7284026276320219,
0.1983416499570012,
0.0998786585405469,
0.8834551805630326,
0.41250686813145876,
0.2256319054783046,
0.18933335365208143,
0.17994021051908107,
0.18605753097877425,
0.17822913525689005,
0.22940866376533858,
0.26481981030245316,
0.23385785750717608,
0.18595186322422202,
0.14026447368070066,
0.11517339766435924,
0.0786082121547813,
0.16710797442970202,
0.17039929436009935,
0.18752000198030566,
0.14840068588063537,
0.17317519181499047
],
"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": [
"