{
"cells": [
{
"cell_type": "markdown",
"id": "2b0e617a",
"metadata": {
"papermill": {
"duration": 0.002632,
"end_time": "2024-11-13T05:10:48.298664",
"exception": false,
"start_time": "2024-11-13T05:10:48.296032",
"status": "completed"
},
"tags": []
},
"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,
"id": "d5f3a8dc",
"metadata": {
"execution": {
"iopub.execute_input": "2024-11-13T05:10:48.304460Z",
"iopub.status.busy": "2024-11-13T05:10:48.304198Z",
"iopub.status.idle": "2024-11-13T05:10:50.987443Z",
"shell.execute_reply": "2024-11-13T05:10:50.986451Z"
},
"papermill": {
"duration": 2.704494,
"end_time": "2024-11-13T05:10:51.005459",
"exception": false,
"start_time": "2024-11-13T05:10:48.300965",
"status": "completed"
},
"tags": []
},
"outputs": [
{
"data": {
"text/html": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:10:50] ax.utils.notebook.plotting: Injecting Plotly library into cell. Do not overwrite or delete cell.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:10:50] ax.utils.notebook.plotting: Please see\n",
" (https://ax.dev/tutorials/visualizations.html#Fix-for-plots-that-are-not-rendering)\n",
" if visualizations are not rendering.\n"
]
},
{
"data": {
"text/html": [
" \n",
" "
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"import numpy as np\n",
"from ax.metrics.branin import branin\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.utils.measurement.synthetic_functions import hartmann6\n",
"from ax.utils.notebook.plotting import init_notebook_plotting, render\n",
"\n",
"init_notebook_plotting()"
]
},
{
"cell_type": "markdown",
"id": "5198c3c7",
"metadata": {
"papermill": {
"duration": 0.042448,
"end_time": "2024-11-13T05:10:51.087274",
"exception": false,
"start_time": "2024-11-13T05:10:51.044826",
"status": "completed"
},
"tags": []
},
"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,
"id": "3a314583",
"metadata": {
"execution": {
"iopub.execute_input": "2024-11-13T05:10:51.173911Z",
"iopub.status.busy": "2024-11-13T05:10:51.173414Z",
"iopub.status.idle": "2024-11-13T05:10:51.177448Z",
"shell.execute_reply": "2024-11-13T05:10:51.176875Z"
},
"papermill": {
"duration": 0.048853,
"end_time": "2024-11-13T05:10:51.178737",
"exception": false,
"start_time": "2024-11-13T05:10:51.129884",
"status": "completed"
},
"tags": []
},
"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",
"id": "2933ea8f",
"metadata": {
"papermill": {
"duration": 0.042335,
"end_time": "2024-11-13T05:10:51.263423",
"exception": false,
"start_time": "2024-11-13T05:10:51.221088",
"status": "completed"
},
"tags": []
},
"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",
"id": "bbb4efbd",
"metadata": {
"papermill": {
"duration": 0.046547,
"end_time": "2024-11-13T05:10:51.352625",
"exception": false,
"start_time": "2024-11-13T05:10:51.306078",
"status": "completed"
},
"tags": []
},
"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,
"id": "6dc92440",
"metadata": {
"execution": {
"iopub.execute_input": "2024-11-13T05:10:51.439485Z",
"iopub.status.busy": "2024-11-13T05:10:51.439219Z",
"iopub.status.idle": "2024-11-13T05:13:15.922237Z",
"shell.execute_reply": "2024-11-13T05:13:15.921486Z"
},
"papermill": {
"duration": 144.528937,
"end_time": "2024-11-13T05:13:15.924213",
"exception": false,
"start_time": "2024-11-13T05:10:51.395276",
"status": "completed"
},
"tags": []
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:10:51] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x2. If that is not the expected value type, you can explicitly specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:10:51] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x3. If that is not the expected value type, you can explicitly specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:10:51] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x4. If that is not the expected value type, you can explicitly specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:10:51] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x5. If that is not the expected value type, you can explicitly specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:10:51] ax.service.utils.instantiation: Inferred value type of ParameterType.FLOAT for parameter x6. If that is not the expected value type, you can explicitly specify 'value_type' ('int', 'float', 'bool' or 'str') in parameter dict.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:10:51] 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 11-13 05:10:51] ax.modelbridge.dispatch_utils: Using Models.BOTORCH_MODULAR since there is at least one ordered parameter and there are no unordered categorical parameters.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:10:51] ax.modelbridge.dispatch_utils: Calculating the number of remaining initialization trials based on num_initialization_trials=None max_initialization_trials=None num_tunable_parameters=6 num_trials=None use_batch_trials=False\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:10:51] ax.modelbridge.dispatch_utils: calculated num_initialization_trials=12\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:10:51] ax.modelbridge.dispatch_utils: num_completed_initialization_trials=0 num_remaining_initialization_trials=12\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:10:51] ax.modelbridge.dispatch_utils: `verbose`, `disable_progbar`, and `jit_compile` are not yet supported when using `choose_generation_strategy` with ModularBoTorchModel, dropping these arguments.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:10:51] ax.modelbridge.dispatch_utils: Using Bayesian Optimization generation strategy: GenerationStrategy(name='Sobol+BoTorch', steps=[Sobol for 12 trials, BoTorch for subsequent trials]). Iterations after 12 will take longer to generate due to model-fitting.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:10:51] ax.service.managed_loop: Started full optimization with 30 steps.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:10:51] ax.service.managed_loop: Running optimization trial 1...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.jh7tLjWjTJ/Ax-main/ax/modelbridge/cross_validation.py:464: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 11-13 05:10:51] ax.service.managed_loop: Running optimization trial 2...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.jh7tLjWjTJ/Ax-main/ax/modelbridge/cross_validation.py:464: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 11-13 05:10:51] ax.service.managed_loop: Running optimization trial 3...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.jh7tLjWjTJ/Ax-main/ax/modelbridge/cross_validation.py:464: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 11-13 05:10:51] ax.service.managed_loop: Running optimization trial 4...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.jh7tLjWjTJ/Ax-main/ax/modelbridge/cross_validation.py:464: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 11-13 05:10:51] ax.service.managed_loop: Running optimization trial 5...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.jh7tLjWjTJ/Ax-main/ax/modelbridge/cross_validation.py:464: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 11-13 05:10:51] ax.service.managed_loop: Running optimization trial 6...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.jh7tLjWjTJ/Ax-main/ax/modelbridge/cross_validation.py:464: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 11-13 05:10:51] ax.service.managed_loop: Running optimization trial 7...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.jh7tLjWjTJ/Ax-main/ax/modelbridge/cross_validation.py:464: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 11-13 05:10:51] ax.service.managed_loop: Running optimization trial 8...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.jh7tLjWjTJ/Ax-main/ax/modelbridge/cross_validation.py:464: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 11-13 05:10:51] ax.service.managed_loop: Running optimization trial 9...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.jh7tLjWjTJ/Ax-main/ax/modelbridge/cross_validation.py:464: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 11-13 05:10:51] ax.service.managed_loop: Running optimization trial 10...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.jh7tLjWjTJ/Ax-main/ax/modelbridge/cross_validation.py:464: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 11-13 05:10:51] ax.service.managed_loop: Running optimization trial 11...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.jh7tLjWjTJ/Ax-main/ax/modelbridge/cross_validation.py:464: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 11-13 05:10:51] ax.service.managed_loop: Running optimization trial 12...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.jh7tLjWjTJ/Ax-main/ax/modelbridge/cross_validation.py:464: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 11-13 05:10:51] ax.service.managed_loop: Running optimization trial 13...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:11:01] ax.service.managed_loop: Running optimization trial 14...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:11:09] ax.service.managed_loop: Running optimization trial 15...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:11:15] ax.service.managed_loop: Running optimization trial 16...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:11:26] ax.service.managed_loop: Running optimization trial 17...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:11:33] ax.service.managed_loop: Running optimization trial 18...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:11:43] ax.service.managed_loop: Running optimization trial 19...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:11:50] ax.service.managed_loop: Running optimization trial 20...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:12:00] ax.service.managed_loop: Running optimization trial 21...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:12:08] ax.service.managed_loop: Running optimization trial 22...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:12:17] ax.service.managed_loop: Running optimization trial 23...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:12:23] ax.service.managed_loop: Running optimization trial 24...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:12:30] ax.service.managed_loop: Running optimization trial 25...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:12:37] ax.service.managed_loop: Running optimization trial 26...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:12:44] ax.service.managed_loop: Running optimization trial 27...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:12:51] ax.service.managed_loop: Running optimization trial 28...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:12:59] ax.service.managed_loop: Running optimization trial 29...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 11-13 05:13:06] 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",
"id": "3172ec0d",
"metadata": {
"papermill": {
"duration": 0.058541,
"end_time": "2024-11-13T05:13:16.053482",
"exception": false,
"start_time": "2024-11-13T05:13:15.994941",
"status": "completed"
},
"tags": []
},
"source": [
"And we can introspect optimization results:"
]
},
{
"cell_type": "code",
"execution_count": 4,
"id": "abb5aa5e",
"metadata": {
"execution": {
"iopub.execute_input": "2024-11-13T05:13:16.150177Z",
"iopub.status.busy": "2024-11-13T05:13:16.149460Z",
"iopub.status.idle": "2024-11-13T05:13:16.155994Z",
"shell.execute_reply": "2024-11-13T05:13:16.155366Z"
},
"papermill": {
"duration": 0.053696,
"end_time": "2024-11-13T05:13:16.157378",
"exception": false,
"start_time": "2024-11-13T05:13:16.103682",
"status": "completed"
},
"tags": []
},
"outputs": [
{
"data": {
"text/plain": [
"{'x1': 0.0,\n",
" 'x2': 0.09297047622460022,\n",
" 'x3': 0.48707596520916485,\n",
" 'x4': 0.24231039507925528,\n",
" 'x5': 0.30778233051364695,\n",
" 'x6': 0.6438256679892662}"
]
},
"execution_count": 4,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"best_parameters"
]
},
{
"cell_type": "code",
"execution_count": 5,
"id": "7fb1c651",
"metadata": {
"execution": {
"iopub.execute_input": "2024-11-13T05:13:16.247887Z",
"iopub.status.busy": "2024-11-13T05:13:16.247397Z",
"iopub.status.idle": "2024-11-13T05:13:16.251805Z",
"shell.execute_reply": "2024-11-13T05:13:16.251155Z"
},
"papermill": {
"duration": 0.051378,
"end_time": "2024-11-13T05:13:16.253169",
"exception": false,
"start_time": "2024-11-13T05:13:16.201791",
"status": "completed"
},
"tags": []
},
"outputs": [
{
"data": {
"text/plain": [
"{'l2norm': 0.9021490229201379, 'hartmann6': -2.778408867998504}"
]
},
"execution_count": 5,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"means, covariances = values\n",
"means"
]
},
{
"cell_type": "markdown",
"id": "955143cc",
"metadata": {
"papermill": {
"duration": 0.044968,
"end_time": "2024-11-13T05:13:16.342693",
"exception": false,
"start_time": "2024-11-13T05:13:16.297725",
"status": "completed"
},
"tags": []
},
"source": [
"For comparison, minimum of Hartmann6 is:"
]
},
{
"cell_type": "code",
"execution_count": 6,
"id": "a170bfcb",
"metadata": {
"execution": {
"iopub.execute_input": "2024-11-13T05:13:16.434146Z",
"iopub.status.busy": "2024-11-13T05:13:16.433637Z",
"iopub.status.idle": "2024-11-13T05:13:16.438115Z",
"shell.execute_reply": "2024-11-13T05:13:16.437483Z"
},
"papermill": {
"duration": 0.051884,
"end_time": "2024-11-13T05:13:16.439438",
"exception": false,
"start_time": "2024-11-13T05:13:16.387554",
"status": "completed"
},
"tags": []
},
"outputs": [
{
"data": {
"text/plain": [
"-3.32237"
]
},
"execution_count": 6,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"hartmann6.fmin"
]
},
{
"cell_type": "markdown",
"id": "82eda241",
"metadata": {
"papermill": {
"duration": 0.045698,
"end_time": "2024-11-13T05:13:16.529935",
"exception": false,
"start_time": "2024-11-13T05:13:16.484237",
"status": "completed"
},
"tags": []
},
"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,
"id": "9eb1e29a",
"metadata": {
"execution": {
"iopub.execute_input": "2024-11-13T05:13:16.621876Z",
"iopub.status.busy": "2024-11-13T05:13:16.621412Z",
"iopub.status.idle": "2024-11-13T05:13:17.156383Z",
"shell.execute_reply": "2024-11-13T05:13:17.155723Z"
},
"papermill": {
"duration": 0.585965,
"end_time": "2024-11-13T05:13:17.161047",
"exception": false,
"start_time": "2024-11-13T05:13:16.575082",
"status": "completed"
},
"tags": []
},
"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.2944264494921254,
-2.2905387504400534,
-2.2851783163311774,
-2.2783538588387593,
-2.2700771205038897,
-2.2603628406492557,
-2.249228711121808,
-2.236695322052591,
-2.22278609786912,
-2.2075272238409553,
-2.1909475634831144,
-2.173078567184003,
-2.153954172464389,
-2.1336106963117007,
-2.112086720068807,
-2.089422967388836,
-2.0656621757969464,
-2.040848962426252,
-2.015029684518115,
-1.988252295296843,
-1.960566195845069,
-1.9320220836189148,
-1.9026717982513393,
-1.8725681652977733,
-1.8417648385803167,
-1.8103161417854028,
-1.7782769099650388,
-1.7457023315834534,
-1.7126477917394785,
-1.6791687171801963,
-1.645320423703732,
-1.6111579665281437,
-1.5767359941801762,
-1.5421086064314937,
-1.5073292167816854,
-1.4724504199569577,
-1.4375238648608846,
-1.4026001333795772,
-1.3677286254080738,
-1.3329574504279305,
-1.2983333259283114,
-1.263901482924353,
-1.2297055787876847,
-1.1957876175647286,
-1.1621878779192698,
-1.1289448487967868,
-1.0960951728695372,
-1.0636735977835836,
-1.031712935191921,
-1.0002440275221156
],
[
-2.383494928316253,
-2.379383723044727,
-2.373736910376813,
-2.3665636826191,
-2.3578763921044557,
-2.347690515307707,
-2.3360246063586585,
-2.3229002401504273,
-2.3083419452898597,
-2.292377127184227,
-2.2750359816039674,
-2.256351399105278,
-2.2363588607377043,
-2.2150963255011,
-2.192604110052878,
-2.168924761199944,
-2.144102921740263,
-2.1181851902465043,
-2.0912199754078644,
-2.06325734556696,
-2.034348874105344,
-2.00454748134461,
-1.9739072736395322,
-1.94248338034559,
-1.9103317893453904,
-1.877509181816939,
-1.8440727669215833,
-1.8100801170808325,
-1.7755890044989928,
-1.7406572395732294,
-1.7053425118139476,
-1.66970223387672,
-1.6337933892824898,
-1.597672384375601,
-1.5613949050395655,
-1.525015778658614,
-1.4885888417793034,
-1.4521668138907238,
-1.4158011777048052,
-1.3795420662798723,
-1.3434381572910565,
-1.3075365747112357,
-1.2718827981253404,
-1.236520579860139,
-1.2014918700706305,
-1.1668367498836056,
-1.1325933726587425,
-1.098797913388234,
-1.0654845262173358,
-1.0326853100309232
],
[
-2.463914824481579,
-2.4595818980346866,
-2.453656323196057,
-2.446147759351518,
-2.4370691433663536,
-2.426436651982913,
-2.4142696532228314,
-2.400590647000895,
-2.385425195208062,
-2.368801841570411,
-2.350752021638046,
-2.331309963303399,
-2.3105125782914726,
-2.288399345105066,
-2.2650121839457693,
-2.240395324166289,
-2.214595164841335,
-2.187660129072432,
-2.159640512666817,
-2.1305883278518225,
-2.1005571427033827,
-2.069601916981161,
-2.0377788350723893,
-2.0051451367527466,
-1.9717589464744156,
-1.9376791018900708,
-1.9029649823158952,
-1.8676763378276875,
-1.8318731196714535,
-1.7956153126536547,
-1.7589627701569213,
-1.7219750524044364,
-1.6847112685706307,
-1.6472299233076044,
-1.6095887682258985,
-1.571844658834971,
-1.5340534174137996,
-1.4962697022447657,
-1.4585468836055964,
-1.4209369268741896,
-1.3834902830602362,
-1.3462557870359515,
-1.3092805636959017,
-1.27260994223368,
-1.2362873786805448,
-1.2003543868091704,
-1.1648504774638995,
-1.1298131063379975,
-1.095277630178506,
-1.061277271360493
],
[
-2.534717512946701,
-2.5301660677395983,
-2.5239714275578624,
-2.5161437016100807,
-2.506696380992847,
-2.4956462994659168,
-2.483013582882524,
-2.4688215874901576,
-2.4530968273694427,
-2.435868891329231,
-2.417170349625078,
-2.3970366509149166,
-2.375506009910108,
-2.352619286221938,
-2.3284198549424264,
-2.3029534695340956,
-2.2762681176359703,
-2.2484138704220173,
-2.2194427261737912,
-2.1894084487506777,
-2.15836640165906,
-2.1263733784356917,
-2.0934874300705353,
-2.059767690200481,
-2.0252741988072875,
-1.9900677251513206,
-1.9542095906669343,
-1.9177614925357622,
-1.8807853286409961,
-1.8433430245889606,
-1.8054963634641255,
-1.7673068189602414,
-1.7288353925039304,
-1.6901424549576878,
-1.6512875934574094,
-1.612329463905286,
-1.573325649602502,
-1.534332526467916,
-1.4954051352490558,
-1.4565970610904961,
-1.4179603207824802,
-1.379545257969557,
-1.3414004465554143,
-1.3035726024963141,
-1.2661065041316768,
-1.229044921156898,
-1.1924285523004186,
-1.156295971724929,
-1.1206835841313003,
-1.0856255885038903
],
[
-2.5950452701134727,
-2.5902799379739596,
-2.5838279474068653,
-2.575699836592177,
-2.5659096157709893,
-2.554474726508655,
-2.5414159893107726,
-2.526757539814966,
-2.510526753835104,
-2.492754161586533,
-2.47347335147108,
-2.452720863848505,
-2.4305360752666516,
-2.4069610736653306,
-2.38204052510884,
-2.3558215326387124,
-2.3283534878715786,
-2.2996879159967527,
-2.269878314854263,
-2.23897998879609,
-2.207049878051752,
-2.1741463843335618,
-2.1403291934270277,
-2.1056590955179577,
-2.070197804009877,
-2.034007773583264,
-1.9971520182421474,
-1.9596939300836682,
-1.921697099512572,
-1.8832251376051015,
-1.8443415013061777,
-1.805109322119323,
-1.765591238921746,
-1.7258492355066717,
-1.6859444834222335,
-1.6459371906409572,
-1.6058864565563116,
-1.5658501337636082,
-1.5258846970412772,
-1.4860451199063842,
-1.446384759074644,
-1.4069552471109317,
-1.3678063935115912,
-1.328986094414652,
-1.290540251089198,
-1.2525126973102918,
-1.2149451356818055,
-1.1778770829260312,
-1.1413458241167267,
-1.1053863757910887
],
[
-2.644167628704091,
-2.639194465346554,
-2.632498766523141,
-2.6240914750983757,
-2.6139870809155004,
-2.6022035786718547,
-2.5887624138952443,
-2.5736884172512102,
-2.557009727465799,
-2.5387577032016084,
-2.5189668242760295,
-2.497674582659584,
-2.47492136373868,
-2.4507503183708597,
-2.4252072263012217,
-2.398340351546081,
-2.370200290383916,
-2.340839812623898,
-2.3103136968487785,
-2.278678560351566,
-2.245992684503781,
-2.2123158363076594,
-2.1777090868948585,
-2.142234627740266,
-2.105955585361542,
-2.0689358352726965,
-2.0312398159538123,
-1.9929323435887047,
-1.9540784283081978,
-1.9147430926589002,
-1.874991192995816,
-1.834887244472484,
-1.7944952502742313,
-1.7538785357091906,
-1.7130995877381534,
-1.6722199004879856,
-1.631299827255153,
-1.590398439465421,
-1.5495733930138513,
-1.5088808023658535,
-1.468375122755499,
-1.428109040772049,
-1.3881333735797887,
-1.3484969769702164,
-1.3092466623995478,
-1.270427123118854,
-1.232080869458907,
-1.1942481732875347,
-1.1569670216140169,
-1.1202730792730673
],
[
-2.6814952688973714,
-2.6763217307494234,
-2.669397774935872,
-2.660734721491977,
-2.650347496263559,
-2.6382545875312884,
-2.624477990537433,
-2.6090431401509937,
-2.591978831962802,
-2.573317132156131,
-2.5530932765503414,
-2.531345559264929,
-2.5081152114984,
-2.4834462709608403,
-2.457385442540283,
-2.4299819508208778,
-2.401287385105332,
-2.371355537624778,
-2.340242235646027,
-2.3080051682089637,
-2.274703708245668,
-2.2403987308472404,
-2.2051524284546824,
-2.169028123756248,
-2.132090081075457,
-2.094403317031573,
-2.0560334112478755,
-2.0170463178723765,
-1.97750817866123,
-1.9374851383567773,
-1.897043163070138,
-1.8562478623530598,
-1.8151643156150514,
-1.7738569035102498,
-1.7323891448840656,
-1.690823539832858,
-1.6492214193906243,
-1.607642802315675,
-1.5661462594074083,
-1.5247887857390787,
-1.4836256811471826,
-1.4427104392718757,
-1.4020946453962044,
-1.361827883285021,
-1.3219576511775915,
-1.2825292870413456,
-1.2435859031482916,
-1.20516832999053,
-1.1673150695072387,
-1.1300622575528956
],
[
-2.706591087366139,
-2.7012259910302054,
-2.6940908956991114,
-2.685197468092159,
-2.674561022859832,
-2.662200478104734,
-2.6481382986618174,
-2.6324004273789408,
-2.6150162046951153,
-2.596018276868386,
-2.575442493257873,
-2.5533277931148097,
-2.529716082385094,
-2.504652101070719,
-2.4781832817390415,
-2.4503595998072827,
-2.4212334162642293,
-2.390859313522169,
-2.3592939251191574,
-2.326595760014501,
-2.292825022239408,
-2.2580434266791123,
-2.2223140117732307,
-2.1857009499269235,
-2.148269356427339,
-2.1100850976570036,
-2.0712145993892888,
-2.0317246559400743,
-1.9916822409350046,
-1.9511543204329698,
-1.9102076691242718,
-1.8689086902959047,
-1.827323240227547,
-1.785516457649558,
-1.7435525988594454,
-1.7014948790558164,
-1.659405320409016,
-1.6173446073460536,
-1.5753719494838707,
-1.5335449526002352,
-1.4919194979855446,
-1.450549630472091,
-1.4094874553899503,
-1.3687830446512133,
-1.3284843521167176,
-1.28863713835234,
-1.2492849048353487,
-1.2104688376256272,
-1.172227760472074,
-1.1345980972812026
],
[
-2.719178163048654,
-2.7136316280361306,
-2.7063040117637827,
-2.697207294470088,
-2.6863571293245134,
-2.673772797002257,
-2.6594771479318196,
-2.6434965324606354,
-2.625860719240716,
-2.606602802191098,
-2.585759096446936,
-2.56336902375565,
-2.5394749878285316,
-2.5141222402012406,
-2.4873587371985764,
-2.4592349886373506,
-2.4298038989361164,
-2.3991206013314743,
-2.3672422859279902,
-2.33422802233152,
-2.3001385776347294,
-2.2650362305381373,
-2.228984582400087,
-2.1920483660150616,
-2.1542932529213026,
-2.1157856600358294,
-2.0765925564081327,
-2.0367812708727007,
-1.9964193013653333,
-1.9555741266494011,
-1.914313021175457,
-1.8727028737714846,
-1.8308100108316763,
-1.7887000246390317,
-1.746437607421928,
-1.704086391706723,
-1.6617087974885296,
-1.6193658866999998,
-1.577117225414117,
-1.535020754171796,
-1.4931326667786122,
-1.4515072978677674,
-1.4101970194787592,
-1.3692521468531438,
-1.3287208536009703,
-1.28864909634387,
-1.2490805488939125,
-1.2100565459812382,
-1.171616036498605,
-1.1337955461874554
],
[
-2.7191444247093335,
-2.7134278004228203,
-2.705927598809419,
-2.696656078113647,
-2.685629177202748,
-2.672866469360023,
-2.6583911037219545,
-2.6422297346075023,
-2.624412439044805,
-2.604972622855469,
-2.5839469157098893,
-2.5613750556174883,
-2.5372997633639907,
-2.511766607452863,
-2.484823860149982,
-2.456522345269146,
-2.4269152783707804,
-2.396058100077383,
-2.364008303236216,
-2.330825254682666,
-2.296570012376558,
-2.2613051386979457,
-2.2250945106992157,
-2.1880031281158594,
-2.150096919939836,
-2.111442550356455,
-2.072107224838565,
-2.0321584971805886,
-1.9916640782396111,
-1.9506916471316103,
-1.9093086656079459,
-1.8675821963110175,
-1.8255787255781522,
-1.783363991430163,
-1.7410028173454584,
-1.6985589523823912,
-1.6560949181722862,
-1.6136718632630378,
-1.5713494252491924,
-1.5291856010788711,
-1.4872366258812395,
-1.445556860610856,
-1.404198688757225,
-1.3632124223197541,
-1.3226462172002096,
-1.2825459981170368,
-1.2429553930988144,
-1.2039156775678852,
-1.1654657279802212,
-1.1276419849437844
],
[
-2.7065439175650443,
-2.700669695814433,
-2.6930179620030525,
-2.6836012148787614,
-2.6724356242328096,
-2.6595409840824282,
-2.644940653525416,
-2.6286614855172727,
-2.6107337438780753,
-2.5911910088912027,
-2.5700700719090417,
-2.547410819431195,
-2.523256107168657,
-2.4976516246523923,
-2.470645750986411,
-2.4422894023838726,
-2.412635872159317,
-2.3817406638810414,
-2.349661318414546,
-2.316457235610645,
-2.2821894914104353,
-2.2469206511536113,
-2.210714579886446,
-2.1736362504713638,
-2.1357515503012907,
-2.097127087418828,
-2.057829996833064,
-2.017927747815328,
-1.9774879529398883,
-1.9365781796160764,
-1.8952657648355842,
-1.85361763383199,
-1.8117001233198753,
-1.7695788099480936,
-1.7273183445660154,
-1.684982292863529,
-1.6426329829049688,
-1.600331360034854,
-1.5581368495890238,
-1.516107227799338,
-1.474298501233413,
-1.4327647950633873,
-1.3915582504098218,
-1.3507289309586559,
-1.3103247390010544,
-1.2703913409982999,
-1.2309721027268168,
-1.1921080340122499,
-1.153837743016513,
-1.1161973999981263
],
[
-2.6815946612165567,
-2.675576375828482,
-2.6677950694786787,
-2.6582634423068114,
-2.6469978389041735,
-2.634018201060155,
-2.61934800826531,
-2.6030142062227273,
-2.5850471236755883,
-2.5654803779134205,
-2.544350769372076,
-2.521698165792521,
-2.497565376451119,
-2.4719980170186564,
-2.445044365646604,
-2.4167552109172785,
-2.3871836923287617,
-2.356385134016013,
-2.3244168724362027,
-2.291338078768722,
-2.257209576798626,
-2.222093657066317,
-2.186053888075809,
-2.1491549253595084,
-2.1114623191982913,
-2.0730423217925376,
-2.033961694672342,
-1.9942875171235392,
-1.9540869963907457,
-1.9134272803991745,
-1.872375273714053,
-1.830997457429894,
-1.789359713652169,
-1.7475271552011797,
-1.7055639611322455,
-1.663533218628357,
-1.6214967717810302,
-1.5795150777327804,
-1.537647070610713,
-1.49595003363522,
-1.4544794797415033,
-1.4132890410041679,
-1.372430367107571,
-1.331953033056605,
-1.2919044562747262,
-1.252329823188639,
-1.2132720253521803,
-1.1747716051160357,
-1.1368667108052213,
-1.0995930613228233
],
[
-2.644673185489558,
-2.638525300798663,
-2.6306370695425647,
-2.6210213529278845,
-2.6096946134819214,
-2.596676867539547,
-2.5819916256262534,
-2.565665820989048,
-2.5477297265826184,
-2.528216860872024,
-2.507163882865158,
-2.4846104768376494,
-2.460599227259883,
-2.4351754844797666,
-2.4083872217556546,
-2.380284884271413,
-2.3509212307993006,
-2.3203511687065395,
-2.2886315830275095,
-2.255821160345652,
-2.2219802082469546,
-2.187170471120792,
-2.151454943093076,
-2.114897678882023,
-2.07756360336752,
-2.03951832066184,
-2.0008279234618547,
-1.9615588034512992,
-1.92177746350619,
-1.8815503324370486,
-1.8409435829787577,
-1.8000229537124042,
-1.758853575573911,
-1.7174998035716393,
-1.6760250542998296,
-1.634491649796824,
-1.592960668257081,
-1.5514918020638908,
-1.5101432235660956,
-1.4689714589771004,
-1.428031270728363,
-1.3873755485627233,
-1.3470552096055959,
-1.307119107604549,
-1.2676139514803835,
-1.2285842332858068,
-1.1900721656214248,
-1.1521176285133083,
-1.11475812571209,
-1.0780287503306227
],
[
-2.5963059212714703,
-2.5900437114600643,
-2.5820716689285486,
-2.572402774815565,
-2.5610535525865896,
-2.5480440204379495,
-2.5333976317891445,
-2.517141204114325,
-2.4993048364183745,
-2.4799218157163514,
-2.4590285129258485,
-2.4366642686306976,
-2.412871269220519,
-2.3876944139537857,
-2.361181173532273,
-2.333381440811441,
-2.3043473743045446,
-2.2741332351677537,
-2.2427952183790834,
-2.210391278845666,
-2.176980953191209,
-2.14262517798897,
-2.107386105214539,
-2.0713269156977114,
-2.0345116313533023,
-1.9970049269673185,
-1.9588719423073038,
-1.9201780953140057,
-1.8809888971161017,
-1.8413697695905094,
-1.801385866167928,
-1.7611018965572152,
-1.720581956032804,
-1.6798893598971012,
-1.6390864836948245,
-1.5982346097188334,
-1.5573937803073954,
-1.516622658391301,
-1.4759783957061199,
-1.4355165090404656,
-1.3952907648455517,
-1.3553530724851794,
-1.3157533863584707,
-1.2765396170808851,
-1.2377575518622206,
-1.1994507841739424,
-1.161660652752472,
-1.1244261899402013,
-1.0877840793223568,
-1.0517686225755418
],
[
-2.537157706938993,
-2.530797128314218,
-2.5227646327690154,
-2.513073279832534,
-2.501739597368211,
-2.4887835340698183,
-2.474228400287826,
-2.4581007974349385,
-2.440430536273342,
-2.4212505444381565,
-2.400596763601583,
-2.378508036729878,
-2.3550259859304847,
-2.330194881428879,
-2.3040615022539264,
-2.2766749892463984,
-2.248086691037885,
-2.2183500036758756,
-2.187520204595916,
-2.155654281662665,
-2.122810758018658,
-2.0890495134925184,
-2.0544316033270453,
-2.019019074992264,
-1.9828747838489171,
-1.946062208424374,
-1.9086452660551358,
-1.8706881296387239,
-1.832255046222183,
-1.7934101581356128,
-1.754217327356379,
-1.714739963764045,
-1.6750408579169571,
-1.6351820189496757,
-1.5952245181559745,
-1.5552283387852373,
-1.5152522325411213,
-1.4753535832304825,
-1.4355882779681712,
-1.3960105862994725,
-1.356673047557393,
-1.3176263667263308,
-1.2789193190379413,
-1.240598663478824,
-1.2027090653437744,
-1.1652930279227711,
-1.12839083336498,
-1.0920404927190375,
-1.0562777051060155,
-1.021135825939969
],
[
-2.468017744738357,
-2.4615753031007954,
-2.4535057405485623,
-2.443822153450073,
-2.432541018550216,
-2.4196821457297037,
-2.4052686193832242,
-2.3893267286623026,
-2.3718858868812145,
-2.3529785404349077,
-2.3326400676266976,
-2.310908667849877,
-2.28782524161143,
-2.263433261927114,
-2.2377786376554707,
-2.210909569373096,
-2.1828763984251767,
-2.153731449813135,
-2.123528869605428,
-2.0923244575779485,
-2.0601754958068015,
-2.0271405739487527,
-1.9932794119528296,
-1.95865268095107,
-1.9233218230764875,
-1.8873488709527368,
-1.850796267592247,
-1.8137266874281086,
-1.7762028591898074,
-1.7382873913141719,
-1.7000426005606442,
-1.6615303444746328,
-1.62281185831425,
-1.5839475970245003,
-1.5449970828091517,
-1.5060187588143852,
-1.46706984940009,
-1.428206227434631,
-1.389482289007351,
-1.3509508359102378,
-1.3126629661964015,
-1.2746679730784654,
-1.237013252385083,
-1.1997442187487022,
-1.1629042306528108,
-1.1265345244222482,
-1.0906741571963972,
-1.0553599588819265,
-1.02062649303997,
-0.9865060266220009
],
[
-2.3897834031677547,
-2.3832760184319266,
-2.3751925938366156,
-2.365546221412341,
-2.354353272823861,
-2.341633352558949,
-2.3274092400669204,
-2.3117068210890914,
-2.2945550084741138,
-2.2759856528203937,
-2.25603344333505,
-2.2347357993439667,
-2.2121327529301515,
-2.1882668232174303,
-2.1631828828536266,
-2.136928017281061,
-2.109551377412805,
-2.0811040263600264,
-2.0516387808792516,
-2.021210048227823,
-1.9898736591317585,
-1.9576866975819955,
-1.9247073281829834,
-1.8909946217816052,
-1.8566083801043887,
-1.8216089601273062,
-1.7860570988946902,
-1.7500137394924837,
-1.7135398588660964,
-1.6766962981547193,
-1.639543596192091,
-1.602141826798972,
-1.5645504404646382,
-1.5268281109842299,
-1.4890325875856871,
-1.4512205530447746,
-1.4134474882492527,
-1.3757675436343486,
-1.3382334178709576,
-1.300896244146383,
-1.263805484334613,
-1.2270088313098018,
-1.1905521196128352,
-1.1544792446369498,
-1.1188320904546063,
-1.083650466364438,
-1.0489720521943575,
-1.014832352355021,
-0.9812646585970998,
-0.9483000213863433
],
[
-2.3034423092007965,
-2.296887179377987,
-2.2888127192393837,
-2.279231976039058,
-2.268161164443237,
-2.2556196203077254,
-2.2416297437743795,
-2.2262169319240623,
-2.2094095012727073,
-2.191238600444662,
-2.171738113403089,
-2.150944553660933,
-2.128896949936873,
-2.105636723759429,
-2.081207559557872,
-2.0556552678112805,
-2.0290276418564774,
-2.0013743089814477,
-1.9727465764534151,
-1.9431972731494873,
-1.9127805874728843,
-1.8815519022491167,
-1.8495676273039297,
-1.8168850304285666,
-1.7835620674377117,
-1.7496572120216438,
-1.7152292860865295,
-1.680337291265617,
-1.6450402422693136,
-1.6093970027243027,
-1.57346612413034,
-1.5373056885393246,
-1.5009731555340076,
-1.4645252140539728,
-1.4280176395843762,
-1.391505157188599,
-1.3550413108296298,
-1.318678339387123,
-1.2824670597375807,
-1.246456757224605,
-1.2106950838046828,
-1.1752279641118697,
-1.1400995096422104,
-1.1053519412162323,
-1.071025519835273,
-1.0371584860054472,
-1.0037870075615496,
-0.9709451359826169,
-0.9386647711514087,
-0.9069756344717961
],
[
-2.210053206844018,
-2.203467673395163,
-2.1954244425376914,
-2.1859364773895207,
-2.1750197861812657,
-2.1626933767733965,
-2.148979200895364,
-2.1339020883386475,
-2.1174896713830096,
-2.0997722997809634,
-2.0807829466694234,
-2.060557105819395,
-2.039132680674073,
-2.016549865662781,
-1.9928510203123189,
-1.9680805367086927,
-1.9422847008902722,
-1.915511548778298,
-1.8878107172721832,
-1.8592332911549903,
-1.829831646468794,
-1.7996592910304356,
-1.7687707027651434,
-1.737221166538916,
-1.7050666101702001,
-1.6723634402974863,
-1.6391683787719256,
-1.6055383002331216,
-1.5715300715118379,
-1.5372003934859084,
-1.5026056459948371,
-1.4678017363950775,
-1.4328439523116456,
-1.397786819112869,
-1.3626839626038976,
-1.3275879774013521,
-1.2925503014163562,
-1.2576210968364345,
-1.2228491379586792,
-1.1882817061873099,
-1.1539644924687154,
-1.1199415073963017,
-1.0862549991764723,
-1.0529453796058834,
-1.0200511581691152,
-0.9876088843252893,
-0.9556530980121439,
-0.9242162883568844,
-0.8933288605450792,
-0.8630191107619092
],
[
-2.1107260754180435,
-2.104127491834479,
-2.096137026768112,
-2.086767521231226,
-2.076034730445823,
-2.0639572792421808,
-2.0505566076111084,
-2.035856906635657,
-2.0198850450732606,
-2.00267048690327,
-1.9842452001968225,
-1.9646435577060655,
-1.9439022296076784,
-1.9220600688709413,
-1.8991579897533526,
-1.8752388399566864,
-1.8503472670032315,
-1.8245295794156666,
-1.797833603304489,
-1.7703085349839518,
-1.7420047902510793,
-1.7129738509724604,
-1.6832681096300601,
-1.6529407124803215,
-1.6220454019804023,
-1.5906363591313015,
-1.5587680463803237,
-1.5264950517146159,
-1.4938719345634461,
-1.4609530741099515,
-1.4277925205930013,
-1.3944438501570164,
-1.3609600237821362,
-1.3273932507993158,
-1.293794857464775,
-1.260215161036187,
-1.2267033497590998,
-1.1933073691367104,
-1.1600738148192864,
-1.1270478324118878,
-1.0942730244602963,
-1.0617913648359911,
-1.0296431207014267,
-0.9978667821973117,
-0.9664989999541452,
-0.9355745304911759,
-0.9051261895275008,
-0.8751848131923752,
-0.8457792270851521,
-0.8169362230998767
],
[
-2.0066020020900703,
-2.0000076073699153,
-1.9920905680615462,
-1.9828635667713765,
-1.9723420623272587,
-1.9605442461896845,
-1.9474909894722463,
-1.9332057807901646,
-1.9177146551989102,
-1.9010461145268147,
-1.8832310394456406,
-1.8643025936612865,
-1.844296120642844,
-1.823249033341957,
-1.801200697385472,
-1.778192308252918,
-1.7542667629757043,
-1.7294685269175893,
-1.7038434962152265,
-1.6774388564737932,
-1.650302938325484,
-1.6224850704681772,
-1.5940354308076432,
-1.5650048963293708,
-1.5354448923254707,
-1.5054072415980553,
-1.4749440142532966,
-1.4441073786898886,
-1.412949454372126,
-1.38152216696132,
-1.3498771063599175,
-1.3180653882007833,
-1.286137519289531,
-1.2541432674810467,
-1.2221315364424041,
-1.1901502457235664,
-1.1582462165247012,
-1.1264650635149973,
-1.0948510930225819,
-1.0634472078789483,
-1.0322948191642145,
-1.0014337650620468,
-0.9709022369951675,
-0.9407367131744448,
-0.9109718996567902,
-0.8816406789696433,
-0.8527740663230295,
-0.8244011733941046,
-0.7965491796340611,
-0.7692433110133611
],
[
-1.898833289159907,
-1.8922600876262026,
-1.8844361289739895,
-1.8753739030168803,
-1.8650885322522779,
-1.853597729405211,
-1.8409217460557452,
-1.827083312561225,
-1.8121075695257505,
-1.7960219911089461,
-1.7788563005041773,
-1.7606423779526175,
-1.7414141616937089,
-1.7212075422845587,
-1.700060250750226,
-1.6780117410538198,
-1.6551030673993763,
-1.6313767569018214,
-1.6068766781765218,
-1.5816479064161455,
-1.5557365855345608,
-1.5291897879663732,
-1.502055372716245,
-1.474381842254658,
-1.4462181988557963,
-1.4176138009694177,
-1.388618220211338,
-1.3592810995471327,
-1.329652013230516,
-1.2997803290420777,
-1.2697150733553695,
-1.2395047995363577,
-1.209197460158677,
-1.1788402834915268,
-1.1484796546893161,
-1.1181610020826902,
-1.0879286889394577,
-1.0578259110314454,
-1.0278946003096423,
-0.9981753349553417,
-0.9687072560396854,
-0.9395279909881069,
-0.9106735840100576,
-0.8821784336181857,
-0.8540752373251048,
-0.8263949435701781,
-0.7991667108936485,
-0.7724178743410648,
-0.7461739190475558,
-0.7204584609191864
],
[
-1.788564248557304,
-1.7820288972198153,
-1.774316560973482,
-1.765439504572922,
-1.7554124778974205,
-1.7442526747355096,
-1.731979683141121,
-1.718615427564588,
-1.7041841030006146,
-1.6887121014328244,
-1.672227930890522,
-1.6547621274675373,
-1.6363471606852535,
-1.6170173326120676,
-1.596808671179342,
-1.5757588181592466,
-1.5539069122925633,
-1.5312934680745653,
-1.5079602507241832,
-1.4839501478758863,
-1.4593070385449562,
-1.4340756599250175,
-1.4083014725818157,
-1.382030524609341,
-1.3553093153134208,
-1.3281846589839672,
-1.3007035493101236,
-1.272913024982807,
-1.244860037016574,
-1.2165913183075112,
-1.1881532559260675,
-1.1595917666236157,
-1.1309521760090666,
-1.102279101827403,
-1.073616341745577,
-1.0450067660231304,
-1.0164922154152467,
-0.9881134046250384,
-0.9599098315897888,
-0.9319196928529683,
-0.9041798052401664,
-0.8767255340230619,
-0.8495907277210937,
-0.822807659656207,
-0.7964069763417065,
-0.7704176527523674,
-0.7448669544896667,
-0.7197804068232642,
-0.6951817705582378,
-0.6710930246468567
],
[
-1.6769130955641516,
-1.6704317999698566,
-1.662848427304795,
-1.6541749872892482,
-1.6444258246831258,
-1.6336175794070538,
-1.6217691387318562,
-1.60890158173123,
-1.5950381162289875,
-1.5802040085075344,
-1.5644265060781393,
-1.54773475384571,
-1.5301597040311394,
-1.5117340202425473,
-1.4924919761129027,
-1.4724693489452256,
-1.4517033088278435,
-1.43023230370094,
-1.408095940871552,
-1.3853348654874924,
-1.3619906364910839,
-1.3381056005811212,
-1.3137227647161853,
-1.2888856676942098,
-1.263638251342143,
-1.2380247318455848,
-1.2120894717416342,
-1.1858768530887462,
-1.1594311523153813,
-1.1327964172346898,
-1.1060163466955337,
-1.0791341733209432,
-1.052192549763799,
-1.025233438886227,
-0.9982980082441886,
-0.9714265292320025,
-0.9446582812134734,
-0.9180314609369729,
-0.8915830975014207,
-0.8653489731089189,
-0.8393635498079303,
-0.8136599023986076,
-0.7882696576393637,
-0.7632229398611816,
-0.7385483230637824,
-0.7142727895356757,
-0.6904216950085689,
-0.6670187403257783,
-0.644085949574259,
-0.6216436546009289
],
[
-1.5649553029379808,
-1.5585437221952763,
-1.551105386644427,
-1.5426520234197794,
-1.533197543525275,
-1.522758003375237,
-1.5113515589044306,
-1.498998412433318,
-1.4857207525088216,
-1.4715426869738666,
-1.4564901695507868,
-1.4405909202537424,
-1.4238743399737106,
-1.4063714196060593,
-1.3881146441151007,
-1.3691378919522186,
-1.3494763302639772,
-1.3291663063441166,
-1.308245235798112,
-1.286751487901373,
-1.2647242686417006,
-1.2422035019436355,
-1.2192297095764806,
-1.1958438902493562,
-1.172087398395419,
-1.1480018231435494,
-1.1236288679693232,
-1.0990102315081078,
-1.074187490001631,
-1.0492019818355445,
-1.0240946946094218,
-0.9989061551624426,
-0.9736763229577906,
-0.9484444872068063,
-0.9232491680901997,
-0.8981280224084478,
-0.8731177539669145,
-0.8482540289735768,
-0.8235713966985299,
-0.7991032156150026,
-0.774881585211566,
-0.7509372836347797,
-0.7272997112908075,
-0.7039968405038948,
-0.6810551712989873,
-0.6584996933456032,
-0.636353854070316,
-0.6146395329161466,
-0.5933770216989384,
-0.572585010983488
],
[
-1.4537087176723666,
-1.4473818790804798,
-1.4401033390701587,
-1.4318845171586436,
-1.4227388658440523,
-1.41268183363642,
-1.401730821158404,
-1.389905130492508,
-1.3772259079836653,
-1.363716080736884,
-1.349400287079225,
-1.33430480128348,
-1.3184574528773125,
-1.3018875408862898,
-1.2846257433819273,
-1.2667040227264335,
-1.2481555269243556,
-1.229014487507386,
-1.20931611439246,
-1.189096488164512,
-1.1683924502442173,
-1.1472414914072866,
-1.125681639125753,
-1.103751344202872,
-1.0814893671720138,
-1.0589346649261804,
-1.036126278038534,
-1.0131032192257374,
-0.9899043633950403,
-0.9665683397029284,
-0.9431334260379264,
-0.9196374463230076,
-0.8961176710139642,
-0.8726107211493856,
-0.8491524762855237,
-0.8257779866256276,
-0.8025213896283243,
-0.7794158313536068,
-0.7564933927779817,
-0.7337850212827052,
-0.711320467490738,
-0.6891282275995152,
-0.6672354913277522,
-0.6456680955657376,
-0.6244504837898536,
-0.6036056712737139,
-0.5831552161004097,
-0.5631191959530978,
-0.5435161906346659,
-0.5243632702416379
],
[
-1.3441206780486468,
-1.3378929015251249,
-1.33078757136184,
-1.3228157770103017,
-1.3139904915699177,
-1.3043265363672996,
-1.2938405391009795,
-1.2825508857190393,
-1.2704776662269548,
-1.2576426146515207,
-1.2440690434142558,
-1.2297817723936741,
-1.2148070529803627,
-1.1991724874516116,
-1.1829069440133644,
-1.1660404678763228,
-1.1486041887500946,
-1.1306302251541531,
-1.1121515859570787,
-1.0932020695659945,
-1.07381616119615,
-1.0540289286564237,
-1.0338759170898562,
-1.0133930431093086,
-0.9926164887670904,
-0.9715825957936367,
-0.9503277605344267,
-0.9288883300061938,
-0.9073004994831196,
-0.8856002120113994,
-0.8638230602362359,
-0.8420041909091376,
-0.8201782124255412,
-0.79837910572327,
-0.7766401388514271,
-0.7549937854970453,
-0.7334716477334446,
-0.7121043832298238,
-0.6909216371363693,
-0.6699519788332822,
-0.6492228437056691,
-0.6287604800794875,
-0.6085899014268097,
-0.5887348439216998,
-0.569217729401168,
-0.5500596337591833,
-0.5312802607756308,
-0.5128979213566243,
-0.4949295181378343,
-0.4773905353785953
],
[
-1.2370573009365806,
-1.2309421332196413,
-1.224022071044069,
-1.216307853959352,
-1.20781195855386,
-1.1985485646281324,
-1.1885335154207795,
-1.1777842720450773,
-1.1663198623218394,
-1.1541608242206178,
-1.141329144146683,
-1.1278481903352628,
-1.1137426416371792,
-1.0990384120010506,
-1.083762570976636,
-1.067943260581431,
-1.051609608888329,
-1.0347916407058388,
-1.0175201857339828,
-0.9998267845885497,
-0.9817435930937302,
-0.9633032852483413,
-0.9445389552738905,
-0.9254840191534472,
-0.9061721160689795,
-0.8866370101412052,
-0.8669124928703962,
-0.8470322866688518,
-0.8270299498660308,
-0.8069387835557772,
-0.7867917406416117,
-0.7666213374209484,
-0.7464595680323597,
-0.7263378220718124,
-0.7062868056642286,
-0.6863364662559619,
-0.6665159213719651,
-0.6468533915585989,
-0.6273761377095728,
-0.6081104029483081,
-0.5890813592153696,
-0.5703130586847389,
-0.5518283901075244,
-0.5336490401566516,
-0.5157954598210639,
-0.4982868358733034,
-0.48114106741004475,
-0.4643747474414327,
-0.44800314948207176,
-0.43204021907422074
],
[
-1.133295040968385,
-1.127305199383567,
-1.1205811103519188,
-1.1131331462972165,
-1.104973273847747,
-1.096115021637376,
-1.0865734426344595,
-1.076365071147136,
-1.0655078746789142,
-1.054021200832815,
-1.0419257194856644,
-1.02924336047628,
-1.0159972470720682,
-1.002211625497908,
-0.9879117908289735,
-0.9731240095652538,
-0.957875439219887,
-0.942194045265965,
-0.9261085157970539,
-0.9096481742653912,
-0.8928428906683641,
-0.8757229915585605,
-0.8583191692552972,
-0.8406623906361513,
-0.8227838058855872,
-0.8047146575743701,
-0.7864861904381074,
-0.7681295622160078,
-0.7496757559018256,
-0.731155493748157,
-0.7125991533526771,
-0.6940366861408496,
-0.6754975385440046,
-0.6570105761547872,
-0.6386040111237572,
-0.6203053330416161,
-0.6021412435312592,
-0.5841375947526873,
-0.566319332001973,
-0.5487104405630159,
-0.5313338969480125,
-0.5142116246393575,
-0.4973644544224632,
-0.48081208937563785,
-0.4645730745600167,
-0.4486647714296378,
-0.43310333695923253,
-0.41790370746531236,
-0.40307958707475383,
-0.38864344077449287
],
[
-1.0335145565761275,
-1.0276618820024566,
-1.0211431347779356,
-1.0139683055632989,
-1.0061488410890347,
-0.9976976136066293,
-0.9886288853278032,
-0.9789582679907944,
-0.9687026777159611,
-0.9578802853353003,
-0.9465104624018914,
-0.9346137231054682,
-0.9222116623394045,
-0.9093268901820699,
-0.8959829630717283,
-0.8822043119689077,
-0.8680161678132319,
-0.853444484593117,
-0.8385158603563875,
-0.8232574564977311,
-0.8076969156649305,
-0.7918622786299866,
-0.7757819004735353,
-0.759484366431418,
-0.7429984077508022,
-0.7263528179000321,
-0.7095763694713387,
-0.6926977321087107,
-0.6757453917847918,
-0.6587475717405509,
-0.6417321553898035,
-0.6247266114776353,
-0.6077579217672581,
-0.5908525115141747,
-0.5740361829696664,
-0.5573340521377362,
-0.5407704889908733,
-0.5243690613304439,
-0.508152482457282,
-0.4921425627973313,
-0.47636016560604955,
-0.4608251668538819,
-0.44555641937359586,
-0.4305717213287357,
-0.41588778904103046,
-0.40152023419345034,
-0.3874835454047818,
-0.3737910741512913,
-0.36045502499129045,
-0.3474864500293803
],
[
-0.9382968550516712,
-0.9325922736045282,
-0.9262869281426481,
-0.9193904154633862,
-0.9119136557927896,
-0.9038688638986077,
-0.8952695156337319,
-0.8861303100397272,
-0.8764671271612039,
-0.8662969817422529,
-0.8556379729955806,
-0.8445092306534591,
-0.8329308575269705,
-0.8209238688160604,
-0.8085101284277714,
-0.7957122825733289,
-0.7825536909266753,
-0.7690583556373825,
-0.7552508484996023,
-0.7411562365858118,
-0.7268000066595154,
-0.7122079886847853,
-0.697406278752509,
-0.6824211617435193,
-0.6672790340473449,
-0.6520063266522715,
-0.6366294289176283,
-0.6211746133329279,
-0.6056679615605873,
-0.5901352920496119,
-0.5746020894968598,
-0.5590934364203933,
-0.5436339470961052,
-0.5282477040943085,
-0.5129581976374359,
-0.4977882679835494,
-0.4827600510230201,
-0.4678949272577444,
-0.4532134743136407,
-0.43873542311804287,
-0.4244796178541988,
-0.4104639797853368,
-0.3967054750209646,
-0.3832200862782496,
-0.37002278867160804,
-0.3571275295441573,
-0.34454721233554503,
-0.33229368446194374,
-0.3203777291658623,
-0.30880906127585994
],
[
-0.8481216315678323,
-0.8425751244346955,
-0.8364899690233469,
-0.8298753586352288,
-0.8227416835141669,
-0.8151005036225447,
-0.80696451727051,
-0.7983475257184823,
-0.7892643938925359,
-0.7797310073706677,
-0.7697642258157206,
-0.7593818330473947,
-0.7486024839615685,
-0.7374456485197093,
-0.7259315530445245,
-0.7140811190701467,
-0.7019159000058517,
-0.6894580158816598,
-0.6767300864520579,
-0.6637551629404077,
-0.6505566587115168,
-0.6371582791630489,
-0.6235839511282766,
-0.6098577520827708,
-0.5960038394462842,
-0.5820463802681688,
-0.5680094815802641,
-0.5539171216953143,
-0.5397930827217363,
-0.5256608845568861,
-0.5115437206111061,
-0.4974643955036899,
-0.4834452649596256,
-0.4695081781227315,
-0.4556744224864612,
-0.4419646716285996,
-0.42839893592016415,
-0.41499651636230184,
-0.40177596168789254,
-0.38875502884706703,
-0.37595064697798025,
-0.36337888494614407,
-0.3510549225174363,
-0.3389930252117186,
-0.32720652286595087,
-0.3157077919178031,
-0.3045082414032149,
-0.29361830264420474,
-0.28304742258655,
-0.2728040607309066
],
[
-0.763367666945763,
-0.7579882477665707,
-0.752128843329226,
-0.7457982361889954,
-0.7390062860404835,
-0.7317639041489853,
-0.7240830240357808,
-0.715976568528503,
-0.707458413305145,
-0.6985433470769964,
-0.689247028571745,
-0.6795859404931531,
-0.6695773406478562,
-0.6592392104430341,
-0.6485902009707772,
-0.637649576905831,
-0.6264371584531397,
-0.6149732615899455,
-0.6032786368543104,
-0.5913744069375996,
-0.5792820033428153,
-0.5670231023735253,
-0.5546195607197002,
-0.5420933509067605,
-0.52946649687288,
-0.5167610099368249,
-0.5039988254145656,
-0.491201740137466,
-0.4783913511182049,
-0.4655889956026493,
-0.45281569273683886,
-0.4400920870680603,
-0.4274383940877574,
-0.41487434801189993,
-0.40241915198136746,
-0.39009143085110953,
-0.3779091867223357,
-0.3658897573569038,
-0.3540497775974481,
-0.3424051439008376,
-0.3309709820762234,
-0.31976161830244687,
-0.3087905534829946,
-0.29807044098007685,
-0.28761306775288464,
-0.27742933890878996,
-0.2675292656601923,
-0.2579219566640262,
-0.24861561270575416,
-0.2396175246749198
],
[
-0.6843151069433177,
-0.6791108061167851,
-0.673481535897505,
-0.6674356631278753,
-0.6609825190689363,
-0.6541323754702564,
-0.6468964172716459,
-0.6392867120389389,
-0.6313161762517414,
-0.6229985385760863,
-0.614348300269304,
-0.6053806928780125,
-0.5961116334029117,
-0.5865576771158517,
-0.5767359682255403,
-0.5666641885979695,
-0.5563605047463935,
-0.5458435133131583,
-0.5351321852720022,
-0.5242458090845807,
-0.5132039330487544,
-0.5020263070787663,
-0.4907328241587366,
-0.47934346171086617,
-0.46787822311852123,
-0.4563570796418255,
-0.4447999129596436,
-0.43322645856691755,
-0.4216562502501742,
-0.4101085658568534,
-0.3986023745658129,
-0.3871562858570895,
-0.37578850036883477,
-0.3645167628182144,
-0.353358317151285,
-0.34232986407423044,
-0.3314475211052098,
-0.320726785272298,
-0.31018249856884966,
-0.29982881626305696,
-0.28967917814364125,
-0.27974628276865166,
-0.27004206476919645,
-0.2605776752448534,
-0.2513634652725133,
-0.24240897253547378,
-0.23372291106509024,
-0.22531316407294644,
-0.21718677983766754,
-0.20934997059709315
],
[
-0.6111494126560635,
-0.6061272679734091,
-0.6007313908854859,
-0.5949697297298796,
-0.5888510918994461,
-0.582385121526181,
-0.5755822741508774,
-0.5684537884721742,
-0.561011655282593,
-0.5532685837126181,
-0.5452379649167786,
-0.5369338333478414,
-0.5283708257766422,
-0.5195641382256735,
-0.5105294809942239,
-0.5012830319616421,
-0.49184138836300156,
-0.4822215172382103,
-0.4724407047611902,
-0.46251650466031163,
-0.45246668594467193,
-0.4423091801530436,
-0.4320620283434483,
-0.42174332804126147,
-0.41137118036257875,
-0.40096363752724723,
-0.3905386509725758,
-0.38011402027420615,
-0.3697073430751327,
-0.3593359662172801,
-0.3490169382625762,
-0.33876696358207453,
-0.32860235818241723,
-0.3185390074289495,
-0.30859232581402823,
-0.29877721890775555,
-0.2891080476163734,
-0.2795985948611809,
-0.27026203477795285,
-0.2611109045237089,
-0.2521570787642359,
-0.2434117469021706,
-0.23488539309179057,
-0.226587779072965,
-0.218527929843072,
-0.2107141221722646,
-0.20315387595416756,
-0.1958539483711753,
-0.188820330840888,
-0.18205824869809317
],
[
-0.5439667475654543,
-0.5391328006185473,
-0.5339725067435831,
-0.5284933950399989,
-0.5227037558144698,
-0.516612619847123,
-0.5102297349730414,
-0.5035655400642711,
-0.4966311365100438,
-0.4894382573049204,
-0.48199923386605825,
-0.47432696071163305,
-0.4664348581426225,
-0.45833683307959966,
-0.45004723821479625,
-0.44158082964751455,
-0.4329527231778283,
-0.42417834943952976,
-0.41527340805824203,
-0.40625382102467095,
-0.39713568547596906,
-0.3879352260801757,
-0.37866874721967625,
-0.3693525851695279,
-0.3600030604654405,
-0.3506364306540975,
-0.3412688436153869,
-0.3319162916420935,
-0.32259456645758655,
-0.313319215346158,
-0.3041054985639119,
-0.29496834819056605,
-0.2859223285741965,
-0.27698159851194615,
-0.26815987530006835,
-0.25947040077642325,
-0.2509259094678181,
-0.24253859894336527,
-0.23432010246346724,
-0.22628146400218874,
-0.21843311570863166,
-0.21078485786070889,
-0.20334584135233003,
-0.19612455274269114,
-0.1891288018840256,
-0.18236571213201136,
-0.17584171313107244,
-0.16956253615504302,
-0.16353321197232062,
-0.15775807119358065
],
[
-0.48278055177368495,
-0.47813984964986117,
-0.4732163166089345,
-0.4680170637163551,
-0.46254987296197747,
-0.45682317807069117,
-0.4508460429331515,
-0.44462813773377846,
-0.4381797128642548,
-0.4315115707214602,
-0.42463503549888965,
-0.4175619210903059,
-0.4103044972333308,
-0.4028754540291026,
-0.3952878649817572,
-0.38755514870841234,
-0.3796910294764612,
-0.37170949673026676,
-0.36362476377380204,
-0.3554512257793441,
-0.34720341729499277,
-0.33889596942555444,
-0.3305435668621741,
-0.3221609049360233,
-0.3137626468703788,
-0.30536338140353186,
-0.2969775809522202,
-0.2886195604816225,
-0.2803034372435167,
-0.2720430915389097,
-0.26385212865543217,
-0.2557438421230154,
-0.24773117842394587,
-0.23982670328530342,
-0.2320425696731565,
-0.22439048759871105,
-0.2168816958369666,
-0.20952693564842828,
-0.20233642658399842,
-0.1953198444425639,
-0.1884863014398972,
-0.18184432863649025,
-0.17540186066083574,
-0.16916622275356252,
-0.1631441201467584,
-0.15734162978184818,
-0.15176419435860766,
-0.14641661869732403,
-0.14130306838582674,
-0.13642707067316895
],
[
-0.42752904764318667,
-0.42308564949756156,
-0.4183990986684125,
-0.413476091204885,
-0.40832391131457946,
-0.40295041367513323,
-0.39736400364615604,
-0.3915736154509755,
-0.3855886884074362,
-0.37941914129641574,
-0.3730753449657069,
-0.36656809327543394,
-0.3599085724991214,
-0.3531083293019564,
-0.3461792374245517,
-0.339133463206624,
-0.3319834300904238,
-0.32474178224844974,
-0.3174213474839029,
-0.3100350995555046,
-0.30259612008066766,
-0.29511756017257046,
-0.2876126019674487,
-0.28009442019834896,
-0.2725761439707264,
-0.2650708188936233,
-0.2575913697176734,
-0.2501505636280179,
-0.24276097433620303,
-0.23543494711049762,
-0.2281845648786831,
-0.22102161553136945,
-0.21395756054729065,
-0.20700350505481424,
-0.2001701694362491,
-0.19346786257332993,
-0.18690645682367957,
-0.18049536480911266,
-0.17424351808735072,
-0.16815934776924857,
-0.16225076713385111,
-0.15652515628383679,
-0.15098934887387183,
-0.1456496209345306,
-0.14051168180445117,
-0.13558066717359396,
-0.13086113423075263,
-0.12635705889899418,
-0.12207183513342112,
-0.11800827624671384
],
[
-0.3780834227444655,
-0.373840410925825,
-0.369390162737795,
-0.3647389639192343,
-0.3598936129827542,
-0.3548614049790063,
-0.3496501134174125,
-0.34426797040547147,
-0.33872364507734304,
-0.333026220390728,
-0.32718516837892353,
-0.32121032395246196,
-0.3151118573517199,
-0.3089002453584385,
-0.30258624138004914,
-0.2961808445260625,
-0.2896952678006357,
-0.2831409055394982,
-0.2765293002229485,
-0.2698721087994135,
-0.26318106865619373,
-0.25646796337538247,
-0.2497445884136711,
-0.24302271684468624,
-0.23631406530181998,
-0.22963026025798605,
-0.2229828047766912,
-0.21638304586590884,
-0.20984214256281342,
-0.20337103487330943,
-0.19698041368556118,
-0.19068069177142988,
-0.18448197598390148,
-0.1783940407522261,
-0.17242630296967654,
-0.16658779836161597,
-0.16088715941393517,
-0.15533259493399487,
-0.14993187130795405,
-0.14469229550995033,
-0.13962069990991277,
-0.13472342891803935,
-0.13000632749510233,
-0.125474731548881,
-0.12113346022811855,
-0.11698681011664502,
-0.11303855132158824,
-0.10929192544112576,
-0.10574964538887854,
-0.1024138970440387
],
[
-0.3342564448212266,
-0.33021594031305146,
-0.32600046810334943,
-0.3216159098899328,
-0.3170685919293849,
-0.31236527020170374,
-0.3075131139640038,
-0.30251968774842863,
-0.29739293186696253,
-0.2921411414930524,
-0.28677294439688117,
-0.2812972774176993,
-0.2757233617627748,
-0.2700606772282219,
-0.2643189354422638,
-0.2585080522361677,
-0.25263811925236934,
-0.2467193749029094,
-0.24076217479443263,
-0.23477696173846618,
-0.22877423546758013,
-0.22276452217931197,
-0.2167583440303692,
-0.21076618870363484,
-0.2047984791699089,
-0.19886554376507037,
-0.19297758670152054,
-0.18714465913031497,
-0.18137663086738942,
-0.1756831628936798,
-0.17007368073484253,
-0.16455734882162565,
-0.15914304592683048,
-0.15383934176925051,
-0.14865447486895367,
-0.1435963317319593,
-0.13867242743560393,
-0.13388988767891652,
-0.129255432355057,
-0.12477536069535722,
-0.12045553802690989,
-0.116301384177806,
-0.11231786355631745,
-0.10850947692238344,
-0.10488025486188257,
-0.10143375296634105,
-0.0981730487129655,
-0.09510074003228464,
-0.09221894554325527,
-0.08952930642846679
],
[
-0.29581127835572124,
-0.29197446037360797,
-0.28799144252418135,
-0.2838677101726298,
-0.279609131921823,
-0.27522194612156503,
-0.27071274597687467,
-0.26608846330392355,
-0.2613563509886998,
-0.2565239642098819,
-0.25159914049336185,
-0.24658997867162558,
-0.2415048168265581,
-0.2363522092992668,
-0.23114090285509226,
-0.22587981209617058,
-0.22057799421760926,
-0.21524462320656457,
-0.20988896358627918,
-0.20452034380930695,
-0.19914812940590154,
-0.19378169599467576,
-0.1884304022632538,
-0.18310356302672637,
-0.17781042247123935,
-0.17256012768901863,
-0.16736170260960215,
-0.1622240224299546,
-0.15715578864357949,
-0.15216550476562485,
-0.14726145284745218,
-0.1424516708701028,
-0.13774393110166838,
-0.1331457194987089,
-0.12866421622666124,
-0.12430627736860023,
-0.1200784178858667,
-0.11598679588791339,
-0.11203719826235015,
-0.1082350277095897,
-0.1045852912197438,
-0.10109259002256665,
-0.0977611110342792,
-0.09459461981813222,
-0.0915964550685453,
-0.08876952462171672,
-0.086116302988688,
-0.08363883040007358,
-0.08133871334501364,
-0.07921712658047353
],
[
-0.26247029210718575,
-0.25883742176239677,
-0.2550837920475687,
-0.251214501020505,
-0.24723497522095506,
-0.24315095746593662,
-0.23896849343250393,
-0.23469391707038023,
-0.23033383489250903,
-0.225895109197073,
-0.22138484027973881,
-0.2168103476999068,
-0.21217915066939508,
-0.20749894763636734,
-0.2027775951413664,
-0.19802308602593244,
-0.1932435270775904,
-0.18844711619782983,
-0.18364211918214335,
-0.1788368462031802,
-0.1740396280896177,
-0.1692587924944161,
-0.1645026400467574,
-0.15977942058207584,
-0.15509730954427847,
-0.15046438465342993,
-0.1458886029309061,
-0.14137777817230224,
-0.13693955895616805,
-0.13258140727406864,
-0.12831057786439037,
-0.12413409832891809,
-0.12005875010733358,
-0.11609105038067391,
-0.11223723497021043,
-0.10850324229343944,
-0.10489469843373733,
-0.10141690337491083,
-0.09807481844628751,
-0.09487305501823495,
-0.09181586448210366,
-0.08890712954253577,
-0.08615035684398598,
-0.08354867094712326,
-0.08110480966459432,
-0.07882112075947612,
-0.07669956000360734,
-0.07474169058697289,
-0.07294868386338726,
-0.07132132141194825
],
[
-0.2339236705042127,
-0.23049411849606394,
-0.2269661147501718,
-0.22334438023866987,
-0.21963391585528647,
-0.2158399914359982,
-0.21196813373515855,
-0.20802411339369808,
-0.2040139309409087,
-0.19994380187602157,
-0.1958201408803395,
-0.1916495452149718,
-0.18743877736333225,
-0.18319474698133442,
-0.1789244922217551,
-0.1746351605024461,
-0.17033398879095352,
-0.1660282834806469,
-0.16172539993562018,
-0.15743272178344758,
-0.15315764003627497,
-0.148907532121747,
-0.14468974090590203,
-0.14051155379035674,
-0.1363801819659144,
-0.13230273990414032,
-0.12828622516740007,
-0.12433749861649812,
-0.1204632650932046,
-0.11667005465281366,
-0.11296420441929955,
-0.10935184113274887,
-0.10583886445548807,
-0.1024309310997692,
-0.0991334398360022,
-0.09595151743640062,
-0.09289000560447935,
-0.08995344893624846,
-0.0871460839540954,
-0.08447182924935881,
-0.08193427676444398,
-0.07953668424004612,
-0.07728196884770999,
-0.07517270202253001,
-0.07321110550533583,
-0.07139904859828661,
-0.06973804663235916,
-0.06822926063987922,
-0.06687349821996535,
-0.06567121557961364
],
[
-0.20983766780900426,
-0.206609946143001,
-0.20330315749953698,
-0.1999216570651483,
-0.1964700371823026,
-0.19295311753302347,
-0.18937593442686684,
-0.1857437292244819,
-0.18206193593215614,
-0.17833616800682606,
-0.17457220441491772,
-0.17077597499212338,
-0.16695354515474714,
-0.16311110001656537,
-0.15925492796823149,
-0.15539140377905858,
-0.15152697128358295,
-0.14766812571754606,
-0.14382139576990371,
-0.13999332541910048,
-0.13619045562316268,
-0.13241930593415185,
-0.12868635610813128,
-0.12499802778211755,
-0.121360666289415,
-0.11778052268430372,
-0.11426373604633777,
-0.11081631613334975,
-0.107444126450847,
-0.10415286780370692,
-0.10094806239393694,
-0.09783503852589359,
-0.09481891597761138,
-0.09190459209388124,
-0.08909672865347573,
-0.08639973955935976,
-0.0838177793969982,
-0.08135473290188877,
-0.07901420537329629,
-0.07679951406685326,
-0.07471368059421135,
-0.07275942435336047,
-0.07093915700856268,
-0.06925497803409475,
-0.06770867133122305,
-0.06630170292305226,
-0.06503521972708615,
-0.06391004940060996,
-0.06292670124933053,
-0.0620853681850968
],
[
-0.1898623714034574,
-0.1868341691453913,
-0.1837435822016923,
-0.1805946122357498,
-0.1773914606745799,
-0.17413851999189867,
-0.17084036422666338,
-0.1675017387633172,
-0.16412754940352114,
-0.16072285076266724,
-0.15729283402777472,
-0.15384281411661926,
-0.1503782162809819,
-0.14690456219980286,
-0.14342745561070125,
-0.13995256753080187,
-0.13648562112009144,
-0.13303237624251296,
-0.1295986137818046,
-0.12619011977057248,
-0.12281266939235036,
-0.11947201091732018,
-0.11617384963305899,
-0.1129238318320328,
-0.1097275289176537,
-0.10659042169045418,
-0.10351788487545999,
-0.10051517195096271,
-0.09758740033782465,
-0.09473953700700133,
-0.09197638456129487,
-0.08930256784536894,
-0.08672252113582479,
-0.08424047596064543,
-0.08186044959457561,
-0.0795862342740532,
-0.07742138717211788,
-0.0753692211703747,
-0.07343279646151979,
-0.0716149130122532,
-0.06991810391254616,
-0.06834462963327892,
-0.06689647321020753,
-0.06557533636809232,
-0.06438263659464372,
-0.06331950516972684,
-0.062386786151069296,
-0.06158503631350731,
-0.060914526034659855,
-0.060375241115835365
],
[
-0.1736388683329778,
-0.170807091401039,
-0.16792713572432494,
-0.165002662553982,
-0.16203750045305565,
-0.15903563761481765,
-0.15600121353128704,
-0.1529385100335785,
-0.1498519417287124,
-0.14674604586050033,
-0.1436254716249855,
-0.14049496897366975,
-0.13735937694042422,
-0.13422361153046714,
-0.13109265321216423,
-0.12797153405458583,
-0.12486532455577881,
-0.12177912020850945,
-0.1187180278518789,
-0.11568715185858025,
-0.11269158020876713,
-0.10973637050243557,
-0.10682653596292302,
-0.10396703148458619,
-0.101162739777935,
-0.09841845766541923,
-0.09573888258080832,
-0.09312859932448914,
-0.09059206712622658,
-0.08813360706584883,
-0.08575738990099246,
-0.0834674243494844,
-0.08126754587214458,
-0.0791614059997483,
-0.07715246224565508,
-0.0752439686431452,
-0.07343896694386332,
-0.07174027851093567,
-0.07015049693731634,
-0.0686719814167972,
-0.06730685089179522,
-0.06605697899866325,
-0.06492398982775072,
-0.0639092545118618,
-0.06301388865313717,
-0.0622387505946691,
-0.0615844405394993,
-0.0610513005159109,
-0.06063941518426286,
-0.06034861347696263
],
[
-0.16080573646555218,
-0.1581665514332854,
-0.15549114484583149,
-0.15278285138938852,
-0.15004514511495703,
-0.1472816327274673,
-0.14449604632485402,
-0.14169223560446054,
-0.13887415955672877,
-0.13604587766861276,
-0.1332115406616401,
-0.13037538079189248,
-0.12754170174148194,
-0.1247148681332676,
-0.12189929470264382,
-0.11909943516216126,
-0.11631977079654776,
-0.11356479882734616,
-0.11083902058787654,
-0.10814692955054372,
-0.10549299924964206,
-0.10288167114375735,
-0.10031734246260826,
-0.09780435408371013,
-0.09534697848456675,
-0.09294940781622985,
-0.09061574214393686,
-0.08834997790024413,
-0.08615599659549944,
-0.08403755382976708,
-0.08199826864931237,
-0.08004161328956749,
-0.07817090334509735,
-0.07638928840546744,
-0.0746997431941051,
-0.07310505924525357,
-0.07160783715193886,
-0.07021047941550695,
-0.06891518392480134,
-0.06772393809038602,
-0.0666385136564358,
-0.06566046221001365,
-0.06479111140445681,
-0.06403156191049109,
-0.06338268510554501,
-0.0628451215085103,
-0.0624192799639578,
-0.06210533757654513,
-0.06190324039309081,
-0.061812704826539
],
[
-0.15100480750507528,
-0.1485536893394922,
-0.14607628340555234,
-0.14357561229780935,
-0.14105481410131582,
-0.13851713658724485,
-0.13596593094460674,
-0.13340464506158167,
-0.13083681637214117,
-0.12826606428576026,
-0.12569608222009587,
-0.12313062925856488,
-0.12057352145672162,
-0.11802862282325666,
-0.11549983600323899,
-0.11299109269299201,
-0.1105063438175804,
-0.10804954950342716,
-0.10562466887994726,
-0.10323564974533705,
-0.10088641813276755,
-0.0985808678141773,
-0.09632284977964611,
-0.0941161617309666,
-0.09196453762846091,
-0.08987163733037395,
-0.08784103636424534,
-0.08587621586956873,
-0.08398055275075356,
-0.08215731007891125,
-0.08040962778032534,
-0.07874051364859236,
-0.07715283471637502,
-0.07564930902146139,
-0.07423249780041918,
-0.0729047981415365,
-0.07166843612698015,
-0.07052546049218922,
-0.06947773682844915,
-0.06852694235238344,
-0.06767456126375371,
-0.0669218807105123,
-0.06626998737747636,
-0.06571976471234142,
-0.06527189080002282,
-0.06492683689350653,
-0.06468486660655537,
-0.06454603577073492,
-0.06451019295632499,
-0.06457698065379902
],
[
-0.1438861730172909,
-0.14161795661140641,
-0.13933158270032175,
-0.13702977677742634,
-0.13471535960362868,
-0.13239124224565713,
-0.13006042072436863,
-0.1277259702830671,
-0.1253910392876595,
-0.12305884277223633,
-0.1207326556454793,
-0.11841580557501508,
-0.11611166556858066,
-0.11382364627251829,
-0.11155518800974851,
-0.10930975258092057,
-0.1070908148539148,
-0.10490185416827436,
-0.102746345582438,
-0.1006277509928486,
-0.09854951015509306,
-0.09651503163820274,
-0.09452768374407294,
-0.0925907854246607,
-0.0907075972301884,
-0.08888131232197072,
-0.08711504758376087,
-0.0854118348655809,
-0.08377461239395356,
-0.08220621638221393,
-0.08070937287417113,
-0.07928668985383225,
-0.07794064965316039,
-0.07667360168893134,
-0.07548775555868736,
-0.0743851745245665,
-0.0733677694123851,
-0.07243729295182577,
-0.07159533458189926,
-0.07084331574403369,
-0.0701824856831863,
-0.06961391777533354,
-0.06913850639748698,
-0.06875696435414702,
-0.06846982087172349,
-0.06827742017004113,
-0.06817992061754785,
-0.0681772944743142,
-0.06826932822435094,
-0.06845562349617929
],
[
-0.13911242611840458,
-0.13702136139947863,
-0.13491867762356125,
-0.13280681858319587,
-0.13068830636089512,
-0.12856573714714148,
-0.12644177673136536,
-0.12431915567274221,
-0.12220066415916853,
-0.12008914656426206,
-0.1179874957137671,
-0.11589864687423479,
-0.11382557147835037,
-0.11177127060276515,
-0.10973876821570927,
-0.1077311042130984,
-0.10575132726317304,
-0.10380248748104015,
-0.10188762895569725,
-0.1000097821532916,
-0.09817195622144159,
-0.09637713122042502,
-0.09462825030793354,
-0.09292821190485079,
-0.09127986187019077,
-0.089685985713851,
-0.08814930087625372,
-0.08667244910422056,
-0.08525798895255132,
-0.0839083884407803,
-0.08262601789441404,
-0.08141314299965641,
-0.08027191810016909,
-0.07920437976380212,
-0.07821244064647426,
-0.07729788367947554,
-0.0764623566054039,
-0.07570736688675106,
-0.0750342770098209,
-0.07444430020517634,
-0.07393849660423069,
-0.0735177698498708,
-0.07318286417717057,
-0.07293436197832792,
-0.07277268186392605,
-0.07269807723053023,
-0.07271063534244182,
-0.07281027693321163,
-0.07299675633023017,
-0.07326966210341379
]
],
"zauto": true,
"zmax": 2.719178163048654,
"zmin": -2.719178163048654
},
{
"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.3203976555625479,
0.32190723797973836,
0.32502894931581217,
0.32969793113278084,
0.33582505899293785,
0.3433026417252992,
0.3520105151783277,
0.3618218323280112,
0.3726080638691272,
0.3842429629097056,
0.39660545120591256,
0.4095815230853291,
0.42306533566552346,
0.4369596747815416,
0.45117597412909194,
0.4656340369700011,
0.4802615768150156,
0.49499366244937476,
0.5097721265480528,
0.5245449767348208,
0.5392658328731695,
0.5538934037434323,
0.5683910090659189,
0.5827261481746918,
0.5968701137948592,
0.6107976477628719,
0.6244866347391759,
0.6379178297008179,
0.6510746150643356,
0.6639427835392648,
0.6765103431595956,
0.6887673413269335,
0.700705705089571,
0.7123190952553213,
0.7236027722817531,
0.7345534722002476,
0.74516929110881,
0.755449577013664,
0.7653948280134506,
0.7750065960049876,
0.7842873952488871,
0.7932406152696413,
0.8018704376807425,
0.8101817566233372,
0.8181801025889982,
0.8258715694653204,
0.833262744698828,
0.8403606425146098,
0.8471726401674169,
0.8537064172257921
],
[
0.31031704644384184,
0.3119566934247444,
0.31525951753464276,
0.32015359286709266,
0.3265412945713593,
0.3343058376153384,
0.34331813049264637,
0.35344314553969075,
0.3645452831700596,
0.37649249852817934,
0.3891591924866171,
0.40242801629111646,
0.4161908063514354,
0.430348874873433,
0.4448128576390709,
0.4595022816028025,
0.47434497448663304,
0.48927640269335715,
0.5042389950496042,
0.5191814882595357,
0.5340583145400324,
0.5488290414234133,
0.5634578668998507,
0.5779131688728572,
0.5921671054971344,
0.60619526175364,
0.6199763371627653,
0.6334918695479278,
0.6467259900411113,
0.6596652049403332,
0.6722982005053187,
0.6846156672623752,
0.6966101408538548,
0.7082758568966242,
0.7196086177008695,
0.730605669043708,
0.7412655854929089,
0.7515881630373269,
0.7615743180061747,
0.7712259914527294,
0.7805460583432411,
0.7895382410321071,
0.7982070266229067,
0.8065575879143743,
0.8145957077132708,
0.8223277063644022,
0.8297603724036078,
0.8369008962838813,
0.8437568071592914,
0.850335912737189
],
[
0.3009617685920808,
0.3027200659734172,
0.3061906705169138,
0.31129450473294146,
0.3179253883374797,
0.3259574653969995,
0.3352528425646133,
0.3456685372972707,
0.35706218320156674,
0.36929628634562967,
0.3822410884069238,
0.3957762451874193,
0.40979158737579563,
0.4241872254204006,
0.43887322211723284,
0.4537690069677724,
0.46880265845451485,
0.48391014008673006,
0.4990345449956228,
0.514125381357443,
0.5291379154481977,
0.5440325789899412,
0.5587744411368792,
0.573332741777277,
0.5876804809059747,
0.6017940580202394,
0.6156529553744768,
0.6292394592076191,
0.6425384135434253,
0.6555370017406706,
0.6682245515661073,
0.680592360137218,
0.6926335356126584,
0.7043428529862878,
0.7157166217635055,
0.7267525636679019,
0.7374496988459422,
0.7478082393122198,
0.7578294886129058,
0.7675157468851476,
0.7768702206598198,
0.7858969368982931,
0.7946006608741429,
0.8029868176111543,
0.8110614166721084,
0.8188309801609509,
0.8263024738559595,
0.83348324143506,
0.8403809417879355,
0.847003489434223
],
[
0.2925138958725016,
0.2943707809119835,
0.2979857364158827,
0.30327281322501565,
0.3101176132082566,
0.3183856155844304,
0.3279305934239937,
0.3386021175922068,
0.35025157238560733,
0.36273651058827555,
0.3759234640473576,
0.38968948034237344,
0.40392270271627884,
0.4185222895303095,
0.43339791682521983,
0.448469047280453,
0.46366409402541503,
0.47891956357348087,
0.49417922927544783,
0.5093933636606639,
0.5245180427193392,
0.5395145255096697,
0.554348706731411,
0.5689906367875904,
0.583414102419051,
0.5975962605950502,
0.611517318545306,
0.6251602533454513,
0.6385105651436911,
0.6515560588358691,
0.6642866496983232,
0.6766941891405555,
0.6887723073282155,
0.7005162699468442,
0.7119228468300183,
0.7229901905666484,
0.7337177235374112,
0.7441060321161049,
0.7541567670143483,
0.7638725489533318,
0.7732568790193516,
0.7823140532051401,
0.7910490807604167,
0.7994676060758912,
0.807575833908011,
0.8153804578193752,
0.8228885917639932,
0.8301077047891419,
0.8370455588579294,
0.8437101498200963
],
[
0.2852743510690865,
0.2871992103752545,
0.29092204404059185,
0.29635087652258735,
0.30336404764357455,
0.31181938009726257,
0.3215633155012012,
0.3324389213291613,
0.34429217622340164,
0.3569763986432385,
0.370354995061336,
0.384302857583941,
0.3987067745177498,
0.41346518065596616,
0.4284875077163424,
0.44369332531443934,
0.45901140198676177,
0.4743787683911436,
0.4897398305914433,
0.5050455580411984,
0.520252755853847,
0.5353234217913575,
0.550224183221495,
0.5649258066920919,
0.5794027717746468,
0.5936329007851052,
0.6075970364716156,
0.6212787605000045,
0.6346641464051689,
0.647741541516301,
0.6605013731547894,
0.6729359751212504,
0.6850394311237732,
0.6968074323535158,
0.7082371468913932,
0.7193270990380893,
0.7300770570071059,
0.7404879277148421,
0.7505616576501677,
0.7603011390150268,
0.7697101205030757,
0.7787931222300007,
0.7875553544511944,
0.7960026398033603,
0.8041413388893407,
0.8119782790924537,
0.8195206865600329,
0.8267761213374049,
0.8337524156647328,
0.8404576154713297
],
[
0.2796482659101684,
0.28159853735548057,
0.2853772811181106,
0.2908881075037654,
0.29800389835635027,
0.3065766541644022,
0.3164472145463589,
0.3274536736839359,
0.3394378840568872,
0.3522499446929739,
0.3657509000039549,
0.3798140276018377,
0.3943251159618487,
0.40918208284484975,
0.4242942079297523,
0.4395811752780454,
0.4549720556839677,
0.4704043091513614,
0.4858228525520343,
0.501179214091083,
0.5164307814493997,
0.5315401417469445,
0.5464745067397471,
0.5612052144707232,
0.5757072979417113,
0.5899591116048499,
0.6039420071673726,
0.6176400511076563,
0.6310397772598434,
0.6441299687545441,
0.6569014644604173,
0.6693469858374675,
0.681460980783575,
0.6932394816350591,
0.7046799749777138,
0.7157812813460425,
0.7265434432448599,
0.7369676202279393,
0.7470559900210283,
0.7568116548883862,
0.7662385526191354,
0.775341371657258,
0.7841254700214471,
0.7925967977618071,
0.800761822782717,
0.8086274599275093,
0.8162010032731791,
0.8234900616238979,
0.8305024972222028,
0.8372463677177159
],
[
0.2761104502952162,
0.278031523905564,
0.281797835572996,
0.2873110732067512,
0.29444145624904433,
0.3030379712146474,
0.3129384461461242,
0.3239782284765644,
0.33599684307740074,
0.3488425397679247,
0.36237498315022193,
0.37646649108322955,
0.39100224503765724,
0.40587983825662727,
0.42100844369407303,
0.43630780119180174,
0.4517071548667761,
0.46714422028920183,
0.48256422515039665,
0.49791904351080235,
0.51316642905044,
0.5282693442181118,
0.5431953776744738,
0.5579162404474304,
0.5724073307515392,
0.5866473578053364,
0.6006180157958034,
0.614303700134791,
0.6276912591813658,
0.6407697755862396,
0.653530372310471,
0.6659660391651055,
0.6780714764100068,
0.6898429525446409,
0.7012781739302313,
0.7123761643119741,
0.7231371526721051,
0.7335624681491282,
0.743654441013925,
0.7534163089071471,
0.7628521277205572,
0.771966686653179,
0.7807654270956985,
0.7892543650972665,
0.7974400172508214,
0.8053293298988607,
0.8129296116134421,
0.8202484689439153,
0.8272937454550404,
0.8340734640980982
],
[
0.27514950647364794,
0.2769767922320018,
0.2806479000131148,
0.28606586999331907,
0.2931019773105424,
0.3016059383846984,
0.3114160109441852,
0.3223677307303369,
0.3343006398614752,
0.3470629003508102,
0.3605140373724415,
0.37452621632681643,
0.3889844782703269,
0.4037863024723242,
0.4188407811139382,
0.4340676081993657,
0.4493960156318733,
0.464763737417132,
0.4801160465940202,
0.4954048855341552,
0.5105880953449239,
0.5256287414312077,
0.5404945276758676,
0.5551572896681557,
0.5695925569136079,
0.5837791743278697,
0.5976989741279738,
0.6113364902310621,
0.6246787083030018,
0.6377148455860402,
0.6504361555353046,
0.662835753092923,
0.6749084571241708,
0.6866506471380703,
0.6980601319245674,
0.709136028172185,
0.719878647494242,
0.7302893905979173,
0.7403706475871595,
0.7501257036051266,
0.7595586492008186,
0.768674294953217,
0.7774780900090636,
0.78597604429115,
0.7941746542157816,
0.8020808318235839,
0.8097018372791789,
0.8170452147343689,
0.8241187315779076,
0.8309303211140558
],
[
0.2771960129041411,
0.2788596079877009,
0.28234385365173426,
0.2875568108248459,
0.29437507262029405,
0.3026534477097909,
0.31223468556025596,
0.3229580138466682,
0.3346658207562371,
0.34720832897065895,
0.3604464570712781,
0.3742532339527649,
0.38851416619385315,
0.40312691455120886,
0.4180005603443234,
0.4330546644153431,
0.4482182545290332,
0.4634288258011553,
0.4786314022489372,
0.49377768309948156,
0.5088252819894283,
0.5237370579489475,
0.5384805319951151,
0.5530273807541551,
0.5673529977512247,
0.5814361131642584,
0.5952584634964396,
0.6088045035090976,
0.6220611537124833,
0.6350175776450662,
0.6476649840359994,
0.6599964497194728,
0.672006759848741,
0.6836922625447822,
0.6950507356173903,
0.7060812634240262,
0.7167841222935547,
0.7271606732469028,
0.7372132610028563,
0.7469451184717861,
0.7563602761192024,
0.765463475729862,
0.7742600882261724,
0.7827560352954953,
0.790957714662763,
0.7988719289102094,
0.8065058177971545,
0.8138667940715137,
0.8209624827926763,
0.8278006642039183
],
[
0.2825496811927508,
0.28398104348200837,
0.2871864938041815,
0.292082546677932,
0.29855526078747213,
0.3064689257432606,
0.31567499993424164,
0.3260201560819912,
0.3373527586288415,
0.34952755372998484,
0.3624086844429331,
0.37587132343758417,
0.3898022710408771,
0.40409984402011817,
0.4186733216450955,
0.4334421482086026,
0.4483350302737003,
0.46328901824341334,
0.47824862599125706,
0.49316501745725677,
0.5079952728157618,
0.5227017366942559,
0.5372514450357827,
0.5516156241030575,
0.5657692537925414,
0.5796906871623654,
0.5933613184193698,
0.6067652922645507,
0.6198892482824127,
0.6327220948714377,
0.645254807990405,
0.6574802507086541,
0.6693930101850347,
0.6809892492583322,
0.6922665703149022,
0.7032238895135368,
0.7138613198006596,
0.7241800614483058,
0.7341822991001253,
0.7438711045232373,
0.7532503444417896,
0.7623245929764194,
0.7710990483366399,
0.7795794535139878,
0.7877720208056039,
0.795683360063267,
0.8033204106139245,
0.8106903768363166,
0.8178006674059367,
0.824658838238701
],
[
0.2913263748165335,
0.29246527743793505,
0.2953092775317719,
0.299785891091227,
0.3057939399111777,
0.31321089667056734,
0.32190069183359477,
0.33172098304936704,
0.34252923350665393,
0.3541873174436921,
0.3665646667122511,
0.3795401537767064,
0.39300298346861834,
0.406852869612392,
0.42099973635707816,
0.4353631327671443,
0.4498714981627102,
0.46446137215480526,
0.47907660950614406,
0.4936676353788584,
0.5081907596117958,
0.522607557580316,
0.536884318296359,
0.5509915563991504,
0.5649035825917067,
0.5785981262020862,
0.592056003415588,
0.6052608250189128,
0.618198738015868,
0.6308581960888735,
0.6432297545147412,
0.6553058857530006,
0.6670808124877164,
0.6785503554092465,
0.6897117934683971,
0.7005637347240096,
0.7111059962403969,
0.7213394917783974,
0.7312661262685991,
0.7408886962626313,
0.7502107957331203,
0.7592367267391863,
0.7679714145959301,
0.7764203272864545,
0.7845893989363442,
0.7924849572355853,
0.8001136547436739,
0.8074824040519513,
0.8145983168045405,
0.821468646597018
],
[
0.30344160648109714,
0.30424128194739286,
0.3066580898830496,
0.31063181519987443,
0.31607596860718107,
0.3228836436450977,
0.3309339894664564,
0.3400984844355008,
0.3502464188812338,
0.36124926893149073,
0.3729838857005259,
0.38533459337334647,
0.3981943804542883,
0.4114653965463866,
0.4250589550728218,
0.43889521041126833,
0.45290264005192044,
0.4670174267177766,
0.48118280556050375,
0.49534841846905564,
0.5094697006710026,
0.5235073130667489,
0.5374266259190178,
0.5511972545598718,
0.5647926448179583,
0.5781897042611314,
0.5913684746248802,
0.6043118406265926,
0.617005270526301,
0.6294365841381804,
0.641595744428398,
0.6534746692945188,
0.665067060573887,
0.6763682477534118,
0.6873750442408932,
0.6980856144046802,
0.7084993498938903,
0.7186167540176032,
0.7284393331913178,
0.7379694946559565,
0.7472104498422467,
0.7561661228946914,
0.764841063987591,
0.7732403671633803,
0.7813695925033589,
0.7892346925048073,
0.7968419425883843,
0.8041978756972937,
0.8113092209763795,
0.8181828465365163
],
[
0.3186329141844231,
0.319062106182035,
0.32100658529629184,
0.32441838797648326,
0.329226148874263,
0.33533952227633496,
0.34265428637485545,
0.3510575113066816,
0.36043229399063204,
0.37066174270688435,
0.381632074680844,
0.39323483311062996,
0.40536832211224716,
0.41793840246727104,
0.43085880002465016,
0.4440510658631723,
0.4574443042283782,
0.4709747585684209,
0.4845853221415016,
0.4982250196572209,
0.5118484907321376,
0.5254154942660487,
0.5388904445213387,
0.5522419839849368,
0.5654425943470266,
0.5784682445936126,
0.591298073854372,
0.6039141059549834,
0.6163009923647084,
0.6284457802445033,
0.6403377024776333,
0.6519679868299005,
0.6633296816916701,
0.6744174961684146,
0.6852276525918702,
0.695757749809513,
0.7060066358705113,
0.7159742889594929,
0.7256617056352328,
0.7350707956108465,
0.7442042824668894,
0.753065609820946,
0.7616588525888472,
0.769988633065591,
0.7780600416302333,
0.7858785619402378,
0.7934500005285634,
0.8007804207526777,
0.8078760810699895,
0.8147433776301681
],
[
0.33650862135977755,
0.33655065810147317,
0.3379978199963819,
0.3408134023604393,
0.34494036452837457,
0.35030450828546467,
0.3568183238851596,
0.3643850639024142,
0.37290265741548123,
0.382267181300136,
0.392375726324391,
0.40312860482843554,
0.41443092827576905,
0.42619363301497565,
0.43833405525796587,
0.4507761590930062,
0.46345051206821797,
0.47629408778904486,
0.4892499583893252,
0.502266924199525,
0.5152991146631117,
0.5283055839021803,
0.5412499161841113,
0.5540998505452104,
0.5668269295706133,
0.5794061744147344,
0.5918157862304451,
0.6040368729810865,
0.6160531999230694,
0.6278509617080583,
0.6394185739455347,
0.6507464821057349,
0.6618269857711726,
0.6726540764224453,
0.6832232871440039,
0.6935315528406895,
0.7035770797551071,
0.7133592232627874,
0.7228783730929103,
0.7321358452755445,
0.7411337802513851,
0.7498750466972365,
0.7583631507207852,
0.7666021501625813,
0.7745965738127683,
0.7823513454062127,
0.7898717123034456,
0.797163178797478,
0.8042314440091963,
0.8110823443477855
],
[
0.35660442549883337,
0.35625442728687584,
0.35719611277650165,
0.3594024957045358,
0.3628292740364672,
0.36741701976838415,
0.37309396472251266,
0.3797790881238463,
0.38738522357850563,
0.3958219548682502,
0.4049981425837965,
0.41482399849252355,
0.4252126884320429,
0.436081490938253,
0.4473525669532071,
0.4589534085796704,
0.47081703620029086,
0.4828820076044838,
0.4950922935328649,
0.5073970637104895,
0.5197504175136672,
0.5321110846946925,
0.5444421143756768,
0.5567105648196949,
0.5688872021410539,
0.5809462129094689,
0.592864933308989,
0.6046235959249734,
0.6162050941757351,
0.6275947637379393,
0.6387801799257756,
0.6497509697893753,
0.660498637635379,
0.6710164026965645,
0.6812990477552645,
0.6913427776340527,
0.7011450865908745,
0.7107046337837047,
0.7200211260948184,
0.7290952077223142,
0.7379283560539889,
0.746522783434446,
0.7548813445199267,
0.763007448986623,
0.7709049794175263,
0.7785782142407335,
0.786031755629275,
0.7932704622997503,
0.8002993871652404,
0.8071237198079874
],
[
0.37843311892227044,
0.3776946238312502,
0.37813504651178986,
0.3797354069307444,
0.3824622116543997,
0.3862689076712374,
0.3910978342358218,
0.39688248579553437,
0.40354989188669355,
0.4110229400504636,
0.4192225063530573,
0.4280693044026482,
0.43748540863442503,
0.44739544495777095,
0.4577274688539186,
0.4684135676015605,
0.47939023107653994,
0.4905985368020668,
0.501984191908695,
0.5134974693201395,
0.5250930692298434,
0.5367299307064647,
0.548371012601525,
0.5599830580803915,
0.571536353123047,
0.5830044861983635,
0.59436411390473,
0.605594735571073,
0.6166784785065622,
0.6275998946674428,
0.6383457688841183,
0.6489049383863151,
0.6592681231196639,
0.6694277662174782,
0.6793778839420181,
0.6891139244138716,
0.6986326344871933,
0.7079319341881573,
0.7170107982043057,
0.725869143986277,
0.7345077260959042,
0.7429280365025767,
0.7511322105909877,
0.759122938696717,
0.7669033830308392,
0.7744770998908003,
0.7818479670822349,
0.7890201164955665,
0.7959978717927241,
0.8027856911637007
],
[
0.40152074207979355,
0.40040264226079675,
0.40035411508492075,
0.4013625523212574,
0.40340332200271056,
0.40644070178082525,
0.41042920895570767,
0.4153152135419058,
0.4210387072977008,
0.42753510535053874,
0.4347369743998727,
0.44257560714818683,
0.4509823910676298,
0.4598899463316732,
0.4692330298191008,
0.47894921825801673,
0.48897939383930816,
0.49926806082204256,
0.5097635229712368,
0.5204179503397901,
0.5311873610005312,
0.5420315396799286,
0.5529139114225875,
0.5638013847915176,
0.5746641758839428,
0.5854756217002371,
0.5962119891533546,
0.6068522842129286,
0.6173780642857598,
0.6277732558789766,
0.6380239788114341,
0.6481183776764997,
0.6580464608666071,
0.6677999472064541,
0.6773721200746373,
0.6867576887969583,
0.695952657048236,
0.7049541979876546,
0.7137605358636375,
0.7223708338490721,
0.7307850878998953,
0.7390040264648075,
0.7470290159078479,
0.754861971536381,
0.7625052741531824,
0.7699616920718684,
0.7772343085493639,
0.7843264545974059,
0.7912416471373332,
0.7979835324590145
],
[
0.42542898976594107,
0.4239431704835641,
0.423422677929398,
0.42385984481042344,
0.4252371258278749,
0.42752767762002636,
0.43069624394530187,
0.4347002796618747,
0.43949123364363285,
0.44501590738839647,
0.45121781176785036,
0.4580384568256495,
0.4654185258183145,
0.4732989019709203,
0.48162153243325506,
0.4903301272311335,
0.4993707009697845,
0.5086919716544435,
0.51824563465408,
0.5279865311587697,
0.5378727301243674,
0.5478655412555866,
0.557929474536442,
0.5680321595372797,
0.5781442354581224,
0.5882392207616884,
0.5982933693876524,
0.6082855189537018,
0.6181969350373291,
0.6280111545745799,
0.637713830577878,
0.6472925797311964,
0.6567368339340834,
0.6660376965062224,
0.6751878035046684,
0.6841811904241571,
0.6930131644281657,
0.701680182179614,
0.7101797332929578,
0.7185102294045094,
0.7266708988475168,
0.7346616869173045,
0.7424831617151492,
0.7501364255645234,
0.7576230319974614,
0.7649449083106336,
0.7721042836891961,
0.7791036228910913,
0.7859455654749824,
0.792632870541567
],
[
0.44976683994962635,
0.44792656222173477,
0.44695332694822415,
0.44684321904653457,
0.4475842577896152,
0.44915674483685225,
0.4515338414049915,
0.4546823371117795,
0.4585635620108347,
0.46313438787392097,
0.4683482648968836,
0.47415624489491376,
0.4805079503456068,
0.48735245876436967,
0.4946390823915673,
0.5023180328833786,
0.5103409688815755,
0.5186614306381069,
0.5272351702550216,
0.5360203887544513,
0.544977892422665,
0.5540711810221913,
0.5632664798674673,
0.5725327266962752,
0.5818415229662108,
0.5911670578272002,
0.6004860116795644,
0.609777444991199,
0.619022676953434,
0.6282051576165305,
0.6373103363607836,
0.6463255289168122,
0.6552397846330505,
0.66404375528194,
0.6727295663811256,
0.6812906917655669,
0.6897218319659171,
0.6980187968150398,
0.7061783926071146,
0.7141983140633841,
0.7220770413078684,
0.729813742019315,
0.7374081788976329,
0.744860622560463,
0.752171769965601,
0.7593426684357754,
0.7663746453423731,
0.7732692434832563,
0.7800281621663296,
0.786653203984865
],
[
0.47419493512817473,
0.47201383778193795,
0.47060776016872635,
0.4699755824939627,
0.4701096310270318,
0.47099587882121957,
0.4726143154000521,
0.47493946502964435,
0.47794102501688646,
0.4815845902197393,
0.48583242793268844,
0.4906442683535953,
0.4959780794077054,
0.5017908000334459,
0.5080390122879404,
0.5146795390438439,
0.5216699600187619,
0.5289690440004565,
0.5365370991979809,
0.5443362466179628,
0.552330623312467,
0.5604865234177591,
0.5687724852815157,
0.5771593328409853,
0.5856201789308558,
0.5941303975046134,
0.6026675709544977,
0.6112114178913672,
0.619743705950551,
0.628248153456531,
0.6367103231258764,
0.6451175104210846,
0.6534586286870794,
0.6617240928013937,
0.6699057027404315,
0.677996528198055,
0.6859907951795334,
0.6938837753243471,
0.7016716785770235,
0.7093515497186916,
0.7169211691869025,
0.7243789585421199,
0.7317238908817089,
0.7389554064526394,
0.7460733336697292,
0.7530778157049555,
0.759969242773631,
0.7667481902040579,
0.7734153623380293,
0.7799715422699799
],
[
0.4984255995803802,
0.49591715686862053,
0.4940979186369259,
0.4929688036568928,
0.4925254289092562,
0.4927582201267024,
0.49365264530534675,
0.4951895605034039,
0.4973456515349349,
0.5000939509308011,
0.5034044070814617,
0.5072444818611865,
0.5115797541036665,
0.5163745087291303,
0.5215922946911881,
0.5271964387734366,
0.53315050621628,
0.539418702868834,
0.5459662168135772,
0.5527595000762159,
0.5597664930694571,
0.5669567958513421,
0.5743017911743379,
0.581774724751044,
0.5893507482639203,
0.5970069304936464,
0.6047222416160626,
0.6124775152895644,
0.6202553926765764,
0.6280402520537492,
0.6358181271928108,
0.643576617254898,
0.6513047905451559,
0.6589930841252751,
0.6666332009793544,
0.6742180061702389,
0.6817414232050869,
0.6891983316453008,
0.6965844668418092,
0.7038963225470117,
0.7111310570446201,
0.7182864033440826,
0.7253605839035556,
0.7323522302714851,
0.7392603079693811,
0.746084046875384,
0.7528228773083666,
0.7594763719546574,
0.7660441937234065,
0.772526049561953
],
[
0.5222204683575695,
0.5193977584887131,
0.5171843901497587,
0.5155827273905893,
0.5145908663812901,
0.5142026934957488,
0.5144080320038352,
0.5151928719711683,
0.5165396741439863,
0.5184277354877548,
0.5208336018778317,
0.5237315123204936,
0.5270938590060071,
0.530891648351144,
0.535094949788887,
0.5396733211783687,
0.5445962021008326,
0.5498332687601225,
0.5553547465414034,
0.5611316783707515,
0.56713614878261,
0.5733414650084041,
0.5797222974502707,
0.5862547826269925,
0.5929165921186718,
0.5996869712434444,
0.6065467512256045,
0.6134783385081307,
0.6204656846659758,
0.6274942401243352,
0.6345508946057825,
0.6416239069419374,
0.6487028266034467,
0.6557784090358861,
0.6628425266438578,
0.6698880770435515,
0.6769088900054882,
0.6838996343328415,
0.6908557257645717,
0.6977732368540136,
0.7046488096498323,
0.7114795718948215,
0.7182630573564043,
0.724997130808903,
0.7316799180999147,
0.7383097416501603,
0.7448850616570046,
0.7514044231958685,
0.7578664093406577,
0.7642696003540863
],
[
0.5453869453149311,
0.5422626214537728,
0.53967337603237,
0.5376225544081986,
0.5361100872651372,
0.5351325206680009,
0.5346831094783622,
0.5347519714560588,
0.5353262968907885,
0.5363906064602907,
0.537927048342915,
0.5399157245185165,
0.5423350357090058,
0.5451620345170869,
0.548372776948356,
0.5519426635422263,
0.555846762666738,
0.5600601100235435,
0.564557979944856,
0.5693161255456093,
0.5743109861475634,
0.579519861568943,
0.5849210538482793,
0.590493977738851,
0.5962192418801142,
0.6020787029442192,
0.6080554952946928,
0.6141340388081155,
0.6203000275254422,
0.6265404017423226,
0.6328433060390866,
0.6391980356088101,
0.6455949730802685,
0.6520255178621979,
0.6584820098638093,
0.6649576492789454,
0.6714464139607101,
0.6779429757613848,
0.6844426170693337,
0.6909411486401378,
0.6974348296926005,
0.7039202911206126,
0.7103944625581154,
0.7168545039257453,
0.7232977419834052,
0.7297216123124963,
0.7361236070546576,
0.7425012286404664,
0.7488519496519133,
0.7551731788768663
],
[
0.5677741876329557,
0.5643605768758583,
0.5614129979159823,
0.5589354142169977,
0.5569290792869629,
0.5553925542212715,
0.554321770291329,
0.5537101352018795,
0.5535486800654564,
0.5538262427204389,
0.5545296818378199,
0.5556441153871646,
0.557153176502193,
0.5590392796093493,
0.5612838898389578,
0.5638677891855375,
0.5667713335627093,
0.569974695741672,
0.573458090101732,
0.5772019760933801,
0.5811872382643507,
0.5853953415845795,
0.5898084615971407,
0.5944095896013413,
0.599182613634117,
0.6041123764580772,
0.6091847120964818,
0.6143864626888919,
0.6197054775897838,
0.6251305967106006,
0.6306516201272653,
0.6362592659528161,
0.6419451184194009,
0.6477015680344868,
0.6535217455801045,
0.6593994516166762,
0.6653290830387854,
0.6713055581117889,
0.6773242412976361,
0.6833808690567151,
0.689471477690957,
0.695592334172151,
0.7017398707790107,
0.7079106242471639,
0.7141011800185016,
0.7203081220605828,
0.7265279886137888,
0.7327572341143418,
0.7389921974359711,
0.7452290764928724
],
[
0.5892689949736093,
0.5855782764494138,
0.5822893850818465,
0.5794066174629193,
0.5769321432231508,
0.5748660196745911,
0.5732062383609016,
0.5719488026733848,
0.57108783470508,
0.570615708601165,
0.5705232068731199,
0.570799695516972,
0.5714333133401878,
0.5724111706706,
0.5737195525926422,
0.5753441220165224,
0.577270118209426,
0.5794825468717701,
0.5819663583895965,
0.5847066114994397,
0.5876886202301157,
0.5908980826067214,
0.5943211901916118,
0.5979447180771781,
0.6017560954240093,
0.6057434570492455,
0.6098956769118313,
0.6142023846158464,
0.6186539662646283,
0.6232415511528491,
0.6279569858880188,
0.6327927975938221,
0.6377421478719367,
0.6427987791925093,
0.6479569553515114,
0.6532113975801861,
0.6585572178214663,
0.6639898506035649,
0.6695049848444248,
0.6750984968144458,
0.6807663853706555,
0.6865047104549452,
0.6923095357236255,
0.698176876047051,
0.7041026504878365,
0.7100826412360368,
0.71611245885109,
0.7221875140351192,
0.7283029960419168,
0.7344538577121844
],
[
0.609791797860041,
0.6058362283072443,
0.6022227801292573,
0.5989558591132543,
0.5960382271739194,
0.5934710198227404,
0.5912537862252258,
0.5893845511597261,
0.5878598975730627,
0.5866750678499114,
0.5858240814025806,
0.5852998657685727,
0.5850943980925916,
0.5851988536775483,
0.5856037582186505,
0.5862991403815022,
0.587274681539228,
0.5885198597297048,
0.5900240852139408,
0.591776825390601,
0.5937677172297726,
0.5959866658127205,
0.5984239279869467,
0.6010701805536983,
0.6039165727873477,
0.6069547634349416,
0.6101769426547531,
0.6135758396220339,
0.6171447167577161,
0.6208773517220646,
0.624768008462011,
0.6288113987102815,
0.6330026354091359,
0.6373371795741792,
0.6418107821270743,
0.6464194222124997,
0.6511592434769136,
0.6560264897269138,
0.6610174413055105,
0.6661283534278332,
0.6713553976059563,
0.6766946071682323,
0.6821418277442712,
0.6876926734452437,
0.6933424893233465,
0.6990863205467933,
0.7049188885805336,
0.7108345745206464,
0.7168274095946834,
0.7228910727133647
],
[
0.6292928378830513,
0.6250850035804644,
0.6211637828896188,
0.6175335151213995,
0.614197296513794,
0.6111570037087511,
0.6084133332907341,
0.6059658566868155,
0.6038130893328639,
0.6019525726425495,
0.6003809669909165,
0.5990941536548375,
0.598087343448885,
0.5973551896633966,
0.5968919028544654,
0.5966913650523972,
0.596747241041487,
0.5970530845129307,
0.5976024370951124,
0.5983889185111394,
0.5994063063913223,
0.6006486045674192,
0.6021100989856693,
0.6037854006874716,
0.6056694756120908,
0.6077576612680388,
0.6100456705934756,
0.6125295835766918,
0.6152058274323404,
0.6180711463252386,
0.6211225617996502,
0.6243573252069493,
0.6277728635279156,
0.6313667200574218,
0.6351364914591945,
0.6390797627071557,
0.6431940414086402,
0.6474766929548649,
0.6519248778673442,
0.6565354926078159,
0.6613051149966002,
0.6662299552434793,
0.6713058134399192,
0.6765280441958463,
0.6818915289325076,
0.6873906561695191,
0.693019309973295,
0.6987708665696144,
0.7046381989687993,
0.7106136893108992
],
[
0.647748575666239,
0.6433016554423484,
0.6390897844284212,
0.6351170986902527,
0.6313868239111564,
0.6279013063978447,
0.6246620556475547,
0.6216697977075124,
0.6189245382932053,
0.6164256343893835,
0.6141718728460092,
0.6121615543076352,
0.6103925806846767,
0.6088625442925663,
0.6075688167515725,
0.6065086357563123,
0.6056791878875886,
0.6050776857471132,
0.6047014378432345,
0.6045479098376699,
0.6046147759734991,
0.6048999597371231,
0.6054016630553147,
0.6061183835868512,
0.6070489199306829,
0.6081923648338446,
0.6095480867370475,
0.6111157002394892,
0.6128950262922778,
0.6148860431378074,
0.6170888291964861,
0.6195034992587402,
0.6221301354659868,
0.6249687146563768,
0.6280190337075143,
0.6312806345274239,
0.6347527303264041,
0.6384341347463198,
0.6423231953320697,
0.6464177327049451,
0.6507149866432285,
0.6552115700963856,
0.6599034319611555,
0.6647858292369734,
0.6698533089609282,
0.6750997001054607,
0.6805181154115326,
0.6861009629317905,
0.6918399668773354,
0.6977261972021048
],
[
0.6651583298629018,
0.6604863567302809,
0.6560016027682105,
0.6517078961490864,
0.6476084306855756,
0.6437058048121878,
0.6400020690836677,
0.6364987813542489,
0.63319706861128,
0.6300976942647137,
0.6272011295458304,
0.6245076275485723,
0.6220172983585465,
0.6197301836605251,
0.6176463291965292,
0.6157658534638323,
0.6140890110949234,
0.612616249448439,
0.6113482570593874,
0.6102860027462657,
0.6094307643490323,
0.6087841462722565,
0.608348085228632,
0.6081248438157042,
0.6081169918091583,
0.6083273753148443,
0.6087590741842761,
0.6094153483592967,
0.6102995740652927,
0.6114151710127803,
0.6127655219878201,
0.6143538864061534,
0.6161833095676112,
0.6182565294702852,
0.6205758831228139,
0.623143214323853,
0.6259597848576478,
0.629026190982772,
0.632342286968741,
0.6359071172655257,
0.6397188586793674,
0.6437747736819293,
0.6480711757073742,
0.6526034070033158,
0.657365829307035,
0.6623518273282483,
0.667553824743755,
0.6729633121561232,
0.6785708862453236,
0.6843662991542052
],
[
0.6815411306167135,
0.6766592405982604,
0.6719203075027652,
0.6673277741820398,
0.662884677777292,
0.6585936964377376,
0.654457202545591,
0.6504773215705603,
0.6466559955274309,
0.6429950498759212,
0.6394962625859221,
0.636161433996503,
0.6329924560258797,
0.6299913792438536,
0.6271604762993966,
0.6245023002050386,
0.6220197360171777,
0.6197160445176334,
0.6175948965969335,
0.6156603971637177,
0.6139170975570646,
0.6123699956188288,
0.6110245227903015,
0.609886517830198,
0.6089621870069508,
0.6082580508944583,
0.6077808781927334,
0.6075376072978032,
0.6075352566519905,
0.6077808252082888,
0.6082811846314499,
0.6090429651233681,
0.6100724369904049,
0.6113753902546153,
0.6129570147391591,
0.6148217831217859,
0.6169733394426925,
0.6194143954705204,
0.6221466371727368,
0.6251706433075542,
0.6284858178612868,
0.632090337708367,
0.6359811164849347,
0.6401537852566876,
0.6446026901444727,
0.6493209066636939,
0.654300270151772,
0.6595314213152426,
0.66500386563553,
0.6707060451375357
],
[
0.6969327587573231,
0.6918574155660443,
0.6868842057967025,
0.6820161332042405,
0.6772559847357292,
0.6726063843245649,
0.6680698519026073,
0.6636488667451907,
0.6593459341373903,
0.6551636542347367,
0.6511047918896716,
0.6471723461284873,
0.6433696178938854,
0.639700274617167,
0.6361684101529302,
0.6327785985993971,
0.6295359405406085,
0.6264461002844832,
0.6235153327347956,
0.6207504986276422,
0.6181590669858953,
0.6157491038006643,
0.6135292461387032,
0.61150866110031,
0.6096969893141312,
0.6081042729525464,
0.6067408685815289,
0.6056173455174814,
0.6047443707435312,
0.6041325818294107,
0.6037924496901119,
0.6037341333940542,
0.6039673295749147,
0.6045011192946117,
0.6053438154303453,
0.6065028137995404,
0.6079844512791216,
0.6097938741101938,
0.6119349194015141,
0.6144100125572145,
0.617220082964525,
0.6203644998008063,
0.6238410292766224,
0.627645814047537,
0.6317733749291387,
0.6362166344649794,
0.6409669613516817,
0.6460142342419296,
0.6513469230420653,
0.6569521855084128
],
[
0.7113829356345863,
0.7061321196605702,
0.7009459548784449,
0.6958269731418082,
0.6907776449913,
0.6858004396200482,
0.6808978892607035,
0.6760726571309282,
0.6713276079617571,
0.6666658800282027,
0.6620909575049826,
0.6576067418835663,
0.6532176211108146,
0.6489285350456313,
0.6447450357795159,
0.6406733413313636,
0.6367203812083857,
0.63289383232613,
0.6292021438044892,
0.6256545492070348,
0.6222610648723357,
0.6190324731029823,
0.6159802891357017,
0.613116711019202,
0.6104545517792549,
0.6080071535560523,
0.6057882837579309,
0.6038120136863918,
0.6020925805446159,
0.6006442342360266,
0.5994810708767851,
0.5986168554678449,
0.598064836675261,
0.5978375571255463,
0.5979466630075114,
0.598402717054985,
0.5992150191400368,
0.600391438712974,
0.601938263169844,
0.6038600659065686,
0.6061595973378715,
0.6088377015369013,
0.611893260415989,
0.6153231665570325,
0.6191223249535768,
0.6232836830898602,
0.6277982879974053,
0.63265536823447,
0.6378424381574296,
0.6433454214157792
],
[
0.7249526274979081,
0.7195459774957641,
0.7141697651912264,
0.7088260365695898,
0.7035169037283938,
0.6982446099923123,
0.6930115989769736,
0.6878205867839595,
0.6826746364069672,
0.6775772333306974,
0.6725323612098969,
0.6675445764265349,
0.6626190802388133,
0.6577617871572494,
0.6529793881113937,
0.6482794069073078,
0.6436702484228766,
0.6391612369482157,
0.6347626430558811,
0.6304856973851625,
0.626342589752653,
0.6223464520646409,
0.6185113236138222,
0.6148520975019215,
0.6113844471497585,
0.608124732144929,
0.6050898830408218,
0.6022972651624255,
0.5997645219935885,
0.5975093993106996,
0.5955495518765367,
0.5939023351949801,
0.5925845855248161,
0.5916123920240449,
0.5910008655046822,
0.5907639087784475,
0.59091399392283,
0.5914619519559592,
0.5924167803474496,
0.5937854734937175,
0.5955728807489549,
0.5977815958436304,
0.6004118805752927,
0.6034616245712962,
0.6069263417610711,
0.6107992030238109,
0.615071103362947,
0.6197307609621202,
0.6247648446477791,
0.6301581256551109
],
[
0.7377114326647314,
0.7321703289523982,
0.726628663534983,
0.7210879995373937,
0.7155500701018113,
0.7100168476008153,
0.7044906165288201,
0.6989740493147335,
0.6934702842054281,
0.6879830042771494,
0.6825165165401865,
0.6770758300106876,
0.6716667315322568,
0.6662958580388985,
0.6609707638603367,
0.6556999815816654,
0.6504930748833764,
0.6453606817077736,
0.6403145460275866,
0.6353675364376774,
0.6305336497581976,
0.625827997836225,
0.6212667757733826,
0.6168672099012483,
0.6126474839877178,
0.6086266423992035,
0.604824469278451,
0.6012613432361256,
0.5979580676027196,
0.5949356769461445,
0.5922152213219923,
0.589817530570363,
0.5877629618765321,
0.5860711347320539,
0.5847606583168091,
0.5838488571112234,
0.5833515011771481,
0.583282547952908,
0.5836539025376802,
0.5844752032527517,
0.585753638743449,
0.5874938020327403,
0.5896975857904254,
0.5923641217013825,
0.5954897652850273,
0.5990681259320151,
0.6030901403836014,
0.6075441864782629,
0.6124162328084877,
0.6176900190254562
],
[
0.7497350291398451,
0.7440826082509301,
0.738401796329096,
0.7326936918192999,
0.726959647478202,
0.7212013426662645,
0.7154208591633335,
0.709620759818829,
0.7038041692630257,
0.6979748558198786,
0.6921373136736559,
0.6862968442504084,
0.6804596356801672,
0.6746328391060507,
0.6688246405017394,
0.6630443265492597,
0.6573023430155845,
0.6516103439512755,
0.6459812299206089,
0.640429173365517,
0.6349696291124122,
0.629619327961063,
0.6243962512601977,
0.6193195843900638,
0.6144096471545651,
0.6096877992535694,
0.6051763192787901,
0.6008982560728507,
0.5968772518263609,
0.5931373369721422,
0.5897026977707079,
0.5865974184566183,
0.5838452009067976,
0.5814690659580989,
0.5794910416840837,
0.5779318450661404,
0.5768105644759968,
0.5761443511345763,
0.575948128139036,
0.5762343256828796,
0.5770126506853971,
0.578289898182,
0.5800698105317276,
0.5823529888378366,
0.5851368590537893,
0.5884156931882797,
0.5921806839703534,
0.5964200694280744,
0.6011193021931747,
0.6062612570621658
],
[
0.7611026740751492,
0.7553637667979172,
0.7495717685758296,
0.7437273446296894,
0.7378314825437141,
0.7318855666898768,
0.7258914560774735,
0.7198515650082087,
0.713768945841043,
0.7076473730920658,
0.7014914280115125,
0.6953065826913833,
0.6890992826614869,
0.6828770268278057,
0.6766484434936948,
0.6704233610808933,
0.6642128720336742,
0.6580293882466546,
0.6518866862073025,
0.6457999398921712,
0.6397857393079347,
0.6338620924335606,
0.6280484082108788,
0.6223654581631892,
0.6168353142147581,
0.6114812603607255,
0.6063276760221467,
0.6013998892409536,
0.5967239983497277,
0.5923266614126526,
0.5882348535904227,
0.5844755936347906,
0.5810756419528482,
0.5780611740615744,
0.5754574347207824,
0.5732883795048558,
0.5715763119469489,
0.5703415255454735,
0.5696019607394744,
0.5693728873240377,
0.5696666226011357,
0.5704922947968555,
0.5718556599250344,
0.5737589783991398,
0.5762009554021664,
0.579176746476665,
0.5826780271793237,
0.5866931231486621,
0.5912071947361468,
0.5962024685908125
],
[
0.7718947631324924,
0.7660957507676154,
0.7602220326241016,
0.7542738833381518,
0.7482519546047965,
0.742157350883968,
0.7359917084511688,
0.7297572772381256,
0.7234570048410204,
0.7170946220022238,
0.7106747287943298,
0.7042028806510281,
0.6976856732960429,
0.6911308255171367,
0.6845472586152118,
0.6779451712273663,
0.6713361080764568,
0.6647330210381895,
0.6581503207412964,
0.6516039167298844,
0.645111244024906,
0.6386912737320821,
0.6323645051682539,
0.6261529368328954,
0.6200800134567002,
0.6141705463397324,
0.6084506042768166,
0.602947372590094,
0.5976889781818121,
0.5927042791166257,
0.5880226180684099,
0.5836735400374516,
0.5796864760585467,
0.5760903961549381,
0.5729134364949305,
0.5701825074940309,
0.5679228913613944,
0.5661578391752194,
0.5649081788322954,
0.5641919459974741,
0.5640240503446754,
0.5644159888385804,
0.5653756165212005,
0.5669069832779571,
0.5690102424763687,
0.571681634376291,
0.5749135440306885,
0.5786946302776137,
0.5830100196050796,
0.5878415563502005
],
[
0.7821904755456675,
0.7763590629588152,
0.7704343602964401,
0.7644163031040941,
0.7583052477648182,
0.7521020477421428,
0.7458081330806046,
0.7394255926667765,
0.7329572586935765,
0.7264067927059494,
0.7197787725352537,
0.7130787793508007,
0.7063134839678672,
0.6994907314498013,
0.6926196229253058,
0.6857105934084594,
0.6787754842568166,
0.6718276087309828,
0.6648818089274788,
0.6579545021471929,
0.6510637145381488,
0.6442290996204739,
0.637471939073827,
0.630815122957961,
0.624283106365632,
0.6179018393993011,
0.6116986673504119,
0.6057021980788406,
0.5999421338806594,
0.5944490656356479,
0.5892542277801922,
0.584389213685692,
0.5798856523513635,
0.5757748489340487,
0.5720873934965103,
0.5688527443831154,
0.5660987947120472,
0.5638514324537535,
0.5621341062661204,
0.560967410486208,
0.5603687032557686,
0.5603517715397928,
0.5609265557036269,
0.5620989443478206,
0.563870647357063,
0.5662391517861985,
0.5691977615390796,
0.5727357180918763,
0.5768383960706495,
0.5814875645770783
],
[
0.7920655472609046,
0.7862304557108069,
0.7802864498771809,
0.7742331840093484,
0.7680707680694826,
0.761799843871307,
0.7554216643691702,
0.7489381756486934,
0.7423521011164146,
0.7356670273275021,
0.7288874908257991,
0.7220190652971803,
0.7150684482530605,
0.7080435463633992,
0.7009535584450769,
0.6938090549795041,
0.6866220528804557,
0.679406084057672,
0.6721762561228245,
0.6649493033626434,
0.6577436258618541,
0.6505793144014471,
0.6434781584945812,
0.6364636346665454,
0.6295608718554611,
0.6227965906318291,
0.6161990128392523,
0.6097977382838256,
0.6036235852895747,
0.5977083923389775,
0.5920847786777097,
0.5867858627222631,
0.5818449383956471,
0.5772951111361085,
0.5731688972517506,
0.5694977924659554,
0.5663118178055818,
0.5636390532716693,
0.5615051718074946,
0.5599329877241891,
0.5589420347418014,
0.5585481889648043,
0.5587633513071166,
0.5595952020726193,
0.5610470376491331,
0.5631176957618101,
0.565801571724592,
0.5690887239566808,
0.5729650630449427,
0.5774126151560107
],
[
0.8015902277062246,
0.7957808151906363,
0.7898497333512089,
0.7837964165237946,
0.7776207823343908,
0.7713233071850337,
0.7649051047562814,
0.758368007115477,
0.751714647971471,
0.7449485475633097,
0.7380741986107754,
0.7310971526864842,
0.7240241062901267,
0.7168629858127619,
0.7096230304700984,
0.7023148721556096,
0.6949506110145135,
0.6875438853658516,
0.6801099344006615,
0.6726656518592667,
0.6652296286415813,
0.6578221820350822,
0.6504653689632228,
0.6431829803744012,
0.6360005136253128,
0.6289451194862193,
0.6220455202399103,
0.6153318952988412,
0.6088357308707695,
0.6025896305119016,
0.5966270839696894,
0.5909821925832816,
0.5856893507162148,
0.5807828842619507,
0.5762966491777652,
0.5722635952165521,
0.5687153024425952,
0.5656815005891906,
0.563189583649304,
0.5612641340571298,
0.5599264721781675,
0.5591942473561978,
0.5590810862981146,
0.5595963130292261,
0.5607447520505202,
0.5625266228246296,
0.5649375295689554,
0.5679685458850057,
0.5716063893828633,
0.5758336775360628
],
[
0.8108274835019608,
0.8050733050819386,
0.79918745692589,
0.7931692156680827,
0.787018362732906,
0.7807352586960148,
0.7743209204994,
0.7677771011375779,
0.7611063713874876,
0.7543122031055097,
0.7473990535595008,
0.7403724501998346,
0.7332390751988069,
0.7260068489998328,
0.7186850120139007,
0.7112842034779031,
0.7038165363450097,
0.6962956669087764,
0.6887368576683713,
0.6811570317214461,
0.6735748167246385,
0.6660105761926935,
0.6584864256219997,
0.6510262306334549,
0.643655584048533,
0.6364017585629483,
0.6292936314931571,
0.6223615779782943,
0.615637329067422,
0.6091537913586276,
0.6029448253351047,
0.5970449803152605,
0.5914891850425127,
0.5863123944127293,
0.5815491946737121,
0.5772333715952765,
0.5733974485178903,
0.5700722037088977,
0.567286178904141,
0.5650651930648855,
0.5634318769899378,
0.5624052452530643,
0.5620003217913558,
0.5622278342344144,
0.5630939897282514,
0.5646003416855219,
0.5667437528192633,
0.5695164553203512,
0.5729062045037879,
0.5768965180629345
],
[
0.8198315133553563,
0.814161838136757,
0.8083531077275982,
0.8024045014367996,
0.7963157196579274,
0.7900870566922331,
0.783719476234523,
0.7772146891578366,
0.7705752331910272,
0.7638045540369626,
0.7569070874265635,
0.7498883415433045,
0.7427549791819261,
0.7355148989215025,
0.7281773144940595,
0.7207528314129578,
0.7132535197875819,
0.7056929820901982,
0.6980864144552754,
0.6904506598803335,
0.6828042514610225,
0.6751674435344,
0.6675622283287929,
0.6600123354356067,
0.652543211142058,
0.6451819744139184,
0.6379573461204477,
0.6308995479833166,
0.6240401677481306,
0.6174119872678817,
0.6110487706027055,
0.6049850099299725,
0.5992556280671246,
0.5938956377670036,
0.5889397596585743,
0.5844220027485745,
0.580375213702708,
0.5768306035711103,
0.573817263045102,
0.5713616795217737,
0.5694872709750138,
0.568213952651336,
0.5675577527237038,
0.5675304921108267,
0.568139541664765,
0.5693876669241396,
0.5712729668202168,
0.5737889084058759,
0.5769244552153877,
0.5806642826358818
],
[
0.8286466318816016,
0.8230899366022683,
0.8173892510546616,
0.8115437133455953,
0.8055529943282743,
0.7994173685161057,
0.7931377874418138,
0.786715955108712,
0.7801544051407612,
0.7734565791934941,
0.7666269061374432,
0.7596708814675915,
0.7525951463245655,
0.745407565433535,
0.7381173031727486,
0.730734896872813,
0.7232723263179187,
0.7157430782690383,
0.7081622046551639,
0.7005463728811503,
0.6929139064803823,
0.685284814099796,
0.6776808045489967,
0.6701252853828651,
0.6626433422310921,
0.6552616958565582,
0.6480086337414336,
0.6409139128957487,
0.6340086305948153,
0.6273250599215985,
0.6208964473638904,
0.6147567703399028,
0.6089404534406013,
0.6034820434119149,
0.5984158444636528,
0.5937755173643943,
0.589593647904978,
0.5859012925862563,
0.5827275116634374,
0.5800989017737256,
0.5780391420739918,
0.5765685689039282,
0.5757037942740907,
0.575457382818535,
0.5758376001925586,
0.5768482432845126,
0.5784885592021475,
0.5807532560410252,
0.5836326042658436,
0.5871126234837173
],
[
0.8373065665183037,
0.831890027636019,
0.8263268262101938,
0.820616108989082,
0.8147575628321853,
0.8087514833737461,
0.8025988458907634,
0.7963013780268826,
0.7898616339842164,
0.7832830697516664,
0.7765701188892918,
0.7697282683320418,
0.7627641336109809,
0.7556855328139896,
0.748501558518768,
0.7412226468266874,
0.7338606425046641,
0.7264288591020039,
0.7189421327489672,
0.7114168681632123,
0.7038710751902566,
0.6963243939872733,
0.6887981067309688,
0.6813151334980516,
0.6739000097427581,
0.6665788425964876,
0.659379243061325,
0.6523302310891331,
0.6454621105634328,
0.6388063113694086,
0.6323951960880153,
0.6262618294229438,
0.6204397092993278,
0.6149624596853798,
0.6098634865901462,
0.6051756003649535,
0.6009306093337107,
0.5971588918118287,
0.5938889556205523,
0.5911469961039287,
0.5889564652266996,
0.5873376653839374,
0.5863073819151481,
0.5858785678577294,
0.586060093135682,
0.5868565681838455,
0.5882682490731677,
0.5902910277322045,
0.5929165071227668,
0.596132157524474
],
[
0.8458341923458847,
0.8405831989103526,
0.8351849263232343,
0.829638572015546,
0.8239438767671332,
0.8181011908022927,
0.8121115418300797,
0.805976704680514,
0.799699272149058,
0.7932827266189475,
0.7867315119829857,
0.7800511053318431,
0.7732480878132059,
0.7663302139936267,
0.7593064789708983,
0.7521871823875546,
0.7449839883840875,
0.7377099804024966,
0.7303797096060741,
0.7230092355200577,
0.715616157321189,
0.7082196340152266,
0.7008403915450494,
0.6935007146758736,
0.6862244213191924,
0.6790368167981436,
0.671964625443126,
0.6650358968611059,
0.6582798842729576,
0.6517268924915344,
0.6454080934521047,
0.6393553077387173,
0.6336007513030053,
0.6281767475649491,
0.6231154063223552,
0.6184482723609117,
0.6142059483069627,
0.6104176980278212,
0.6071110386556837,
0.6043113309591982,
0.6020413791602317,
0.6003210522355062,
0.599166939109071,
0.5985920498210617,
0.5986055736928662,
0.5992127037091795,
0.6004145338892998,
0.6022080334810593,
0.6045860985952851,
0.6075376786535857
],
[
0.8542417065523997,
0.849179414919705,
0.8439710611384915,
0.8386159266119197,
0.8331138352776428,
0.827465216840957,
0.8216711716789787,
0.81573353706407,
0.809654954316201,
0.8034389364517611,
0.7970899358494078,
0.7906134114007356,
0.7840158945535688,
0.7773050535871746,
0.770489755380336,
0.7635801238437337,
0.7565875940863855,
0.7495249612712529,
0.7424064229873629,
0.7352476138254623,
0.7280656306930672,
0.7208790472458516,
0.7137079156506787,
0.70657375373844,
0.6994995154622807,
0.6925095424618342,
0.6856294944632878,
0.6788862562383942,
0.6723078189259426,
0.6659231337121353,
0.659761936198056,
0.6538545402780159,
0.6482316010328003,
0.6429238470195123,
0.6379617834152019,
0.6333753687283709,
0.6291936691934171,
0.6254444964472141,
0.6221540355693795,
0.6193464719421523,
0.6170436265313755,
0.6152646099818495,
0.614025506243238,
0.6133390962068815,
0.6132146309902087,
0.6136576630570231,
0.6146699413703691,
0.6162493743580946,
0.6183900617942507,
0.6210823939557841
],
[
0.8625312200042394,
0.8576781687515842,
0.8526818744337371,
0.8475417266024955,
0.8422576525254465,
0.8368301772893851,
0.8312604852934785,
0.8255504827763047,
0.819702860982797,
0.8137211595357376,
0.8076098295308836,
0.8013742958241317,
0.7950210179223539,
0.7885575488256213,
0.7819925910965321,
0.7753360493513999,
0.7685990782775491,
0.761794125180606,
0.754934965955797,
0.7480367332588493,
0.7411159355271679,
0.7341904653738396,
0.7272795957505203,
0.7204039621572391,
0.7135855290765284,
0.7068475387375278,
0.7002144402867769,
0.6937117974727564,
0.6873661730594209,
0.6812049883898359,
0.6752563568445861,
0.6695488903990693,
0.6641114790932949,
0.6589730439945405,
0.6541622651541489,
0.6497072871184488,
0.6456354057176732,
0.6419727410753956,
0.6387439029862723,
0.6359716559181954,
0.6336765918126556,
0.6318768194881171,
0.6305876797074558,
0.6298214947830927,
0.629587360923773,
0.6298909903752525,
0.630734608817334,
0.6321169115382849,
0.6340330797373368,
0.6364748560534197
],
[
0.8706957204974339,
0.8660695200244446,
0.8613042624518883,
0.8563994607354448,
0.8513551567980252,
0.8461719782711297,
0.8408511963439944,
0.8353947843610597,
0.8298054767709683,
0.8240868279901031,
0.8182432706999652,
0.8122801730497224,
0.8062038941823294,
0.8000218374440011,
0.7937425005719171,
0.7873755220833616,
0.7809317230108608,
0.7744231430424238,
0.7678630700343961,
0.7612660617680472,
0.7546479587220688,
0.7480258865350031,
0.7414182467388439,
0.7348446942638798,
0.7283261001531158,
0.721884497892044,
0.7155430117676451,
0.7093257657324836,
0.7032577713799898,
0.6973647938504578,
0.6916731947983543,
0.6862097519726043,
0.6810014555012545,
0.6760752816329504,
0.6714579454644738,
0.6671756350601827,
0.6632537303175077,
0.6597165109115503,
0.656586858607556,
0.6538859600983389,
0.6516330172337296,
0.6498449719891931,
0.6485362537058066,
0.6477185559731167,
0.6474006499916427,
0.6475882403426553,
0.6482838678406508,
0.6494868626112693,
0.6511933488134026,
0.6533963006173094
],
[
0.8787203430608383,
0.8743354497414387,
0.8698168190390636,
0.8651640943113993,
0.8603774353454151,
0.8554575715479692,
0.8504058559688474,
0.8452243197950307,
0.8399157269188808,
0.8344836281444793,
0.8289324145550602,
0.8232673695198729,
0.8174947187703968,
0.8116216779231736,
0.805656496769364,
0.7996084995892828,
0.7934881206837856,
0.7873069342439397,
0.7810776776068805,
0.7748142668706853,
0.7685318037668062,
0.7622465726183242,
0.755976026150264,
0.7497387588699008,
0.7435544667071138,
0.7374438916053916,
0.7314287497922759,
0.7255316425440685,
0.7197759484042422,
0.714185696028972,
0.708785417126325,
0.7035999793356473,
0.6986543993649895,
0.6939736372663632,
0.6895823733742608,
0.6855047701472422,
0.6817642219117195,
0.678383096278404,
0.6753824717435036,
0.6727818766502418,
0.6705990352191219,
0.6688496267055117,
0.6675470638637554,
0.6667022967522791,
0.6663236474841276,
0.6664166808122668,
0.6669841144614527,
0.6680257719231192,
0.6695385790807779,
0.6715166046088594
],
[
0.8865838688547617,
0.8824514486964431,
0.8781915188388422,
0.8738038528087596,
0.869288724463068,
0.8646469574913443,
0.8598799754892682,
0.8549898522427322,
0.8499793618282283,
0.8448520280989165,
0.8396121730875118,
0.8342649638164716,
0.8288164569626482,
0.8232736407774224,
0.8176444736143079,
0.8119379183642241,
0.8061639720444851,
0.8003336897317348,
0.7944592019727134,
0.7885537247515233,
0.7826315610402225,
0.776708092914105,
0.7707997631777135,
0.7649240454271239,
0.7590994014738747,
0.7533452250825019,
0.7476817710340631,
0.7421300686299271,
0.7367118189011571,
0.7314492749963492,
0.7263651054910012,
0.7214822406986315,
0.716823702469285,
0.7124124184321065,
0.7082710221677837,
0.7044216413704083,
0.7008856766570551,
0.6976835742810266,
0.6948345965695829,
0.6923565944030403,
0.6902657864413175,
0.6885765500491716,
0.6873012289397268,
0.6864499624227113,
0.6860305407958619,
0.6860482908561104,
0.6865059947478587,
0.6874038444408198,
0.6887394330850211,
0.6905077833813288
]
]
},
{
"hoverinfo": "text",
"legendgroup": "In-sample",
"marker": {
"color": "black",
"opacity": 0.5,
"symbol": 1
},
"mode": "markers",
"name": "In-sample",
"text": [
"Arm 0_0
hartmann6: -0.0767134 (SEM: 0)
x1: 0.151049
x2: 0.80222
x3: 0.165584
x4: 0.148435
x5: 0.0323852
x6: 0.950737",
"Arm 10_0
hartmann6: -0.0424803 (SEM: 0)
x1: 0.940238
x2: 0.871178
x3: 0.716303
x4: 0.0975526
x5: 0.283898
x6: 0.452116",
"Arm 11_0
hartmann6: -0.27375 (SEM: 0)
x1: 0.464369
x2: 0.439654
x3: 0.123788
x4: 0.561775
x5: 0.5115
x6: 0.881498",
"Arm 12_0
hartmann6: -0.0593292 (SEM: 0)
x1: 0.432881
x2: 0.201933
x3: 0.427252
x4: 0.381064
x5: 0.997119
x6: 0.00243286",
"Arm 13_0
hartmann6: -0.0769789 (SEM: 0)
x1: 0
x2: 0.417843
x3: 0.20196
x4: 0
x5: 0
x6: 1",
"Arm 14_0
hartmann6: -0.0275264 (SEM: 0)
x1: 0.310382
x2: 0
x3: 0.820433
x4: 0
x5: 0.165285
x6: 0.015951",
"Arm 15_0
hartmann6: -0.294382 (SEM: 0)
x1: 0
x2: 0.153259
x3: 0.287662
x4: 0
x5: 0
x6: 0.593177",
"Arm 16_0
hartmann6: -0.0143704 (SEM: 0)
x1: 0.274073
x2: 4.06894e-12
x3: 0.844319
x4: 0.177387
x5: 0.868363
x6: 0.0255218",
"Arm 17_0
hartmann6: -0.0778413 (SEM: 0)
x1: 0.506342
x2: 0.708289
x3: 0.860554
x4: 0
x5: 1.67832e-16
x6: 0",
"Arm 18_0
hartmann6: -0.866458 (SEM: 0)
x1: 0
x2: 0.409309
x3: 0.541239
x4: 2.39548e-12
x5: 0.138572
x6: 0.653377",
"Arm 19_0
hartmann6: -1.14643 (SEM: 0)
x1: 9.79387e-17
x2: 0.268533
x3: 0.321841
x4: 0
x5: 0.257193
x6: 0.587977",
"Arm 1_0
hartmann6: -0.0437483 (SEM: 0)
x1: 0.628794
x2: 0.386092
x3: 0.509957
x4: 0.698584
x5: 0.758152
x6: 0.380729",
"Arm 20_0
hartmann6: -0.0703902 (SEM: 0)
x1: 0.245677
x2: 0.842709
x3: 0.204642
x4: 0
x5: 0.969852
x6: 0.0842652",
"Arm 21_0
hartmann6: -1.03444 (SEM: 0)
x1: 2.31094e-13
x2: 0.220737
x3: 0.450272
x4: 0.166542
x5: 0.22728
x6: 0.978146",
"Arm 22_0
hartmann6: -0.277716 (SEM: 0)
x1: 3.05368e-16
x2: 0.415202
x3: 0.409978
x4: 0.0192546
x5: 0.211704
x6: 0.232917",
"Arm 23_0
hartmann6: -2.11135 (SEM: 0)
x1: 0.0365208
x2: 0.217949
x3: 0.483467
x4: 0.126903
x5: 0.215886
x6: 0.692569",
"Arm 24_0
hartmann6: -2.52931 (SEM: 0)
x1: 0.0172091
x2: 0.13585
x3: 0.569265
x4: 0.174137
x5: 0.267994
x6: 0.676789",
"Arm 25_0
hartmann6: -2.23812 (SEM: 0)
x1: 3.91382e-16
x2: 0.0513237
x3: 0.693434
x4: 0.209007
x5: 0.31231
x6: 0.644846",
"Arm 26_0
hartmann6: -2.77843 (SEM: 0)
x1: 0
x2: 0.0929705
x3: 0.487076
x4: 0.24231
x5: 0.307782
x6: 0.643826",
"Arm 27_0
hartmann6: -2.35064 (SEM: 0)
x1: 0
x2: 0
x3: 0.479246
x4: 0.206108
x5: 0.382805
x6: 0.672941",
"Arm 28_0
hartmann6: -2.40487 (SEM: 0)
x1: 1.89458e-09
x2: 2.71357e-09
x3: 0.483291
x4: 0.311506
x5: 0.242222
x6: 0.63382",
"Arm 2_0
hartmann6: -0.0653177 (SEM: 0)
x1: 0.793672
x2: 0.672334
x3: 0.317642
x4: 0.251004
x5: 0.566111
x6: 0.226271",
"Arm 3_0
hartmann6: -0.0889706 (SEM: 0)
x1: 0.302699
x2: 0.0140186
x3: 0.975583
x4: 0.841437
x5: 0.354257
x6: 0.671767",
"Arm 4_0
hartmann6: -0.114786 (SEM: 0)
x1: 0.434282
x2: 0.609244
x3: 0.64382
x4: 0.978195
x5: 0.387814
x6: 0.762737",
"Arm 5_0
hartmann6: -0.0236119 (SEM: 0)
x1: 0.912088
x2: 0.205075
x3: 0.0478265
x4: 0.426799
x5: 0.660582
x6: 0.31773",
"Arm 6_0
hartmann6: -2.21932 (SEM: 0)
x1: 0.510378
x2: 0.979358
x3: 0.874545
x4: 0.624344
x5: 0.983902
x6: 0.0382868",
"Arm 7_0
hartmann6: -1.30964 (SEM: 0)
x1: 0.019464
x2: 0.333001
x3: 0.465044
x4: 0.0351062
x5: 0.194292
x6: 0.608782",
"Arm 8_0
hartmann6: -0.0615707 (SEM: 0)
x1: 0.114111
x2: 0.743253
x3: 0.798537
x4: 0.489368
x5: 0.812672
x6: 0.723423",
"Arm 9_0
hartmann6: -0.004947 (SEM: 0)
x1: 0.607023
x2: 0.0695411
x3: 0.392637
x4: 0.915749
x5: 0.102896
x6: 0.168553"
],
"type": "scatter",
"x": [
0.15104858577251434,
0.9402376981452107,
0.4643686767667532,
0.43288128941456605,
0.0,
0.3103817281315674,
0.0,
0.27407340511027095,
0.5063418292737942,
0.0,
9.79386717272559e-17,
0.6287942994385958,
0.2456765463805269,
2.3109357035369174e-13,
3.05368381100543e-16,
0.036520837683747455,
0.017209067799860294,
3.913815733201904e-16,
0.0,
0.0,
1.8945762718047216e-09,
0.7936723520979285,
0.3026987947523594,
0.4342824285849929,
0.9120877645909786,
0.510377929545939,
0.019463995471596718,
0.11411143373697996,
0.6070231944322586
],
"xaxis": "x",
"y": [
0.8022201061248779,
0.8711780328303576,
0.439653679728508,
0.2019332659258263,
0.41784274597826465,
0.0,
0.1532587516949975,
4.068935787480984e-12,
0.7082886703880955,
0.4093087213867714,
0.26853266332644843,
0.3860921086743474,
0.8427091373589946,
0.22073741977397807,
0.41520181589672667,
0.21794852807987594,
0.13585037082790424,
0.05132373848295468,
0.09297047622460022,
0.0,
2.713565564402582e-09,
0.6723343254998326,
0.014018594287335873,
0.6092437170445919,
0.20507477037608624,
0.9793579112738371,
0.3330012522637844,
0.743252769112587,
0.06954112835228443
],
"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.0767134 (SEM: 0)
x1: 0.151049
x2: 0.80222
x3: 0.165584
x4: 0.148435
x5: 0.0323852
x6: 0.950737",
"Arm 10_0
hartmann6: -0.0424803 (SEM: 0)
x1: 0.940238
x2: 0.871178
x3: 0.716303
x4: 0.0975526
x5: 0.283898
x6: 0.452116",
"Arm 11_0
hartmann6: -0.27375 (SEM: 0)
x1: 0.464369
x2: 0.439654
x3: 0.123788
x4: 0.561775
x5: 0.5115
x6: 0.881498",
"Arm 12_0
hartmann6: -0.0593292 (SEM: 0)
x1: 0.432881
x2: 0.201933
x3: 0.427252
x4: 0.381064
x5: 0.997119
x6: 0.00243286",
"Arm 13_0
hartmann6: -0.0769789 (SEM: 0)
x1: 0
x2: 0.417843
x3: 0.20196
x4: 0
x5: 0
x6: 1",
"Arm 14_0
hartmann6: -0.0275264 (SEM: 0)
x1: 0.310382
x2: 0
x3: 0.820433
x4: 0
x5: 0.165285
x6: 0.015951",
"Arm 15_0
hartmann6: -0.294382 (SEM: 0)
x1: 0
x2: 0.153259
x3: 0.287662
x4: 0
x5: 0
x6: 0.593177",
"Arm 16_0
hartmann6: -0.0143704 (SEM: 0)
x1: 0.274073
x2: 4.06894e-12
x3: 0.844319
x4: 0.177387
x5: 0.868363
x6: 0.0255218",
"Arm 17_0
hartmann6: -0.0778413 (SEM: 0)
x1: 0.506342
x2: 0.708289
x3: 0.860554
x4: 0
x5: 1.67832e-16
x6: 0",
"Arm 18_0
hartmann6: -0.866458 (SEM: 0)
x1: 0
x2: 0.409309
x3: 0.541239
x4: 2.39548e-12
x5: 0.138572
x6: 0.653377",
"Arm 19_0
hartmann6: -1.14643 (SEM: 0)
x1: 9.79387e-17
x2: 0.268533
x3: 0.321841
x4: 0
x5: 0.257193
x6: 0.587977",
"Arm 1_0
hartmann6: -0.0437483 (SEM: 0)
x1: 0.628794
x2: 0.386092
x3: 0.509957
x4: 0.698584
x5: 0.758152
x6: 0.380729",
"Arm 20_0
hartmann6: -0.0703902 (SEM: 0)
x1: 0.245677
x2: 0.842709
x3: 0.204642
x4: 0
x5: 0.969852
x6: 0.0842652",
"Arm 21_0
hartmann6: -1.03444 (SEM: 0)
x1: 2.31094e-13
x2: 0.220737
x3: 0.450272
x4: 0.166542
x5: 0.22728
x6: 0.978146",
"Arm 22_0
hartmann6: -0.277716 (SEM: 0)
x1: 3.05368e-16
x2: 0.415202
x3: 0.409978
x4: 0.0192546
x5: 0.211704
x6: 0.232917",
"Arm 23_0
hartmann6: -2.11135 (SEM: 0)
x1: 0.0365208
x2: 0.217949
x3: 0.483467
x4: 0.126903
x5: 0.215886
x6: 0.692569",
"Arm 24_0
hartmann6: -2.52931 (SEM: 0)
x1: 0.0172091
x2: 0.13585
x3: 0.569265
x4: 0.174137
x5: 0.267994
x6: 0.676789",
"Arm 25_0
hartmann6: -2.23812 (SEM: 0)
x1: 3.91382e-16
x2: 0.0513237
x3: 0.693434
x4: 0.209007
x5: 0.31231
x6: 0.644846",
"Arm 26_0
hartmann6: -2.77843 (SEM: 0)
x1: 0
x2: 0.0929705
x3: 0.487076
x4: 0.24231
x5: 0.307782
x6: 0.643826",
"Arm 27_0
hartmann6: -2.35064 (SEM: 0)
x1: 0
x2: 0
x3: 0.479246
x4: 0.206108
x5: 0.382805
x6: 0.672941",
"Arm 28_0
hartmann6: -2.40487 (SEM: 0)
x1: 1.89458e-09
x2: 2.71357e-09
x3: 0.483291
x4: 0.311506
x5: 0.242222
x6: 0.63382",
"Arm 2_0
hartmann6: -0.0653177 (SEM: 0)
x1: 0.793672
x2: 0.672334
x3: 0.317642
x4: 0.251004
x5: 0.566111
x6: 0.226271",
"Arm 3_0
hartmann6: -0.0889706 (SEM: 0)
x1: 0.302699
x2: 0.0140186
x3: 0.975583
x4: 0.841437
x5: 0.354257
x6: 0.671767",
"Arm 4_0
hartmann6: -0.114786 (SEM: 0)
x1: 0.434282
x2: 0.609244
x3: 0.64382
x4: 0.978195
x5: 0.387814
x6: 0.762737",
"Arm 5_0
hartmann6: -0.0236119 (SEM: 0)
x1: 0.912088
x2: 0.205075
x3: 0.0478265
x4: 0.426799
x5: 0.660582
x6: 0.31773",
"Arm 6_0
hartmann6: -2.21932 (SEM: 0)
x1: 0.510378
x2: 0.979358
x3: 0.874545
x4: 0.624344
x5: 0.983902
x6: 0.0382868",
"Arm 7_0
hartmann6: -1.30964 (SEM: 0)
x1: 0.019464
x2: 0.333001
x3: 0.465044
x4: 0.0351062
x5: 0.194292
x6: 0.608782",
"Arm 8_0
hartmann6: -0.0615707 (SEM: 0)
x1: 0.114111
x2: 0.743253
x3: 0.798537
x4: 0.489368
x5: 0.812672
x6: 0.723423",
"Arm 9_0
hartmann6: -0.004947 (SEM: 0)
x1: 0.607023
x2: 0.0695411
x3: 0.392637
x4: 0.915749
x5: 0.102896
x6: 0.168553"
],
"type": "scatter",
"x": [
0.15104858577251434,
0.9402376981452107,
0.4643686767667532,
0.43288128941456605,
0.0,
0.3103817281315674,
0.0,
0.27407340511027095,
0.5063418292737942,
0.0,
9.79386717272559e-17,
0.6287942994385958,
0.2456765463805269,
2.3109357035369174e-13,
3.05368381100543e-16,
0.036520837683747455,
0.017209067799860294,
3.913815733201904e-16,
0.0,
0.0,
1.8945762718047216e-09,
0.7936723520979285,
0.3026987947523594,
0.4342824285849929,
0.9120877645909786,
0.510377929545939,
0.019463995471596718,
0.11411143373697996,
0.6070231944322586
],
"xaxis": "x2",
"y": [
0.8022201061248779,
0.8711780328303576,
0.439653679728508,
0.2019332659258263,
0.41784274597826465,
0.0,
0.1532587516949975,
4.068935787480984e-12,
0.7082886703880955,
0.4093087213867714,
0.26853266332644843,
0.3860921086743474,
0.8427091373589946,
0.22073741977397807,
0.41520181589672667,
0.21794852807987594,
0.13585037082790424,
0.05132373848295468,
0.09297047622460022,
0.0,
2.713565564402582e-09,
0.6723343254998326,
0.014018594287335873,
0.6092437170445919,
0.20507477037608624,
0.9793579112738371,
0.3330012522637844,
0.743252769112587,
0.06954112835228443
],
"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
}
}
},
"title": {
"text": "hartmann6"
},
"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": [
"