{
"cells": [
{
"cell_type": "markdown",
"id": "9e00c61c",
"metadata": {
"papermill": {
"duration": 0.002776,
"end_time": "2024-09-23T20:26:50.322994",
"exception": false,
"start_time": "2024-09-23T20:26:50.320218",
"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": "d3b2f09f",
"metadata": {
"execution": {
"iopub.execute_input": "2024-09-23T20:26:50.329100Z",
"iopub.status.busy": "2024-09-23T20:26:50.328607Z",
"iopub.status.idle": "2024-09-23T20:26:53.861036Z",
"shell.execute_reply": "2024-09-23T20:26:53.860293Z"
},
"papermill": {
"duration": 3.558784,
"end_time": "2024-09-23T20:26:53.884086",
"exception": false,
"start_time": "2024-09-23T20:26:50.325302",
"status": "completed"
},
"tags": []
},
"outputs": [
{
"data": {
"text/html": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:26:53] ax.utils.notebook.plotting: Injecting Plotly library into cell. Do not overwrite or delete cell.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:26:53] 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": "94c579aa",
"metadata": {
"papermill": {
"duration": 0.04733,
"end_time": "2024-09-23T20:26:53.972292",
"exception": false,
"start_time": "2024-09-23T20:26:53.924962",
"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": "da0de0e8",
"metadata": {
"execution": {
"iopub.execute_input": "2024-09-23T20:26:54.060668Z",
"iopub.status.busy": "2024-09-23T20:26:54.060397Z",
"iopub.status.idle": "2024-09-23T20:26:54.064426Z",
"shell.execute_reply": "2024-09-23T20:26:54.063914Z"
},
"papermill": {
"duration": 0.050298,
"end_time": "2024-09-23T20:26:54.065790",
"exception": false,
"start_time": "2024-09-23T20:26:54.015492",
"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": "0b34b2af",
"metadata": {
"papermill": {
"duration": 0.043157,
"end_time": "2024-09-23T20:26:54.152430",
"exception": false,
"start_time": "2024-09-23T20:26:54.109273",
"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": "86e77bd9",
"metadata": {
"papermill": {
"duration": 0.043746,
"end_time": "2024-09-23T20:26:54.239698",
"exception": false,
"start_time": "2024-09-23T20:26:54.195952",
"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": "6dfe28a8",
"metadata": {
"execution": {
"iopub.execute_input": "2024-09-23T20:26:54.329638Z",
"iopub.status.busy": "2024-09-23T20:26:54.328992Z",
"iopub.status.idle": "2024-09-23T20:29:10.860025Z",
"shell.execute_reply": "2024-09-23T20:29:10.858631Z"
},
"papermill": {
"duration": 136.579554,
"end_time": "2024-09-23T20:29:10.863411",
"exception": false,
"start_time": "2024-09-23T20:26:54.283857",
"status": "completed"
},
"tags": []
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:26:54] 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 09-23 20:26:54] 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 09-23 20:26:54] 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 09-23 20:26:54] 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 09-23 20:26:54] 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 09-23 20:26:54] ax.service.utils.instantiation: Created search space: SearchSpace(parameters=[RangeParameter(name='x1', parameter_type=FLOAT, range=[0.0, 1.0]), RangeParameter(name='x2', parameter_type=FLOAT, range=[0.0, 1.0]), RangeParameter(name='x3', parameter_type=FLOAT, range=[0.0, 1.0]), RangeParameter(name='x4', parameter_type=FLOAT, range=[0.0, 1.0]), RangeParameter(name='x5', parameter_type=FLOAT, range=[0.0, 1.0]), RangeParameter(name='x6', parameter_type=FLOAT, range=[0.0, 1.0])], parameter_constraints=[ParameterConstraint(1.0*x1 + 1.0*x2 <= 20.0)]).\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:26:54] 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 09-23 20:26:54] 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 09-23 20:26:54] ax.modelbridge.dispatch_utils: calculated num_initialization_trials=12\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:26:54] ax.modelbridge.dispatch_utils: num_completed_initialization_trials=0 num_remaining_initialization_trials=12\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:26:54] 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 09-23 20:26:54] 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 09-23 20:26:54] ax.service.managed_loop: Started full optimization with 30 steps.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:26:54] ax.service.managed_loop: Running optimization trial 1...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.QqcA7fo0ui/Ax-main/ax/modelbridge/cross_validation.py:463: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 09-23 20:26:54] ax.service.managed_loop: Running optimization trial 2...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.QqcA7fo0ui/Ax-main/ax/modelbridge/cross_validation.py:463: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 09-23 20:26:54] ax.service.managed_loop: Running optimization trial 3...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.QqcA7fo0ui/Ax-main/ax/modelbridge/cross_validation.py:463: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 09-23 20:26:54] ax.service.managed_loop: Running optimization trial 4...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.QqcA7fo0ui/Ax-main/ax/modelbridge/cross_validation.py:463: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 09-23 20:26:54] ax.service.managed_loop: Running optimization trial 5...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.QqcA7fo0ui/Ax-main/ax/modelbridge/cross_validation.py:463: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 09-23 20:26:54] ax.service.managed_loop: Running optimization trial 6...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.QqcA7fo0ui/Ax-main/ax/modelbridge/cross_validation.py:463: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 09-23 20:26:54] ax.service.managed_loop: Running optimization trial 7...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.QqcA7fo0ui/Ax-main/ax/modelbridge/cross_validation.py:463: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 09-23 20:26:54] ax.service.managed_loop: Running optimization trial 8...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.QqcA7fo0ui/Ax-main/ax/modelbridge/cross_validation.py:463: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 09-23 20:26:54] ax.service.managed_loop: Running optimization trial 9...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.QqcA7fo0ui/Ax-main/ax/modelbridge/cross_validation.py:463: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 09-23 20:26:54] ax.service.managed_loop: Running optimization trial 10...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.QqcA7fo0ui/Ax-main/ax/modelbridge/cross_validation.py:463: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 09-23 20:26:54] ax.service.managed_loop: Running optimization trial 11...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.QqcA7fo0ui/Ax-main/ax/modelbridge/cross_validation.py:463: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:26:54] ax.service.managed_loop: Running optimization trial 12...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.QqcA7fo0ui/Ax-main/ax/modelbridge/cross_validation.py:463: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:26:54] ax.service.managed_loop: Running optimization trial 13...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:27:04] ax.service.managed_loop: Running optimization trial 14...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:27:12] ax.service.managed_loop: Running optimization trial 15...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:27:18] ax.service.managed_loop: Running optimization trial 16...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:27:24] ax.service.managed_loop: Running optimization trial 17...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:27:32] ax.service.managed_loop: Running optimization trial 18...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:27:40] ax.service.managed_loop: Running optimization trial 19...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:27:48] ax.service.managed_loop: Running optimization trial 20...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:27:56] ax.service.managed_loop: Running optimization trial 21...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:28:05] ax.service.managed_loop: Running optimization trial 22...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:28:11] ax.service.managed_loop: Running optimization trial 23...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:28:18] ax.service.managed_loop: Running optimization trial 24...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:28:25] ax.service.managed_loop: Running optimization trial 25...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:28:32] ax.service.managed_loop: Running optimization trial 26...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:28:40] ax.service.managed_loop: Running optimization trial 27...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:28:45] ax.service.managed_loop: Running optimization trial 28...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:28:54] ax.service.managed_loop: Running optimization trial 29...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 09-23 20:29:01] 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": "f23e76fd",
"metadata": {
"papermill": {
"duration": 0.057643,
"end_time": "2024-09-23T20:29:10.994893",
"exception": false,
"start_time": "2024-09-23T20:29:10.937250",
"status": "completed"
},
"tags": []
},
"source": [
"And we can introspect optimization results:"
]
},
{
"cell_type": "code",
"execution_count": 4,
"id": "c452b80b",
"metadata": {
"execution": {
"iopub.execute_input": "2024-09-23T20:29:11.089345Z",
"iopub.status.busy": "2024-09-23T20:29:11.088835Z",
"iopub.status.idle": "2024-09-23T20:29:11.095394Z",
"shell.execute_reply": "2024-09-23T20:29:11.094716Z"
},
"papermill": {
"duration": 0.05531,
"end_time": "2024-09-23T20:29:11.096722",
"exception": false,
"start_time": "2024-09-23T20:29:11.041412",
"status": "completed"
},
"tags": []
},
"outputs": [
{
"data": {
"text/plain": [
"{'x1': 0.23705465638804576,\n",
" 'x2': 0.0,\n",
" 'x3': 0.40656427611782464,\n",
" 'x4': 0.2697953479080321,\n",
" 'x5': 0.30915548621736666,\n",
" 'x6': 0.6897464923126132}"
]
},
"execution_count": 4,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"best_parameters"
]
},
{
"cell_type": "code",
"execution_count": 5,
"id": "b3a31837",
"metadata": {
"execution": {
"iopub.execute_input": "2024-09-23T20:29:11.191225Z",
"iopub.status.busy": "2024-09-23T20:29:11.190619Z",
"iopub.status.idle": "2024-09-23T20:29:11.195320Z",
"shell.execute_reply": "2024-09-23T20:29:11.194733Z"
},
"papermill": {
"duration": 0.053302,
"end_time": "2024-09-23T20:29:11.196645",
"exception": false,
"start_time": "2024-09-23T20:29:11.143343",
"status": "completed"
},
"tags": []
},
"outputs": [
{
"data": {
"text/plain": [
"{'l2norm': 0.930325614554449, 'hartmann6': -3.008878560482145}"
]
},
"execution_count": 5,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"means, covariances = values\n",
"means"
]
},
{
"cell_type": "markdown",
"id": "ca211973",
"metadata": {
"papermill": {
"duration": 0.047341,
"end_time": "2024-09-23T20:29:11.290737",
"exception": false,
"start_time": "2024-09-23T20:29:11.243396",
"status": "completed"
},
"tags": []
},
"source": [
"For comparison, minimum of Hartmann6 is:"
]
},
{
"cell_type": "code",
"execution_count": 6,
"id": "0644b412",
"metadata": {
"execution": {
"iopub.execute_input": "2024-09-23T20:29:11.386762Z",
"iopub.status.busy": "2024-09-23T20:29:11.386407Z",
"iopub.status.idle": "2024-09-23T20:29:11.390978Z",
"shell.execute_reply": "2024-09-23T20:29:11.390385Z"
},
"papermill": {
"duration": 0.054108,
"end_time": "2024-09-23T20:29:11.392392",
"exception": false,
"start_time": "2024-09-23T20:29:11.338284",
"status": "completed"
},
"tags": []
},
"outputs": [
{
"data": {
"text/plain": [
"-3.32237"
]
},
"execution_count": 6,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"hartmann6.fmin"
]
},
{
"cell_type": "markdown",
"id": "54f20d39",
"metadata": {
"papermill": {
"duration": 0.046487,
"end_time": "2024-09-23T20:29:11.484500",
"exception": false,
"start_time": "2024-09-23T20:29:11.438013",
"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": "9e852d70",
"metadata": {
"execution": {
"iopub.execute_input": "2024-09-23T20:29:11.578812Z",
"iopub.status.busy": "2024-09-23T20:29:11.578281Z",
"iopub.status.idle": "2024-09-23T20:29:12.110469Z",
"shell.execute_reply": "2024-09-23T20:29:12.109766Z"
},
"papermill": {
"duration": 0.583952,
"end_time": "2024-09-23T20:29:12.114663",
"exception": false,
"start_time": "2024-09-23T20:29:11.530711",
"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": [
[
-1.7615041064570627,
-1.8755769440756127,
-1.9854984743192001,
-2.089908146652247,
-2.187453607583313,
-2.276815583576282,
-2.3567332046746277,
-2.4260291520395745,
-2.4836339921214714,
-2.5286090591077466,
-2.5601672663593646,
-2.577691266757605,
-2.580748440473881,
-2.5691022651303665,
-2.5427197154164114,
-2.5017744441078733,
-2.4466456107191066,
-2.3779123439100007,
-2.2963439452380263,
-2.202886060747625,
-2.0986431591709787,
-1.9848577573414352,
-1.8628869213589117,
-1.7341766431738999,
-1.6002347442994354,
-1.4626029897569253,
-1.3228291053362218,
-1.1824393798175623,
-1.0429125017661645,
-0.9056552294045579,
-0.7719804240954153,
-0.6430878958796267,
-0.5200484165061544,
-0.4037911549416596,
-0.2950946860975354,
-0.19458161909328675,
-0.10271679028122804,
-0.019808871712554632,
0.053984839439919385,
0.11865075841349015,
0.17430884513567957,
0.22120034416747636,
0.2596738749721881,
0.2901703295276299,
0.3132070338036179,
0.3293616153227201,
0.3392559923793912,
0.34354086332433154,
0.3428810286829722,
0.3379418269746779
],
[
-1.7465495377662694,
-1.8605052262552029,
-1.970379839911598,
-2.0748147584036394,
-2.1724586646771398,
-2.2619923891561573,
-2.34215421321184,
-2.4117650160666604,
-2.4697526282843247,
-2.5151747533577047,
-2.547239837403649,
-2.5653253056236403,
-2.568992642253468,
-2.5579988667042417,
-2.532304050289355,
-2.4920746224946986,
-2.4376823298079513,
-2.369698829901112,
-2.288886025418124,
-2.1961823606266613,
-2.0926854166803315,
-1.9796312433690506,
-1.8583709535574489,
-1.7303451780952712,
-1.5970570315253436,
-1.4600442708463017,
-1.3208513401010014,
-1.1810019826590177,
-1.0419730715232667,
-0.9051702573373448,
-0.7719059661858335,
-0.6433801975079763,
-0.5206644796703963,
-0.4046892404439546,
-0.29623474544175554,
-0.19592565313457477,
-0.1042291338691177,
-0.021456405603429207,
0.05223254631286345,
0.1168213716769475,
0.17242724683249033,
0.21928866690427773,
0.25775158090418837,
0.28825432640370097,
0.3113118202571339,
0.3274994478091944,
0.3374370665963229,
0.3417735035593388,
0.34117187928066595,
0.3362960409464957
],
[
-1.7311083322365897,
-1.8449196035238535,
-1.954721262015779,
-2.0591569372219807,
-2.1568766629976786,
-2.246561677264115,
-2.3269496995221823,
-2.396860071432239,
-2.4552181241873288,
-2.501078134202487,
-2.533644246561458,
-2.552288783743329,
-2.5565674146717106,
-2.546230734615932,
-2.5212318977378123,
-2.481730048296073,
-2.4280894103313146,
-2.3608740152868872,
-2.2808381684470844,
-2.188912874155573,
-2.0861885524485726,
-1.9738944821486104,
-1.8533754941565819,
-1.7260665107008026,
-1.5934655793383217,
-1.4571060829605134,
-1.3185288181094261,
-1.1792546235432966,
-1.0407582099575765,
-0.9044437915795925,
-0.7716230531747211,
-0.6434959045655736,
-0.5211343822449828,
-0.405469957534479,
-0.2972844066359084,
-0.19720429348599633,
-0.10569901505613033,
-0.02308226388356105,
0.050483322969482325,
0.11497863327423552,
0.17051803251782438,
0.21733721125004823,
0.25577936820517344,
0.28628018547059875,
0.30935205204710314,
0.32556797835338847,
0.3355456180271359,
0.3399317765684371,
0.33938774101066427,
0.3345757130917515
],
[
-1.7151900815053085,
-1.8288297471495265,
-1.9385324463354907,
-2.042944376726595,
-2.1407172368080976,
-2.2305329753858496,
-2.3111290373585094,
-2.3813234922862163,
-2.4400394102010234,
-2.4863278463352954,
-2.519388813778919,
-2.5385896605757874,
-2.5434803247345603,
-2.5338050156021152,
-2.5095099608642517,
-2.4707469622879765,
-2.4178726168550426,
-2.351443179399769,
-2.2722051642270524,
-2.1810819023202206,
-2.0791563835768017,
-1.9676508161827546,
-1.8479034242751198,
-1.7213430774902652,
-1.5894623995130188,
-1.453790035719495,
-1.3158627716014946,
-1.177198183828438,
-1.0392684752874377,
-0.9034760957298071,
-0.7711316828932588,
-0.6434347778858787,
-0.5214576763733151,
-0.40613267717436197,
-0.298242885874769,
-0.1984166266552978,
-0.1071254142095126,
-0.024685342645349495,
0.048738337509621976,
0.11312375725623114,
0.16858244581246584,
0.2153472358574402,
0.2537584978172063,
0.28424915893924285,
0.30732896326061954,
0.32356841504384537,
0.3335828222843884,
0.33801682028087465,
0.3375297100519288,
0.33278189478379705
],
[
-1.6988047485467148,
-1.8122457189955687,
-1.921823507460457,
-2.0261871965232205,
-2.123990462051882,
-2.2139162667658505,
-2.294702068501049,
-2.365164931085965,
-2.4242259031367848,
-2.470933026743002,
-2.5044823547603112,
-2.5242363923363675,
-2.5297394346883486,
-2.5207293475952737,
-2.4971454274124048,
-2.4591320808741024,
-2.407038178185004,
-2.3414120521653317,
-2.2629922374921314,
-2.172694163234095,
-2.071593124842197,
-1.9609039646662385,
-1.841957979439981,
-1.7161776460314453,
-1.58504981074751,
-1.450098020973245,
-1.3128546900595863,
-1.1748337770823933,
-1.037504633104314,
-0.902267616346365,
-0.7704320123545307,
-0.6431967145346443,
-0.5216340284814938,
-0.406676863807211,
-0.29910947330949034,
-0.1995617949547408,
-0.10850735079842644,
-0.02626456188013604,
0.0469987478107754,
0.11125795959769347,
0.1666217428938781,
0.21332002109135795,
0.25169026012568274,
0.28216253483818865,
0.30524382889965995,
0.32150201079379026,
0.3315499026245501,
0.3360298221002891,
0.33559893300418175,
0.33091568798419035
],
[
-1.6819626572853386,
-1.7951779610403316,
-1.9046049583411508,
-2.008895931684794,
-2.1067068458902773,
-2.1967219800539417,
-2.277679092563926,
-2.348394508612972,
-2.407787496522454,
-2.45490329528662,
-2.4889341718967692,
-2.5092379233126527,
-2.515353293758915,
-2.5070118519171087,
-2.484145962440895,
-2.446892589261511,
-2.3955927810600404,
-2.3307868083234164,
-2.253205042562839,
-2.1637547874268726,
-2.063503384515169,
-1.9536580198228028,
-1.835542746428548,
-1.7105733122897449,
-1.5802304364592201,
-1.4460322110395205,
-1.3095063188610543,
-1.172162748121651,
-1.0354676557670968,
-0.9008189826661783,
-0.769524357764772,
-0.6427817480818843,
-0.5216632197800913,
-0.4071020760599966,
-0.29988353391834366,
-0.20063899751367953,
-0.10984388452228022,
-0.02781886669802991,
0.04526570023927823,
0.10938245685984538,
0.16463719112856245,
0.21125686764701213,
0.2495759735774763,
0.28002163564407057,
0.30309796353428364,
0.31937006202579066,
0.3294481286711817,
0.3339720176721024,
0.33359660570383864,
0.32897824411043675
],
[
-1.6646744817574746,
-1.7776372844226629,
-1.8868876992684502,
-1.9910815217169462,
-2.088877315707239,
-2.178960978402655,
-2.2600708562387175,
-2.3310228034151743,
-2.3907345502942685,
-2.4382487446916814,
-2.4727540446005642,
-2.4936036765858836,
-2.5003309292981126,
-2.4926611248842425,
-2.4705197004173365,
-2.434036134066809,
-2.383543563289386,
-2.3195740611098175,
-2.2428496575801136,
-2.1542693126326604,
-2.0548921596995804,
-1.9459174427889545,
-1.8286616596838685,
-1.7045334975586741,
-1.5750072022096968,
-1.4415950565993685,
-1.3058196576178978,
-1.1691866717661845,
-1.0331587215417937,
-0.8991310060971965,
-0.7684091943363297,
-0.6421900487028124,
-0.5215451466203307,
-0.40740796732294837,
-0.300564508279451,
-0.2016474912149555,
-0.11113411638272308,
-0.029347228509375434,
0.04354032838340682,
0.10749846486010806,
0.16263006769833566,
0.20915909515098874,
0.24741698327242467,
0.2778278168773749,
0.3008927199146343,
0.3171739073099873,
0.32727881508789003,
0.33184468959798386,
0.33152397198537287,
0.32697076284840354
],
[
-1.6469512348374262,
-1.759634858029943,
-1.8686830063745425,
-1.9727552990252466,
-2.070513207597284,
-2.1606445480317245,
-2.2418885419905275,
-2.313060840689619,
-2.373077879919549,
-2.4209799299622916,
-2.4559522190597227,
-2.4773435441703935,
-2.48468183735,
-2.4776862288379147,
-2.4562752367435174,
-2.4205708153637575,
-2.370898106344086,
-2.3077808554073753,
-2.231932578226069,
-2.1442436780853433,
-2.045764831201613,
-1.9376870590509083,
-1.8213189973085142,
-1.6980619449947696,
-1.5693833327617956,
-1.4367892842529701,
-1.301796958205283,
-1.165907351311915,
-1.030579213487208,
-0.8972046794853561,
-0.7670871559026097,
-0.6414219231070395,
-0.5212798207043791,
-0.4075942862075711,
-0.3011519132446734,
-0.20258659155340242,
-0.11237718969745991,
-0.03084864616621985,
0.04182375181013476,
0.10560719735099666,
0.16060165822315153,
0.20702804074732728,
0.24521465953033084,
0.27558246566571065,
0.2986294875437945,
0.31491492595809656,
0.32504332020299875,
0.32964916609925243,
0.32938232238990817,
0.32489449091106914
],
[
-1.6288042565446903,
-1.7411821966449927,
-1.8500025196719967,
-1.9539289769005526,
-2.0516262543538084,
-2.1417843862759085,
-2.223143756223572,
-2.2945200806222648,
-2.3548287449667495,
-2.4031078572352373,
-2.4385393974270007,
-2.460467876586287,
-2.468415972650859,
-2.462096682611046,
-2.4414216187245854,
-2.4065051781841644,
-2.35766442741336,
-2.2954146603763625,
-2.220460710941234,
-2.133684218329369,
-2.036127157935499,
-1.9289720534406856,
-1.8135193766419286,
-1.6911627157624867,
-1.5633623487728872,
-1.4316178937394604,
-1.297440722481906,
-1.1623268167230971,
-1.0277307180885602,
-0.8950411761566333,
-0.7655590343349588,
-0.6404778142961272,
-0.5208673691486289,
-0.4076608768819544,
-0.30164534251298036,
-0.20345567341518977,
-0.11357229105446343,
-0.03232214706193326,
0.0401170748476416,
0.10370986471021926,
0.15855325538217668,
0.2048650576708657,
0.24297039643559515,
0.273286999276648,
0.29630969121364714,
0.3125945365750844,
0.32274304458803327,
0.327386819631164,
0.32717299282284085,
0.32275072074552025
],
[
-1.6102452019500046,
-1.7222911486699624,
-1.8308582306484809,
-1.9346146370408466,
-2.0322285729751943,
-2.1223925891347895,
-2.2038485169332205,
-2.2754124062020322,
-2.335998837139198,
-2.3846439720899735,
-2.4205267264601495,
-2.4429874718802624,
-2.4515437380776177,
-2.445902451446799,
-2.425968335995138,
-2.3918482034837574,
-2.3438509709374324,
-2.282483361575076,
-2.2084413656477886,
-2.122597656554925,
-2.0259852708736594,
-1.9197779646991697,
-1.8052677494285247,
-1.68384018479393,
-1.556948063129544,
-1.4260841548244039,
-1.2927536997053533,
-1.158447322547101,
-1.0246150236405462,
-0.8926418487357632,
-0.7638257787627342,
-0.6393583011495955,
-0.5203080344005855,
-0.40760767928256714,
-0.3020444671028717,
-0.2042541717767159,
-0.1147186512048397,
-0.0337667881871786,
0.03842138539543005,
0.10180767264396162,
0.15648615753526562,
0.2026715138099655,
0.24068561036162173,
0.270942863622315,
0.29393478950595053,
0.3102141955707909,
0.32037942959197374,
0.325059065450217,
0.32489736316257467,
0.32054078918997875
],
[
-1.5912860286978843,
-1.7029738834451846,
-1.8112624694362394,
-1.9148247166277623,
-2.0123326517076716,
-2.1024816383420446,
-2.1840152408634665,
-2.255750110527132,
-2.3166002677908843,
-2.3656001473322843,
-2.401925785629877,
-2.42491356411102,
-2.4340759735602893,
-2.42911393638325,
-2.409925310416448,
-2.3766092985873284,
-2.329466599629451,
-2.26899525258222,
-2.1958822479897004,
-2.1109910974670845,
-2.0153456665505085,
-1.9101106796134895,
-1.796569396582584,
-1.6760990361703887,
-1.550144576928514,
-1.4201916038597187,
-1.2877388836458548,
-1.1542713455541032,
-1.0212341183822664,
-0.8900082277430539,
-0.7618884945970493,
-0.6380640978399855,
-0.5196021740084843,
-0.40743472920248525,
-0.30234903572262617,
-0.20498158232194008,
-0.11581554589321397,
-0.03518165714073351,
0.036737753763715686,
0.09990182090533106,
0.1544016673471995,
0.20044879026061135,
0.23836173847734,
0.26855153173802804,
0.29150627326073164,
0.3077753956335729,
0.3179539558335991,
0.32266736013639186,
0.32255685582226756,
0.31826607608284196
],
[
-1.571938984164397,
-1.6832428781822897,
-1.7912278915749167,
-1.8945719949772992,
-1.991951336644199,
-2.0820643879746297,
-2.1636567301888237,
-2.235545883622912,
-2.296645554942551,
-2.345988670269791,
-2.382748574713104,
-2.4062578113164843,
-2.4160239444751723,
-2.4117419631203845,
-2.393302885460322,
-2.3607982871265794,
-2.3145205849999577,
-2.254959026133329,
-2.1827914511014086,
-2.0988720197000807,
-2.0042152001291718,
-1.8999764267382095,
-1.7874299225587367,
-1.6679442581316217,
-1.5429562751100423,
-1.4139440400208374,
-1.2823995094033804,
-1.149801582105884,
-1.0175901883868135,
-0.8871420199713544,
-0.759748442360151,
-0.6365960530778546,
-0.51875026024476,
-0.40714215825538147,
-0.3025588750381303,
-0.2056374619772683,
-0.11686229662418834,
-0.03656587309365977,
0.03506723154389646,
0.09799350202983881,
0.15230109041623585,
0.198198279874382,
0.2360002372378518,
0.26611450223717625,
0.28902566401432184,
0.3052796641683364,
0.31546814165394954,
0.32021320007264586,
0.32015293426682057,
0.315928002825808
],
[
-1.552216592269751,
-1.6631109045306283,
-1.7707674643880957,
-1.873869579784989,
-1.9710978178994516,
-2.0611540506209134,
-2.142786158740485,
-2.2148127987907547,
-2.2761476098176567,
-2.3258222294979713,
-2.36300750089063,
-2.387032282980872,
-2.3973993295360354,
-2.3937977703856284,
-2.3761118150946423,
-2.3444253984863757,
-2.2990225973974403,
-2.2403837647848857,
-2.1691774469168488,
-2.086248267787244,
-1.9926010780420698,
-1.8893817697085842,
-1.7778552493356312,
-1.6593811377210799,
-1.535387821750155,
-1.4073455212268995,
-1.2767390499319407,
-1.145040945256996,
-1.013685615208361,
-0.8840451066456936,
-0.757407036321678,
-0.6349551491876461,
-0.5177528795832993,
-0.4067301937160026,
-0.30267388983768484,
-0.20622142936302645,
-0.11785827136385985,
-0.03791858770517331,
0.03341085051194215,
0.09608390008983436,
0.15018573390949808,
0.19592138580195106,
0.2336025808615294,
0.2636332977445175,
0.28649451240936563,
0.30272856170113416,
0.3129235415313505,
0.3176981198838409,
0.3176871014871796,
0.31352803090310455
],
[
-1.532131639965303,
-1.642591014798187,
-1.7498944529937184,
-1.8527308929857214,
-1.9497856153819297,
-2.0397641831296616,
-2.1214170577978697,
-2.1935642985087984,
-2.2551197229188036,
-2.305113901217424,
-2.3427153653681474,
-2.3672494470203516,
-2.37821420820146,
-2.375292997816077,
-2.3583632521883002,
-2.3275012567747044,
-2.282982695581053,
-2.225278931119867,
-2.155049077032709,
-2.0731280436994988,
-1.9805108502157265,
-1.8783336001572357,
-1.7678516100223767,
-1.6504152550746836,
-1.5274441550188451,
-1.400400359750022,
-1.270761212276955,
-1.1399925615931261,
-1.009522973290724,
-0.880719541368298,
-0.7548658429441947,
-0.6331425010159112,
-0.5166107320315949,
-0.4061991582366138,
-0.3026940630935513,
-0.20673316516110796,
-0.11880288517518589,
-0.03923898598928721,
0.03176962156600727,
0.09417418946966061,
0.1480569052067482,
0.19361952003475924,
0.23117025979584405,
0.2611094633104092,
0.2839143965790396,
0.30012368025272784,
0.31032174446115723,
0.3151236908373314,
0.3151608984342118,
0.3110676603590834
],
[
-1.5116971634155894,
-1.621696527846955,
-1.7286224059697748,
-1.8311696562502937,
-1.92802856418453,
-2.0179086719603934,
-2.0995633014663975,
-2.1718141799055597,
-2.2335755496649177,
-2.2838771351021196,
-2.321885349541162,
-2.3469221563071905,
-2.3584810476175493,
-2.3562396733749877,
-2.3400687364521024,
-2.310036869333563,
-2.266411315840239,
-2.2096543575094927,
-2.140415543138825,
-2.0595198979645595,
-1.9679524018920014,
-1.866839130243621,
-1.7574255420969054,
-1.6410524773619377,
-1.5191304818117841,
-1.3931131175202724,
-1.2644699335312106,
-1.1346597678109709,
-1.0051050271409532,
-0.8771675478520158,
-0.7521265791402304,
-0.6311593546737007,
-0.5153246303188548,
-0.4055494694405777,
-0.30261945592047046,
-0.20717241239814022,
-0.11969560078662966,
-0.04052628713045725,
0.03014453370005099,
0.0922655336633933,
0.14591591055499586,
0.19129410194653218,
0.2287047791740675,
0.2585445648080693,
0.2812869205079074,
0.29746664168347525,
0.30766437230274124,
0.31249151920764007,
0.31257590241447875,
0.30854842823628204
],
[
-1.4909264338960453,
-1.6004410146845682,
-1.7069651406970299,
-1.8091998761398977,
-1.9058407996154387,
-1.9956017181580221,
-2.0772390916645365,
-2.1495765798286723,
-2.2115290956119726,
-2.2621257397408363,
-2.3005310007244772,
-2.326063634752392,
-2.338212689115699,
-2.3366502003220067,
-2.3212401819346224,
-2.2920436148075938,
-2.2493192606782566,
-2.1935202354469423,
-2.125286397030796,
-2.0454327203805676,
-1.9549339450579444,
-1.8549058848089424,
-1.7465838802869913,
-1.6312989523885923,
-1.5104522720638516,
-1.3854886011335754,
-1.2578693765154008,
-1.1290461070454647,
-1.0004347282725057,
-0.8733915174458262,
-0.7491911103435208,
-0.6290070861149322,
-0.5138954989412683,
-0.40478163939334344,
-0.3024502074308666,
-0.20753897664384646,
-0.12053592909299748,
-0.041779745247580546,
0.028536553014772315,
0.09035908409674875,
0.1437640537353635,
0.18894655683708805,
0.22620765726510683,
0.25594018731633983,
0.2786137123717807,
0.29475909601194794,
0.3049530780959553,
0.309803244607497,
0.3099337254501495,
0.3059719069763378
],
[
-1.4698329434281414,
-1.578838283773817,
-1.6849367284004424,
-1.7868358289416468,
-1.8832367418928886,
-1.9728578219742028,
-2.0544589427418125,
-2.126865959531125,
-2.188994701278629,
-2.2398738676731482,
-2.278666217468012,
-2.304687462968394,
-2.317422334285742,
-2.3165373437570653,
-2.3018898640915726,
-2.2735332307891305,
-2.2317176870765425,
-2.176887104469,
-2.109671530219968,
-2.030875730338316,
-1.9414640094976696,
-1.8425416931673007,
-1.735333749104544,
-1.6211611018705059,
-1.5014152527531257,
-1.3775318565701624,
-1.2509639251901716,
-1.123155324949449,
-0.9955152119225957,
-0.8693940064561849,
-0.7460614483975999,
-0.626687199552993,
-0.5123243730659081,
-0.40389627395188676,
-0.3021865344874748,
-0.20783272612440395,
-0.12132342958799125,
-0.042998650105011915,
0.02694662176732021,
0.08845597897498658,
0.14160263474452006,
0.1865783144803037,
0.22368042391872867,
0.2532979334901946,
0.2758964228589602,
0.29200271970974767,
0.30218954434969914,
0.30706053828780067,
0.3072360126055602,
0.3033397027860145
],
[
-1.4484303901733717,
-1.556902366082536,
-1.6625514789127545,
-1.7640920452078213,
-1.860231080525657,
-1.949691767158721,
-2.031237665752041,
-2.1036970889984383,
-2.165987026600268,
-2.2171360000431806,
-2.256305234481278,
-2.2828075635332605,
-2.29612353064572,
-2.2959142167576725,
-2.2820304064483414,
-2.2545178010579647,
-2.213618094358099,
-2.159765840682496,
-2.0935811631562222,
-2.0158584667667334,
-1.9275514334792008,
-1.8297546805462173,
-1.7236825550445924,
-1.6106456143891403,
-1.4920254016043522,
-1.3692481636316363,
-1.2437581798065542,
-1.1169913655320864,
-0.9903497935490524,
-0.8651777332684458,
-0.7427397492649271,
-0.6242013257183697,
-0.5106123972954237,
-0.4028940719938301,
-0.30182873135376975,
-0.20805359175098226,
-0.1220577107279095,
-0.04418232776979569,
0.025375657461065737,
0.08655734215829924,
0.13943294849241017,
0.18419080767846685,
0.22112461900846614,
0.25061942192138553,
0.2731367234753179,
0.2891992139748689,
0.2993754813048979,
0.3042651014088096,
0.30448444028272137,
0.3006534539707253
],
[
-1.426732663608287,
-1.5346474998961248,
-1.639823925182616,
-1.7409832940220613,
-1.836838758404392,
-1.9261186049448156,
-2.0075903524048844,
-2.0800850309403947,
-2.1425210350354296,
-2.1939269308941696,
-2.23346260718931,
-2.2604381858787232,
-2.274330156930321,
-2.274794266131529,
-2.2616747668763577,
-2.235009742435489,
-2.195032311667922,
-2.142167644913244,
-2.077025834080395,
-2.0003907777168886,
-1.9132053540912717,
-1.8165532591896703,
-1.711637978460946,
-1.5997594380395814,
-1.4822889405018762,
-1.3606430301052934,
-1.2362569518022628,
-1.1105583667626888,
-0.984941965111838,
-0.8607455752728571,
-0.7392283105603462,
-0.62155121995971,
-0.508760824295119,
-0.4017758245273956,
-0.30137716924270874,
-0.208201567063254,
-0.12273843022623288,
-0.0453301412141609,
0.023824551976541652,
0.08466428206618315,
0.13725628351789032,
0.1817854708248945,
0.21854179087415426,
0.24790628549154792,
0.2703363048356151,
0.2863503029862975,
0.2965126251745398,
0.30141866328520783,
0.30168071448836353,
0.2979148292380005
],
[
-1.4047538295032256,
-1.5120881154161818,
-1.616768807551174,
-1.7175245670169104,
-1.8130749556266332,
-1.9021536377526866,
-1.983532358720649,
-2.0560451244716553,
-2.1186119773476415,
-2.17026175112761,
-2.210153195943476,
-2.237593890825337,
-2.252056408019726,
-2.2531912578055318,
-2.2408362235034867,
-2.2150217912732626,
-2.175972485089814,
-2.1241040304952383,
-2.060016387523217,
-1.9844828096006388,
-1.898435197244288,
-1.8029461191369802,
-1.699207965131037,
-1.5885097727819406,
-1.4722123286220061,
-1.3517221856647645,
-1.2284652584519753,
-1.1038606559464075,
-0.9792953911453433,
-0.8561005655998694,
-0.7355295689126989,
-0.6187387601918589,
-0.5067710132850997,
-0.4005424136838711,
-0.3008322957650338,
-0.20827670808836696,
-0.12336529527856799,
-0.046441490862736856,
0.022294170744895148,
0.0827778906125658,
0.135073920724474,
0.17936373847697906,
0.21593349476668644,
0.24516016972014465,
0.26749687494351204,
0.28345773214211656,
0.29360273636316947,
0.2985229796074442,
0.298826569074931,
0.2951255259733119
],
[
-1.3825081147272997,
-1.4892388191682047,
-1.5934010578207545,
-1.693731062166568,
-1.7889550730810786,
-1.8778124026359033,
-1.9590792884127926,
-2.0315929685060854,
-2.0942753750884995,
-2.146155832151802,
-2.1863921499113084,
-2.214289534787933,
-2.2293167795324353,
-2.231119261873697,
-2.219528360280778,
-2.194566989596528,
-2.1564510644194694,
-2.105586810719074,
-2.0425639624682885,
-1.9681449961002686,
-1.8832506673513216,
-1.7889422186920212,
-1.6864007175229068,
-1.5769040625086874,
-1.4618022552954861,
-1.3424915755162155,
-1.2203883172797974,
-1.0969027448792832,
-0.973413904627468,
-0.8512458896702847,
-0.7316460971587597,
-0.6157659446937023,
-0.5046444283996209,
-0.39919481159432735,
-0.30019463427787807,
-0.20827913311588242,
-0.12393806271824381,
-0.047515815083722934,
0.02078535196468634,
0.0808992421726098,
0.13288713213744563,
0.17692704394145942,
0.21330129129678532,
0.2423827311094333,
0.2646201574627012,
0.28052326628379776,
0.290647597668519,
0.2955798306420523,
0.29592376395810205,
0.29228726849078845
],
[
-1.3600098919026624,
-1.4661143782422603,
-1.5697357831398033,
-1.669618167379296,
-1.764494715815197,
-1.853110654495804,
-1.9342469760233065,
-2.006744404889977,
-2.069527003806262,
-2.1216248092437455,
-2.162194890669668,
-2.1905402536755516,
-2.2061260521050876,
-2.2085926373264764,
-2.197765052226714,
-2.1736586709235723,
-2.136480789613251,
-2.086628085958413,
-2.0246799801971136,
-1.9513880467659912,
-1.8676617367043413,
-1.774550774596805,
-1.6732246857776556,
-1.5649499868391954,
-1.4510656326109663,
-1.332957353800371,
-1.2120315402424968,
-1.0896893247902528,
-0.9673015026520901,
-0.8461848815652542,
-0.7275806013743387,
-0.6126348897599563,
-0.5023826369167735,
-0.39773407915252856,
-0.299464783135174,
-0.20820902238895567,
-0.12445653910209997,
-0.04855259062360995,
0.01929890586307126,
0.07902939258300834,
0.13069717968433103,
0.1744768178740821,
0.21064674489020585,
0.23957563548902483,
0.26170788998162653,
0.2775486879091691,
0.28764901246773866,
0.2925910194133412,
0.2929740833133889,
0.2894018062612762
],
[
-1.3372736639312348,
-1.4427297043899947,
-1.5457882497284134,
-1.645201443914444,
-1.7397096762116657,
-1.8280643490890918,
-1.909051469836712,
-1.9815155012993724,
-2.0443828760055114,
-2.0966845646506203,
-2.137577095526102,
-2.166361446510118,
-2.1824992753831713,
-2.1856260164850383,
-2.175560450371819,
-2.1523104457829847,
-2.1160746769342356,
-2.06724023049445,
-2.006376131835087,
-1.9342229353189984,
-1.8516786345623473,
-1.7597812519255391,
-1.6596885584214156,
-1.5526554526551732,
-1.4400095877712915,
-1.3231258767600793,
-1.2034005276927688,
-1.0822252610777905,
-0.9609623419115938,
-0.8409210202223757,
-0.7233359177468384,
-0.6093478272102042,
-0.49998730736117347,
-0.3961613646661527,
-0.29864341484091517,
-0.20806661771302104,
-0.12492058072698531,
-0.049551332984914875,
0.01783561400226108,
0.07716937817672465,
0.1285053140002015,
0.17201448689528265,
0.20797142225136267,
0.23674055636206903,
0.25876182227415967,
0.27453579537644157,
0.28460880289083845,
0.28955836986922256,
0.28997933375437523,
0.286470912120379
],
[
-1.314314048417212,
-1.4190998380024151,
-1.521573866468896,
-1.6204966096491862,
-1.7146159169990731,
-1.8026896258545806,
-1.8835090145982145,
-1.955922533927835,
-2.018859223883936,
-2.071351210455479,
-2.112554680593717,
-2.1417687587888405,
-2.158451751747101,
-2.162234289163768,
-2.1529289664265026,
-2.130536186950395,
-2.0952460048158157,
-2.047435879058121,
-1.9876643656171251,
-1.9166608876777036,
-1.8353118359680902,
-1.744643353713449,
-1.6458012528209274,
-1.5400285853891684,
-1.4286414552138587,
-1.313003695684463,
-1.1945010621319316,
-1.0745155878498085,
-0.9544007339968751,
-0.8354579254635187,
-0.7189150092946497,
-0.6059071017597448,
-0.4974602074829456,
-0.3944779023987638,
-0.29773127510736064,
-0.20785222198217523,
-0.12533009357709823,
-0.05051159674685812,
0.016396228632038934,
0.07532021485358764,
0.1263127732593352,
0.16954147222397586,
0.20527689083749134,
0.23387917325552854,
0.2557837145587343,
0.2714864011020486,
0.28152880798392066,
0.2864837250336383,
0.2869413424952296,
0.283496380458929
],
[
-1.2911457620087181,
-1.39523993199228,
-1.4971081683862246,
-1.5955195222199516,
-1.689229554122244,
-1.7770027905848234,
-1.8576360340623035,
-1.9299819699903287,
-1.9929724818719574,
-2.045641071233753,
-2.0871437836451454,
-2.11677806561542,
-2.133999019798092,
-2.138432586585189,
-2.129885257195235,
-2.1083500144271876,
-2.0740082994649107,
-2.027227913110966,
-1.9685568738922967,
-1.8987133697255234,
-1.818572050310518,
-1.729147010337198,
-1.6315719053976163,
-1.527077720080047,
-1.4169687685078203,
-1.3025975496405415,
-1.1853391017617452,
-1.066565502275037,
-0.9476211405218906,
-0.8297993538609493,
-0.7143209624386936,
-0.6023151682561495,
-0.49480320211640516,
-0.3926850110049588,
-0.29672918181949837,
-0.20756619862504766,
-0.12568503320242064,
-0.05143297582859274,
0.014981472088872572,
0.07348289718762313,
0.12412078203482801,
0.16705918833108457,
0.20256471734541726,
0.2309931700767065,
0.25277533575831135,
0.26840232975460343,
0.2784108818647706,
0.2833689451482919,
0.28386195550003746,
0.28048002539855754
],
[
-1.2677836046821824,
-1.371165235605289,
-1.4724068000431318,
-1.5702861620638284,
-1.6635668394981051,
-1.7510202979684917,
-1.8314491133977713,
-1.903710450069958,
-1.9667392690015997,
-2.0195706665261492,
-2.061360746771425,
-2.0914054546253746,
-2.1091568376288126,
-2.1142362650714785,
-2.1064442087607675,
-2.0857662801842505,
-2.0523753202262625,
-2.0066294468850234,
-1.9490660798875696,
-1.8803920748390999,
-1.8014702096499784,
-1.713302368662852,
-1.6170098616150672,
-1.5138113922091998,
-1.4049992520402366,
-1.2919143580031887,
-1.1759207738451225,
-1.058380358754987,
-0.9406281680808113,
-0.8239491944483754,
-0.7095569834312238,
-0.5985745887863368,
-0.4920182509219161,
-0.3907840918614722,
-0.2956380239078493,
-0.20720897097073832,
-0.1259854045290505,
-0.05231510369506731,
0.013592036242406014,
0.07165839757240922,
0.12193055018751209,
0.1645690416146086,
0.19983646621294215,
0.22808423347830264,
0.24973846176347902,
0.2652854164476097,
0.2752568918734013,
0.28021590580626166,
0.2807430356216283,
0.2774236789549116
],
[
-1.2442424439929067,
-1.3468910781844046,
-1.4474854988745458,
-1.5448126153857837,
-1.637644143682846,
-1.724758734029874,
-1.8049649814757376,
-1.877124770333527,
-1.9401763711311486,
-1.993156693154681,
-2.0352220988717944,
-2.0656672087315773,
-2.0839411659041116,
-2.0896608895374187,
-2.0826209204621104,
-2.062799552693572,
-2.030361044730145,
-1.9856538132032435,
-1.9292046242505454,
-1.8617089111953398,
-1.784017456824761,
-1.6971197809778542,
-1.6021246657551,
-1.5002383283312968,
-1.3927408125042517,
-1.2809612127957242,
-1.1662523678868044,
-1.0499656629253762,
-0.9334265630453933,
-0.8179114642836609,
-0.7046263946482726,
-0.5946880296587916,
-0.4891074060149677,
-0.3887766272971207,
-0.29445876013170813,
-0.2067810215364403,
-0.1262312616018726,
-0.053157653505411906,
0.01222858198972987,
0.06984766540524556,
0.11974327178550892,
0.16207242909803132,
0.1970936981368565,
0.2251540512341652,
0.24667487370126073,
0.2621375049332859,
0.27206871672007726,
0.27702649608005614,
0.2775864607324623,
0.27432918919109084
],
[
-1.2205371993150547,
-1.3224328529112253,
-1.4223600784862753,
-1.5191150570762604,
-1.6114779384761033,
-1.698234798491774,
-1.778200493067248,
-1.8502418646430763,
-1.913300723052136,
-1.9664160074081072,
-2.008744538000884,
-2.0395797887154448,
-2.058368150777119,
-2.064722216809401,
-2.058430688690639,
-2.039464601270774,
-2.0079796538459904,
-1.9643145491019562,
-1.9089853513916375,
-1.8426759888774307,
-1.7662251333564345,
-1.6806097937240099,
-1.586926050498487,
-1.4863674365143684,
-1.3802015302021575,
-1.2697453708522832,
-1.1563403286438816,
-1.0413270654968043,
-0.9260212062111116,
-0.8116903038701379,
-0.6995326307512032,
-0.590658258265783,
-0.48607280948605347,
-0.3866641787246283,
-0.2931924177749745,
-0.20628289123818844,
-0.12642270726024085,
-0.053960338204256386,
0.010891738797791373,
0.0680516263110873,
0.11756012405587035,
0.15957073715349357,
0.19433796860937091,
0.22220431062789614,
0.2435863562116909,
0.258960445800148,
0.2688482446334166,
0.27380261664677596,
0.2743941218502355,
0.2711984183639442
],
[
-1.1966828260949176,
-1.2978060005489518,
-1.397046411942924,
-1.493209733605532,
-1.5850847794883995,
-1.6714652870878497,
-1.7511726109764514,
-1.8230787865895586,
-1.886129390505344,
-1.9393656071234315,
-1.981944913599393,
-2.0131598156901203,
-2.032454106666559,
-2.039436178795441,
-2.0338889905285513,
-2.0157763802527886,
-1.9852455164643823,
-1.9426253812765315,
-1.8884212956462298,
-1.8233056067984605,
-1.7481047671726182,
-1.6637831360487922,
-1.5714239263258025,
-1.4722077966034894,
-1.367389650177198,
-1.2582742458145717,
-1.1461912489773303,
-1.0324703559438846,
-0.9184171073002073,
-0.8052899724440727,
-0.6942792347236949,
-0.5864881398309736,
-0.4829166908158141,
-0.3844483846776494,
-0.2918400912570871,
-0.2057151785262219,
-0.12655989274806112,
-0.05472291055584,
0.009582104294402205,
0.06627118140701649,
0.1153822663692663,
0.15706534025157004,
0.19157082647508794,
0.2192366968564352,
0.24047469573473412,
0.2557560946765849,
0.2655973715110591,
0.27054617791298297,
0.27116792126073985,
0.26803324106578175
],
[
-1.1726943001400278,
-1.2730259932104784,
-1.371560415069428,
-1.4671129459192311,
-1.5584812886972697,
-1.6444670738505551,
-1.7238983881365675,
-1.7956526914757234,
-1.8586795521325334,
-1.9120226136900973,
-1.9548402086349481,
-1.9864240534616593,
-2.006215498920443,
-2.0138188655317153,
-2.0090114672540595,
-1.9917500130338819,
-1.9621731741305868,
-1.9206002113730163,
-1.8675256672780307,
-1.803610239463072,
-1.729668060165787,
-1.64665070819212,
-1.5556283707549514,
-1.4577686503232146,
-1.354313573187036,
-1.246555399975216,
-1.1358118625556481,
-1.0234014560528557,
-0.9106193993304261,
-0.7987148431356282,
-0.6888698537907055,
-0.5821806340473552,
-0.4796413641896443,
-0.3821309587561441,
-0.2904029406612929,
-0.20507853844685964,
-0.1266430172585089,
-0.05544516312167547,
0.008300243907783944,
0.06450720660800657,
0.11321083925914244,
0.15455759973894057,
0.18879381251006078,
0.21625289145072935,
0.23734167880960455,
0.2525263104430191,
0.2623179990754545,
0.26725909814171,
0.26790977064064436,
0.26483554236408247
],
[
-1.1485866019679296,
-1.2481083181760029,
-1.3459180297910271,
-1.4408410323609049,
-1.5316841370179395,
-1.6172570934013362,
-1.6963949496945412,
-1.7679808182746581,
-1.8309684813906353,
-1.884404254003532,
-1.9274475216795532,
-1.9593893908146423,
-1.979668926392732,
-1.9878865081304582,
-1.9838139077381527,
-1.9674007759839345,
-1.9387773255522227,
-1.898253101146951,
-1.8463118383442465,
-1.7836025235868775,
-1.7109268756069096,
-1.6292235697263568,
-1.5395496174312857,
-1.4430593912338163,
-1.3409818465335162,
-1.2345965359800082,
-1.1252090364219693,
-1.0141264133378662,
-0.902633332858309,
-0.7919693980108412,
-0.6833082352256844,
-0.5777387916113584,
-0.4762492257161548,
-0.3797136874838841,
-0.2888821901832752,
-0.20437368163242042,
-0.1266723274151953,
-0.05612692818195719,
0.0070466905551620496,
0.06276055197459973,
0.11104696347626564,
0.1520488626455545,
0.18600845802495325,
0.21325457071546983,
0.23418909038886393,
0.2492729534549183,
0.2590120330372385,
0.26394330158437107,
0.2646215891827166,
0.2616072159417937
],
[
-1.124374701236942,
-1.2230684617832193,
-1.3201352075359758,
-1.414410351646041,
-1.5047100269140905,
-1.5898523232682429,
-1.6686794751107623,
-1.740080471590363,
-1.8030135284550697,
-1.856527842394796,
-1.8997840489500781,
-1.932072823747878,
-1.9528311039578736,
-1.961655461654674,
-1.9583122317572998,
-1.942744082273125,
-1.9150728110044986,
-1.87559825751198,
-1.8247933284438012,
-1.7632952445933867,
-1.6918932254326806,
-1.6115129276670521,
-1.5231980450873235,
-1.4280895545563137,
-1.3274031547618148,
-1.2224054884021465,
-1.1143897634357043,
-1.004651394335908,
-0.8944642701059352,
-0.7850582230028615,
-0.6775982220528668,
-0.5731657506585369,
-0.47274275055429726,
-0.3771984280816837,
-0.28727912650261533,
-0.20360137322161154,
-0.12664811669067877,
-0.05676807760143543,
0.005821944380021149,
0.06103204110299809,
0.10889173907972505,
0.1495404605226529,
0.18321628349388352,
0.21024340418986331,
0.2310187121693783,
0.24599788377903797,
0.2556813812686254,
0.2606007166198778,
0.2613053017260445,
0.2583501622407258
],
[
-1.100073541281788,
-1.1979218934141784,
-1.2942278927251383,
-1.3878372659130946,
-1.477575675074263,
-1.5622697662575145,
-1.6407691803003703,
-1.7119690036472093,
-1.77483210213861,
-1.8284107625625825,
-1.8718670663379695,
-1.904491437687005,
-1.9257188449896954,
-1.9351421879451123,
-1.932522473246997,
-1.9177954656267173,
-1.8910745966559257,
-1.8526500175005058,
-1.8029837903703116,
-1.742701323009279,
-1.672579257425589,
-1.5935301244727262,
-1.5065841663882438,
-1.4128688068822508,
-1.3135863102441283,
-1.2099902152012174,
-1.1033611546009723,
-0.9949826777908933,
-0.8861176789804619,
-0.7779860027399148,
-0.6717437486515762,
-0.5684647331065634,
-0.4691244899536815,
-0.37458710615996416,
-0.2855950970801311,
-0.2027624317120611,
-0.12657072476370868,
-0.05736852264025827,
0.004626472538338033,
0.059322470558111684,
0.10674624456524051,
0.14703370831296536,
0.1804187972106024,
0.2072210531314742,
0.2278323209423696,
0.2427029594452388,
0.25232795198929714,
0.2572332739036385,
0.2579628368938367,
0.25506628661063346
],
[
-1.075698023776264,
-1.172684049601378,
-1.268212006372306,
-1.3611381238751756,
-1.4502977951785485,
-1.5345264329043533,
-1.6126812998417874,
-1.683663796333864,
-1.7464416518521626,
-1.800070449533971,
-1.8437139114550365,
-1.8766623896995203,
-1.8983490438299404,
-1.9083632384242315,
-1.906460763520848,
-1.8925705640340935,
-1.866797758838009,
-1.8294228331585352,
-1.780896995690311,
-1.7218338007777247,
-1.6529972423060104,
-1.5752866259512988,
-1.4897186166803154,
-1.3974069357831889,
-1.299540243661164,
-1.1973587890797766,
-1.0921304312930695,
-0.985126647737451,
-0.8775991269955579,
-0.7707575152786101,
-0.665748836269528,
-0.5636390409118301,
-0.46539706821318416,
-0.37188171333494247,
-0.28383150838422,
-0.20185772774747535,
-0.12644053681658152,
-0.05792821371076329,
0.003460709033303644,
0.057632609349896446,
0.10461153603178097,
0.14452990325428483,
0.17761749397371873,
0.20418916902488848,
0.22463168696455926,
0.2393900347160638,
0.24895365196710806,
0.2538429045287609,
0.2545961252412363,
0.25175749746640763
],
[
-1.0512629935452042,
-1.1473703182761823,
-1.242103429819047,
-1.3343292440973853,
-1.4228930807810254,
-1.506639324028206,
-1.5844330692780573,
-1.6551822433283445,
-1.717859649633723,
-1.7715243716805213,
-1.8153419657205392,
-1.8486028907383107,
-1.8707386582721948,
-1.8813352369030307,
-1.8801433144792354,
-1.8670851034358567,
-1.8422574682814274,
-1.8059312563968146,
-1.7585468202687515,
-1.7007058275102325,
-1.6331595607552973,
-1.5567940090910846,
-1.4726121426590009,
-1.3817138393359463,
-1.285273994396747,
-1.1845193887508814,
-1.0807049173950212,
-0.9750897864950075,
-0.8689142751043593,
-0.7633776267504828,
-0.6596175884519712,
-0.5586920522451546,
-0.46156317956269033,
-0.36908430477214105,
-0.28198982404907413,
-0.20088818284155052,
-0.12625798277441969,
-0.05844714008090168,
0.002325054598551368,
0.0559631984533584,
0.1024886463871375,
0.14203032381772474,
0.1748138538023456,
0.201149392117006,
0.22141857235252727,
0.23606095837636798,
0.24556038473596953,
0.2504315382019515,
0.2512070974156022,
0.24842570445593415
],
[
-1.0267832235469,
-1.1219960231821289,
-1.2159179886268352,
-1.3074268984233754,
-1.395378188331677,
-1.4786254134177401,
-1.556041707536817,
-1.626541732329253,
-1.6891035722711263,
-1.7427900128150107,
-1.7867686365163302,
-1.8203301879392284,
-1.8429046920862535,
-1.8540748624147465,
-1.8535864018328467,
-1.8413548814126885,
-1.8174689743423913,
-1.7821899238208465,
-1.7359472297627638,
-1.6793306466973807,
-1.613078690389107,
-1.538063949835206,
-1.4552755909732469,
-1.3657995155789413,
-1.2707967008591126,
-1.1714802901296517,
-1.069092031356201,
-0.9648786675828471,
-0.8600688714532683,
-0.7558512859303567,
-0.6533541863943704,
-0.5536272175930878,
-0.4576255849731977,
-0.36619699666153727,
-0.28007156296828106,
-0.199854768041134,
-0.1260235364876816,
-0.05892532952528473,
0.0012198766294280183,
0.05431495037230061,
0.10037858459318616,
0.13953622868164395,
0.17200934068374618,
0.19810334998087797,
0.21819472950223529,
0.2327175720450556,
0.24215004883322555,
0.24700110143649745,
0.24779768233177113,
0.24507281664099723
],
[
-1.002273400047674,
-1.0965764084746277,
-1.1896714366496441,
-1.280447295574413,
-1.3677697203626806,
-1.450501630669836,
-1.5275243994934895,
-1.5977596274189696,
-1.6601908835442911,
-1.7138848543946734,
-1.7580113394347814,
-1.7918615469984904,
-1.8148641776087033,
-1.826598832101077,
-1.8268063483643444,
-1.8153957508996874,
-1.7924475892417724,
-1.7582135415616684,
-1.7131122651046922,
-1.6577215818983901,
-1.592767192700289,
-1.5191082108161964,
-1.437719896783553,
-1.3496740519156163,
-1.2561175907442528,
-1.1582498574621647,
-1.0572992781850732,
-0.9544999485671508,
-0.8510687450664781,
-0.748183518734891,
-0.6469628842255067,
-0.5484480557910958,
-0.45358710890050236,
-0.36322196362863235,
-0.27807829732705525,
-0.19875850253118665,
-0.12573771485984242,
-0.05936284792497881,
0.00014550916188804663,
0.05268854874714801,
0.09828233495149186,
0.13704885574241388,
0.1692054013543447,
0.19505265610955758,
0.21496189953559353,
0.2293617085111994,
0.23872453605873312,
0.24355351576456763,
0.24436980536457953,
0.2417007406936098
],
[
-0.9777481080088997,
-1.0711266235293837,
-1.163379440309314,
-1.2534065649444845,
-1.340084208861975,
-1.4222848442070213,
-1.4988982787026373,
-1.5688532515834033,
-1.6311390166122133,
-1.6848263578565263,
-1.7290874806454672,
-1.7632142346545787,
-1.7866341584239396,
-1.7989238841749247,
-1.7998195072531376,
-1.789223603949885,
-1.7672086723397324,
-1.734016870129119,
-1.6900560279959371,
-1.6358920229298937,
-1.5722376999903045,
-1.499938629070157,
-1.4199560722900852,
-1.333347614480496,
-1.2412459712548967,
-1.144836534404919,
-1.0453342413880338,
-0.9439603638506133,
-0.8419197994707128,
-0.740379422659805,
-0.6404480042288188,
-0.5431581499946451,
-0.44945063596762924,
-0.36016143608562934,
-0.2760116505764758,
-0.1976004521840593,
-0.12540107692212432,
-0.0597597988170655,
-0.0008977471014135485,
0.051084648006675115,
0.09620085642977139,
0.134569421162813,
0.16640346411536067,
0.19199890854173174,
0.21172181077605345,
0.2259951900963697,
0.23528572975780992,
0.2400906959712703,
0.24092538656106677,
0.23831137911021383
],
[
-0.9532218167070039,
-1.045661707979884,
-1.137057563095282,
-1.2263207406135854,
-1.3123380988580424,
-1.393991844497028,
-1.4701804103213698,
-1.5398398694132656,
-1.601965356569074,
-1.6556319471092404,
-1.7000144394051542,
-1.7344055012997208,
-1.7582316721605036,
-1.7710667609840585,
-1.772642245486423,
-1.7628543555695306,
-1.7417676144684506,
-1.7096147093100302,
-1.6667926664319885,
-1.6138554120738648,
-1.5515029023080957,
-1.480567103747208,
-1.4019951952477139,
-1.3168304374833633,
-1.2261912192903945,
-1.1312488350681036,
-1.033204574866545,
-0.9332667174158011,
-0.8326280062697873,
-0.7324441611644393,
-0.6338139320088849,
-0.5377611435948728,
-0.44521910759154426,
-0.357017697527356,
-0.27387329535335736,
-0.1963817280556992,
-0.12501422285689556,
-0.06011632289527857,
-0.0019096247184888782,
0.04950387306383619,
0.0941350820296889,
0.1320991184591631,
0.16360493768444906,
0.18894368852066368,
0.20847617725482226,
0.2226198270453763,
0.23183550313025503,
0.23661454835251283,
0.23746633887453616,
0.23490662844595378
],
[
-0.9287088656060762,
-1.0201965770050465,
-1.1107212503102653,
-1.1992057456014258,
-1.2845477322379601,
-1.3656393274977159,
-1.4413877742489223,
-1.5107366700104932,
-1.5726872231945053,
-1.6263189912061375,
-1.6708095507356666,
-1.7054525637453621,
-1.7296737334272332,
-1.7430441921995439,
-1.7452909273801205,
-1.736303927648719,
-1.7161398223454642,
-1.6850218831320287,
-1.6433363602799305,
-1.591625230324438,
-1.5305755344154555,
-1.461005583836959,
-1.383848397485321,
-1.3001328125476321,
-1.2109627716214275,
-1.1174953350363406,
-1.020917994784453,
-0.9224258755329071,
-0.823199398679148,
-0.7243829580121565,
-0.6270651116112836,
-0.5322607360852367,
-0.44089551855952935,
-0.3537930817759942,
-0.2716649513492335,
-0.19510348483186002,
-0.12457779297219096,
-0.06043259746296781,
-0.0028898893895235034,
0.0479468190554162,
0.09208591819637557,
0.12963911762782954,
0.16081121008438282,
0.18588855918787206,
0.20522669724967812,
0.2192374159471897,
0.22837571756744124,
0.23312696899900986,
0.2339945664228409,
0.23148837757135343
],
[
-0.9042234505021473,
-0.9947460068866143,
-1.0843858140825795,
-1.1720773763830596,
-1.256729331821085,
-1.3372438783499303,
-1.4125372485050498,
-1.4815607501237502,
-1.5433218539209426,
-1.5969047872237074,
-1.6414900882935592,
-1.6763725881654306,
-1.7009773169123563,
-1.7148728781525002,
-1.7177818982329707,
-1.7095882330097338,
-1.690340703089181,
-1.6602532249151958,
-1.6197013069284378,
-1.5692149836932128,
-1.5094683627973422,
-1.4412660559261408,
-1.365526853444974,
-1.2832650780579016,
-1.195570115064225,
-1.1035846623792056,
-1.0084822714179147,
-0.9114447594430247,
-0.8136400650297607,
-0.7162010915753559,
-0.6202060406026689,
-0.5266606788854525,
-0.4364829135607027,
-0.3504899701799902,
-0.2693883831322106,
-0.19376691922666955,
-0.1240924666289338,
-0.060708835839680564,
-0.0038383397931207597,
0.04641405112543473,
0.09005424426994946,
0.12719056431190134,
0.158023647569981,
0.18283506431298724,
0.20197505185783604,
0.21584973818796716,
0.2249082210195017,
0.22962984210839177,
0.2305119627729657,
0.22805850595355892
],
[
-0.8797796099578519,
-0.9693246208561377,
-1.0580664186653643,
-1.1449512876872225,
-1.2288989857102197,
-1.3088219553407254,
-1.3836455928703932,
-1.4523290975354979,
-1.5138863870421537,
-1.5674065433681053,
-1.6120732474553148,
-1.6471826732411614,
-1.6721593406694286,
-1.686569473342345,
-1.69013146813634,
-1.68272315959522,
-1.664385648858684,
-1.635323562431771,
-1.5959017070309562,
-1.5466381895927215,
-1.488194172735816,
-1.4213605320059899,
-1.347041768758284,
-1.2662376085323426,
-1.1800227766682445,
-1.0895254886658423,
-0.9959052209994147,
-0.9003303380276708,
-0.8039561422511998,
-0.7079038891136068,
-0.613241265119192,
-0.5209647711295076,
-0.4319843836782604,
-0.3471107887705813,
-0.26704539792536597,
-0.19237326833692991,
-0.12355896112340492,
-0.060945286723060654,
-0.004754807378360981,
0.04490610425195962,
0.08804091197936281,
0.12475457900875231,
0.15524359359427353,
0.17978472706118365,
0.1987229036045668,
0.21245855843800032,
0.2214348463945599,
0.2261250383275808,
0.22702040925404954,
0.22461888196431312
],
[
-0.8553912120451937,
-0.9439468752497215,
-1.0317780660420335,
-1.1178429775977878,
-1.201072631940614,
-1.2803898741579485,
-1.3547294328102133,
-1.4230585747237077,
-1.4843978451850368,
-1.5378413623340106,
-1.5825761286411573,
-1.6178998335302195,
-1.6432366496130282,
-1.658150570139032,
-1.662355895962233,
-1.6557245548182569,
-1.6382900216389524,
-1.6102477031949747,
-1.5719517503617255,
-1.5239083633168782,
-1.4667657554658384,
-1.4013010373468846,
-1.3284043688757754,
-1.2490608040352214,
-1.1643303139319694,
-1.0753265199958193,
-0.9831946975683482,
-0.8890896204753931,
-0.7941538093437689,
-0.6994967210336255,
-0.6061753748904478,
-0.5151768554242186,
-0.4274030628480099,
-0.3436580053817915,
-0.26463784334547436,
-0.19092380795477548,
-0.12297803052687173,
-0.0611422335072378,
-0.005639156113302013,
0.04342348311707234,
0.08604674497854647,
0.12233225631898659,
0.15247236781485785,
0.1767390487993099,
0.19547189508900287,
0.20906562317416766,
0.2179574099918693,
0.2226144131273362,
0.22352177330088407,
0.22117136121674408
],
[
-0.8310719414140111,
-0.9186270459891963,
-1.005535581856969,
-1.0907677729777514,
-1.1732660434475468,
-1.2519637924577285,
-1.3258052437035184,
-1.393765902819477,
-1.4548731190673496,
-1.508226224936673,
-1.5530157208995226,
-1.5885409830827668,
-1.6142259992459866,
-1.6296326827015855,
-1.6344713735512033,
-1.628608210095778,
-1.6120691381923509,
-1.5850404198975534,
-1.5478656018040902,
-1.50103900463739,
-1.4451958954306157,
-1.381099598457034,
-1.309625887765558,
-1.231745079644254,
-1.1485023050600756,
-1.0609964880595135,
-0.9703585848396584,
-0.8777296489563755,
-0.7842392808491783,
-0.6909849951396464,
-0.5990129982466696,
-0.5093008135847942,
-0.4227421242886904,
-0.34013412673760146,
-0.26216760510585924,
-0.18941985084179658,
-0.12235046448481945,
-0.06129999355961546,
-0.006491282191068537,
0.04196666201945787,
0.08407253842518014,
0.11992466423732417,
0.1497112651413124,
0.17369950794204225,
0.1922236476686734,
0.205672659239718,
0.21447770997066407,
0.219099805210907,
0.22001790682993505,
0.2177177849329508
],
[
-0.8068352867023291,
-0.8933792154068467,
-0.9793536016897633,
-1.0637408152348895,
-1.1454948133717653,
-1.2235596947641763,
-1.296889335397633,
-1.364467645881552,
-1.4253289515620398,
-1.4785779740398743,
-1.523408885774332,
-1.5591229193261558,
-1.585144039640675,
-1.6010322311343816,
-1.6064940101213803,
-1.6013898455860542,
-1.585738255197017,
-1.5597164360189923,
-1.5236573874909327,
-1.478043584534438,
-1.4234973576545742,
-1.3607682311420537,
-1.2907175566970186,
-1.2143008549881418,
-1.1325483392766564,
-1.0465441412407506,
-0.9574047881023151,
-0.8662574913152805,
-0.7742188003294157,
-0.6823741508827624,
-0.5917587971168464,
-0.5033405623539752,
-0.4180047769099039,
-0.33654169551165136,
-0.2596366046872358,
-0.18786274496785604,
-0.12167708697809454,
-0.061418917457431776,
-0.007311113694492555,
0.040536084829287056,
0.08211905860184365,
0.1175328434858387,
0.1469615548244394,
0.17066755883909357,
0.1889797601840253,
0.20228137244279565,
0.21099752485638512,
0.21558303495862563,
0.21651064464967074,
0.21425997834443034
],
[
-0.7826945283047383,
-0.8682172594301683,
-0.953246557690121,
-1.0367770464468866,
-1.1177743407216587,
-1.1951933777215293,
-1.2679978371083664,
-1.3351801955088625,
-1.395781922089811,
-1.448913298800217,
-1.493772341476184,
-1.5296623072397864,
-1.556007299695029,
-1.5723655259024067,
-1.5784398169199794,
-1.5740850951508887,
-1.5593125545919797,
-1.5342904116220637,
-1.4993411811153894,
-1.4549355320801285,
-1.4016828752509256,
-1.3403189286819215,
-1.2716905931249525,
-1.196738543868435,
-1.1164780072073928,
-1.031978235774335,
-0.9443412261592556,
-0.8546802337934226,
-0.7640986338634376,
-0.6736696536177263,
-0.5844174620249446,
-0.4973000491115158,
-0.41319426170300333,
-0.33288328736376394,
-0.2570467969804118,
-0.1862538717173332,
-0.120958755048169,
-0.06149938818604306,
-0.008098610220417912,
0.03913216498469452,
0.08018704257970821,
0.11515780688990351,
0.14422447958817575,
0.16764463070444524,
0.18574180772426274,
0.19889344619526583,
0.2075186120860424,
0.21206590291021277,
0.21300180290717297,
0.21079974912709853
],
[
-0.7586627265138988,
-0.8431548351431132,
-0.9272286655903816,
-1.0098911958638448,
-1.0901198164103714,
-1.166880435716745,
-1.2391466826854212,
-1.3059197558096955,
-1.3662484313592473,
-1.4192487192484415,
-1.4641226473778894,
-1.500175663840147,
-1.5268321716839368,
-1.5436487525257256,
-1.550324692136572,
-1.5467094915624506,
-1.5328071291486218,
-1.5087769293565065,
-1.4749309904305905,
-1.4317282214919647,
-1.3797651370809954,
-1.319763650141711,
-1.2525561896898858,
-1.1790685439804287,
-1.1003008913445131,
-1.017307526970924,
-0.9311758233202567,
-0.84300497379034,
-0.7538850635708213,
-0.664876988875575,
-0.5769937070919364,
-0.4911832475801251,
-0.40831384812070215,
-0.3291615079583603,
-0.25440016790481557,
-0.1845946440662951,
-0.1201963574891527,
-0.06154182030043143,
-0.00885376246479952,
0.03775528552937191,
0.07827719792437682,
0.11280053879714247,
0.14150125480462306,
0.16463212658871873,
0.18251134043568928,
0.19551054019321357,
0.20404270659414836,
0.2085501882864187,
0.20949317757269958,
0.20733888587281535
],
[
-0.734752710049489,
-0.8182053687385419,
-0.9013139121116414,
-0.9830977668043048,
-1.0625462096848575,
-1.1386362468910176,
-1.210351596260424,
-1.2767023287472645,
-1.336744686474,
-1.3896005712269375,
-1.434476188853972,
-1.4706793429964264,
-1.497634896126123,
-1.5148979565730918,
-1.522164406098646,
-1.5192784519738176,
-1.5062369682873613,
-1.4831904806893457,
-1.4504407439562048,
-1.4084349593737941,
-1.3577567755817754,
-1.2991143088311425,
-1.2333255033490387,
-1.1613012267469045,
-1.0840265566075722,
-1.0025407605212304,
-0.9179165014588535,
-0.8312388126749305,
-0.7435843811719833,
-0.6560016566605391,
-0.569492265050852,
-0.4849941535345701,
-0.40336683045088684,
-0.32537898996912995,
-0.25169873200660287,
-0.18288650473347423,
-0.11939081350883862,
-0.06154665905199508,
-0.009576591769836718,
0.0364057991904021,
0.07639020244390493,
0.11046199453954264,
0.13879306771288413,
0.1616314223953439,
0.1792898823736686,
0.19213428914045916,
0.20057151944077933,
0.20503764755172016,
0.20598654296392027,
0.2038791565991378
],
[
-0.7109770649881698,
-0.793382043876315,
-0.8755160427781805,
-0.9564110239608248,
-1.0350682549637764,
-1.1104759595567015,
-1.1816280782964435,
-1.2475436998793623,
-1.3072866864255452,
-1.3599849917024147,
-1.404849162483585,
-1.441189520595678,
-1.4684315469853422,
-1.4861290289737663,
-1.4939745867678078,
-1.4918072636721553,
-1.4796169441578693,
-1.4575454523789695,
-1.4258842779094159,
-1.3850689721611655,
-1.335670354777934,
-1.2783827609294443,
-1.214009644652808,
-1.1434469272786574,
-1.0676645410128693,
-0.9876866638919137,
-0.9045711721445056,
-0.8193888486566837,
-0.7332028815938746,
-0.6470491657792755,
-0.5619178822823055,
-0.47873678052035396,
-0.3983565241902083,
-0.3215383900749682,
-0.2489445300404607,
-0.18113092430846045,
-0.11854307136145925,
-0.06151437948232541,
-0.010267149634512585,
0.03508402849579584,
0.07452670397857242,
0.10814309993888127,
0.13610107668215865,
0.15864386594151525,
0.17607893039927403,
0.18876630151635765,
0.197106736483176,
0.2015300130194455,
0.2024836503114169,
0.200422307298886
],
[
-0.6873481241074206,
-0.7686977904608551,
-0.849848550154848,
-0.9298449811302306,
-1.0077004390993938,
-1.0824144790362884,
-1.1529913920547556,
-1.2184594245092146,
-1.2778902079893228,
-1.3304179044720341,
-1.375257561634382,
-1.4117221800756743,
-1.439238017224574,
-1.4573576916659012,
-1.465770705555105,
-1.4643110701325874,
-1.452961798000739,
-1.4318561132107557,
-1.4012753233767172,
-1.3616433937872723,
-1.3135183584937782,
-1.257580794289551,
-1.1946196671808371,
-1.1255159344752173,
-1.0512243464641655,
-0.9727539378244617,
-0.8911477288605312,
-0.8074621697264013,
-0.7227468566302516,
-0.6380250282106952,
-0.5542753138775225,
-0.4724151555881383,
-0.3932862624229124,
-0.31764238595160177,
-0.24613962653878496,
-0.17932939936006975,
-0.11765410695430756,
-0.06144548548581352,
-0.010925517189576572,
0.033790265930736973,
0.07268732023202418,
0.10584475085551315,
0.13342641051951065,
0.1556707760643905,
0.1728799531214953,
0.1854081583889533,
0.19365001709215868,
0.19802899150091346,
0.19898622636700414,
0.19697006053116772
]
],
"zauto": true,
"zmax": 2.580748440473881,
"zmin": -2.580748440473881
},
{
"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.20285034075580038,
0.18281886595159258,
0.16494580797908245,
0.14915123727288318,
0.13534807012333558,
0.1234560298883499,
0.11341569442674773,
0.10520012913438813,
0.09882038943523261,
0.09432051113065196,
0.09175907489883095,
0.09117961143506269,
0.09257972039536944,
0.09589273821246684,
0.10099031527254945,
0.10770259427669382,
0.11584502231275022,
0.12524203439731896,
0.1357436078722736,
0.14723520199201218,
0.15964308139067915,
0.17293658641615942,
0.18712797233789996,
0.20226973393162082,
0.21844906487313287,
0.2357792386520794,
0.25438812154017315,
0.2744045794789921,
0.2959440375189969,
0.3190947259759199,
0.3439061054230232,
0.37038061529337374,
0.39846935091685753,
0.42807170037845205,
0.4590385035913147,
0.49117800421817426,
0.5242637535110276,
0.5580436510082046,
0.5922494131506342,
0.6266058981799857,
0.660839852346813,
0.694687763164336,
0.7279026061975161,
0.7602593545415777,
0.7915591884922009,
0.8216324004459089,
0.8503400391741096,
0.8775743794653618,
0.9032583379691477,
0.9273439835765395
],
[
0.2010768673970755,
0.18077263937984833,
0.16263608158588697,
0.14660375660545882,
0.13260801031196306,
0.1205898423771774,
0.1105109507122231,
0.10236209656170711,
0.096163848994119,
0.09195583816004481,
0.08977369138895287,
0.08961948343716838,
0.09143811247128965,
0.0951114397608124,
0.10047231645144325,
0.10732991744632192,
0.11549509672499518,
0.12479923900100816,
0.13510584535288556,
0.14631690328364763,
0.15837617843585125,
0.1712705473942004,
0.18502948684123974,
0.19972225090734314,
0.2154521475906552,
0.23234758920831153,
0.2505501206859257,
0.2702002624247617,
0.29142254939024864,
0.31431142746121166,
0.338919586038091,
0.36524989165508026,
0.39325148054367504,
0.42281995134185896,
0.45380111984019406,
0.4859975230892597,
0.5191767797190279,
0.5530809708220966,
0.5874363358683773,
0.621962729341975,
0.6563824257091707,
0.6904279805148255,
0.7238489526775161,
0.7564173713005321,
0.7879318944829925,
0.8182206617237407,
0.8471428880545558,
0.8745892881044653,
0.9004814519601033,
0.9247703214531773
],
[
0.19969479663476905,
0.17909919257820545,
0.16067226281927913,
0.1443674988611558,
0.1301382955500864,
0.11795005038650437,
0.10779024617846739,
0.09967301806755781,
0.09363382954829334,
0.0897111505604188,
0.08791741884301432,
0.08820991539930881,
0.09047646231068694,
0.09454403373199864,
0.10020466562703362,
0.1072451823977403,
0.11547036541429041,
0.12471682516439667,
0.13485984788248676,
0.1458164691569767,
0.1575468979742366,
0.17005496408480952,
0.18338724100530768,
0.19763002696473608,
0.2129033711310872,
0.2293517106745504,
0.2471313163343934,
0.2663954644407288,
0.28727885351092103,
0.3098830695051759,
0.3342647775691799,
0.36042782777147336,
0.3883197793687969,
0.417832682700487,
0.4488074679939883,
0.48104103637889467,
0.5142951034634186,
0.5483059385600432,
0.5827942988080856,
0.6174750232824413,
0.6520658992157239,
0.686295531659651,
0.7199100411995378,
0.7526784877634732,
0.7843969782817968,
0.8148914664694789,
0.844019296897655,
0.8716695837563043,
0.897762547177987,
0.9222479560149498
],
[
0.19870736897322389,
0.17780314635821293,
0.15906006854814012,
0.14244859692960024,
0.12794437393462263,
0.11554003659088775,
0.10525359429560323,
0.09712879524838518,
0.09122225986204656,
0.08757525032512022,
0.08617686378194571,
0.08693583002394803,
0.08967816112430423,
0.0941725733825466,
0.10016858672845352,
0.1074296215920575,
0.11575310844953819,
0.12497919821613937,
0.1349931117381426,
0.14572522393467005,
0.15715082944700884,
0.16928980335250968,
0.18220538303524547,
0.19600093598652957,
0.2108136912122092,
0.22680489175379595,
0.24414655950074315,
0.26300587813837967,
0.2835288650197275,
0.3058253001431526,
0.3299567062498203,
0.35592859708517255,
0.38368743990974186,
0.4131220566384886,
0.4440686862541242,
0.476318700982603,
0.5096279642180008,
0.5437269503703834,
0.5783309315843181,
0.6131497177623684,
0.6478965885263562,
0.6822961735584043,
0.716091126576513,
0.7490475063943907,
0.7809588334819768,
0.8116488371820472,
0.8409729498722825,
0.8688186407081294,
0.8951047128221116,
0.9197797131170313
],
[
0.19811621576164834,
0.1768877678255716,
0.15780430606110152,
0.14085289759724623,
0.1260321356064644,
0.11336431665663743,
0.1029026389176227,
0.09472719456480706,
0.08892298382096285,
0.08553886231776234,
0.08454056929278425,
0.08578404561980414,
0.08902833849800844,
0.09398055422137931,
0.10034630065440049,
0.10786487242443019,
0.11632530723595631,
0.12556972042496412,
0.13549139378269803,
0.14603218736023948,
0.15718088243276324,
0.16897219169538108,
0.1814852659055951,
0.19484027076468338,
0.20919181209754373,
0.22471855646959882,
0.24160922804327753,
0.2600460802606862,
0.2801876835918584,
0.30215318786437,
0.3260099936375482,
0.3517660918610208,
0.3793674574183094,
0.408700093555492,
0.4395958072548856,
0.4718405920157234,
0.5051845357579456,
0.5393523481478222,
0.5740538182512894,
0.608993712020867,
0.6438807767665742,
0.6784356358853642,
0.7123974409976906,
0.7455292111761618,
0.7776218388504068,
0.8084967847189356,
0.8380075222392245,
0.8660398266431004,
0.8925110333906437,
0.91736841544897
],
[
0.19792130637736405,
0.17635487430631322,
0.15690874648696698,
0.13958584187720424,
0.12440786031173771,
0.11142861562781578,
0.10074088548922647,
0.09246820332152063,
0.08673218125969691,
0.08359507441696558,
0.08299945253850162,
0.08474370261266836,
0.08851428463932225,
0.09395335065178596,
0.10072149377571522,
0.10853348181784861,
0.1171691695199826,
0.12647122122819277,
0.13633916020379025,
0.14672441613818982,
0.15762748837031232,
0.1690964652177224,
0.1812253557353227,
0.194150537784924,
0.20804390586247118,
0.2231019474047305,
0.2395309077281796,
0.2575292347927942,
0.2772693324289972,
0.29888100155252767,
0.32243867652228586,
0.3479537787120235,
0.37537251536178695,
0.4045785818124048,
0.435399687001384,
0.4676166467155621,
0.5009738816395395,
0.5351903839421936,
0.5699704685977222,
0.6050138433926553,
0.6400246952755986,
0.6747196050007143,
0.7088341805321998,
0.7421283561200268,
0.7743903484409812,
0.805439299706349,
0.8351266728220695,
0.8633364959903369,
0.8899845827693926,
0.9150168772530517
],
[
0.1981209399564284,
0.17620477529563022,
0.15637601943534807,
0.13865234079654332,
0.12307813448629863,
0.1097399021564149,
0.09877390093171819,
0.09035437726256594,
0.08464879432643309,
0.08173977796779842,
0.08154722221031581,
0.08380664366718474,
0.08812580298576354,
0.09407856806852186,
0.10127969799908584,
0.10941933174384304,
0.11826759897157338,
0.12766648785081802,
0.13752005765348263,
0.14778740766324294,
0.15847889393254225,
0.16965432524918425,
0.181421243535782,
0.19393134006790907,
0.20737339701014068,
0.22196185016945666,
0.23792109356484817,
0.2554668009120452,
0.2747864924977462,
0.2960219809187562,
0.319256015908061,
0.3445045437137881,
0.3717148619014187,
0.4007689801284849,
0.43149092801734784,
0.46365660387593677,
0.49700490727002494,
0.5312491817732466,
0.5660882874639546,
0.6012168624076834,
0.6363345031782658,
0.6711537069997723,
0.7054064909005675,
0.7388496531862004,
0.7712686812285017,
0.802480343554044,
0.8323340361489034,
0.8607119829983806,
0.8875284180865459,
0.9127278988435398
],
[
0.19871178286635358,
0.17643625687816836,
0.15620753591970649,
0.13805665294690683,
0.12204973784272921,
0.10830637065389355,
0.09700946600194661,
0.08839116592295278,
0.0826749520006374,
0.07997210461685442,
0.0801807716951212,
0.08296774247552592,
0.08785548873591394,
0.0943463061981166,
0.10200857602605157,
0.11050797394889711,
0.11960459008536145,
0.12913870990103124,
0.13901737662236502,
0.14920553747404205,
0.1597215248290307,
0.1706350892933598,
0.1820657616064681,
0.19417935880664555,
0.20718082884230027,
0.2213023771729654,
0.2367869280971308,
0.2538682594177694,
0.2727502422022353,
0.2935881045333948,
0.3164742997902753,
0.34143053014779223,
0.3684061792938607,
0.39728231384530194,
0.4278797974753865,
0.45996993931222163,
0.4932863088944696,
0.5275366970706101,
0.5624145422313355,
0.597609406477979,
0.6328162658561884,
0.6677434898955125,
0.702119452555837,
0.7356977596478687,
0.7682611102884163,
0.7996238390956271,
0.8296332142821493,
0.8581695945469029,
0.885145573346286,
0.9105042609381727
],
[
0.19968895014638874,
0.1770466102501313,
0.15640344503744244,
0.13780227072600076,
0.12132950176806388,
0.10713736274565024,
0.09545766158630674,
0.08658719704651373,
0.08081638123409475,
0.07829485315327071,
0.07890054267489134,
0.08222517698936598,
0.08769893176825143,
0.09474933450875649,
0.10289811239723519,
0.1117868706079558,
0.12116553804226082,
0.13087185915522795,
0.14081448128966956,
0.15096250184783527,
0.16134039418507137,
0.1720260192212806,
0.18314919710590202,
0.19488843686480112,
0.2074638226498709,
0.22112482602491426,
0.23613299268427204,
0.2527408719177773,
0.27116981386253547,
0.29158986380698054,
0.3141046455110398,
0.338742972721738,
0.3654574487168068,
0.39412906666628034,
0.4245761413445015,
0.4565657980278266,
0.48982651994055987,
0.5240606740334258,
0.5589563286843334,
0.5941979723110218,
0.6294759324169424,
0.6644944050061921,
0.6989780651276998,
0.7326772649392517,
0.7653718515543272,
0.7968736608799545,
0.8270277683576294,
0.8557126027143616,
0.882839052856453,
0.9083487188152082
],
[
0.20104612634140198,
0.1780317029321701,
0.15696262765012745,
0.1378918221928057,
0.12092414441265925,
0.10624322198311777,
0.09413086883641643,
0.08495449536648514,
0.07908278658752202,
0.07671489505803555,
0.07771085081162664,
0.08158064200842431,
0.08765484380123838,
0.09528318377739936,
0.10394071587240082,
0.11324554426667079,
0.12293746110389768,
0.13285099381892332,
0.1428951865326806,
0.1530417399949468,
0.16331952832567787,
0.1738127033019382,
0.18465958753457365,
0.19604975900482044,
0.2082171339480936,
0.22142762332677585,
0.23596116552606006,
0.2520894864899257,
0.27005237880462263,
0.2900360520993877,
0.3121568083324903,
0.3364520328359675,
0.36287881356346674,
0.39131906986579335,
0.42158929585293436,
0.4534529239292943,
0.48663365527905694,
0.520828601281841,
0.5557205354979088,
0.590988887224035,
0.6263193122843519,
0.6614117876368667,
0.6959872312951841,
0.7297926770373541,
0.7626050521917492,
0.7942336251441773,
0.8245212098577349,
0.8533442371223418,
0.8806118244678459,
0.9062639963111433
],
[
0.20277571883009754,
0.17938608835933667,
0.15788272767186656,
0.13832699474796764,
0.12084008987160927,
0.1056350797488437,
0.09304366307540902,
0.08350860434389774,
0.07748817083836645,
0.07524353950357454,
0.07662015984004741,
0.0810394937045093,
0.08772510974580415,
0.09594615957954783,
0.10513124170064306,
0.11487564498656185,
0.1249091393262596,
0.13506248391435025,
0.1452440699771022,
0.15542681556527382,
0.16564238456477431,
0.1759794663457993,
0.1865830771136602,
0.19765211615379685,
0.20943280251331464,
0.22220635867667482,
0.23627055637436953,
0.2519164016752159,
0.26940287237556204,
0.2889335783908514,
0.31063900340608674,
0.33456664002345293,
0.3606794447182606,
0.3888613913134745,
0.41892799781355783,
0.4506395881081537,
0.48371545407336203,
0.5178476662503838,
0.5527138076550824,
0.5879882795696162,
0.6233520510577899,
0.6585008371608376,
0.6931517401658336,
0.7270484084359955,
0.7599647786332208,
0.7917074795040963,
0.8221169916474993,
0.85106767708032,
0.8784668126451364,
0.9042527796761983
],
[
0.20486903512911248,
0.18110314710719194,
0.15916021885695633,
0.1391084854617431,
0.12108328098591872,
0.10532457561263313,
0.09221258398263997,
0.0822685732222028,
0.07605105698180246,
0.07389682725092539,
0.07564128285557323,
0.08061081522009354,
0.08791476244410995,
0.09673928397345537,
0.10646694372433743,
0.11667094521220514,
0.12707117763818657,
0.13749416036493464,
0.1478467138237167,
0.15810174353029624,
0.16829223974364935,
0.1785097829058817,
0.1889043099791975,
0.19968223511475147,
0.21110038589149915,
0.22345390712019475,
0.2370575228780626,
0.25222129756461414,
0.2692238687061953,
0.28828731451496525,
0.3095577484335174,
0.333094345013922,
0.35886741167002173,
0.3867642269497328,
0.4166002955792068,
0.44813351686539377,
0.4810792220010694,
0.5151247088481364,
0.5499425091510123,
0.5852020485181031,
0.6205796058126979,
0.6557665966246456,
0.6904762502517315,
0.7244487617798451,
0.7574550043267356,
0.7892988924025464,
0.8198184988062525,
0.8488860435576316,
0.8764068913917592,
0.9023177113065393
],
[
0.2073164748607157,
0.18317525131901244,
0.16079050250986768,
0.14023598093924386,
0.12165899666013638,
0.10532352170047711,
0.09165577068186967,
0.08125676800585736,
0.07479455849616022,
0.07269570865082761,
0.07479148037937028,
0.08030738860637965,
0.08823187893630952,
0.09766617148013458,
0.10794736650119927,
0.11862727391097974,
0.12941600375086246,
0.14013539453832563,
0.15068987694673747,
0.16105125489913186,
0.1712525338018716,
0.1813866716085888,
0.19160683586335073,
0.20212515157900837,
0.21320726027679401,
0.22516063187943416,
0.23831576789183218,
0.2530012386775333,
0.26951551260660245,
0.28809998378533336,
0.3089177339392277,
0.3320411898978018,
0.3574495634959519,
0.3850347975489668,
0.41461346256843834,
0.4459418207875428,
0.47873177372721026,
0.5126661749794748,
0.5474126853879008,
0.5826358334760414,
0.618007220038528,
0.653213932016695,
0.6879652721449687,
0.721997915235048,
0.7550795972560539,
0.7870114423616216,
0.8176290392914536,
0.8468023910124853,
0.8744348770535224,
0.9004613833741054
],
[
0.2101077271004199,
0.18559394307227334,
0.16276802961361736,
0.14170816737172187,
0.122571684915362,
0.10564352721548886,
0.09139246066153604,
0.08049846662127856,
0.07374623248137963,
0.07166604544793205,
0.0740924152573323,
0.0801455550588199,
0.08868739568531851,
0.09873284509371065,
0.10957418720305012,
0.12074240146108946,
0.1319378122954281,
0.1429771175188039,
0.1537616020502078,
0.16426099738611022,
0.17450715860951063,
0.1845930534418526,
0.1946735061468815,
0.2049646033255566,
0.2157389688761132,
0.22731465379591542,
0.24003651152321848,
0.25425074872159836,
0.27027551278790457,
0.28837209698682287,
0.30872172718187146,
0.3314116005513672,
0.3564314237217951,
0.3836792536921641,
0.4129739154124843,
0.44407092628331923,
0.4766793765884188,
0.5104780705779237,
0.5451300257079814,
0.5802949834505622,
0.6156398984320849,
0.6508475113560548,
0.6856231510067575,
0.7196999076817384,
0.7528423072978581,
0.7848486070893798,
0.8155518344750051,
0.8448196991107155,
0.8725535210279836,
0.898686331376751
],
[
0.21323196456881063,
0.1883501174634962,
0.16508643967610698,
0.14352276915692436,
0.12382482202133087,
0.10629560510312917,
0.09144236579882116,
0.08002120895304196,
0.07293764424111508,
0.07083836302007485,
0.07356991705695261,
0.0801449439950677,
0.08929484042758042,
0.0999474978902423,
0.11135101634541006,
0.1230158860162983,
0.1346324664417949,
0.14601178947584248,
0.15705126544484022,
0.1677176746095678,
0.17804068783913107,
0.18811206229506414,
0.19808684215229272,
0.20818342189336403,
0.2186795963792879,
0.22990217014875441,
0.242208726865217,
0.2559619526921806,
0.2714991969662576,
0.2891019392826817,
0.30897051435285094,
0.3312083058183653,
0.3558171028101199,
0.382702591819681,
0.4116871388066286,
0.4425265110461621,
0.4749276965024085,
0.5085659168523484,
0.5430998265476262,
0.5781845266965968,
0.6134823817843704,
0.6486717837720842,
0.6834540489952027,
0.717558623821783,
0.7507467534870318,
0.7828137524964769,
0.8135900095960777,
0.8429408643699133,
0.8707655024088884,
0.8969950276331391
],
[
0.21667802741688277,
0.1914342019847021,
0.16773870820000808,
0.14567661246554697,
0.12542080602223438,
0.10728978684688237,
0.09182495578053071,
0.07985389448863355,
0.07240357908116438,
0.07024727532754975,
0.07325350708288904,
0.08032805355164041,
0.09006998003603708,
0.10132020610370875,
0.11328316570681723,
0.1254488910107053,
0.13749736743161226,
0.1492333295325027,
0.16054957843926712,
0.17140912951391296,
0.1818385482724178,
0.1919273014204478,
0.2018293624785318,
0.21176390423500227,
0.22201214884995843,
0.23290780368064057,
0.2448194248036197,
0.2581247776423259,
0.27317962570138227,
0.29028560882454074,
0.3096628839364275,
0.33143228694970306,
0.3556092315433228,
0.38210858403724735,
0.41075761909389247,
0.4413134449137137,
0.47348174714380387,
0.5069347074738482,
0.5413269557218369,
0.5763091410049774,
0.6115391222154141,
0.6466909587587658,
0.6814619277665654,
0.7155777793025239,
0.7487964112667937,
0.7809101216824236,
0.8117465841777562,
0.8411686917671105,
0.869073420597031,
0.8953898747485445
],
[
0.22043459096703907,
0.1948363251155694,
0.17071729503710398,
0.14816570861469106,
0.127360890033207,
0.10863477251409272,
0.09255869614186489,
0.08002565444479322,
0.07218086514714345,
0.06993051763397946,
0.07317564404684537,
0.08071967203095805,
0.0910303872945909,
0.1028626004282376,
0.11537739126650524,
0.128043982328202,
0.14053130128596616,
0.15263701586894027,
0.16424854971037087,
0.17532437954437785,
0.18588713637348586,
0.19602304418303307,
0.2058838612807334,
0.2156881501880711,
0.22571892082796696,
0.2363149627750719,
0.2478539713108885,
0.26072720026945884,
0.2753077584451532,
0.2919171050082806,
0.31079565207905274,
0.33208275954094396,
0.3558089178691028,
0.38189972400239625,
0.41018878845915757,
0.44043573754409854,
0.4723458434205642,
0.5055888684426034,
0.5398158183638517,
0.5746731250045223,
0.6098142590245638,
0.6449089857976491,
0.6796505311930138,
0.7137609059637626,
0.7469945998056501,
0.7791408239552261,
0.8100244624580563,
0.8395058863507732,
0.8674797879108787,
0.8938731990792121
],
[
0.2244903135019307,
0.19854646873267542,
0.17401428684843095,
0.15098535121825077,
0.1296451572475112,
0.11033764087914247,
0.09366030115220819,
0.08056456776089707,
0.07230682471281075,
0.06992756031908619,
0.0733706740726707,
0.08134614261246975,
0.09219493479503783,
0.10458750374448499,
0.11764161867904425,
0.13080491259005714,
0.14373427065951644,
0.15621936473058437,
0.16814141764066956,
0.17945361187673134,
0.1901738862009696,
0.20038438115848253,
0.21023363406195011,
0.21993835631258096,
0.22978183509291136,
0.24010619549276246,
0.25129642029969634,
0.2637555275054024,
0.27787266256519805,
0.2939884616728613,
0.312363728713362,
0.33315718876822203,
0.3564157289009326,
0.3820771907362707,
0.4099829813696295,
0.4398964942189431,
0.471523560242733,
0.5045322213629041,
0.5385703250470131,
0.5732803708586238,
0.6083115954319802,
0.6433295345512138,
0.6780233684463942,
0.7121113373205914,
0.7453444694673692,
0.7775088239515685,
0.8084264238884908,
0.8379550448999495,
0.8659870222320063,
0.8924472442243403
],
[
0.2288339618643226,
0.20255460071783007,
0.17762152825374047,
0.15413022085035963,
0.13227253614077134,
0.1124036388328235,
0.09514406693895029,
0.08149633228818019,
0.07281744710888835,
0.0702778443057758,
0.07387350871542551,
0.08223449191660563,
0.09358323084251416,
0.10650854527442535,
0.12008465867720457,
0.13373639907839008,
0.1471073185530545,
0.15997799577268218,
0.17222256076863024,
0.18378814697970838,
0.1946872959116137,
0.20499731822767941,
0.21486265138520863,
0.2244970611354095,
0.23418274474096828,
0.2442635231226658,
0.2551298462291011,
0.26719469565162024,
0.2808617542980695,
0.29648991833856425,
0.3143602211903123,
0.33465133722097756,
0.3574276987717477,
0.3826408316111024,
0.4101414045698947,
0.43969788091529766,
0.47101769749564854,
0.5037679508208176,
0.5375938626048296,
0.5721343387354607,
0.6070345764899597,
0.6419559758327199,
0.6765836976020034,
0.7106321943986601,
0.7438489895236103,
0.7760169309275846,
0.8069551137558308,
0.8365186476753644,
0.8645974397219547,
0.8911141645759676
],
[
0.2334545141151226,
0.20685078584304817,
0.18153073780678614,
0.15759449131232545,
0.13524085135175876,
0.11483606116165186,
0.09702134492409771,
0.08284303110834457,
0.0737454587805597,
0.07101876724116606,
0.0747181072144346,
0.08341146460426385,
0.09521501940150484,
0.10863976302607037,
0.12271591976298354,
0.1368439010143027,
0.15065234944836833,
0.163911489925165,
0.17648739342094763,
0.18832037822750008,
0.1994169204490574,
0.20984883187153114,
0.21975568376656787,
0.2293473407030135,
0.2389036914057633,
0.24876874249480435,
0.25933666288902396,
0.27102857417825843,
0.28426105977846355,
0.29941012100944625,
0.31677657046450397,
0.3365593431834223,
0.35884136199521915,
0.3835891650908485,
0.4106641215411484,
0.4398410995678931,
0.47083025201457424,
0.5032985765022843,
0.5368892681391726,
0.57123803342122,
0.6059862684404353,
0.6407913635595057,
0.6753345099186143,
0.7093263720410885,
0.7425109362013617,
0.7746677882924065,
0.8056130339844106,
0.8351990503087806,
0.8633132476483443,
0.8898760189580398
],
[
0.2383412397129385,
0.21142527449017082,
0.18573360648450463,
0.16137193239965716,
0.13854690350403076,
0.11763622251663063,
0.0993001997583322,
0.08462213690808447,
0.07511852772550232,
0.07218363732021046,
0.07593589325820743,
0.08490252698454195,
0.09710957244729362,
0.11099520792408975,
0.12554512548759145,
0.14013340122036977,
0.15437195242135193,
0.1680192447936026,
0.18093225244751454,
0.19304369440891536,
0.20435333775073625,
0.2149268885601984,
0.2248983828791611,
0.2344729563506705,
0.2439271171900163,
0.25360369003322525,
0.26389891770594903,
0.2752402618676363,
0.2880554844506455,
0.30273634321658427,
0.31960271358560177,
0.33887382594207155,
0.3606518109710605,
0.3849194030932377,
0.4115500518858454,
0.4403263741785831,
0.47096239720951416,
0.5031259306101866,
0.5364588066663721,
0.570593983425813,
0.6051693397861335,
0.6398384178936585,
0.674278514950537,
0.708196525807,
0.7413328811585654,
0.7734638634580958,
0.8044025341777842,
0.8339984758780946,
0.8621365373590554,
0.8887347643867752
],
[
0.24348375859922836,
0.2162685699507895,
0.19022187778163147,
0.16545600515288622,
0.14218656998691515,
0.12080351456101356,
0.10198527235651314,
0.08684586883699787,
0.07695785169680389,
0.07379986535446252,
0.07755427529125922,
0.08673091717322752,
0.09928510717913626,
0.11358856384335358,
0.12858204341193072,
0.14361119657401397,
0.15826922992108355,
0.17230133157469193,
0.18555427987106674,
0.1979523909725223,
0.20948809516063036,
0.22022043516641798,
0.23027732520318,
0.2398584587012307,
0.2492360309138228,
0.258750463996969,
0.26879855409047454,
0.27981236521377967,
0.29222908015143917,
0.30645471785769623,
0.3228272654535301,
0.3415860136843379,
0.36285277535073623,
0.3866274921420433,
0.41279698562467354,
0.44115294813318723,
0.4714144708139822,
0.5032511410397774,
0.5363041527963265,
0.5702042229020129,
0.6045860443285268,
0.6390995097670717,
0.6734181266447106,
0.707245059580892,
0.7403171804814823,
0.7724074380801383,
0.803325802959095,
0.8329190072162816,
0.8610692774439207,
0.887692249984916
],
[
0.2488720812020951,
0.2213714759236749,
0.1949874096674776,
0.1698399467750726,
0.146154918437869,
0.12433553426175754,
0.10507784247494689,
0.08952096104979164,
0.0792773264408024,
0.07588765530189215,
0.07959544595908205,
0.08891682260915788,
0.10175826117533412,
0.11643279756752302,
0.13183623238487652,
0.1472837010561725,
0.162347635157507,
0.17675835657077243,
0.19035130525388191,
0.20304157482393453,
0.21481364188613497,
0.22571936692010042,
0.23588002457476442,
0.2454892531775339,
0.2548141315323316,
0.2641916042994894,
0.27401763742596097,
0.28472725155361434,
0.29676530074254714,
0.31055047091574656,
0.32643771251765735,
0.3446858888668532,
0.3654367202196836,
0.3887081718326065,
0.41440161192040864,
0.44231909277181714,
0.4721859710356901,
0.5036746206553616,
0.5364263767728893,
0.5700702766612097,
0.6042382064047386,
0.6385766469766854,
0.6727554505699636,
0.7064741140091667,
0.7394659642961628,
0.7715005987622374,
0.802384859669677,
0.8319625795026395,
0.8601133071236777,
0.8867502110828176
],
[
0.25449663174043874,
0.22672512639532463,
0.20002221954378194,
0.17451684356415237,
0.15044632521575685,
0.1282282649294199,
0.10857606218734762,
0.09264883492003029,
0.08208338200506247,
0.07845937032072593,
0.08207560208550696,
0.09147675493013524,
0.10454365509124765,
0.11953985132520822,
0.13531681401544943,
0.15115726458415588,
0.16661082039445804,
0.1813913296346596,
0.19532173070492956,
0.20830706653060496,
0.22032325241447295,
0.23141447873960405,
0.24169491990694283,
0.25135163288966006,
0.26064589305096963,
0.26991023158126176,
0.27953854301866826,
0.2899672720019197,
0.30164723911679153,
0.31500814917788095,
0.33042061130519046,
0.3481623455959253,
0.3683949594958528,
0.39115504858112127,
0.4163595612990183,
0.44382212694339923,
0.4732755611798336,
0.5043960628819084,
0.5368259351259269,
0.5701931485231607,
0.6041272085293657,
0.6382714620208205,
0.6722922724172825,
0.7058855558755992,
0.7387811270839056,
0.7707452282980152,
0.8015815464847591,
0.8311309731844281,
0.8592703299058162,
0.8859102635392685
],
[
0.26034825736337514,
0.2323210003921255,
0.2053185139427322,
0.17947969123831112,
0.1550545922913118,
0.1324762901349604,
0.11247531598058012,
0.09622610655858434,
0.08537544634738782,
0.08151961809301816,
0.08500465752601519,
0.09442316841583123,
0.10765356512816562,
0.12292038805387558,
0.13903227314671354,
0.15523801017030164,
0.17106249787703165,
0.18620154124892277,
0.20046442070746362,
0.2137453029315219,
0.22601094490009113,
0.23729740496515273,
0.24771134385164842,
0.25743278480711185,
0.2667166160699591,
0.2758901488159597,
0.28534410654250736,
0.2955149516560267,
0.30685784047266335,
0.3198118354564441,
0.3347617852731234,
0.3520033535677251,
0.37171778061498467,
0.3939606821991851,
0.418665460047201,
0.4456584469730762,
0.47468108260564895,
0.5054144436878617,
0.5375026660991867,
0.5705733131846115,
0.6042539816154086,
0.6381852018285656,
0.6720300478986225,
0.7054809685209278,
0.7382643187866811,
0.7701429975198167,
0.8009175210038015,
0.8304258072762586,
0.8585419075465162,
0.8851738983146527
],
[
0.2664182256465782,
0.23815092418312617,
0.2108687050499321,
0.1847214428658989,
0.15997305744595014,
0.13707302168811072,
0.11676865688195955,
0.10024532276887284,
0.08914688864377521,
0.08506596102203567,
0.08838643697239745,
0.09776433642657731,
0.1110977173209873,
0.12658359614361128,
0.14299029080849554,
0.15953169126430902,
0.17570631461409905,
0.1911904494245031,
0.20577859833220066,
0.2193532424130039,
0.2318713977017927,
0.24336055168195214,
0.25391947748758487,
0.26372077480838363,
0.2730124513569178,
0.2821159097150227,
0.29141773916170116,
0.3013531465734797,
0.3123800887464178,
0.3249453463654955,
0.33944651438497386,
0.3561961234209346,
0.3753945764738126,
0.3971166825477128,
0.421312995146543,
0.4478235661997582,
0.47639957567376423,
0.5067280298957624,
0.538455789926789,
0.5712107117334659,
0.6046189979124248,
0.6383187195119553,
0.6719698941583037,
0.7052616434033151,
0.7379169367834005,
0.769695357821691,
0.8003942493709937,
0.8298485330832929,
0.8579294543569956,
0.8845424763284824
],
[
0.2726982128350674,
0.24420706344148704,
0.21666541627154867,
0.1902350452262105,
0.1651946942233536,
0.14201092572840748,
0.1214472703444289,
0.10469580770187879,
0.09338623947299442,
0.0890900590210806,
0.09221926427287934,
0.10150446783171989,
0.11488320440997796,
0.1305370565146505,
0.1471976116273924,
0.16404357043219514,
0.1805457417778013,
0.19635957717433822,
0.2112637489028272,
0.22512827449667577,
0.23789986651701792,
0.2495970250214156,
0.2603102953625282,
0.27020451665804057,
0.27952040072153816,
0.28857285866132926,
0.2977435106216533,
0.30746516863042345,
0.3181971648677372,
0.33039240927420777,
0.34445971290206295,
0.36072726889973705,
0.3794139807145855,
0.4006138133856943,
0.42429498787191594,
0.450312163009777,
0.4784273081543127,
0.5083343936202279,
0.5396839139372549,
0.5721047508736535,
0.6052222667602936,
0.6386724682455001,
0.6721125827949652,
0.705228572886346,
0.7377401188113578,
0.7694035344193636,
0.8000129999786291,
0.829400428392403,
0.8574342318912697,
0.8840172236323938
],
[
0.2791802850126536,
0.2504819076939487,
0.22270147903849535,
0.19601346483242033,
0.17071219953686056,
0.14728173481822485,
0.1265009260521974,
0.10956451546770661,
0.09807848672231811,
0.09357901813482472,
0.09649681330090984,
0.10564401940746339,
0.11901451554783027,
0.1347866709533361,
0.15165994612311368,
0.16877831982113617,
0.18558397906571522,
0.20171042096353442,
0.21691953177991932,
0.23106813488537103,
0.24409210393891131,
0.25600055810675326,
0.2668755044656548,
0.2768737293048639,
0.28622830008120587,
0.295247146968851,
0.30430620422864024,
0.31383488052687847,
0.3242925769782432,
0.3361368165214216,
0.34978609203747935,
0.3655829619358458,
0.38376400272680994,
0.4044421005333245,
0.4276034740414173,
0.45311813611334534,
0.48075981040217225,
0.5102304325043646,
0.541185042371427,
0.5732543058621353,
0.6060633332147539,
0.6392464973497801,
0.6724585345739191,
0.7053824443294325,
0.7377347368994907,
0.7692685204049883,
0.7997748378027165,
0.8290825921731392,
0.8570573440507331,
0.8835992269284828
],
[
0.2858568741266618,
0.25696824914106564,
0.22896992290127885,
0.20204970506880002,
0.17651806807854512,
0.15287663797368395,
0.1319183892375121,
0.11483681132119412,
0.10320628898522269,
0.09851674211514044,
0.10120907925359064,
0.1101801451058185,
0.12349366091578676,
0.1393366471198038,
0.15638190684688671,
0.1737399431878398,
0.1908238739973096,
0.20724437024472508,
0.22274570061261303,
0.23717082671169584,
0.2504442827483164,
0.262565438681555,
0.27360748000345475,
0.2837188862066728,
0.29312478907040446,
0.30212573004909327,
0.31109134788356846,
0.32044676395124444,
0.33065026388619884,
0.3421625562499679,
0.35541030525496536,
0.37074907756098396,
0.3884321591713613,
0.40859094160076376,
0.4312297888583043,
0.4562346656874496,
0.48339191647116325,
0.5124123953104356,
0.5429565907123898,
0.5746577270964358,
0.6071412795572331,
0.6400404506266316,
0.673007815890417,
0.7057236355424726,
0.7379013923713391,
0.7692910716483782,
0.799680619415983,
0.8288959398274232,
0.8567997326387818,
0.8832894294613396
],
[
0.29272075052754754,
0.2636591576531028,
0.23546396075912307,
0.20833681596768752,
0.18260465364806575,
0.15878644426458652,
0.13768777475125632,
0.12049713545849935,
0.10875100839556122,
0.10388514272170565,
0.10634334732968152,
0.11510721989949887,
0.1283203683870819,
0.14418953290081962,
0.16136697603194225,
0.178931718660137,
0.1962678557867704,
0.21296263794664455,
0.2287420321584138,
0.24343454841969792,
0.2569529238375917,
0.2692864389321829,
0.2804992002277206,
0.2907311597216479,
0.3001992709449,
0.3091963496685825,
0.31808522529014754,
0.32728596431082174,
0.3372546738318932,
0.34845392025921085,
0.36131707503166943,
0.3762113263876093,
0.3934055993524192,
0.41304921477015316,
0.43516465432461515,
0.4596542789443369,
0.4863178102392396,
0.5148759123222418,
0.5449954042443285,
0.5763128502299021,
0.6084547296578091,
0.6410535669628039,
0.6737601370230302,
0.7062522116521737,
0.7382404119657409,
0.7694717025897808,
0.7997309887187377,
0.828841199023487,
0.856662173396345,
0.8830886273102838
],
[
0.2997649934175619,
0.2705479534614331,
0.24217697082096343,
0.21486789811521337,
0.18896421821227696,
0.16500171863132126,
0.1437968371347966,
0.1265295313094285,
0.11469352179612663,
0.10966513127992963,
0.11188507104593327,
0.12041738245021207,
0.133492327836835,
0.14934629100727279,
0.16661750141509005,
0.1843561608842089,
0.20191788315160555,
0.2188662015884752,
0.23490826357783257,
0.2498576284663033,
0.26361482933472263,
0.2761587485807628,
0.2875441820267339,
0.29790236299703504,
0.3074418659230592,
0.3164475049878952,
0.32527487121364373,
0.3343383155504872,
0.34409082113863293,
0.3549955900651712,
0.367491300796131,
0.3819553731881829,
0.3986712223284302,
0.4178053844329345,
0.43939826732058634,
0.46336891867710944,
0.4895310755525373,
0.5176160299388927,
0.5472977804864265,
0.578217009634947,
0.6100018561174638,
0.6422846831883862,
0.6747148521950772,
0.7069679234125266,
0.7387518451127932,
0.7698106829617163,
0.7999263734227509,
0.8289189061458158,
0.8566452725463075,
0.8829974661062228
],
[
0.30698296035130257,
0.27762817879087615,
0.24910247663924912,
0.22163610206481343,
0.19558896994515731,
0.17151289078680165,
0.15023319741271018,
0.13291804066260882,
0.12101481156505507,
0.11583737015214528,
0.1178186108993535,
0.12610105332813748,
0.1390054600628349,
0.15480640394568698,
0.17213471619473203,
0.1900150008021324,
0.2077754051858308,
0.22495575453545488,
0.24124403796250124,
0.2564384668443058,
0.2704270212405983,
0.2831779119778262,
0.2947364185413055,
0.30522489124968916,
0.31484336053090706,
0.3238684155430122,
0.33264805429900346,
0.3415903484912584,
0.3511443235729322,
0.36177270291022035,
0.3739181484763775,
0.3879669408211884,
0.40421578422330917,
0.4228476018481368,
0.44392038661977695,
0.46737001337763784,
0.49302474936841423,
0.5206272487835781,
0.5498594950886566,
0.580367054983181,
0.6117803900752685,
0.6437322391460185,
0.6758709614398217,
0.7078702069759939,
0.7394354623912823,
0.7703080354694142,
0.8002669823175143,
0.8291294033885265,
0.856749463871672,
0.8830164381951418
],
[
0.31436825670307345,
0.28489356942631194,
0.2562341263083744,
0.2286346244835741,
0.2024710917258054,
0.17831033952396966,
0.1569845121610346,
0.13964698041210163,
0.12769636271234094,
0.12238280040467955,
0.1241278166809576,
0.13214740000398786,
0.14485419068220454,
0.1605679996224463,
0.17791877872815742,
0.19590918101865484,
0.2138413342475213,
0.2312316667909041,
0.24774885774413807,
0.2631754832896043,
0.27738668569763353,
0.29033976964918135,
0.3020703197003889,
0.31269166387554836,
0.3223951549972597,
0.3314489788079905,
0.34019325052744714,
0.3490292858901936,
0.3584014232878366,
0.3687708998051533,
0.38058312264224753,
0.39423189936751446,
0.41002599474103435,
0.4281637993738188,
0.4487204173288136,
0.47164854761068703,
0.49679137688425096,
0.5239035646180515,
0.5526758307305705,
0.5827593706672191,
0.6137876335292046,
0.645394284897966,
0.6772271142435395,
0.7089581851261583,
0.7402907551823177,
0.7709635344509249,
0.8007528033420136,
0.8294728365151092,
0.8569750063488933,
0.8831458802676344
],
[
0.32191470581435994,
0.2923380269823768,
0.2635656716899745,
0.2358567020816031,
0.20960276163958766,
0.1853844555515119,
0.16403859297161308,
0.14670112146281009,
0.13472040374384867,
0.12928298152572598,
0.1307964595796629,
0.1385447333315213,
0.15103171383146233,
0.16662798866879006,
0.18396882750969018,
0.2020388645503132,
0.22011602968611343,
0.2376939546298939,
0.2544220455497059,
0.2700670719343709,
0.2844911228618303,
0.2976404045399867,
0.30954065627750477,
0.32029606844457814,
0.330089210291034,
0.33917972449093364,
0.34789960994297975,
0.35664302710869306,
0.365848994128695,
0.3759763578501682,
0.38747212261090697,
0.4007363408405621,
0.41608860237576395,
0.4337417772089002,
0.4537874914882614,
0.47619513145128417,
0.5008230676763542,
0.5274385113424499,
0.5557416085327657,
0.5853898977528215,
0.6160204739863033,
0.6472684899710579,
0.6787816149195237,
0.7102306699565957,
0.7413169365218903,
0.7717767055291607,
0.8013836024786635,
0.8299491533024792,
0.8573219823540703,
0.8833859714710286
],
[
0.3296163203606273,
0.29995559245101594,
0.2710909483230959,
0.24329560419770446,
0.21697616698023403,
0.19272568628512193,
0.1713834852984426,
0.15406579137531431,
0.14207002990814194,
0.1365202850870939,
0.13780853326735845,
0.14528083102335082,
0.1575302351708699,
0.17298220587040597,
0.1902830471656233,
0.2084034546976265,
0.226599291159872,
0.24434225831973688,
0.2612627120119132,
0.2771115620958121,
0.2917377022437372,
0.3050760930385553,
0.3171425078388566,
0.3280319073278335,
0.3379179960072573,
0.3470517672788787,
0.35575691884576816,
0.3644201249207093,
0.3734745378875906,
0.3833758091062686,
0.3945714841231388,
0.40746664021619733,
0.4223904682303498,
0.4395692819474403,
0.45911054382937083,
0.48100006794184597,
0.505111551936885,
0.5312252053703984,
0.559051221473377,
0.5882541581227895,
0.6184754012299442,
0.6493521545150887,
0.680532429646169,
0.7116861669652631,
0.7425129431433735,
0.7727468262592155,
0.8021589234792523,
0.8305581026822414,
0.8577902964557796,
0.8837367320176381
],
[
0.3374672753298542,
0.30774042143791525,
0.27880385650158196,
0.2509446247449097,
0.22458351313159552,
0.2003245659771729,
0.17900751541042134,
0.1617269205787202,
0.14972924317378516,
0.1440779820197672,
0.1451484484725224,
0.1523431911394439,
0.16434118796372418,
0.17962554960955088,
0.19685874158562117,
0.21500162382750132,
0.23329036026774808,
0.2511758271378817,
0.2682697300073979,
0.28430718484116785,
0.29912382330757664,
0.31264326074337095,
0.32487121477662845,
0.33589334745607413,
0.3458744399883186,
0.35505675936788694,
0.36375555924704733,
0.3723497566281244,
0.3812661718405028,
0.3909565482110369,
0.40186800831446373,
0.4144095038002308,
0.42891862870087827,
0.44563407657763837,
0.46467838193862776,
0.4860534176901376,
0.5096482359815483,
0.5352563906980211,
0.5625986692987072,
0.591347280455966,
0.6211485259697421,
0.6516422222287984,
0.682477195083977,
0.7133228805189087,
0.7438774386893393,
0.7738729277653386,
0.8030780884259234,
0.8312992345867548,
0.8583796748042818,
0.884198022299499
],
[
0.34546188288283664,
0.3156867613634508,
0.28669834385370935,
0.2587970740664154,
0.23241702854780688,
0.2081717343071437,
0.186899313269317,
0.1696710489084195,
0.15768293683702853,
0.15194025698400854,
0.15280114573492629,
0.15971922309349257,
0.17145541951653095,
0.18655211478854586,
0.20369241081955797,
0.22183134897796994,
0.24018792923361618,
0.2581935108860706,
0.275441714775516,
0.29165204493903363,
0.30664688106598337,
0.3203384428504077,
0.33272233448698507,
0.3438748735155544,
0.3539518803067413,
0.36318684379305144,
0.3718864670206841,
0.3804216912988707,
0.389212609620752,
0.39870643078526163,
0.40934897972500217,
0.4215520061241967,
0.4356603475525992,
0.45192400184395837,
0.4704797503252532,
0.49134505990062655,
0.5144242563002606,
0.5395244840298455,
0.5663775944264071,
0.5946640276756148,
0.6240356001229209,
0.6541352948896699,
0.6846132284699413,
0.7151387206281542,
0.7454088180608726,
0.7751537973531554,
0.8041401991232782,
0.8321719005022011,
0.8590896651226109,
0.884769542516653
],
[
0.3535945692663083,
0.3237889307941183,
0.29476838963862173,
0.266846271117805,
0.2404689668747812,
0.21625794617758423,
0.1950478179573802,
0.17788530580709913,
0.16591684599357406,
0.1600921760016904,
0.16075214837900603,
0.16739638575993615,
0.1788633479020774,
0.19375531615480043,
0.21077982893900238,
0.22888995238102197,
0.2472901554298293,
0.2653937571073495,
0.28277700936467487,
0.29914409779063184,
0.31430423637419114,
0.3281582489777183,
0.3406916016533257,
0.35197124473735214,
0.3621440200280716,
0.371434609306277,
0.3801410898744532,
0.3886262546187569,
0.3973031371960461,
0.4066138644864751,
0.41700217503901604,
0.4288816166498864,
0.44260315810763656,
0.45842702912904576,
0.47650338810882675,
0.49686474930191393,
0.5194305315321659,
0.5440216193817993,
0.5703813183606445,
0.5981988255011639,
0.6271320384653933,
0.6568276483095722,
0.6869375390735825,
0.7171313109613059,
0.7471052128621134,
0.7765879820741293,
0.8053441393109453,
0.83317525472555,
0.8599196373008273,
0.8854508328226885
],
[
0.3618598538695294,
0.3320413009836513,
0.30300799087793306,
0.2750855362772534,
0.24873160708100217,
0.22457407504004712,
0.20344227103032458,
0.18635737431792898,
0.17441747921314962,
0.1685196266514178,
0.1689875739075469,
0.1753622826619065,
0.18655509067873988,
0.20122800020089537,
0.21811612064372635,
0.23617414522051813,
0.25459468060266705,
0.2727746132369318,
0.2902736748590621,
0.30678113092875675,
0.32209319060802677,
0.3360993322035429,
0.3487748925239352,
0.36017745532406603,
0.37044488500930156,
0.3797930473322961,
0.38851134599857867,
0.3969542925571085,
0.40552758543996376,
0.41466779435368445,
0.4248158641418122,
0.4363862175854655,
0.4497348963937852,
0.4651313052002645,
0.482738080238722,
0.502602168594695,
0.5246578118593391,
0.5487396916475465,
0.5746028781690835,
0.6019457917448655,
0.6304329413860109,
0.6597152495280234,
0.6894468408871904,
0.7192979980138702,
0.7489644978879058,
0.7781737932112553,
0.8066885776793333,
0.8343082563169248,
0.8608687845904487,
0.8862412739878228
],
[
0.3702523304528135,
0.3404382796353688,
0.31141115036546196,
0.28350818499103764,
0.25719725230140256,
0.233111111658824,
0.2120722020048927,
0.19507544625472653,
0.1831720419910213,
0.17720924438214003,
0.17749411802914966,
0.183604723583016,
0.19452056838871248,
0.20896254482826226,
0.2256958349453617,
0.2436800731828644,
0.2620986537575591,
0.28033373295490227,
0.2979294848528809,
0.3145607496754623,
0.33001096440160943,
0.34415836206897643,
0.3569681930237987,
0.3684886984745671,
0.37884878486270257,
0.3882555113591655,
0.3969895840284894,
0.40539713479301637,
0.4138763005326039,
0.42285768387043327,
0.43277880494609994,
0.4440541140871914,
0.457043726176603,
0.47202518930744264,
0.4891727023216452,
0.5085469761937926,
0.530096725425924,
0.5536703986864735,
0.5790350626098999,
0.6058987660099285,
0.6339331184782389,
0.6627937750484305,
0.6921375664136404,
0.7216358613411403,
0.7509842985938332,
0.779909311647293,
0.808171971664963,
0.8355696717338017,
0.8619361253919208,
0.8871400885764502
],
[
0.37876665052763353,
0.3489742968463938,
0.31997186654150656,
0.29210752238537724,
0.26585822795128317,
0.2418601598371704,
0.22092740917544354,
0.2040281737289468,
0.19216835892612452,
0.18614833403484068,
0.18625902193648514,
0.19211176077403552,
0.20274958612984917,
0.21695094673409926,
0.23351301475607422,
0.251403362601379,
0.26979875676948967,
0.28806838605635393,
0.3057419236615566,
0.3224803665588014,
0.33805468011974943,
0.3523320012824948,
0.3652675705071734,
0.37690033390761,
0.38735027711970016,
0.3968156789825317,
0.4055685447777222,
0.4139465586325241,
0.4223401131942341,
0.4311734929623898,
0.44088023328699777,
0.4518740380546085,
0.46451815682352093,
0.4790972832160027,
0.4957962592668896,
0.5146888491702666,
0.5357378214972841,
0.5588052815661556,
0.5836704475408476,
0.6100513394671949,
0.6376271127092565,
0.6660586299201526,
0.6950058814087224,
0.7241417247534458,
0.7531619994800913,
0.781792394070038,
0.8097925719958837,
0.8369580781284068,
0.8631205056238648,
0.8881463426327105
],
[
0.3873975088316425,
0.35764379315670974,
0.32868412517558554,
0.30087683891526884,
0.2747068795398378,
0.2508124302933466,
0.22999793811053237,
0.21320462051892144,
0.2013947989427117,
0.19532479236552627,
0.19527003046480607,
0.20087170656199216,
0.21123189660610686,
0.2251848970281161,
0.24156126163564248,
0.25933916623043957,
0.27769123189795863,
0.2959754712081613,
0.31370818778623966,
0.3305371941033236,
0.34622134774562635,
0.36061688585838614,
0.3736691489376184,
0.38540785874362943,
0.3959441345591247,
0.4054675167165507,
0.41424132505146494,
0.42259475396563917,
0.43091030755322746,
0.43960565394801515,
0.4491098490260954,
0.459835146636627,
0.4721470549383813,
0.48633645482074145,
0.5025979180618799,
0.5210175214134362,
0.5415716101740617,
0.5641357626668129,
0.5885014302901832,
0.6143968844134773,
0.6415092249170637,
0.6695049674703061,
0.6980477004309278,
0.7268121683677208,
0.755494753314265,
0.7838206799629256,
0.8115484279521631,
0.8384718672850974,
0.8644206016589114,
0.8892589478643845
],
[
0.39613963081520387,
0.36644120959951015,
0.33754189277207636,
0.3098094070748305,
0.2837355705054608,
0.2599592335890678,
0.23927405950631173,
0.22259421551101255,
0.21084020602987402,
0.20472703502694095,
0.2045153464141021,
0.2098731378251036,
0.21995724791174914,
0.2336558459416996,
0.24983379529956568,
0.2674822079021595,
0.2857719105002193,
0.30405153102037613,
0.32182519017951844,
0.3387282406272106,
0.35450785387356026,
0.3690096084222665,
0.3821690872714182,
0.3940068815766252,
0.40462531561327086,
0.41420524760368044,
0.42300134373565246,
0.4313342896625084,
0.4395785902749011,
0.44814504628137464,
0.45745779934863134,
0.46792701646047674,
0.47991965066792835,
0.4937318560135475,
0.5095670350661127,
0.5275228171273011,
0.5475885985661072,
0.5696531814272413,
0.5935202627188216,
0.6189285833438078,
0.6455735384002429,
0.6731277094935695,
0.7012587030504338,
0.729643541404773,
0.7579794911127667,
0.7859915993239026,
0.8134373933015375,
0.8401092501700904,
0.8658349238072276,
0.890476664312279
],
[
0.40498776203729164,
0.37536097963172566,
0.34653911159320105,
0.31889847915867214,
0.2929366803063471,
0.26929197277775047,
0.2487462475493455,
0.23218670953981457,
0.22049383672996978,
0.21434392987126688,
0.21398358454897976,
0.21910489158589086,
0.22891541900349446,
0.24235505769427693,
0.2583235077652671,
0.2758268255121909,
0.2940362423481025,
0.31229276892036006,
0.3300895668936576,
0.34705030869908565,
0.362910953509731,
0.37750670442250234,
0.39076356081707386,
0.4026930995512732,
0.41338893772985313,
0.4230233215952577,
0.43184231026642056,
0.44015808168638,
0.4483370604301911,
0.456782970766702,
0.4659146600893928,
0.47613963448397095,
0.487825539525138,
0.5012729354816229,
0.5166931782613025,
0.534194679851357,
0.5537793234107008,
0.5753488275793843,
0.598719082752766,
0.6236394573017772,
0.6498139433826455,
0.6769215667156568,
0.7046343505700011,
0.7326319756193307,
0.7606129327967673,
0.7883023810511344,
0.8154571328659533,
0.841868262061975,
0.8673618203253745,
0.8917981034892877
],
[
0.4139366593563513,
0.3843975228127763,
0.35566969618155164,
0.32813728603877573,
0.30230260292846006,
0.2788021362512981,
0.25840515954423665,
0.24197213632479234,
0.23034530479665774,
0.22416473738310239,
0.22366372750145377,
0.22855605494467052,
0.23809624544083258,
0.2512736566676066,
0.26702301222050334,
0.2843670119482281,
0.30247932505787894,
0.32069506737792025,
0.3384976857284062,
0.35549999593006615,
0.37142726439815743,
0.38610464099507563,
0.3994487453448878,
0.41146227825188875,
0.4222302535444813,
0.4319163886310305,
0.44075819551557915,
0.44905936310371464,
0.45717818045981906,
0.46551112378525655,
0.47447141578624696,
0.4844633862591767,
0.4958546805058195,
0.5089494470956882,
0.5239661449242937,
0.5410231972532468,
0.5601343801865362,
0.5812139717807131,
0.6040899442133794,
0.6285223933054043,
0.654224161154912,
0.6808810593559026,
0.7081699031138553,
0.7357733992493246,
0.7633915984357684,
0.7907500619304482,
0.8176051296709659,
0.8437467682278893,
0.8689994819248875,
0.8932217319705454
],
[
0.4229810837941167,
0.393545240094281,
0.36492753125820926,
0.33751903690359925,
0.3118257459159459,
0.28848129111553467,
0.26824161726731227,
0.2519407777741477,
0.2403845329389797,
0.234179058384523,
0.23354508488762174,
0.2382159517347491,
0.2474896375835342,
0.26040266604129,
0.27592468684428,
0.293096453715792,
0.3110959332388091,
0.32925400708817837,
0.34704565653050096,
0.3640736977995493,
0.38005326360559655,
0.3947998082406218,
0.40822080372638564,
0.42031023420715813,
0.4311446297038315,
0.44087927431503166,
0.44974320507555304,
0.4580316560949297,
0.46609474848843113,
0.474321571955914,
0.483119439037016,
0.4928890422872974,
0.5039973911995177,
0.516751454515816,
0.5313759751996419,
0.5479986219818254,
0.5666444488303054,
0.5872398936086282,
0.6096248448191485,
0.6335701706793557,
0.6587977677164785,
0.6850005376264908,
0.7118604369458249,
0.7390635513717952,
0.7663118199904777,
0.7933314961569106,
0.8198786926269631,
0.8457424701071762,
0.870745946752184,
0.8947458754134798
],
[
0.4321157949473923,
0.4027985105824377,
0.37430647087073465,
0.34703691989464486,
0.3214985299851717,
0.29832107730925883,
0.2782465902946064,
0.2620831336488338,
0.25060171127184316,
0.24437678875231167,
0.24361725632044492,
0.2480741276143848,
0.25708559305997164,
0.26973303998964626,
0.2850207139084498,
0.30200856712988666,
0.31988054705155655,
0.3379648867746144,
0.35572934283248603,
0.3727676122367197,
0.3887852861156672,
0.40358851268444845,
0.4170758748908565,
0.4292328198162532,
0.4401275281723215,
0.44990695806446895,
0.4587917548890033,
0.4670687460094621,
0.47507987216098385,
0.4832067275503263,
0.49185046962637113,
0.5014077430428168,
0.512244340518097,
0.5246693326007666,
0.5389129620448444,
0.5551113888953553,
0.5733003162064114,
0.593417906929247,
0.6153157522752495,
0.6387754861574544,
0.6635282167639945,
0.6892742020193813,
0.715700861884999,
0.7424979965553811,
0.7693697534665449,
0.7960433653211172,
0.822274964688747,
0.8478529119617165,
0.872599105808804,
0.8963687229842984
],
[
0.4413355468219852,
0.41215168963652704,
0.38380033866684804,
0.35668410356876745,
0.3313133892495474,
0.30831320259497175,
0.2884111814024038,
0.2723898954060069,
0.2609872619366763,
0.2547480806629661,
0.2538700985799316,
0.2581203347966367,
0.26687420497920206,
0.27925569045307475,
0.2943031145450462,
0.31109653203196486,
0.3288273799426791,
0.3468227433263282,
0.36454437455269184,
0.381577745703263,
0.3976195251998539,
0.4124669727038731,
0.42601006489600535,
0.4382259105067882,
0.44917448985270664,
0.4589945535953819,
0.46789844914081746,
0.47616465746331205,
0.4841269441079691,
0.49215932489947833,
0.5006565937947438,
0.5100109831519357,
0.5205865395886698,
0.5326937661581902,
0.5465676580060184,
0.5623521289938979,
0.5800928955134335,
0.5997393826930637,
0.6211546284058933,
0.6441309776508042,
0.6684088618951615,
0.6936961232467267,
0.7196859386954856,
0.746072139703141,
0.7725613913915113,
0.7988821887900934,
0.8247909314382926,
0.8500754879500964,
0.8745567087788696,
0.898088332165331
],
[
0.45063508496515287,
0.4215991081711193,
0.3934029291736395,
0.36645373911127216,
0.3412627720572474,
0.31844943848432206,
0.2987266140351573,
0.2828519239413181,
0.2715318092888071,
0.2652833097733056,
0.26429369693046983,
0.26834451722934316,
0.27684566706189156,
0.2889615093915487,
0.3037637795915439,
0.3203533230605696,
0.3379304053860501,
0.35582237203101624,
0.3734861615105594,
0.3904999205454447,
0.40655203435007115,
0.42143131572044534,
0.43501943992023423,
0.4472853939417973,
0.45828112035221263,
0.46813729160193845,
0.4770580603114519,
0.48531363244297016,
0.4932296190941683,
0.5011723979594823,
0.5095302239398755,
0.5186905951263117,
0.529015331283949,
0.540815746521665,
0.5543308792583421,
0.5697116803881597,
0.5870132428341466,
0.6061957692433994,
0.6271334513187012,
0.6496292466068059,
0.6734329779195216,
0.6982602617161607,
0.7238102963363923,
0.7497812409844755,
0.7758825755293618,
0.801844334412616,
0.8274234300344984,
0.8524074495811177,
0.8766163702288504,
0.899902633915903
],
[
0.4600091447763029,
0.431135073035369,
0.4031080099676424,
0.3763389632239734,
0.35133914242551445,
0.3287216171140488,
0.3091842217676766,
0.29346023089857853,
0.2822261550374466,
0.2759730477095907,
0.27487834040834513,
0.2787367967491636,
0.2869902766130776,
0.29884138731709087,
0.3133944969297129,
0.32977173855531094,
0.34718338251591474,
0.3649583467078113,
0.3825499075423619,
0.39952978340609974,
0.41557873057438977,
0.4304775769684814,
0.44410002099514817,
0.45640716110128865,
0.4674430777300591,
0.47733050448353204,
0.48626551127836337,
0.49451011035473785,
0.5023817928652756,
0.5102392591481738,
0.5184640789726537,
0.5274387329792293,
0.5375223787943979,
0.5490265663879452,
0.5621937073166132,
0.5771810966325321,
0.5940525710506113,
0.6127786102495506,
0.6332442356199867,
0.6552628789113358,
0.6785937811896398,
0.7029604864380874,
0.7280684489684315,
0.7536204307608647,
0.7793290097498892,
0.8049260294796886,
0.8301691584732911,
0.8548459135011166,
0.878775576143318,
0.9018094381578794
]
]
},
{
"hoverinfo": "text",
"legendgroup": "In-sample",
"marker": {
"color": "black",
"opacity": 0.5,
"symbol": 1
},
"mode": "markers",
"name": "In-sample",
"text": [
"Arm 0_0
hartmann6: -0.0297614 (SEM: 0)
x1: 0.63194
x2: 0.347424
x3: 0.205478
x4: 0.406441
x5: 0.95192
x6: 0.338069",
"Arm 1_0
hartmann6: -0.27361 (SEM: 0)
x1: 0.209794
x2: 0.814679
x3: 0.906609
x4: 0.514771
x5: 0.336969
x6: 0.768961",
"Arm 2_0
hartmann6: -1.29377 (SEM: 0)
x1: 0.399512
x2: 0.175561
x3: 0.4369
x4: 0.0473453
x5: 0.168491
x6: 0.667285",
"Arm 3_0
hartmann6: -0.00320192 (SEM: 0)
x1: 0.946132
x2: 0.642815
x3: 0.700517
x4: 0.905676
x5: 0.557871
x6: 0.220734",
"Arm 4_0
hartmann6: -0.00353857 (SEM: 0)
x1: 0.824739
x2: 0.0770004
x3: 0.870288
x4: 0.768832
x5: 0.69955
x6: 0.438179",
"Arm 5_0
hartmann6: -0.319724 (SEM: 0)
x1: 0.278591
x2: 0.608526
x3: 0.00888932
x4: 0.183939
x5: 0.0894644
x6: 0.884725",
"Arm 6_0
hartmann6: -0.641969 (SEM: 0)
x1: 0.0806066
x2: 0.405138
x3: 0.521632
x4: 0.627937
x5: 0.420022
x6: 0.548659",
"Arm 7_0
hartmann6: -1.03619 (SEM: 0)
x1: 0.503196
x2: 0.936662
x3: 0.347719
x4: 0.293044
x5: 0.806459
x6: 0.117764",
"Arm 8_0
hartmann6: -0.168798 (SEM: 0)
x1: 0.60595
x2: 0.205695
x3: 0.621922
x4: 0.202054
x5: 0.25534
x6: 0.125896",
"Arm 9_0
hartmann6: -0.00718818 (SEM: 0)
x1: 0.0602461
x2: 0.737648
x3: 0.264587
x4: 0.845663
x5: 0.893302
x6: 0.696954",
"Arm 10_0
hartmann6: -0.512416 (SEM: 0)
x1: 0.361804
x2: 0.252582
x3: 0.767407
x4: 0.342461
x5: 0.600812
x6: 0.860872",
"Arm 11_0
hartmann6: -0.0810232 (SEM: 0)
x1: 0.784866
x2: 0.784533
x3: 0.0975567
x4: 0.736069
x5: 0.235296
x6: 0.305467",
"Arm 12_0
hartmann6: -0.471932 (SEM: 0)
x1: 0.290947
x2: 0.0395574
x3: 0.574835
x4: 1.06316e-16
x5: 0
x6: 0.630594",
"Arm 13_0
hartmann6: -0.159782 (SEM: 0)
x1: 0.607193
x2: 0.58406
x3: 0.411194
x4: 8.54719e-14
x5: 0.325459
x6: 0.282183",
"Arm 14_0
hartmann6: -2.15764 (SEM: 0)
x1: 0.372993
x2: 0.196271
x3: 0.438274
x4: 0.117825
x5: 0.239599
x6: 0.675725",
"Arm 15_0
hartmann6: -1.95714 (SEM: 0)
x1: 0.449943
x2: 0.15879
x3: 0.461685
x4: 0.13174
x5: 0.390655
x6: 0.693342",
"Arm 16_0
hartmann6: -1.34889 (SEM: 0)
x1: 0.212554
x2: 0.141365
x3: 0.399455
x4: 0.126699
x5: 0.0988374
x6: 0.641527",
"Arm 17_0
hartmann6: -1.68824 (SEM: 0)
x1: 0.390707
x2: 0.287147
x3: 0.550166
x4: 0.130039
x5: 0.174739
x6: 0.688268",
"Arm 18_0
hartmann6: -2.58635 (SEM: 0)
x1: 0.310863
x2: 0.119377
x3: 0.362881
x4: 0.144413
x5: 0.286805
x6: 0.666223",
"Arm 19_0
hartmann6: -2.9262 (SEM: 0)
x1: 0.235248
x2: 0.0441623
x3: 0.378019
x4: 0.197881
x5: 0.304888
x6: 0.64402",
"Arm 20_0
hartmann6: -2.45837 (SEM: 0)
x1: 0.0130358
x2: 8.65416e-13
x3: 0.29747
x4: 0.242669
x5: 0.29499
x6: 0.644106",
"Arm 21_0
hartmann6: -2.86996 (SEM: 0)
x1: 0.284256
x2: 0
x3: 0.538012
x4: 0.260093
x5: 0.297708
x6: 0.602247",
"Arm 22_0
hartmann6: -2.86567 (SEM: 0)
x1: 0.170794
x2: 0
x3: 0.533988
x4: 0.193516
x5: 0.318916
x6: 0.668095",
"Arm 23_0
hartmann6: -3.00893 (SEM: 0)
x1: 0.237055
x2: 0
x3: 0.406564
x4: 0.269795
x5: 0.309155
x6: 0.689746",
"Arm 24_0
hartmann6: -2.56059 (SEM: 0)
x1: 0.208609
x2: 0.393567
x3: 0.404238
x4: 0.267071
x5: 0.32257
x6: 0.590677",
"Arm 25_0
hartmann6: -2.9623 (SEM: 0)
x1: 0.224198
x2: 0
x3: 0.392186
x4: 0.262583
x5: 0.29757
x6: 0.613072",
"Arm 26_0
hartmann6: -0.436327 (SEM: 0)
x1: 0.117079
x2: 0
x3: 0.00981577
x4: 0.320947
x5: 0.522178
x6: 0.347948",
"Arm 27_0
hartmann6: -1.53042 (SEM: 0)
x1: 0.467898
x2: 2.25805e-14
x3: 0.365383
x4: 0.36989
x5: 0.29218
x6: 0.885608",
"Arm 28_0
hartmann6: -2.99798 (SEM: 0)
x1: 0.239601
x2: 1.14429e-12
x3: 0.409859
x4: 0.244116
x5: 0.311542
x6: 0.670445"
],
"type": "scatter",
"x": [
0.6319401860237122,
0.20979380887001753,
0.39951227605342865,
0.9461321402341127,
0.8247390789911151,
0.2785912239924073,
0.08060663379728794,
0.5031963810324669,
0.6059504700824618,
0.06024607364088297,
0.3618036899715662,
0.7848655059933662,
0.29094659520415034,
0.6071932802245622,
0.37299333606084084,
0.44994317597168565,
0.2125542456898168,
0.3907070586674871,
0.3108632730079859,
0.23524781079681076,
0.013035798373508184,
0.28425612388321286,
0.17079444223880252,
0.23705465638804576,
0.20860942173192382,
0.22419806292617878,
0.11707886200859664,
0.4678977710009378,
0.23960111812798393
],
"xaxis": "x",
"y": [
0.34742358326911926,
0.8146792491897941,
0.17556112073361874,
0.6428148215636611,
0.07700041774660349,
0.6085260733962059,
0.40513789746910334,
0.9366617053747177,
0.20569479651749134,
0.7376477597281337,
0.25258211232721806,
0.7845331085845828,
0.039557427388877416,
0.584060378732303,
0.19627111141882478,
0.15879031231173021,
0.14136538292718936,
0.28714735915371775,
0.11937743369089501,
0.044162346114470286,
8.654155757784068e-13,
0.0,
0.0,
0.0,
0.3935671025834753,
0.0,
0.0,
2.2580490371705374e-14,
1.1442873987381163e-12
],
"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.0297614 (SEM: 0)
x1: 0.63194
x2: 0.347424
x3: 0.205478
x4: 0.406441
x5: 0.95192
x6: 0.338069",
"Arm 1_0
hartmann6: -0.27361 (SEM: 0)
x1: 0.209794
x2: 0.814679
x3: 0.906609
x4: 0.514771
x5: 0.336969
x6: 0.768961",
"Arm 2_0
hartmann6: -1.29377 (SEM: 0)
x1: 0.399512
x2: 0.175561
x3: 0.4369
x4: 0.0473453
x5: 0.168491
x6: 0.667285",
"Arm 3_0
hartmann6: -0.00320192 (SEM: 0)
x1: 0.946132
x2: 0.642815
x3: 0.700517
x4: 0.905676
x5: 0.557871
x6: 0.220734",
"Arm 4_0
hartmann6: -0.00353857 (SEM: 0)
x1: 0.824739
x2: 0.0770004
x3: 0.870288
x4: 0.768832
x5: 0.69955
x6: 0.438179",
"Arm 5_0
hartmann6: -0.319724 (SEM: 0)
x1: 0.278591
x2: 0.608526
x3: 0.00888932
x4: 0.183939
x5: 0.0894644
x6: 0.884725",
"Arm 6_0
hartmann6: -0.641969 (SEM: 0)
x1: 0.0806066
x2: 0.405138
x3: 0.521632
x4: 0.627937
x5: 0.420022
x6: 0.548659",
"Arm 7_0
hartmann6: -1.03619 (SEM: 0)
x1: 0.503196
x2: 0.936662
x3: 0.347719
x4: 0.293044
x5: 0.806459
x6: 0.117764",
"Arm 8_0
hartmann6: -0.168798 (SEM: 0)
x1: 0.60595
x2: 0.205695
x3: 0.621922
x4: 0.202054
x5: 0.25534
x6: 0.125896",
"Arm 9_0
hartmann6: -0.00718818 (SEM: 0)
x1: 0.0602461
x2: 0.737648
x3: 0.264587
x4: 0.845663
x5: 0.893302
x6: 0.696954",
"Arm 10_0
hartmann6: -0.512416 (SEM: 0)
x1: 0.361804
x2: 0.252582
x3: 0.767407
x4: 0.342461
x5: 0.600812
x6: 0.860872",
"Arm 11_0
hartmann6: -0.0810232 (SEM: 0)
x1: 0.784866
x2: 0.784533
x3: 0.0975567
x4: 0.736069
x5: 0.235296
x6: 0.305467",
"Arm 12_0
hartmann6: -0.471932 (SEM: 0)
x1: 0.290947
x2: 0.0395574
x3: 0.574835
x4: 1.06316e-16
x5: 0
x6: 0.630594",
"Arm 13_0
hartmann6: -0.159782 (SEM: 0)
x1: 0.607193
x2: 0.58406
x3: 0.411194
x4: 8.54719e-14
x5: 0.325459
x6: 0.282183",
"Arm 14_0
hartmann6: -2.15764 (SEM: 0)
x1: 0.372993
x2: 0.196271
x3: 0.438274
x4: 0.117825
x5: 0.239599
x6: 0.675725",
"Arm 15_0
hartmann6: -1.95714 (SEM: 0)
x1: 0.449943
x2: 0.15879
x3: 0.461685
x4: 0.13174
x5: 0.390655
x6: 0.693342",
"Arm 16_0
hartmann6: -1.34889 (SEM: 0)
x1: 0.212554
x2: 0.141365
x3: 0.399455
x4: 0.126699
x5: 0.0988374
x6: 0.641527",
"Arm 17_0
hartmann6: -1.68824 (SEM: 0)
x1: 0.390707
x2: 0.287147
x3: 0.550166
x4: 0.130039
x5: 0.174739
x6: 0.688268",
"Arm 18_0
hartmann6: -2.58635 (SEM: 0)
x1: 0.310863
x2: 0.119377
x3: 0.362881
x4: 0.144413
x5: 0.286805
x6: 0.666223",
"Arm 19_0
hartmann6: -2.9262 (SEM: 0)
x1: 0.235248
x2: 0.0441623
x3: 0.378019
x4: 0.197881
x5: 0.304888
x6: 0.64402",
"Arm 20_0
hartmann6: -2.45837 (SEM: 0)
x1: 0.0130358
x2: 8.65416e-13
x3: 0.29747
x4: 0.242669
x5: 0.29499
x6: 0.644106",
"Arm 21_0
hartmann6: -2.86996 (SEM: 0)
x1: 0.284256
x2: 0
x3: 0.538012
x4: 0.260093
x5: 0.297708
x6: 0.602247",
"Arm 22_0
hartmann6: -2.86567 (SEM: 0)
x1: 0.170794
x2: 0
x3: 0.533988
x4: 0.193516
x5: 0.318916
x6: 0.668095",
"Arm 23_0
hartmann6: -3.00893 (SEM: 0)
x1: 0.237055
x2: 0
x3: 0.406564
x4: 0.269795
x5: 0.309155
x6: 0.689746",
"Arm 24_0
hartmann6: -2.56059 (SEM: 0)
x1: 0.208609
x2: 0.393567
x3: 0.404238
x4: 0.267071
x5: 0.32257
x6: 0.590677",
"Arm 25_0
hartmann6: -2.9623 (SEM: 0)
x1: 0.224198
x2: 0
x3: 0.392186
x4: 0.262583
x5: 0.29757
x6: 0.613072",
"Arm 26_0
hartmann6: -0.436327 (SEM: 0)
x1: 0.117079
x2: 0
x3: 0.00981577
x4: 0.320947
x5: 0.522178
x6: 0.347948",
"Arm 27_0
hartmann6: -1.53042 (SEM: 0)
x1: 0.467898
x2: 2.25805e-14
x3: 0.365383
x4: 0.36989
x5: 0.29218
x6: 0.885608",
"Arm 28_0
hartmann6: -2.99798 (SEM: 0)
x1: 0.239601
x2: 1.14429e-12
x3: 0.409859
x4: 0.244116
x5: 0.311542
x6: 0.670445"
],
"type": "scatter",
"x": [
0.6319401860237122,
0.20979380887001753,
0.39951227605342865,
0.9461321402341127,
0.8247390789911151,
0.2785912239924073,
0.08060663379728794,
0.5031963810324669,
0.6059504700824618,
0.06024607364088297,
0.3618036899715662,
0.7848655059933662,
0.29094659520415034,
0.6071932802245622,
0.37299333606084084,
0.44994317597168565,
0.2125542456898168,
0.3907070586674871,
0.3108632730079859,
0.23524781079681076,
0.013035798373508184,
0.28425612388321286,
0.17079444223880252,
0.23705465638804576,
0.20860942173192382,
0.22419806292617878,
0.11707886200859664,
0.4678977710009378,
0.23960111812798393
],
"xaxis": "x2",
"y": [
0.34742358326911926,
0.8146792491897941,
0.17556112073361874,
0.6428148215636611,
0.07700041774660349,
0.6085260733962059,
0.40513789746910334,
0.9366617053747177,
0.20569479651749134,
0.7376477597281337,
0.25258211232721806,
0.7845331085845828,
0.039557427388877416,
0.584060378732303,
0.19627111141882478,
0.15879031231173021,
0.14136538292718936,
0.28714735915371775,
0.11937743369089501,
0.044162346114470286,
8.654155757784068e-13,
0.0,
0.0,
0.0,
0.3935671025834753,
0.0,
0.0,
2.2580490371705374e-14,
1.1442873987381163e-12
],
"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": [
"