{
"cells": [
{
"cell_type": "markdown",
"id": "db69e813",
"metadata": {
"papermill": {
"duration": 0.004697,
"end_time": "2024-05-02T22:11:33.416212",
"exception": false,
"start_time": "2024-05-02T22:11:33.411515",
"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": "c2c13ece",
"metadata": {
"execution": {
"iopub.execute_input": "2024-05-02T22:11:33.422853Z",
"iopub.status.busy": "2024-05-02T22:11:33.422392Z",
"iopub.status.idle": "2024-05-02T22:11:36.883661Z",
"shell.execute_reply": "2024-05-02T22:11:36.882952Z"
},
"papermill": {
"duration": 3.507706,
"end_time": "2024-05-02T22:11:36.926577",
"exception": false,
"start_time": "2024-05-02T22:11:33.418871",
"status": "completed"
},
"tags": []
},
"outputs": [
{
"data": {
"text/html": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 05-02 22:11:36] ax.utils.notebook.plotting: Injecting Plotly library into cell. Do not overwrite or delete cell.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 05-02 22:11:36] 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": "056a3416",
"metadata": {
"papermill": {
"duration": 0.035955,
"end_time": "2024-05-02T22:11:36.999035",
"exception": false,
"start_time": "2024-05-02T22:11:36.963080",
"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": "844076ff",
"metadata": {
"execution": {
"iopub.execute_input": "2024-05-02T22:11:37.071279Z",
"iopub.status.busy": "2024-05-02T22:11:37.070801Z",
"iopub.status.idle": "2024-05-02T22:11:37.075100Z",
"shell.execute_reply": "2024-05-02T22:11:37.074505Z"
},
"papermill": {
"duration": 0.042367,
"end_time": "2024-05-02T22:11:37.076412",
"exception": false,
"start_time": "2024-05-02T22:11:37.034045",
"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": "3d332de7",
"metadata": {
"papermill": {
"duration": 0.035568,
"end_time": "2024-05-02T22:11:37.149080",
"exception": false,
"start_time": "2024-05-02T22:11:37.113512",
"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": "82046fbc",
"metadata": {
"papermill": {
"duration": 0.034879,
"end_time": "2024-05-02T22:11:37.219204",
"exception": false,
"start_time": "2024-05-02T22:11:37.184325",
"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": "6b8a4fe8",
"metadata": {
"execution": {
"iopub.execute_input": "2024-05-02T22:11:37.291075Z",
"iopub.status.busy": "2024-05-02T22:11:37.290586Z",
"iopub.status.idle": "2024-05-02T22:13:24.767083Z",
"shell.execute_reply": "2024-05-02T22:13:24.766357Z"
},
"papermill": {
"duration": 107.514718,
"end_time": "2024-05-02T22:13:24.769080",
"exception": false,
"start_time": "2024-05-02T22:11:37.254362",
"status": "completed"
},
"tags": []
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 05-02 22:11:37] 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 05-02 22:11:37] 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 05-02 22:11:37] 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 05-02 22:11:37] 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 05-02 22:11:37] 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 05-02 22:11:37] 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 05-02 22:11:37] 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 05-02 22:11:37] 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 05-02 22:11:37] ax.modelbridge.dispatch_utils: calculated num_initialization_trials=12\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 05-02 22:11:37] ax.modelbridge.dispatch_utils: num_completed_initialization_trials=0 num_remaining_initialization_trials=12\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 05-02 22:11:37] 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 05-02 22:11:37] 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 05-02 22:11:37] ax.service.managed_loop: Started full optimization with 30 steps.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 05-02 22:11:37] ax.service.managed_loop: Running optimization trial 1...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 05-02 22:11:37] ax.service.managed_loop: Running optimization trial 2...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 05-02 22:11:37] ax.service.managed_loop: Running optimization trial 3...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 05-02 22:11:37] ax.service.managed_loop: Running optimization trial 4...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 05-02 22:11:37] ax.service.managed_loop: Running optimization trial 5...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 05-02 22:11:37] ax.service.managed_loop: Running optimization trial 6...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 05-02 22:11:37] ax.service.managed_loop: Running optimization trial 7...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 05-02 22:11:37] ax.service.managed_loop: Running optimization trial 8...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 05-02 22:11:37] ax.service.managed_loop: Running optimization trial 9...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 05-02 22:11:37] ax.service.managed_loop: Running optimization trial 10...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 05-02 22:11:37] ax.service.managed_loop: Running optimization trial 11...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 05-02 22:11:37] ax.service.managed_loop: Running optimization trial 12...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 05-02 22:11:37] ax.service.managed_loop: Running optimization trial 13...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 05-02 22:11:42] ax.service.managed_loop: Running optimization trial 14...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 05-02 22:11:47] ax.service.managed_loop: Running optimization trial 15...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 05-02 22:11:53] ax.service.managed_loop: Running optimization trial 16...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 05-02 22:11:58] ax.service.managed_loop: Running optimization trial 17...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 05-02 22:12:05] ax.service.managed_loop: Running optimization trial 18...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 05-02 22:12:11] ax.service.managed_loop: Running optimization trial 19...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 05-02 22:12:16] ax.service.managed_loop: Running optimization trial 20...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 05-02 22:12:22] ax.service.managed_loop: Running optimization trial 21...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 05-02 22:12:28] ax.service.managed_loop: Running optimization trial 22...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 05-02 22:12:34] ax.service.managed_loop: Running optimization trial 23...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 05-02 22:12:40] ax.service.managed_loop: Running optimization trial 24...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 05-02 22:12:46] ax.service.managed_loop: Running optimization trial 25...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 05-02 22:12:53] ax.service.managed_loop: Running optimization trial 26...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 05-02 22:12:59] ax.service.managed_loop: Running optimization trial 27...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 05-02 22:13:06] ax.service.managed_loop: Running optimization trial 28...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 05-02 22:13:11] ax.service.managed_loop: Running optimization trial 29...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 05-02 22:13:18] 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": "4540b77b",
"metadata": {
"papermill": {
"duration": 0.055226,
"end_time": "2024-05-02T22:13:24.884978",
"exception": false,
"start_time": "2024-05-02T22:13:24.829752",
"status": "completed"
},
"tags": []
},
"source": [
"And we can introspect optimization results:"
]
},
{
"cell_type": "code",
"execution_count": 4,
"id": "8753f4bb",
"metadata": {
"execution": {
"iopub.execute_input": "2024-05-02T22:13:24.965713Z",
"iopub.status.busy": "2024-05-02T22:13:24.965085Z",
"iopub.status.idle": "2024-05-02T22:13:24.971956Z",
"shell.execute_reply": "2024-05-02T22:13:24.971256Z"
},
"papermill": {
"duration": 0.048998,
"end_time": "2024-05-02T22:13:24.973465",
"exception": false,
"start_time": "2024-05-02T22:13:24.924467",
"status": "completed"
},
"tags": []
},
"outputs": [
{
"data": {
"text/plain": [
"{'x1': 0.2336612653898288,\n",
" 'x2': 0.15101387197829808,\n",
" 'x3': 0.5354351137080264,\n",
" 'x4': 0.28486996565183803,\n",
" 'x5': 0.2945164498095637,\n",
" 'x6': 0.6600495254886899}"
]
},
"execution_count": 4,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"best_parameters"
]
},
{
"cell_type": "code",
"execution_count": 5,
"id": "0b35710f",
"metadata": {
"execution": {
"iopub.execute_input": "2024-05-02T22:13:25.054828Z",
"iopub.status.busy": "2024-05-02T22:13:25.054195Z",
"iopub.status.idle": "2024-05-02T22:13:25.058863Z",
"shell.execute_reply": "2024-05-02T22:13:25.058197Z"
},
"papermill": {
"duration": 0.047126,
"end_time": "2024-05-02T22:13:25.060252",
"exception": false,
"start_time": "2024-05-02T22:13:25.013126",
"status": "completed"
},
"tags": []
},
"outputs": [
{
"data": {
"text/plain": [
"{'l2norm': 0.9836857980642887, 'hartmann6': -3.2546371363878484}"
]
},
"execution_count": 5,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"means, covariances = values\n",
"means"
]
},
{
"cell_type": "markdown",
"id": "2c2c0dbe",
"metadata": {
"papermill": {
"duration": 0.039983,
"end_time": "2024-05-02T22:13:25.139790",
"exception": false,
"start_time": "2024-05-02T22:13:25.099807",
"status": "completed"
},
"tags": []
},
"source": [
"For comparison, minimum of Hartmann6 is:"
]
},
{
"cell_type": "code",
"execution_count": 6,
"id": "00bc2f82",
"metadata": {
"execution": {
"iopub.execute_input": "2024-05-02T22:13:25.220836Z",
"iopub.status.busy": "2024-05-02T22:13:25.220257Z",
"iopub.status.idle": "2024-05-02T22:13:25.225077Z",
"shell.execute_reply": "2024-05-02T22:13:25.224406Z"
},
"papermill": {
"duration": 0.047113,
"end_time": "2024-05-02T22:13:25.226497",
"exception": false,
"start_time": "2024-05-02T22:13:25.179384",
"status": "completed"
},
"tags": []
},
"outputs": [
{
"data": {
"text/plain": [
"-3.32237"
]
},
"execution_count": 6,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"hartmann6.fmin"
]
},
{
"cell_type": "markdown",
"id": "8778c24d",
"metadata": {
"papermill": {
"duration": 0.040272,
"end_time": "2024-05-02T22:13:25.311615",
"exception": false,
"start_time": "2024-05-02T22:13:25.271343",
"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": "8ada1f30",
"metadata": {
"execution": {
"iopub.execute_input": "2024-05-02T22:13:25.393724Z",
"iopub.status.busy": "2024-05-02T22:13:25.393212Z",
"iopub.status.idle": "2024-05-02T22:13:26.105024Z",
"shell.execute_reply": "2024-05-02T22:13:26.104291Z"
},
"papermill": {
"duration": 0.758692,
"end_time": "2024-05-02T22:13:26.110483",
"exception": false,
"start_time": "2024-05-02T22:13:25.351791",
"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.907607057817149,
-2.004854907962453,
-2.100039557196205,
-2.191808241026109,
-2.278713850879351,
-2.3592429890594193,
-2.431852199747048,
-2.495014689316456,
-2.5472802329356146,
-2.5873493590997825,
-2.6141581103243863,
-2.626962436522762,
-2.625405511097471,
-2.6095517349569883,
-2.5798787278027238,
-2.537229434481608,
-2.482735857617876,
-2.4177304231910686,
-2.343659674216056,
-2.2620099363049517,
-2.1742490086235784,
-2.0817838707962717,
-1.9859322696168462,
-1.8879053583859111,
-1.7887986589916463,
-1.689589036304045,
-1.5911358612973934,
-1.4941849828144524,
-1.3993744940550126,
-1.3072415683205725,
-1.2182298599896846,
-1.1326971330012885,
-1.0509228999812126,
-0.9731159379824648,
-0.8994215980643139,
-0.8299288524957729,
-0.7646770331937639,
-0.7036622165151838,
-0.646843210093266,
-0.5941471019005906,
-0.5454743418567238,
-0.5007033411479933,
-0.4596945915397075,
-0.4222943235507821,
-0.38833773609736744,
-0.3576518395973436,
-0.33005795893924494,
-0.30537394232702253,
-0.2834161176148364,
-0.26400103058847213
],
[
-1.933559777318454,
-2.0330507658567933,
-2.130565119953041,
-2.2247269724534298,
-2.314058746240872,
-2.397008282083461,
-2.471984352583623,
-2.5374031829016968,
-2.5917492252126735,
-2.6336520385271536,
-2.661976160364869,
-2.6759127262506213,
-2.675054622464718,
-2.6594369538882807,
-2.629532518035956,
-2.5862034660894633,
-2.530620876731491,
-2.464169805442574,
-2.388356445859686,
-2.3047283499946882,
-2.2148122192403763,
-2.1200691704604506,
-2.021865034639099,
-1.921452525438121,
-1.8199622631338317,
-1.7184001293117803,
-1.617648978977966,
-1.51847323091614,
-1.4215252601538018,
-1.3273528304729656,
-1.2364070436298789,
-1.1490504596118858,
-1.0655651702940363,
-0.9861606958481903,
-0.9109816264374698,
-0.8401149586215719,
-0.7735970850756392,
-0.7114203967008359,
-0.6535394558424797,
-0.599876703259216,
-0.550327671471196,
-0.5047656921030952,
-0.46304610220617715,
-0.42500997135285745,
-0.3904873851287798,
-0.3593003299639572,
-0.3312652284267381,
-0.30619517334504565,
-0.2839019042609583,
-0.2641975620635082
],
[
-1.9556664522220593,
-2.057063800464219,
-2.156564666791281,
-2.2527753568900417,
-2.344194292042206,
-2.4292383503745096,
-2.5062777609014137,
-2.5736823445726458,
-2.629882696797003,
-2.673448757534328,
-2.7031833002673986,
-2.718219136033876,
-2.7181007505503256,
-2.7028306079347266,
-2.6728686366926433,
-2.629085106000362,
-2.5726780848606654,
-2.50507377605239,
-2.427828003257879,
-2.3425412480759142,
-2.2507924702046638,
-2.154091725973021,
-2.0538489425124173,
-1.951355394877593,
-1.8477746015786298,
-1.7441399012641277,
-1.6413565843776825,
-1.540206997307856,
-1.4413574765660935,
-1.3453663106797265,
-1.2526921839680811,
-1.1637027457890217,
-1.0786830843943849,
-0.9978439760186908,
-0.9213298353194503,
-0.8492263209595944,
-0.7815675591174944,
-0.7183429475718643,
-0.6595035020136261,
-0.6049677097538368,
-0.5546268658422486,
-0.5083498816567404,
-0.4659875735235426,
-0.4273764558386788,
-0.39234207699980694,
-0.3607019456633038,
-0.3322680987954174,
-0.3068493619005701,
-0.2842533465573214,
-0.2642882223103973
],
[
-1.9737426153635442,
-2.0766842888883703,
-2.177800202195638,
-2.2756839917638545,
-2.3688165571187954,
-2.4555918430124892,
-2.5343513412116487,
-2.603430144441414,
-2.661218240821448,
-2.7062397865417536,
-2.7372484171682396,
-2.7533277670732037,
-2.7539775672461575,
-2.739164785607062,
-2.709327709791868,
-2.665332082509707,
-2.6083889664903017,
-2.5399523250644407,
-2.461615885375699,
-2.3750233286299087,
-2.281798081705304,
-2.1834930645152073,
-2.0815576712775874,
-1.9773182970344187,
-1.8719688753938986,
-1.7665684828942125,
-1.6620437297923571,
-1.5591942478271765,
-1.4587000618015846,
-1.3611299981169425,
-1.266950557952346,
-1.1765348843522077,
-1.0901715959620792,
-1.0080733565751383,
-0.9303851079641708,
-0.8571919224945574,
-0.7885264414168481,
-0.724375864505367,
-0.6646884554575395,
-0.6093795307658665,
-0.5583369095062118,
-0.5114258165039909,
-0.46849324884010457,
-0.429371832544841,
-0.3938832100868557,
-0.36184100831893806,
-0.33305344027789374,
-0.30732559287264904,
-0.2844614469271334,
-0.26426566763449744
],
[
-1.987649519826988,
-2.091755113172676,
-2.1940940027164144,
-2.2932521996845265,
-2.387699524637118,
-2.475815103342177,
-2.5559217787818826,
-2.626332193147627,
-2.6854100605394793,
-2.7316492610275365,
-2.7637690279629927,
-2.7808149982954573,
-2.7822471651436187,
-2.7679946770537542,
-2.738465317129915,
-2.694507160571484,
-2.6373294473197832,
-2.568399436431986,
-2.4893358177724747,
-2.401814535222054,
-2.3074946041337396,
-2.2079648249245394,
-2.1047087195915206,
-1.9990838365436097,
-1.8923116752646636,
-1.7854750939763298,
-1.6795207703770725,
-1.5752649178509832,
-1.4734009696685257,
-1.3745083352814107,
-1.2790616253915026,
-1.1874399564741238,
-1.0999360972642407,
-1.0167653215875394,
-0.9380738936533939,
-0.8639471429753715,
-0.7944170965870774,
-0.7294696365064585,
-0.6690511493332378,
-0.613074638171864,
-0.5614252767354888,
-0.5139654003972689,
-0.4705389463272873,
-0.4309753715927598,
-0.39509309169283124,
-0.36270249086976425,
-0.3336085590701914,
-0.30761320884819043,
-0.2845173197051216,
-0.26412254872699537
],
[
-1.9972965803264142,
-2.1021747928704158,
-2.2053324109866512,
-2.3053528045543255,
-2.400701132885298,
-2.4897498260699154,
-2.5708132100465915,
-2.6421938575901125,
-2.702243788498624,
-2.749442631985992,
-2.7824907922701714,
-2.800408069576265,
-2.8026206159189866,
-2.7890182492869924,
-2.759970294340411,
-2.7162948745328714,
-2.6591850211980264,
-2.5901066414201717,
-2.5106897564353883,
-2.422630676690785,
-2.3276141168213687,
-2.227256850599998,
-2.1230704148024353,
-2.016438936273457,
-1.9086081769002567,
-1.800682497677027,
-1.6936271750873508,
-1.58827416708841,
-1.4853299649646103,
-1.3853845820207216,
-1.288921039997121,
-1.1963249405564649,
-1.1078938697436476,
-1.0238464911977538,
-0.9443312497288109,
-0.8694346407077316,
-0.79918901309001,
-0.7335798753734233,
-0.6725526733981668,
-0.6160190124854851,
-0.5638623060767027,
-0.5159428477779071,
-0.47210232084301507,
-0.4321677756070539,
-0.3959551187325052,
-0.3632721667905303,
-0.3339213200491402,
-0.3077019106023209,
-0.284412273042578,
-0.263851577127616
],
[
-2.002642159059297,
-2.1078984195222357,
-2.211466966753334,
-2.311933524734725,
-2.4077650227464544,
-2.4973352916688745,
-2.5789601316558235,
-2.6509440844059498,
-2.7116414575463423,
-2.759532867943415,
-2.793314725096246,
-2.8119928223757764,
-2.814965805252392,
-2.8020840529311473,
-2.7736726174174544,
-2.7305095716236965,
-2.673758882215143,
-2.604871054648408,
-2.525473617760079,
-2.437270678528118,
-2.3419618890887097,
-2.241183206987312,
-2.1364672792142296,
-2.0292195757363745,
-1.9207062936479897,
-1.8120506189705348,
-1.7042346658178438,
-1.598105093748643,
-1.4943809640572396,
-1.3936628297820766,
-1.2964423799346925,
-1.203112197033839,
-1.1139753565325319,
-1.0292547111309043,
-0.9491017736005216,
-0.8736051491689796,
-0.802798483565123,
-0.7366678962154128,
-0.6751588688940156,
-0.6181825643041734,
-0.565621558839104,
-0.5173349883177525,
-0.4731631222797552,
-0.43293139854694207,
-0.3964539628021624,
-0.3635367663632447,
-0.33398027852621626,
-0.30758186802442755,
-0.28413790218071533,
-0.26344560357111124
],
[
-2.0036927228182972,
-2.1089365188620013,
-2.2125128915430117,
-2.313014973837651,
-2.4089179232806273,
-2.498604988596274,
-2.5804031201188113,
-2.6526301349001034,
-2.7136552860984766,
-2.7619734829737475,
-2.7962898157568006,
-2.815606408636729,
-2.8193008911742505,
-2.8071861463438905,
-2.7795403044072584,
-2.7370944008802733,
-2.6809727396993255,
-2.6125975585825554,
-2.5335803496327687,
-2.4456201282138443,
-2.3504200900626113,
-2.2496258440295316,
-2.1447835123680883,
-2.0373140185087246,
-1.928499614447642,
-1.81947918476983,
-1.711249567626978,
-1.6046708121728743,
-1.5004738620478413,
-1.3992696022836935,
-1.3015585459845966,
-1.2077406869293443,
-1.1181252226460812,
-1.0329399738478218,
-0.9523404022010338,
-0.8764181701913443,
-0.8052092053834191,
-0.7387012373878484,
-0.6768407784077527,
-0.6195395233305498,
-0.5666801553489826,
-0.5181215574513915,
-0.47370344651262153,
-0.4332504624107216,
-0.3965757572807376,
-0.3634841382016327,
-0.33377481968530986,
-0.30724384049020714,
-0.2836861933690904,
-0.26289770770752985
],
[
-2.0005005281663673,
-2.105352054950713,
-2.2085452197771307,
-2.3086856691821396,
-2.404263218955821,
-2.4936783508949985,
-2.575278308050321,
-2.647404406494316,
-2.7084516564814285,
-2.756939935747356,
-2.79159277826545,
-2.8114169420729382,
-2.815775587941883,
-2.8044483463108487,
-2.7776672507765268,
-2.7361126859925538,
-2.6808612611304934,
-2.6132956790072583,
-2.5349986033684435,
-2.44765119597382,
-2.3529485265666685,
-2.252535830616992,
-2.1479644944688414,
-2.0406644291926646,
-1.9319290322130573,
-1.8229092996937741,
-1.714614294310084,
-1.6079158285485005,
-1.5035557907627655,
-1.402154995431662,
-1.3042227875976762,
-1.2101668908371899,
-1.120303174952698,
-1.0348651480121405,
-0.9540130594102914,
-0.8778425474766663,
-0.8063927879066216,
-0.7396541086061719,
-0.6775750413786101,
-0.6200687872377082,
-0.5670190825742558,
-0.5182854676156354,
-0.4737079745894428,
-0.4331112682228955,
-0.39630828350728375,
-0.36310341359797005,
-0.33329530370545624,
-0.30667930503534113,
-0.28304963707445574,
-0.26220129807808323
],
[
-1.9931600962723595,
-2.0972559420794847,
-2.199693091956565,
-2.2990947807015805,
-2.393971747154904,
-2.4827491158813353,
-2.563802765033145,
-2.6355063524466735,
-2.696289356411108,
-2.7447045708710864,
-2.779500944786578,
-2.7996963515527487,
-2.804646077451233,
-2.794102642065817,
-2.7682556946671353,
-2.7277343196448287,
-2.6735619246122795,
-2.607072300312994,
-2.5298077158750454,
-2.4434193489054072,
-2.3495826406327094,
-2.24993227703789,
-2.1460163575460682,
-2.039266886356647,
-1.9309830470682285,
-1.8223239308966135,
-1.7143079382563209,
-1.6078166828671172,
-1.5036017769751628,
-1.402293328129764,
-1.304409331145235,
-1.2103654053653004,
-1.1204845215961456,
-1.0350064984150635,
-0.9540971358541184,
-0.8778569068860008,
-0.806329154721086,
-0.7395077571239443,
-0.6773442265562414,
-0.6197542229177677,
-0.5666234667236727,
-0.5178130547136461,
-0.47316419545793464,
-0.4325023972596429,
-0.3956411525503163,
-0.362385170683156,
-0.3325332139627384,
-0.3058805900691177,
-0.28222134851357783,
-0.2613502206342131
],
[
-1.9818038031558662,
-2.0848015187666764,
-2.186132848606664,
-2.284443525861586,
-2.378271119796307,
-2.466072158825596,
-2.546258441397963,
-2.617243246916739,
-2.6774971747519514,
-2.7256115719638716,
-2.760365731589268,
-2.7807939486913704,
-2.7862502134430986,
-2.7764670843320243,
-2.7515972584694275,
-2.7122200023763723,
-2.6593022591446918,
-2.5941215857493187,
-2.518169929838452,
-2.433057478828119,
-2.3404291741869567,
-2.241899207906779,
-2.1390037893104217,
-2.0331698917098553,
-1.9256968022873877,
-1.817747332369183,
-1.7103459774984924,
-1.6043818590809293,
-1.5006147961345513,
-1.3996832953582121,
-1.3021135996359907,
-1.208329205366765,
-1.1186604590016398,
-1.0333539847711006,
-0.9525817900702506,
-0.8764499532555659,
-0.8050068314437872,
-0.7382507434454668,
-0.676137093734386,
-0.61858491324471,
-0.5654828046924716,
-0.5166942943424502,
-0.4720626073615566,
-0.43141489816680534,
-0.3945659786831581,
-0.3613215949185684,
-0.3314813051894028,
-0.30484101182670775,
-0.28119519299734264,
-0.26033887354910923
],
[
-1.9665969283160947,
-2.068178453084612,
-2.168080569327602,
-2.2649760981185008,
-2.357434792870982,
-2.4439504867115027,
-2.5229769614801922,
-2.5929728293057064,
-2.652454704482401,
-2.7000564950129142,
-2.7345916162874175,
-2.7551155152027116,
-2.7609872542181293,
-2.751926618700934,
-2.7280552972546372,
-2.689905443171091,
-2.6383861029967357,
-2.5747133452913538,
-2.5003207848034505,
-2.4167681320189933,
-2.3256599998947367,
-2.228580741759553,
-2.1270463203858,
-2.0224715495706564,
-1.9161499720867112,
-1.8092434888876308,
-1.7027791526683052,
-1.5976509969188106,
-1.4946252416321573,
-1.3943476342262757,
-1.29735202818505,
-1.204069571885401,
-1.1148380835016365,
-1.0299113345851363,
-0.9494680651627985,
-0.8736206173183417,
-0.8024231125120139,
-0.7358791200671301,
-0.6739487784947876,
-0.616555343415724,
-0.5635911487902987,
-0.5149229826021562,
-0.47039689309648725,
-0.4298424555194509,
-0.3930765404496801,
-0.3599066321202433,
-0.3301337480876205,
-0.30355501033962184,
-0.2799659131345902,
-0.25916232562708696
],
[
-1.9477324790950763,
-2.047606498058573,
-2.145784606098717,
-2.240970841529453,
-2.33177179230527,
-2.416723515456577,
-2.4943265930672323,
-2.5630892794853697,
-2.6215777711973764,
-2.668471573675018,
-2.702621496048523,
-2.723108568933743,
-2.72930280225535,
-2.7209177093405,
-2.6980495607951034,
-2.661186596866341,
-2.6111799244968514,
-2.5491807938320394,
-2.4765584834832355,
-2.394814497870971,
-2.3055046372212584,
-2.2101749770092765,
-2.110313396714359,
-2.0073156410279447,
-1.9024636660127723,
-1.7969136991741776,
-1.6916915996064017,
-1.5876934660009263,
-1.485689851693983,
-1.3863323314454832,
-1.2901614936849282,
-1.1976156969824754,
-1.1090401334877773,
-1.024695892248521,
-0.944768820482977,
-0.8693780504890352,
-0.7985841035542427,
-0.7323965091336092,
-0.6707808954543676,
-0.613665522191722,
-0.5609472400468536,
-0.512496876852182,
-0.4681640646256837,
-0.4277815354871757,
-0.3911689251772086,
-0.35813613007966083,
-0.32848626668227965,
-0.3020182814370904,
-0.2785292546433782,
-0.25781643529776077
],
[
-1.9254260519530266,
-2.023329422401305,
-2.1195185054971013,
-2.2127321305769674,
-2.3016175927808833,
-2.38475709831036,
-2.4607017049279665,
-2.5280124851031305,
-2.585307877213191,
-2.631315497155558,
-2.6649265861418456,
-2.6852518644255685,
-2.691677402681311,
-2.6839158787762267,
-2.662042952865254,
-2.626506197064351,
-2.5780997315315375,
-2.5179083311177957,
-2.447232864692701,
-2.367510729987203,
-2.2802419443674395,
-2.186926987369586,
-2.0890185589429313,
-1.9878868443625506,
-1.8847965434753025,
-1.7808934452906515,
-1.6771983480712584,
-1.5746063843274845,
-1.473890154175638,
-1.375705415854176,
-1.2805983896688562,
-1.1890139868826823,
-1.101304476350529,
-1.017738253271649,
-0.9385084832882582,
-0.8637414695779211,
-0.7935046393319916,
-0.727814077534982,
-0.666641557533832,
-0.6099210348818901,
-0.5575545865107223,
-0.5094177925774275,
-0.46536457308693935,
-0.4252315046087105,
-0.3888416529752372,
-0.35600796490804343,
-0.3265362646682677,
-0.3002279011954865,
-0.2768820873741138,
-0.25629796700629126
],
[
-1.8999109211910665,
-1.995609333093428,
-2.0895745488597024,
-2.180583165978425,
-2.2673262831926273,
-2.348435263669546,
-2.422514353619436,
-2.488179762177751,
-2.544104225595178,
-2.5890656591347976,
-2.6219985317358425,
-2.642046859354334,
-2.648616952301659,
-2.641424934864629,
-2.6205297826672087,
-2.5863414767116035,
-2.5395987917174523,
-2.48131974600019,
-2.4127344565857465,
-2.3352120741230262,
-2.250191421628914,
-2.1591213052831,
-2.0634130456967683,
-1.9644053600254017,
-1.8633403448092967,
-1.7613487106652659,
-1.6594423127595244,
-1.5585121781731317,
-1.4593305030891468,
-1.3625553915597213,
-1.2687373876642398,
-1.1783270936565438,
-1.0916833618647008,
-1.0090816987378237,
-0.930722630444955,
-0.8567398576922252,
-0.7872080806493446,
-0.7221504107088978,
-0.6615453109406506,
-0.6053330266234027,
-0.5534214842772156,
-0.5056916535312588,
-0.4620023809809166,
-0.4221947182242114,
-0.3860957766413484,
-0.3535221484852662,
-0.32428293716263124,
-0.2981824393304171,
-0.2750225181676029,
-0.25460470178543826
],
[
-1.8714334755637905,
-1.9647215062104322,
-2.05625800011748,
-2.144859711023158,
-2.2292639191012436,
-2.3081533592870866,
-2.380187406907387,
-2.4440390871302364,
-2.498437048674977,
-2.5422113873461996,
-2.574342213764829,
-2.5940097732080822,
-2.6006438077651755,
-2.5939670998579243,
-2.574025066668736,
-2.541192945203453,
-2.4961562725992352,
-2.4398671125745515,
-2.373483961889145,
-2.2983051822219354,
-2.2157044950949203,
-2.1270742298802516,
-2.033779114535289,
-1.9371211886923818,
-1.838315044206884,
-1.7384719133871422,
-1.638590909944879,
-1.5395557887769336,
-1.4421357893154103,
-1.346989375571003,
-1.25466993400904,
-1.1656327125575991,
-1.0802424697658273,
-0.9987814503489129,
-0.9214574147726774,
-0.8484115314277723,
-0.7797259968496986,
-0.715431289086398,
-0.6555129877563122,
-0.5999181162944115,
-0.5485609804200942,
-0.5013284934719346,
-0.45808499423531646,
-0.41867657582766227,
-0.3829349544509917,
-0.3506809138214928,
-0.3217273645949701,
-0.29588205826574887,
-0.2729499923433456,
-0.25273553891333944
],
[
-1.8402490642433431,
-1.9309497654830992,
-2.0198820563098883,
-2.1059046871928775,
-2.187802865557413,
-2.2643122530319753,
-2.334148682535608,
-2.396043173424324,
-2.4487815109187787,
-2.4912474728975744,
-2.5224686978771174,
-2.5416638245797145,
-2.5482882794033457,
-2.5420738068179007,
-2.523054738830311,
-2.4915741954934205,
-2.4482668947004744,
-2.3940205708484847,
-2.3299224351501033,
-2.2571989061869173,
-2.1771560798877214,
-2.091126244339466,
-2.0004233391147412,
-1.906308288865624,
-1.8099638176714652,
-1.7124776161314839,
-1.6148324323522674,
-1.5179016333780824,
-1.4224489117474213,
-1.329131008390328,
-1.2385025359700503,
-1.1510221869327668,
-1.0670597837961875,
-0.9869037705935877,
-0.910768854363091,
-0.838803587747032,
-0.7710977433833868,
-0.7076893735795472,
-0.6485714801073235,
-0.5936982431573053,
-0.5429907784728234,
-0.4963424090311013,
-0.4536234528527905,
-0.4146855414367634,
-0.37936549349501436,
-0.3474887757044314,
-0.3188725859323924,
-0.2933285949913953,
-0.27066538091942394,
-0.25069058580651427
],
[
-1.8066182706441478,
-1.8945823986783263,
-1.9807634458999548,
-2.064063510746204,
-2.1433169335997935,
-2.2173133138961654,
-2.2848257719182263,
-2.3446440675790385,
-2.395611945871236,
-2.4366679047015736,
-2.4668883773124803,
-2.485531780293069,
-2.4920806461778584,
-2.4862772562883766,
-2.4681468264099635,
-2.4380027987028776,
-2.3964316889694586,
-2.344259132410965,
-2.2825023377765583,
-2.2123157881900415,
-2.1349366535353536,
-2.0516347716960857,
-1.9636700987133766,
-1.8722588102096076,
-1.778547998773279,
-1.683598161327001,
-1.5883723077146508,
-1.4937304248948537,
-1.400428094492781,
-1.3091182071093739,
-1.2203548930947326,
-1.1345989652655788,
-1.0522243273732466,
-0.9735249354650509,
-0.8987220059920147,
-0.827971246537786,
-0.7613699462963286,
-0.6989638086268143,
-0.6407534417693291,
-0.5867004499633401,
-0.536733088521048,
-0.49075146447412243,
-0.4486322798995641,
-0.4102331279780087,
-0.3753963620009424,
-0.34395256466646895,
-0.31572364900171546,
-0.29052562330603293,
-0.26817105107790007,
-0.24847123364733736
],
[
-1.770803605747782,
-1.8559085767079957,
-1.939218604234121,
-2.0196800583796812,
-2.0961771603675636,
-2.1675540037377026,
-2.2326413984583438,
-2.290288186479156,
-2.3393964679931845,
-2.3789599808666604,
-2.408104576629198,
-2.4261291106535285,
-2.4325439483551943,
-2.4271029175166765,
-2.409823706587035,
-2.380992361747011,
-2.3411499292620803,
-2.291062601607245,
-2.2316795909502254,
-2.164084394808942,
-2.0894450050331477,
-2.0089674421365507,
-1.923855430939168,
-1.8352775639231051,
-1.744342169314127,
-1.6520793620996297,
-1.5594293543367441,
-1.46723594691105,
-1.3762441314039788,
-1.2871008285066123,
-1.2003579292622466,
-1.1164769554870213,
-1.0358347972558422,
-0.9587301087490603,
-0.8853900455155725,
-0.8159771066651517,
-0.7505959072689253,
-0.6892997529991399,
-0.632096924617122,
-0.5789566076759163,
-0.5298144252547805,
-0.4845775502634553,
-0.44312938961705717,
-0.40533384559458674,
-0.3710391698801414,
-0.340081433019616,
-0.31228763630177436,
-0.2874784945956246,
-0.2654709178767052,
-0.2460802166704259
],
[
-1.7330665987757932,
-1.8152152323950834,
-1.8955603598567925,
-1.9730931753615366,
-2.046748137685661,
-2.115423999200143,
-2.1780092768238872,
-2.2334118406893495,
-2.2805920970544973,
-2.3185990133513017,
-2.3466078716328167,
-2.363957998150787,
-2.3701877605919655,
-2.3650631150340393,
-2.348595526240298,
-2.3210457912242335,
-2.282912269828698,
-2.234904651044513,
-2.177906686876959,
-2.1129325801873735,
-2.041081765747173,
-1.9634959917077954,
-1.8813213734762473,
-1.7956768550514768,
-1.7076295036634899,
-1.6181763582090665,
-1.528232131492337,
-1.4386218697668622,
-1.3500776319052967,
-1.2632383050178306,
-1.178651778229546,
-1.0967788204127364,
-1.017998131277348,
-0.942612147248149,
-0.8708532789058784,
-0.8028903343465695,
-0.7388349439860277,
-0.6787478497720533,
-0.6226449585329342,
-0.5705030881295674,
-0.522265358427006,
-0.4778461983619726,
-0.43713595638695146,
-0.4000051146549868,
-0.3663081175372995,
-0.3358868324277826,
-0.3085736653519373,
-0.2841943558882134,
-0.2625704757377392,
-0.24352165350468735
],
[
-1.6936652581893878,
-1.772784357633366,
-1.850095077964849,
-1.9246336666738935,
-1.9953848369121745,
-2.061301817380093,
-2.12133049184843,
-2.1744373190208197,
-2.2196405223106557,
-2.2560437835347695,
-2.2828712842130447,
-2.2995023344260996,
-2.3055030420389437,
-2.300651754960044,
-2.2849548016290417,
-2.258649754836407,
-2.2221950702526843,
-2.1762470412208663,
-2.1216268668022784,
-2.0592817100281486,
-1.990243776403845,
-1.9155908645479243,
-1.8364108787279416,
-1.7537717662520524,
-1.668697456745738,
-1.5821497235088016,
-1.4950154651049317,
-1.408098680601299,
-1.3221163327037482,
-1.237697309869589,
-1.1553837710312065,
-1.075634255340174,
-0.9988280445768801,
-0.9252703655292183,
-0.8551981074113004,
-0.7887858029292278,
-0.7261516811479667,
-0.6673636475767339,
-0.6124450841944882,
-0.5613803918005913,
-0.5141202210368241,
-0.4705863580710512,
-0.43067624710818686,
-0.39426714502827465,
-0.3612199137208103,
-0.3313824631788833,
-0.30459286326562074,
-0.28068214451642026,
-0.2594768087817261,
-0.24080106945857094
],
[
-1.6528518761363562,
-1.7288906834082176,
-1.8031202203094632,
-1.8746217322602834,
-1.9424299030922414,
-2.005551941376219,
-2.0629904239253163,
-2.113769590954635,
-2.156964581036674,
-2.1917328226746093,
-2.2173464083403185,
-2.233223734633561,
-2.238958063957682,
-2.2343401658833097,
-2.2193721525447234,
-2.194270282475874,
-2.159455847849875,
-2.1155349330425883,
-2.0632693320346283,
-2.0035418348696497,
-1.9373193013485712,
-1.8656165498387451,
-1.7894633480233617,
-1.7098759500206044,
-1.6278338582131584,
-1.5442618889747313,
-1.460017211223964,
-1.375880786227015,
-1.2925525293462263,
-1.2106494997675217,
-1.1307064678688716,
-1.0531782848165188,
-0.9784435660436407,
-0.9068092870550959,
-0.8385159693387163,
-0.773743202705773,
-0.7126153073830278,
-0.655206985471184,
-0.6015488485852514,
-0.5516327384121131,
-0.5054167811788,
-0.46283013686311225,
-0.4237774202242297,
-0.38814278386780954,
-0.35579366385151934,
-0.3265841959519993,
-0.30035831583743056,
-0.27695255928346585,
-0.2561985796059234,
-0.23792539912200672
],
[
-1.6108711516737064,
-1.683799713114893,
-1.75492229059449,
-1.8233648193712841,
-1.8882114014751248,
-1.948522443461055,
-2.003356233427982,
-2.051793647834046,
-2.092965468929047,
-2.1260815189290065,
-2.1504604454127785,
-2.165558523177295,
-2.170995348769977,
-2.16657397372871,
-2.1522930810687573,
-2.1283494132530443,
-2.0951297664320205,
-2.053193211995469,
-2.0032454230856933,
-1.946107768319119,
-1.8826840676082701,
-1.813927651527677,
-1.7408108007692866,
-1.664297958020747,
-1.585323450510646,
-1.5047739242706257,
-1.4234753023876852,
-1.3421838336544942,
-1.2615806704701862,
-1.1822693749225661,
-1.1047757705910246,
-1.029549610731834,
-0.9569676031708307,
-0.8873374060916142,
-0.8209022793007483,
-0.7578461383735426,
-0.6982988127644415,
-0.642341353569644,
-0.5900112731258109,
-0.5413076283401173,
-0.4961958838750242,
-0.45461251113033474,
-0.41646929515494446,
-0.38165733469035534,
-0.35005073082218874,
-0.3215099674265194,
-0.29588499197129137,
-0.27301800854571723,
-0.2527459965917789,
-0.23490296911955721
],
[
-1.5679586105491998,
-1.637766084065212,
-1.705775140010545,
-1.771155869580122,
-1.8330409994726602,
-1.8905430947335602,
-1.9427748952912571,
-1.9888724689234332,
-2.0280206545522512,
-2.0594800024565822,
-2.0826140780177353,
-2.096915600605857,
-2.102029516762116,
-2.0977708989452366,
-2.0841356799053985,
-2.0613027739750245,
-2.029627051776277,
-1.9896237240806267,
-1.9419456816610532,
-1.887356003265374,
-1.8266980817979317,
-1.7608656635443634,
-1.6907746689632592,
-1.6173381125928317,
-1.5414448871275763,
-1.4639427019936762,
-1.3856251058712417,
-1.3072222796561106,
-1.2293951466307742,
-1.1527322874159058,
-1.077749144954932,
-1.0048890385556728,
-0.9345255594718266,
-0.8669659817861871,
-0.802455383612519,
-0.7411812302476372,
-0.6832782206586193,
-0.6288332409944187,
-0.577890304059882,
-0.5304553827539462,
-0.4865010693453,
-0.44597101203411804,
-0.4087840962367373,
-0.37483835094350004,
-0.344014570701082,
-0.31617965153720773,
-0.2911896447371538,
-0.2688925360791532,
-0.24913076027069492,
-0.2317434612716256
],
[
-1.5243393011586048,
-1.5910322345992225,
-1.6559386096496171,
-1.7182719378403097,
-1.7772125622028,
-1.8319239381978425,
-1.8815717550468407,
-1.9253455719062529,
-1.9624824401250525,
-1.9922917309259762,
-2.0141800857277814,
-2.0276750808856887,
-2.032445920656038,
-2.0283193519868985,
-2.0152891455977837,
-1.9935179665724188,
-1.9633312164564327,
-1.9252033148322405,
-1.8797376992015618,
-1.827642385338444,
-1.7697031616539205,
-1.7067564052222937,
-1.6396631886910997,
-1.5692859069169531,
-1.4964681897153542,
-1.4220184526668824,
-1.3466971085985597,
-1.2712072285111375,
-1.1961882952727863,
-1.1222126203889442,
-1.0497839749613087,
-0.9793380030348372,
-0.9112440243021407,
-0.8458078824980355,
-0.7832755480257417,
-0.7238372335063465,
-0.6676318263355787,
-0.6147514818445505,
-0.5652462541944387,
-0.5191286701524744,
-0.4763781740989772,
-0.4369453917192081,
-0.40075617546503106,
-0.36771540752458276,
-0.33771054609652884,
-0.3106149085380394,
-0.28629069072184254,
-0.2645917259821795,
-0.24536598965908096,
-0.22845785679490027
],
[
-1.4802267472897743,
-1.5438273551267558,
-1.6056574863902913,
-1.6649731584153609,
-1.7210011335084845,
-1.7729542915128869,
-1.8200495629195323,
-1.8615280905793368,
-1.8966770947079281,
-1.9248526845602583,
-1.945502597588638,
-1.958187583374766,
-1.9625999464054291,
-1.95857770310149,
-1.9461129729365412,
-1.9253536431331801,
-1.896597977152538,
-1.8602825615525342,
-1.8169646520399523,
-1.7673004563638621,
-1.712021109648574,
-1.6519080600052551,
-1.5877693470683683,
-1.5204179064453625,
-1.4506526489564986,
-1.3792427054205207,
-1.3069149314544237,
-1.234344546351582,
-1.162148634108566,
-1.090882152639212,
-1.0210360649632388,
-0.9530372092733961,
-0.8872495505829516,
-0.8239764950166345,
-0.7634639913077471,
-0.7059041877048507,
-0.6514394532550984,
-0.6001666087872236,
-0.5521412443505118,
-0.5073820264897493,
-0.4658749209821278,
-0.4275772750754414,
-0.39242171838125195,
-0.36031985385778786,
-0.3311657201533882,
-0.30483901429944527,
-0.28120806963361766,
-0.26013258818008533,
-0.24146612979551696,
-0.22505836249563482
],
[
-1.435822138558966,
-1.4963666013045929,
-1.5551607476104363,
-1.6115020294193425,
-1.664662268900881,
-1.713902137999284,
-1.758487933710051,
-1.797710314111831,
-1.8309044798052978,
-1.8574710773768348,
-1.8768968772857222,
-1.8887740682483343,
-1.8928168649957964,
-1.8888741097992772,
-1.876936714360031,
-1.857139154203041,
-1.8297547534572587,
-1.795185093037043,
-1.753944424992169,
-1.7066403795396718,
-1.653952452297595,
-1.5966097541586124,
-1.5353693347688238,
-1.4709961146274262,
-1.4042451438793473,
-1.3358465991005244,
-1.2664936659699064,
-1.1968332515179516,
-1.127459327088101,
-1.058908616142244,
-0.9916582992060179,
-0.9261254000369196,
-0.8626675317267316,
-0.801584709894925,
-0.7431219754487071,
-0.6874726066555394,
-0.6347817362995284,
-0.5851502226476409,
-0.5386386519916031,
-0.4952713754715603,
-0.4550405039243963,
-0.4179098020177774,
-0.3838184373726332,
-0.35268455217008454,
-0.32440863426648003,
-0.29887667243765637,
-0.2759630863358655,
-0.2555334263405906,
-0.2374468419742728,
-0.22155832017930632
],
[
-1.3913137393199206,
-1.448850546984741,
-1.5046610686710598,
-1.558082985154218,
-1.6084316832052556,
-1.6550138602241409,
-1.6971431763680491,
-1.7341576201570894,
-1.7654380881572043,
-1.7904274953653254,
-1.8086495441101693,
-1.8197261135151188,
-1.8233921307022263,
-1.8195067964864124,
-1.8080601990646303,
-1.7891746662560701,
-1.763100646312607,
-1.7302073985533162,
-1.6909692305719846,
-1.6459483609409444,
-1.5957756690240825,
-1.541130609972066,
-1.4827214499363945,
-1.421266760006684,
-1.3574788473348518,
-1.292049541059433,
-1.2256385188144305,
-1.1588641730787579,
-1.0922968804126403,
-1.0264544479464766,
-0.961799463110159,
-0.8987382555155113,
-0.8376211851665777,
-0.7787439908823887,
-0.7223499606285303,
-0.668632716640736,
-0.6177394395413699,
-0.5697743850735169,
-0.5248025735187394,
-0.4828535548942361,
-0.4439251726395219,
-0.4079872649434282,
-0.3749852564845979,
-0.34484360454987306,
-0.31746907262670465,
-0.2927538119716222,
-0.27057823763136946,
-0.25081369019123745,
-0.2333248783746562,
-0.21797210072045603
],
[
-1.3468764965646671,
-1.401464853999368,
-1.4543545660764539,
-1.5049222239224305,
-1.5525251739911858,
-1.5965142692136365,
-1.6362484371766204,
-1.6711107362779754,
-1.7005254213793617,
-1.7239753799883646,
-1.741019142804407,
-1.751306543314391,
-1.7545920336431173,
-1.750744693329659,
-1.739754118849726,
-1.7217316559094724,
-1.696906804900656,
-1.6656190371599684,
-1.6283056385692067,
-1.585486487391238,
-1.5377468375680972,
-1.4857192087715463,
-1.4300653980299523,
-1.3714594588071276,
-1.3105722811136868,
-1.2480581858207513,
-1.184543744045098,
-1.1206188641054986,
-1.0568300606598622,
-0.9936757328637423,
-0.9316032260533521,
-0.8710074277487195,
-0.8122306463972117,
-0.7555635334699913,
-0.7012468305901286,
-0.6494737488820607,
-0.6003928144853239,
-0.5541110400448856,
-0.5106973057109534,
-0.4701858541364463,
-0.4325798219820547,
-0.39785474564604884,
-0.36596199160671095,
-0.3368320722471416,
-0.3103778166803939,
-0.2864973732375582,
-0.26507702620673346,
-0.24599381435700618,
-0.22911794294189525,
-0.21431498441225783
],
[
-1.3026718271598199,
-1.354380135558058,
-1.404420748817911,
-1.4522077586473716,
-1.4971387819393527,
-1.5386068833850737,
-1.5760141031121946,
-1.6087862689008678,
-1.6363886391892726,
-1.6583417846291952,
-1.674236986305233,
-1.6837503292311278,
-1.68665462705895,
-1.682828354099381,
-1.6722609001542772,
-1.6550537003730659,
-1.6314171019531833,
-1.6016631685201224,
-1.566194939389696,
-1.5254929076746853,
-1.4800996279217014,
-1.4306034020364202,
-1.3776219332078712,
-1.3217867064943454,
-1.263728682183297,
-1.204065702801925,
-1.1433918394031402,
-1.0822687522920151,
-1.0212190229997542,
-0.9607213293975293,
-0.9012072816735586,
-0.8430597085125898,
-0.7866121744101785,
-0.7321495149262696,
-0.6799091918170527,
-0.6300832903044421,
-0.5828210031706356,
-0.5382314687435821,
-0.4963868507944871,
-0.4573255671450327,
-0.42105559008535853,
-0.38755775555094374,
-0.356789029611859,
-0.32868569050190244,
-0.30316639249849153,
-0.28013508477787097,
-0.2594837641877483,
-0.2410950459200054,
-0.22484454048977054,
-0.21060302935188413
],
[
-1.2588475648112942,
-1.307751990160571,
-1.3550226507144125,
-1.4001096583396695,
-1.4424491507550223,
-1.4814744139366909,
-1.5166284161929846,
-1.547377445125289,
-1.573225420939483,
-1.5937283412242114,
-1.6085082062380325,
-1.6172656979680125,
-1.619790861709273,
-1.615971084749143,
-1.605795793566768,
-1.5893574950731169,
-1.566849048324786,
-1.538557336441087,
-1.5048537735583378,
-1.466182291712768,
-1.423045582842786,
-1.3759904132903693,
-1.3255927895369835,
-1.2724436529060013,
-1.2171356412834688,
-1.1602513009619462,
-1.1023529808372792,
-1.0439745078795755,
-0.9856146345745704,
-0.9277321683616561,
-0.8707426387884849,
-0.8150163267117062,
-0.7608774668830368,
-0.7086044359529671,
-0.6584307479487154,
-0.6105466949513637,
-0.5651014891071053,
-0.5222057811323784,
-0.4819344486835675,
-0.44432956451312977,
-0.40940346883451406,
-0.37714188271069427,
-0.347507009726858,
-0.3204405819895748,
-0.2958668139385603,
-0.2736952338751011,
-0.25382336876446177,
-0.23613926295238752,
-0.2205238160764471,
-0.2068529297224957
],
[
-1.2155380474870636,
-1.2617211834965825,
-1.3063071175047085,
-1.3487804499877636,
-1.3886140516717485,
-1.4252794170690801,
-1.4582582547108451,
-1.4870550193405152,
-1.5112099882567471,
-1.530312383595816,
-1.5440129561569034,
-1.5520353893846321,
-1.5541858707020246,
-1.5503602254488946,
-1.5405481229297224,
-1.5248340399781333,
-1.5033948878698844,
-1.4764944459978242,
-1.444474968622396,
-1.40774651013907,
-1.366774629567742,
-1.3220671786121785,
-1.2741608540448652,
-1.223608117884846,
-1.1709649761956022,
-1.1167799782473535,
-1.0615846685976584,
-1.0058856073948337,
-0.9501579762543116,
-0.8948407115546474,
-0.8403330538625408,
-0.7869923691876167,
-0.7351330814656483,
-0.6850265522380213,
-0.6369017492116793,
-0.5909465569610353,
-0.5473095977796532,
-0.5061024465545994,
-0.46740213908096573,
-0.4312538875611518,
-0.3976739296888274,
-0.3666524485906699,
-0.33815651011371495,
-0.31213297176535915,
-0.28851132435316384,
-0.2672064333354305,
-0.24812115232909093,
-0.23114878629849334,
-0.21617538676017034,
-0.20308186591100386
],
[
-1.1728643266580698,
-1.216413956771599,
-1.2584052238972236,
-1.298355652583638,
-1.335773040623908,
-1.3701650775524747,
-1.4010500426090209,
-1.4279683031943808,
-1.4504942452744405,
-1.4682481825592846,
-1.480907721691649,
-1.4882180184468918,
-1.4900003577792376,
-1.4861585385387615,
-1.476682645847984,
-1.461649945692735,
-1.4412228229522075,
-1.4156438840030463,
-1.3852285330422875,
-1.3503554842996408,
-1.3114557739875046,
-1.2690008791518679,
-1.223490537981845,
-1.1754408074950327,
-1.1253728040161441,
-1.0738024647212931,
-1.02123155841303,
-0.9681400712173261,
-0.9149800050071298,
-0.8621705565625514,
-0.8100945944768806,
-0.7590963173109416,
-0.7094799579773025,
-0.6615093927306769,
-0.6154085153091112,
-0.5713622448176607,
-0.529518047411148,
-0.4899878647718541,
-0.45285035537995766,
-0.4181533667212478,
-0.3859165673816516,
-0.3561341772966604,
-0.32877774235887136,
-0.3037989063900064,
-0.2811321394670896,
-0.26069738705167156,
-0.2424026095413836,
-0.22614618688961508,
-0.21181916787762245,
-0.1993073484580814
],
[
-1.130934480605054,
-1.1719424411816843,
-1.2114327975959778,
-1.2489544174897687,
-1.2840482195006166,
-1.3162560924424256,
-1.3451307535547532,
-1.3702462836935436,
-1.3912089999886015,
-1.40766825553859,
-1.41932669984745,
-1.4259495029710283,
-1.427372050557007,
-1.4235056633899807,
-1.4143409859143992,
-1.3999488188177884,
-1.3804783292062983,
-1.3561527406381075,
-1.3272627643342176,
-1.2941581638480366,
-1.2572379349876097,
-1.2169396246183881,
-1.1737283072805833,
-1.1280856945211837,
-1.080499779400121,
-1.0314553299859157,
-0.9814254521955632,
-0.9308643532659095,
-0.8802013588812245,
-0.8298361731442327,
-0.7801353223884422,
-0.7314296907075116,
-0.6840130352503658,
-0.6381413603890193,
-0.594033029185911,
-0.5518694956479235,
-0.5117965498294748,
-0.4739259781220835,
-0.43833755168343913,
-0.40508126600587624,
-0.37417976360501504,
-0.3456308795663803,
-0.3194102563166541,
-0.2954739797370358,
-0.27376119392202836,
-0.2541966568006093,
-0.2366932037005418,
-0.22115409087158233,
-0.20747519600928133,
-0.1955470578776699
],
[
-1.0898440151314848,
-1.1284051597668598,
-1.1654910293504344,
-1.200680252020669,
-1.233545076295516,
-1.2636596279409036,
-1.2906089812364323,
-1.3139987999072225,
-1.3334652365469153,
-1.348684720141806,
-1.359383216711173,
-1.3653445262356074,
-1.3664171875082465,
-1.3625196065024496,
-1.3536431043253279,
-1.339852693417936,
-1.3212855254526104,
-1.298147097209343,
-1.2707054356464667,
-1.2392835956575123,
-1.2042508826977858,
-1.166013252105964,
-1.1250033378492832,
-1.0816705307811951,
-1.036471468741591,
-0.9898612277121495,
-0.9422854241956307,
-0.8941733619449664,
-0.8459322869325893,
-0.7979427565896896,
-0.7505550844063479,
-0.7040867889133237,
-0.6588209556822309,
-0.615005410422282,
-0.5728525983548549,
-0.5325400676319643,
-0.49421146063837806,
-0.457977924903032,
-0.4239198637555379,
-0.39208895491869256,
-0.36251037243879236,
-0.33518515356908796,
-0.31009265753927173,
-0.2871930678230472,
-0.2664298938768275,
-0.24773243265946787,
-0.23101815476584076,
-0.21619498481456434,
-0.20316345080622367,
-0.19181868240933997
],
[
-1.049676336256316,
-1.0858875995111148,
-1.1206671502024195,
-1.1536218058003083,
-1.1843533822736383,
-1.212466326340885,
-1.2375760519592742,
-1.2593177538167188,
-1.2773554137676215,
-1.291390666934871,
-1.3011711588081922,
-1.3064980096512226,
-1.307232013675621,
-1.3032982414230643,
-1.2946887848545234,
-1.2814634817571848,
-1.2637485709817584,
-1.2417333512549433,
-1.2156650310813601,
-1.1858420536715126,
-1.1526062499444945,
-1.116334209701927,
-1.0774282658344063,
-1.0363074626335729,
-0.9933988334220137,
-0.949129252574968,
-0.9039180603720709,
-0.8581705927597244,
-0.8122726872077088,
-0.7665861838145167,
-0.7214453993738098,
-0.6771545215832521,
-0.6339858502310667,
-0.5921788006287312,
-0.5519395800004305,
-0.513441448120046,
-0.47682547743117976,
-0.44220173366138216,
-0.40965080434227685,
-0.37922560883892675,
-0.35095342901055093,
-0.3248381043351054,
-0.3008623393504888,
-0.27899007487046235,
-0.2591688779561554,
-0.24133230936189243,
-0.22540223132997794,
-0.21129102325778737,
-0.19890367785269425,
-0.18813975577933317
],
[
-1.01050328077328,
-1.0444628382454177,
-1.07703515922435,
-1.107853702057993,
-1.1365481273807947,
-1.162751343592356,
-1.186107159664813,
-1.2062783352824065,
-1.2229547699038474,
-1.2358615315761494,
-1.2447663984129833,
-1.2494865758293139,
-1.2498942653200318,
-1.2459207983447051,
-1.2375591114830298,
-1.2248644228414047,
-1.2079530678367945,
-1.1869995556421848,
-1.1622320054360065,
-1.1339262045409115,
-1.1023985911973408,
-1.0679984989832856,
-1.0311000072241012,
-0.9920937247902563,
-0.9513787984357044,
-0.9093553875015411,
-0.8664177907995878,
-0.8229483545524231,
-0.779312236979192,
-0.7358530586559708,
-0.6928894299317255,
-0.6507123180216111,
-0.6095831965532456,
-0.5697329082674161,
-0.5313611658366701,
-0.4946366147641461,
-0.45969738449105213,
-0.42665205777939064,
-0.39558099303052274,
-0.36653793867197004,
-0.33955188266666014,
-0.31462908346575347,
-0.29175523148175375,
-0.27089769270360375,
-0.25200778875873464,
-0.23502307085571306,
-0.21986954880970688,
-0.20646384081765778,
-0.19471521472695796,
-0.18452749704423477
],
[
-0.9723856919038635,
-1.0041922125844192,
-1.0346565870884867,
-1.0634373984650094,
-1.090190477959347,
-1.1145754012417068,
-1.136262507042553,
-1.1549402449078539,
-1.1703226176737114,
-1.1821564506138478,
-1.1902281973459963,
-1.1943699866841122,
-1.194464628059037,
-1.1904493276523451,
-1.18231792245253,
-1.170121511841853,
-1.1539674503161508,
-1.134016752927369,
-1.1104800486665996,
-1.083612288468043,
-1.0537064677335137,
-1.0210866547184332,
-0.9861006250626329,
-0.9491123910619871,
-0.9104948857809886,
-0.870623021755617,
-0.8298672970837853,
-0.7885880730134386,
-0.7471306007240727,
-0.705820833768251,
-0.6649620283682081,
-0.6248321071843901,
-0.5856817431701064,
-0.5477331079491301,
-0.5111792226415863,
-0.47618384685508186,
-0.44288184226614824,
-0.41137994957921364,
-0.38175792064140857,
-0.3540699503953908,
-0.32834635578714266,
-0.30459545064414817,
-0.2828055670792402,
-0.2629471754878434,
-0.24497505706248668,
-0.22883048526575966,
-0.21444337607280195,
-0.2017343710533035,
-0.19061682239731392,
-0.1809986545723401
],
[
-0.9353740285934196,
-0.9651260147377104,
-0.9935812827252928,
-1.0204220643490967,
-1.0453287433744083,
-1.0679858393144834,
-1.0880884394535055,
-1.1053489018122427,
-1.1195036169347474,
-1.1303195886899857,
-1.137600577288688,
-1.1411925447479716,
-1.1409881566426665,
-1.1369301253307973,
-1.1290132282229806,
-1.1172848972600755,
-1.1018443477807032,
-1.0828402901746892,
-1.0604673393406205,
-1.0349612986276786,
-1.006593541624981,
-0.9756647438290601,
-0.9424982260702158,
-0.9074331639045784,
-0.8708178949107763,
-0.8330035229138888,
-0.7943379789002065,
-0.7551606568851837,
-0.7157977027388776,
-0.6765579975922389,
-0.6377298466511226,
-0.5995783598557761,
-0.5623434929097502,
-0.52623870523745,
-0.4914501844823005,
-0.4581365840651428,
-0.42642921986109683,
-0.3964326730840948,
-0.36822574805515895,
-0.3418627350227388,
-0.31737492927072375,
-0.29477235836764915,
-0.2740456697981659,
-0.2551681317384853,
-0.23809770079012882,
-0.22277911240034776,
-0.20914595266332459,
-0.19712267423314578,
-0.18662652404563707,
-0.17756935617868486
],
[
-0.8995089982708474,
-0.927304207549085,
-0.9538482120912399,
-0.9788454631318398,
-1.0019993403921712,
-1.0230176591473905,
-1.041618560979444,
-1.0575366260315362,
-1.0705290151675135,
-1.0803814277305923,
-1.0869136475177266,
-1.0899844487804444,
-1.0894956474533077,
-1.085395111140139,
-1.0776785838725682,
-1.066390235829282,
-1.0516219100638615,
-1.033511102722148,
-1.0122377746920814,
-0.9880201459120967,
-0.9611096645091872,
-0.9317853689453353,
-0.9003478715986326,
-0.8671131875682633,
-0.8324066152153531,
-0.7965568481772961,
-0.759890465845901,
-0.7227269140281832,
-0.6853740527245832,
-0.6481243160234891,
-0.6112515016279965,
-0.5750081853620901,
-0.5396237393392573,
-0.5053029209652997,
-0.4722249928367912,
-0.4405433298946668,
-0.4103854688168267,
-0.3818535545574362,
-0.3550251393135664,
-0.3299542894369827,
-0.3066729556341976,
-0.28519256123414016,
-0.2655057626117967,
-0.24758833543880066,
-0.23140114071460105,
-0.2168921258591412,
-0.2039983187105483,
-0.19264777607401573,
-0.18276145334302596,
-0.17425496736595525
],
[
-0.8648222040906413,
-0.8907571485115608,
-0.9154862596564738,
-0.9387348306100576,
-0.9602277460928247,
-0.9796945472528453,
-0.9968748240918588,
-1.0115237875179908,
-1.0234178482229064,
-1.0323600110143345,
-1.0381848832894673,
-1.0407630971030617,
-1.0400049572004446,
-1.0358631528957403,
-1.0283344089714834,
-1.017459997714937,
-1.003325087435827,
-0.9860569581181211,
-0.9658221677029434,
-0.9428227986045964,
-0.9172919499741524,
-0.8894886647235977,
-0.8596924906036169,
-0.8281978722639802,
-0.7953085579353459,
-0.7613321826585674,
-0.7265751627377705,
-0.6913380061986656,
-0.6559111140894164,
-0.6205711195616541,
-0.5855777873012171,
-0.5511714758989443,
-0.5175711504329916,
-0.48497292164928374,
-0.45354908106952285,
-0.42344759727233283,
-0.3947920365241959,
-0.36768186995603225,
-0.3421931288187765,
-0.318379368486986,
-0.2962729005915088,
-0.27588625102299824,
-0.25721379986230586,
-0.2402335580017796,
-0.22490903477716429,
-0.21119115169462166,
-0.19902015950321883,
-0.1883275194233689,
-0.17903771410498548,
-0.17106995953091264
],
[
-0.8313367987850139,
-0.8555063147716647,
-0.8785150246389662,
-0.9001077412545372,
-0.9200294317681217,
-0.9380298730547264,
-0.9538685862494646,
-0.9673199155563168,
-0.9781780956526717,
-0.9862621368817354,
-0.9914203499805704,
-0.993534333979687,
-0.9925222631954104,
-0.9883413321470009,
-0.9809892499759798,
-0.970504716665366,
-0.9569668592409961,
-0.9404936537044906,
-0.9212394039645837,
-0.8993913889786368,
-0.8751658208169733,
-0.8488032775227868,
-0.8205637846969895,
-0.7907217190516608,
-0.759560697058866,
-0.727368594272233,
-0.6944328182769012,
-0.6610359329542875,
-0.6274517060592434,
-0.5939416278452705,
-0.5607519269969561,
-0.5281110922654184,
-0.4962278942689189,
-0.46528989178119073,
-0.4354623999898515,
-0.4068878939273213,
-0.37968581770226084,
-0.353952768453615,
-0.3297630224167576,
-0.30716936867306344,
-0.28620421388270656,
-0.26688091869640296,
-0.24919532395303845,
-0.23312742267488984,
-0.21864313275178504,
-0.20569612543861404,
-0.19422966657138008,
-0.18417843071910167,
-0.17547025312208664,
-0.16802778987033729
],
[
-0.7990681382694163,
-0.8215650222733538,
-0.8429456052595471,
-0.8629729560429807,
-0.8814107716716802,
-0.8980276548044441,
-0.912601628232855,
-0.9249247639251702,
-0.9348077864490731,
-0.9420844983476839,
-0.9466158695881048,
-0.9482936358662245,
-0.9470432621157655,
-0.942826148109469,
-0.9356409818025484,
-0.9255241814413869,
-0.912549407083088,
-0.8968261631590835,
-0.8784975529893688,
-0.8577372808046292,
-0.8347460244679373,
-0.8097473210881959,
-0.7829831173779084,
-0.7547091371370225,
-0.7251902106453981,
-0.6946956966125667,
-0.6634951086000788,
-0.6318540365292226,
-0.6000304319223704,
-0.5682713045212613,
-0.5368098591055379,
-0.5058630854825377,
-0.47562980206831806,
-0.4462891441580332,
-0.41799948148104704,
-0.39089774530629007,
-0.36509914244077146,
-0.340697231190195,
-0.3177643320981913,
-0.2963522436491497,
-0.27649322999293924,
-0.25820124429408686,
-0.2414733479133393,
-0.22629128280901356,
-0.2126231528064928,
-0.20042516912185304,
-0.18964341693693165,
-0.18021560288503768,
-0.1720727477924795,
-0.16514079455887343
],
[
-0.7680244290656062,
-0.7889391332032022,
-0.808781365383362,
-0.8273312464985242,
-0.8443699216901667,
-0.859683489211053,
-0.8730671302565817,
-0.8843293283568059,
-0.893296052230745,
-0.8998147660746583,
-0.9037581273777703,
-0.9050272355404521,
-0.9035543053718331,
-0.8993046579390794,
-0.8922779465212719,
-0.8825085661931876,
-0.8700652298409192,
-0.8550497287942201,
-0.8375949302026612,
-0.8178620933761909,
-0.796037611556657,
-0.7723293026076994,
-0.7469623812622327,
-0.7201752469536669,
-0.6922152156455093,
-0.6633343127369977,
-0.6337852286493082,
-0.6038175207857317,
-0.5736741268427681,
-0.5435882363415743,
-0.5137805508496089,
-0.4844569493941291,
-0.4558065643669096,
-0.4280002647495982,
-0.4011895374063599,
-0.37550575292382593,
-0.3510597993353002,
-0.32794206435973283,
-0.30622274394893156,
-0.28595245162373795,
-0.2671630992223244,
-0.24986901549093266,
-0.23406826484733312,
-0.21974412518348974,
-0.20686668127944796,
-0.1953944896823845,
-0.18527627196640584,
-0.17645259610005848,
-0.16885750997210813,
-0.16242009657219625
],
[
-0.7382073644355408,
-0.7576277467954076,
-0.7760186788640528,
-0.7931761905954751,
-0.808897664015063,
-0.8229854413368631,
-0.8352506029081032,
-0.8455168138392717,
-0.853624125879932,
-0.8594326131125941,
-0.8628257174037963,
-0.8637131830550298,
-0.8620334701305954,
-0.8577555524049782,
-0.8508800281144964,
-0.8414394985106112,
-0.8294981989173861,
-0.8151508975964195,
-0.7985211071042063,
-0.7797586789923444,
-0.7590368739775054,
-0.7365490149247349,
-0.7125048385639696,
-0.6871266638302936,
-0.6606454906675022,
-0.633297134084267,
-0.6053184855059544,
-0.5769439784481796,
-0.548402319642733,
-0.5199135312046388,
-0.4916863352165908,
-0.4639158998845665,
-0.43678195650573204,
-0.4104472888765276,
-0.3850565911580881,
-0.36073568609400986,
-0.3375910922162042,
-0.3157099256494409,
-0.29516011882456006,
-0.27599093453827606,
-0.2582337493294471,
-0.24190307532432875,
-0.22699778499998913,
-0.21350249929352372,
-0.20138909670033334,
-0.19061829987530898,
-0.1811412969839894,
-0.17290135761447845,
-0.16583540720770418,
-0.15987552929321147
],
[
-0.7096127448655136,
-0.7276238693470394,
-0.7446476477337322,
-0.7604949370403735,
-0.7749782147481437,
-0.7879148921553585,
-0.7991307707900615,
-0.8084635501070337,
-0.8157662844111806,
-0.8209106805618966,
-0.8237901263580748,
-0.8243223431849711,
-0.8224515657873146,
-0.8181501667716045,
-0.8114196630328754,
-0.8022910647026719,
-0.7908245530069451,
-0.7771084999347273,
-0.7612578680931971,
-0.7434120518991225,
-0.7237322399319852,
-0.7023983918533225,
-0.6796059312650568,
-0.6555622582238647,
-0.6304831822972777,
-0.6045893698605098,
-0.5781028888654727,
-0.5512439217593723,
-0.5242277037781502,
-0.49726173055848766,
-0.470543266762935,
-0.4442571767904766,
-0.4185740899462096,
-0.3936489056694006,
-0.36961963930470954,
-0.3466066049828065,
-0.32471192888022316,
-0.304019382880649,
-0.28459452500203763,
-0.2664851286347987,
-0.24972187767114473,
-0.23431929927535888,
-0.2202769008378398,
-0.20758047316478057,
-0.19620351874781639,
-0.1861087624635569,
-0.1772497024818671,
-0.1695721614813861,
-0.16301580222906997,
-0.15751557676935257
],
[
-0.6822310792096672,
-0.6989150599953333,
-0.7146527911026334,
-0.7292689351649523,
-0.742589992095682,
-0.7544473418740072,
-0.7646804074232668,
-0.7731398543176234,
-0.7796907354737964,
-0.7842154839123673,
-0.7866166557842056,
-0.786819329610127,
-0.7847730762463937,
-0.7804534272863973,
-0.7738627868918675,
-0.7650307525084894,
-0.7540138323574893,
-0.7408945706069026,
-0.7257801132475952,
-0.7088002675439886,
-0.6901051243245708,
-0.669862324478108,
-0.648254058371689,
-0.6254738894675826,
-0.6017234915297573,
-0.5772093831408898,
-0.5521397346832453,
-0.5267213124749504,
-0.5011566134108008,
-0.47564123215801146,
-0.4503614924594064,
-0.42549236492779263,
-0.401195686143917,
-0.37761868789867536,
-0.354892840807264,
-0.33313301284424,
-0.3124369400757767,
-0.29288500347444213,
-0.27454030177905175,
-0.2574490056985337,
-0.24164097340317237,
-0.22713060150911657,
-0.21391788015170077,
-0.2019896158679142,
-0.191320782446758,
-0.18187595809350632,
-0.17361080740433144,
-0.16647356872880614,
-0.16040651125658245,
-0.15534733119112043
],
[
-0.6560481634054645,
-0.6714840494318304,
-0.6860137022635673,
-0.6994746282960665,
-0.7117063434224198,
-0.7225531677182231,
-0.7318671205331254,
-0.7395108404461558,
-0.7453604473938303,
-0.7493082602884863,
-0.7512652831498098,
-0.75116337652006,
-0.7489570388191992,
-0.7446247341238719,
-0.7381697181248531,
-0.7296203319428933,
-0.7190297530396911,
-0.7064752124715682,
-0.6920567069730291,
-0.6758952516678387,
-0.6581307336033543,
-0.638919437072531,
-0.6184313184296112,
-0.5968471107646358,
-0.5743553376431487,
-0.5511493106785241,
-0.5274241787189391,
-0.5033740877431625,
-0.47918950103333846,
-0.45505471962686483,
-0.431145634104126,
-0.4076277309090828,
-0.38465436986260393,
-0.3623653443104118,
-0.34088573122548516,
-0.3203250351649647,
-0.3007766267771077,
-0.28231747308375166,
-0.2650081526560235,
-0.24889314388466866,
-0.23400136890049628,
-0.22034696965540568,
-0.2079302867570254,
-0.19673900647464304,
-0.18674943748587425,
-0.1779278768499153,
-0.1702320245916591,
-0.16361240813013023,
-0.15801378133557598,
-0.15337646784308578
],
[
-0.6310456342197075,
-0.6453093292841731,
-0.6587056720538139,
-0.6710841090157279,
-0.6822962299666628,
-0.6921983353781993,
-0.7006540873182723,
-0.707537175373901,
-0.7127339230756823,
-0.7161457572186479,
-0.7176914626376478,
-0.7173091486832551,
-0.7149578608964313,
-0.7106187819918647,
-0.7042959797768713,
-0.6960166753684625,
-0.6858310221527548,
-0.6738114033644252,
-0.6600512729237323,
-0.6446635792850051,
-0.6277788246985391,
-0.6095428218613554,
-0.59011421608545,
-0.5696618437833803,
-0.5483619974666585,
-0.5263956640102132,
-0.5039457972659223,
-0.48119467892193724,
-0.4583214135381801,
-0.4354995956302159,
-0.41289517909700724,
-0.390664572598328,
-0.3689529788877648,
-0.34789299158650433,
-0.32760345922868295,
-0.3081886232546873,
-0.28973753352292064,
-0.2723237414123467,
-0.2560052663647645,
-0.24082482662852667,
-0.2268103191196542,
-0.213975527059036,
-0.20232102790940965,
-0.1918352687418292,
-0.18249577209162138,
-0.17427043305652257,
-0.16711886806222953,
-0.16099377734698406,
-0.15584228655216936,
-0.15160723744877003
],
[
-0.6072014959799261,
-0.620365710397098,
-0.6327002770225761,
-0.6440657352079436,
-0.6543248684804575,
-0.6633450637570176,
-0.6710007397068415,
-0.6771757820231444,
-0.6817659184296377,
-0.6846809638669344,
-0.685846866816315,
-0.6852074913086631,
-0.6827260758320721,
-0.6783863198849278,
-0.672193060909832,
-0.6641725181872179,
-0.6543720952181691,
-0.6428597473443715,
-0.6297229359755228,
-0.6150672040100716,
-0.5990144181506019,
-0.5817007323183875,
-0.5632743319651929,
-0.54389302170269,
-0.5237217184824086,
-0.5029299099218147,
-0.4816891327942572,
-0.4601705207818121,
-0.43854246396024577,
-0.41696841573373655,
-0.3956048765607163,
-0.37459957815921996,
-0.35408988712222067,
-0.3342014429868665,
-0.31504704258430083,
-0.2967257796030689,
-0.2793224453116807,
-0.26290719290031217,
-0.24753546362046452,
-0.233248167716408,
-0.22007210717890358,
-0.20802062096850915,
-0.19709442708849356,
-0.1872826303502657,
-0.17856386044609596,
-0.17090750245755437,
-0.16427498140226526,
-0.15862106383411656,
-0.15389514262721438,
-0.15004247550051897
]
],
"zauto": true,
"zmax": 2.8193008911742505,
"zmin": -2.8193008911742505
},
{
"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.3658780514574281,
0.3415940078781558,
0.31661714511926287,
0.29112648536737024,
0.2653540079728553,
0.23959353421770035,
0.21421366410585324,
0.18968114575680736,
0.1666063633759008,
0.14582562107620983,
0.12851723190765998,
0.11626107954451825,
0.1107696422424272,
0.11306684590657785,
0.12271638301713629,
0.13809471081746583,
0.15731534209320502,
0.1788007840144552,
0.2013765113156688,
0.2241850066378159,
0.24659165355462107,
0.2681221856460001,
0.28842721126893256,
0.30726302673126393,
0.3244805341708654,
0.34001721516682065,
0.35388928758718086,
0.36618250940017777,
0.3770409231401588,
0.386653420610673,
0.39523850287175444,
0.40302806767761773,
0.4102514409107551,
0.41712108811485954,
0.42382139674530994,
0.4305015622831557,
0.43727299384696006,
0.4442109279628351,
0.4513592987244036,
0.4587375215281795,
0.46634777607960387,
0.4741815887443204,
0.48222491026996306,
0.4904613381137488,
0.49887353952731905,
0.5074432283390963,
0.5161502110938538,
0.5249710534470311,
0.5338778513813998,
0.5428374595357607
],
[
0.3629170815604934,
0.33834023776372224,
0.3130550674732589,
0.28724891260639257,
0.26116771831035895,
0.23512692911915584,
0.20952673763333157,
0.18487787157587351,
0.16184897049441097,
0.14134784255592758,
0.12462499543003384,
0.11328755941397957,
0.10894087267416715,
0.11233604896275104,
0.12277093822372093,
0.13854884427116212,
0.15786297157160337,
0.17924744931535552,
0.20161368301007604,
0.22415788861565702,
0.24627560912914967,
0.2675081723741434,
0.2875136015507552,
0.30605146576853,
0.32297423067095066,
0.33822064820784964,
0.3518086913954623,
0.36382672028646273,
0.3744222965193322,
0.3837885953407164,
0.3921488384755174,
0.39973963135039403,
0.40679448899587856,
0.41352907124465954,
0.4201296057884472,
0.4267456014551344,
0.4334872967124129,
0.44042751209131825,
0.44760689270467097,
0.45504111448534257,
0.4627285592878766,
0.4706572003012001,
0.478809865486081,
0.48716752866616025,
0.49571070568861314,
0.5044193408800387,
0.513271733852135,
0.5222430874978772,
0.5313041833535544,
0.540420548464187
],
[
0.36089042020019035,
0.3360938787139048,
0.31057556605184927,
0.28453078681490523,
0.25821943246294093,
0.23197938723257355,
0.20624485739337353,
0.18157545206888095,
0.15870559522877684,
0.13862168320216928,
0.12264188426356659,
0.11236409999605855,
0.109216778547628,
0.11363826484179512,
0.12470391859882482,
0.14071386269962513,
0.15997749206512696,
0.1811468751635142,
0.2032144474893692,
0.2254238411242571,
0.2471958943483969,
0.2680843760613433,
0.2877528437742669,
0.305963023393089,
0.32256818292603756,
0.3375076523251923,
0.3508003595004479,
0.3625362707084359,
0.37286525858540276,
0.3819834016279997,
0.3901171734607026,
0.3975064416601213,
0.4043876099590138,
0.41097848829390476,
0.4174664374062232,
0.4240009452503759,
0.43069110465611116,
0.43760764674635105,
0.44478846867306937,
0.4522461643400444,
0.45997600038003494,
0.46796303310346843,
0.47618751223630185,
0.4846282217302993,
0.4932638520393154,
0.5020728145835369,
0.5110320754371092,
0.5201156123889866,
0.5292930181628576,
0.5385286227733398
],
[
0.3598212485098031,
0.3348834115282764,
0.3092133726525,
0.2830138708697421,
0.2565582118973397,
0.23020643212607247,
0.20442709308781287,
0.1798299580680744,
0.15721676392161976,
0.1376503183103033,
0.12250034798140048,
0.11331511982145463,
0.11130281751585998,
0.11660207174268163,
0.1281330158931569,
0.14424177894145665,
0.16336244036070685,
0.18425519451902483,
0.20598220846753904,
0.22782659049466086,
0.24922990447898452,
0.26975613583791264,
0.28907353149875353,
0.3069458001684883,
0.3232270353409267,
0.33785707023647155,
0.3508554503632166,
0.36231307947941255,
0.3723811456327866,
0.3812573708228038,
0.389170064673167,
0.39636092309133725,
0.40306793559914056,
0.4095100260943205,
0.41587501842677077,
0.422312121514558,
0.4289294218137057,
0.43579603064303,
0.4429477952433152,
0.4503950401425019,
0.45813073952666855,
0.46613778563943686,
0.47439448404664575,
0.4828779262118945,
0.49156534505157945,
0.5004338813495399,
0.5094593563008715,
0.5186146700641626,
0.5278683602002657,
0.5371836986644936
],
[
0.3597237788494176,
0.33472827517900433,
0.30899442927747667,
0.28273185365010123,
0.25622637555974215,
0.2298589030532911,
0.2041305616885049,
0.17969848634867516,
0.15742628785544843,
0.1384407468432157,
0.12413710287766695,
0.11597795075952128,
0.1149421986954773,
0.12092263232205021,
0.13275517076629684,
0.14885880364134704,
0.16778198701715943,
0.18837411134898258,
0.2097524098350833,
0.231230717699604,
0.2522669678985054,
0.2724337036098363,
0.2914036490994535,
0.3089429061150186,
0.32490691213778594,
0.3392363274494812,
0.35195128432946066,
0.3631431791038254,
0.37296367181286016,
0.3816109612511982,
0.38931382531978154,
0.3963143739387136,
0.4028508875915602,
0.40914238104565814,
0.41537650220791256,
0.42170197855992847,
0.4282261102429124,
0.43501695825286213,
0.44210912715685063,
0.44951159257997686,
0.45721595645369806,
0.46520378092847636,
0.47345212411456095,
0.4819369272695155,
0.4906343636973013,
0.4995205849769887,
0.5085704683419565,
0.5177559925731615,
0.5270447814945671,
0.5363991961842809
],
[
0.3606022023443127,
0.33563731183403833,
0.3099336331602741,
0.2837071525878845,
0.25725509578744815,
0.2309771302414294,
0.2054031904099767,
0.18123110682618213,
0.1593742894224238,
0.14100222658217273,
0.12750430838736532,
0.12023271421417012,
0.1199587551346332,
0.12640322813294133,
0.1383798452949559,
0.15439126830224087,
0.17308158326286732,
0.19336754332146475,
0.21440592820407786,
0.23553235692130683,
0.2562168179428896,
0.2760388876764272,
0.29467571872964565,
0.31189637929707287,
0.32755832001581614,
0.34160348513425615,
0.3540526765131659,
0.36499743161138287,
0.37458911252578764,
0.3830252827135667,
0.39053385877769675,
0.3973559761179227,
0.40372893020484835,
0.40987082151935045,
0.4159685054025565,
0.4221700560009594,
0.4285822467413976,
0.435272704697604,
0.44227564974215583,
0.44959967935258066,
0.4572359893636643,
0.4651656848168334,
0.4733653040079984,
0.4818102034106013,
0.49047591126352247,
0.4993378832721359,
0.508370262660076,
0.5175442708362861,
0.5268267668989107,
0.536179356238754
],
[
0.3624497512105223,
0.3376072770054481,
0.3120325562180898,
0.28594753186452343,
0.2596595417014993,
0.2335842244878201,
0.20827493788700271,
0.18446035734927488,
0.16308658837118992,
0.14533920505845974,
0.1325707109872409,
0.1260117877047226,
0.12626663349151337,
0.13295894355648574,
0.14492882818407182,
0.16076536535064956,
0.17918914484297252,
0.19916415380210073,
0.21987240230675856,
0.24066282107325696,
0.2610131764119107,
0.2805083991814169,
0.29882981268022635,
0.3157498268711257,
0.33112841425548256,
0.34490914488046887,
0.3571135015644982,
0.36783277749392485,
0.3772172623649673,
0.3854627885148,
0.39279511042628834,
0.3994530337474515,
0.4056716241260264,
0.41166708671612645,
0.4176248820726978,
0.42369226349133254,
0.42997573331969113,
0.4365430916614821,
0.44342901988312095,
0.45064269660135065,
0.4581758683552006,
0.4660100496862754,
0.4741219834735496,
0.48248700642467235,
0.4910804182176739,
0.4998772758289501,
0.5088512036444871,
0.5179728359520068,
0.5272084230784757,
0.5365189772688653
],
[
0.3652480209448261,
0.3406216563148646,
0.31527753314466,
0.28944316779109547,
0.2634345597692156,
0.23767998506883906,
0.21274965052881062,
0.18939118115303988,
0.16856372239154724,
0.15144135794100308,
0.13931365535521079,
0.13329020289181204,
0.1338536338692579,
0.14059408296207873,
0.15241366394568095,
0.16798869068277864,
0.18610174056450116,
0.20574859522915362,
0.2261249762040407,
0.2465858420324509,
0.26661269440789637,
0.2857939109051891,
0.3038143231416912,
0.3204496301425281,
0.3355624566094323,
0.34909804081658113,
0.3610783437947919,
0.37159389478304583,
0.38079307076378327,
0.3888688649685986,
0.3960435935894307,
0.40255242099381583,
0.408626983606384,
0.41448064247111716,
0.4202968700154588,
0.42622191256370573,
0.43236221307011313,
0.4387862893185921,
0.44553005914038857,
0.45260417077782283,
0.460001815211159,
0.4677057321749154,
0.4756935562998693,
0.4839411453086842,
0.4924239734948719,
0.501116991161476,
0.509993519518647,
0.519023779775558,
0.528173574816394,
0.5374034920977249
],
[
0.36896667993894794,
0.3446500032816715,
0.31963846988558264,
0.2941647274026342,
0.2685517844774056,
0.24323679699454423,
0.21879956841699064,
0.19599404878628288,
0.17577288726463586,
0.15927410953324347,
0.14770580090046784,
0.1420638921052331,
0.14274955562959601,
0.1493658577700428,
0.16090129180445376,
0.1761214944352419,
0.1938633484767149,
0.21314522414492673,
0.2331689132652408,
0.2532899780791101,
0.2729901929661071,
0.2918593674462125,
0.30958476525483647,
0.32594481944926434,
0.34080446162912736,
0.3541102460925121,
0.3658841156567707,
0.37621512409297186,
0.3852487953659789,
0.3931741506755659,
0.4002088203031151,
0.4065830732621748,
0.41252397849019445,
0.418241146401488,
0.4239154750610786,
0.42969198232661976,
0.4356771878855749,
0.44194076628302303,
0.44852052574998563,
0.4554293510755239,
0.46266266147838364,
0.47020514694962384,
0.47803595274683214,
0.48613195164648243,
0.4944691672718835,
0.5030227206930016,
0.511765840307549,
0.5206685083884458,
0.5296962442561555,
0.5388093820439401
],
[
0.373563649602613,
0.3496479372129332,
0.32506859596167353,
0.30006280879192226,
0.2749587080550707,
0.25019829450252823,
0.22636356996645915,
0.2042026977333629,
0.1846445993921646,
0.168772182534035,
0.15770129299650654,
0.1523243858473559,
0.15299063100783278,
0.15934479961477094,
0.1704764535219317,
0.18524437445378297,
0.2025388597718122,
0.2213981584624042,
0.2410268830050211,
0.2607781555316264,
0.2801315418799666,
0.2986764247290278,
0.3161011596309596,
0.3321859276826126,
0.34679717006739286,
0.3598820091613394,
0.37146156940963393,
0.38162251670496766,
0.3905064790390109,
0.39829735322082005,
0.40520687719795084,
0.41145924467094386,
0.4172758962527235,
0.4228618387345361,
0.4283948190272292,
0.43401836080827566,
0.4398391009099334,
0.44592817460037204,
0.45232577785259004,
0.4590476397676419,
0.4660920457069159,
0.47344623876041336,
0.4810913996496745,
0.4890058439011753,
0.49716647664156166,
0.5055488428089835,
0.5141262763365632,
0.5228686898477645,
0.5317414813749232,
0.540704902342637
],
[
0.3789857781878076,
0.35555783900996263,
0.3315052127750213,
0.307068803372981,
0.2825797591285119,
0.25848079185223377,
0.23534904930787454,
0.2139162526902078,
0.19507395230957572,
0.17983714928077857,
0.16922525386104684,
0.1640373989936763,
0.16458906932381348,
0.17058030849548694,
0.18120796674477568,
0.19542822347240377,
0.21218898740299952,
0.23055131250811634,
0.2497236794418049,
0.2690563802740384,
0.28802563781571666,
0.3062190355829956,
0.3233246732465766,
0.3391232462468248,
0.3534815800208782,
0.3663463026862137,
0.3777366697197268,
0.38773588226103844,
0.39648055399191623,
0.4041483083205626,
0.41094384613284696,
0.4170841985688965,
0.4227842103805913,
0.42824349699056297,
0.43363609288223187,
0.43910371696249806,
0.44475306018669847,
0.4506568732236657,
0.45685806141690277,
0.46337562479205446,
0.4702111842256186,
0.47735499519740643,
0.4847906860244041,
0.4924983609685152,
0.5004560842047779,
0.5086400440027031,
0.5170238589190987,
0.5255775304094155,
0.5342664906033175,
0.5430510729409522
],
[
0.3851699712555723,
0.36231018402640847,
0.3388713295626208,
0.3150969826976688,
0.2913190359524639,
0.2679768722952181,
0.24563645988597874,
0.2250044079042008,
0.20692518549451713,
0.19233880671377934,
0.18216880800030527,
0.17712996674562295,
0.1775135419937967,
0.1830772448618198,
0.19312430240636017,
0.20671112760574503,
0.22284995528353313,
0.24063150279731846,
0.259272774351843,
0.2781234428867158,
0.29665683326157155,
0.3144581565280869,
0.33121419763192783,
0.34670493033689487,
0.3607963002928607,
0.37343320465088664,
0.38463182988607,
0.39447074297038054,
0.40308040061357375,
0.410631043572336,
0.4173192789133159,
0.4233540000275617,
0.42894259623718134,
0.43427858055140506,
0.43953173825110203,
0.4448416345920047,
0.45031485200798216,
0.4560257624932174,
0.46202012368061557,
0.46832044570270714,
0.47493197698068806,
0.48184829083371167,
0.48905575190953393,
0.49653650724489323,
0.5042699937043325,
0.5122332205476593,
0.5204002436092836,
0.528741294410887,
0.5372219816883524,
0.5458028739907947
],
[
0.39204469422475746,
0.3698253783439176,
0.34707797012495717,
0.3240474567902004,
0.30106413001047794,
0.27856027116348303,
0.2570853005643171,
0.23731416587400728,
0.22003814857126702,
0.2061196864553068,
0.19639006718085994,
0.19148738553501196,
0.19168239951666688,
0.19678592509320558,
0.20620123363639792,
0.21908501800927813,
0.2345205095047432,
0.2516367772600911,
0.26966645300484415,
0.28796299428906547,
0.305998873727309,
0.3233573662133306,
0.33972343535598226,
0.3548753453821093,
0.36867697141740846,
0.3810702365982307,
0.39206703629366224,
0.4017401344651294,
0.41021272957701194,
0.4176466548934678,
0.4242294841023501,
0.4301611285606796,
0.43564078347113305,
0.4408552357134532,
0.44596951993184997,
0.4511206726893612,
0.4564149187272206,
0.4619281213091147,
0.46770886541393936,
0.4737832306760335,
0.4801602116037719,
0.4868368511892168,
0.49380241303361194,
0.5010412442987311,
0.5085342983789314,
0.5162595349982961,
0.5241915670424565,
0.5323009737768193,
0.54055366406137,
0.5489105770921274
],
[
0.39953173492006905,
0.378015928657526,
0.35602689107409463,
0.33380961211636184,
0.3116904645231691,
0.29009125134090485,
0.2695405190132957,
0.2506769826653743,
0.23423557399012326,
0.22100174811784057,
0.2117199388395549,
0.20695825598196002,
0.20696767343927644,
0.21160411908747506,
0.22036109658995937,
0.23249239889515966,
0.24715700319430656,
0.26353086167662904,
0.28087040337228364,
0.2985387632459095,
0.316010987419612,
0.3328699097715454,
0.3487988874879472,
0.36357393837852237,
0.3770559424675106,
0.3891827639567208,
0.39996089381754,
0.4094562232073596,
0.41778370251120445,
0.4250958638096224,
0.4315704540730958,
0.4373977063240648,
0.4427680146001901,
0.4478609126606941,
0.45283623006209595,
0.4578280891266997,
0.46294204068721423,
0.4682551948278534,
0.47381879229202184,
0.47966238032770403,
0.4857986587511211,
0.4922281476350259,
0.49894305050423515,
0.5059299758592692,
0.5131714653673661,
0.5206465063808134,
0.5283303505996572,
0.5361940135922288,
0.5442038032213534,
0.5523211417534045
],
[
0.4075481069623975,
0.3867887739581147,
0.3656134654712524,
0.34426568456311135,
0.32306568503588373,
0.30242188834786293,
0.2828386607110323,
0.2649156114796835,
0.24933038994721088,
0.23679414147175257,
0.2279707345285267,
0.22336436551197833,
0.22320580416144825,
0.2273871453870348,
0.2354806644226936,
0.24683125920559404,
0.2606755703486764,
0.27624333864923,
0.2928227170200081,
0.30979304503885535,
0.3266363247367409,
0.3429373765802009,
0.3583789290978061,
0.3727347860670472,
0.3858623147918046,
0.3976945279598131,
0.4082316217306157,
0.41753173293786705,
0.4257007500723085,
0.4328811843587601,
0.43924033465193624,
0.4449582214062891,
0.45021597036621247,
0.4551854397349781,
0.46002085797126296,
0.4648530543057487,
0.4697865453107629,
0.47489935581358655,
0.4802450918536451,
0.4858565308974674,
0.4917498994698907,
0.4979290736856752,
0.5043891265801284,
0.5111188982507735,
0.5181025194494212,
0.5253200283541721,
0.532747355829625,
0.5403560088719922,
0.5481127639168766,
0.5559796109060544
],
[
0.416007983740235,
0.39604762878759386,
0.37572953136771053,
0.35529420970661313,
0.33505378912780587,
0.3154009129044582,
0.296813396040967,
0.2798502520202052,
0.26513251856532466,
0.2533009650592583,
0.24494552092370786,
0.24051214447516336,
0.24021089398965442,
0.24396159898473344,
0.25140363572670255,
0.26196507767355515,
0.2749592651672815,
0.28967422702379764,
0.30543652838224644,
0.3216480484174723,
0.3378025527775591,
0.35348994086634766,
0.36839396748656783,
0.38228684405051255,
0.39502238511536114,
0.4065283381132014,
0.416798019421121,
0.42588118702271804,
0.4338740809348497,
0.4409086799039111,
0.4471414049512069,
0.4527417017544936,
0.4578811059736353,
0.46272348831735266,
0.46741714899647996,
0.47208926904034537,
0.4768429500040389,
0.4817567404048357,
0.48688623289947475,
0.4922670918195613,
0.497918779766692,
0.5038482997913961,
0.5100534270607833,
0.5165251213937836,
0.5232490366923043,
0.530206231950036,
0.5373733146461637,
0.5447223021388682,
0.5522204763665343,
0.5598304482455062
],
[
0.42482457109763805,
0.40569522066007224,
0.38626606062717495,
0.366773181949435,
0.3475188138277277,
0.32887793256007836,
0.31130025603752615,
0.2953038030614461,
0.28145478047436884,
0.27032821069512053,
0.26244670586121316,
0.25820336850649783,
0.25778741205582223,
0.2611391698629064,
0.26795418258947945,
0.27773480261229416,
0.28986772637877056,
0.30370121118821924,
0.31860511376802997,
0.3340093441562048,
0.3494241384476926,
0.36444788956106583,
0.3787675289225705,
0.39215481763666626,
0.40446045380590523,
0.4156069171209885,
0.42558040832508853,
0.43442198062015985,
0.4422178989746305,
0.449089327866048,
0.4551815842594606,
0.46065335380225664,
0.4656664078189844,
0.4703764318082309,
0.4749255481219144,
0.47943697376779015,
0.48401201663679716,
0.4887293268229787,
0.49364604735087375,
0.498800310434716,
0.504214439429574,
0.5098982496629048,
0.5158519709585797,
0.5220685001770485,
0.5285348882474279,
0.5352331346568666,
0.5421404784479178,
0.5492294290000181,
0.556467776232315,
0.5638187719598421
],
[
0.43391184882382344,
0.4156353385843945,
0.3971155549489799,
0.3785828268331034,
0.3603279936821498,
0.3427069639691049,
0.32614052214221906,
0.31110613572340545,
0.29811770097967116,
0.28768943982582545,
0.28028305636051354,
0.27624390572478874,
0.2757407111100521,
0.2787284726885295,
0.28494918968831034,
0.2939704400053198,
0.30524727729970286,
0.31818785010235817,
0.33220820936598244,
0.34677054093505993,
0.3614057281364358,
0.3757240499479556,
0.3894180293367524,
0.40226050755280957,
0.41409991753673464,
0.42485386219031285,
0.43450154450945466,
0.44307529831898007,
0.45065135931290995,
0.4573400336823453,
0.4632755144640302,
0.46860571832683295,
0.4734826242442003,
0.4780536502290633,
0.48245457510668965,
0.4868043884428467,
0.4912022478052877,
0.495726477007975,
0.5004353040566919,
0.5053688632673855,
0.5105519054461556,
0.5159966807253272,
0.5217055638034844,
0.527673147817886,
0.5338877026085753,
0.54033204213066,
0.5469839515197522,
0.5538163770865209,
0.5607975844752804,
0.567891452342943
],
[
0.4431861323975821,
0.4257746399512937,
0.40817411708731643,
0.39060794287577744,
0.3733543629583793,
0.35674927177167015,
0.34118428226827835,
0.3270973905077639,
0.3149531691254322,
0.3052100545605188,
0.29827491528991623,
0.2944501732329235,
0.2938848489786856,
0.29654408908170793,
0.302208045923962,
0.3105008758057479,
0.3209400490515486,
0.3329914892411242,
0.346118499117848,
0.35981838384038245,
0.37364603727588397,
0.38722670647293406,
0.4002609526113881,
0.4125244533169657,
0.4238645412517374,
0.4341946699883219,
0.44348748755235573,
0.45176689146480825,
0.4590992990424749,
0.46558434620726574,
0.4713452823746408,
0.4765194162446739,
0.4812490477065374,
0.48567335895321145,
0.4899217073355561,
0.49410865405163595,
0.4983308880606134,
0.5026659948699247,
0.5071728177834037,
0.5118930064348042,
0.5168532723255687,
0.5220678816205547,
0.5275409992685868,
0.5332686289582086,
0.5392400384420877,
0.5454386902461652,
0.5518427931632739,
0.5584256405384841,
0.5651559078791636,
0.5719980534188445
],
[
0.4525674250515502,
0.4360241873598495,
0.4193431753638921,
0.4027398040122901,
0.3864788124545396,
0.3708755474762588,
0.3562927068259297,
0.3431303625742453,
0.33180701623783193,
0.32273023954173097,
0.3162577303643179,
0.31265346777351566,
0.31204787440134724,
0.3144128459859899,
0.31955975022281446,
0.3271614072863124,
0.33679140389015505,
0.3479700899545969,
0.3602075370040375,
0.37303765255732274,
0.3860417584020678,
0.3988626397409227,
0.41121117541115676,
0.422867698353926,
0.4336797999010507,
0.4435577668329637,
0.4524684066599141,
0.4604277266403408,
0.46749277796339916,
0.47375292852962686,
0.4793208502154289,
0.4843235630085895,
0.4888939337421854,
0.4931630501134334,
0.49725385875293093,
0.5012763608748435,
0.5053245094215844,
0.5094747726808896,
0.5137861558004637,
0.5183013378332352,
0.5230485121421223,
0.528043520161748,
0.5332919338544265,
0.5387908495177931,
0.5445302783327264,
0.5504941321999137,
0.5566608886356283,
0.563004066408607,
0.5694926537474975,
0.5760916099642237
],
[
0.46198054536425204,
0.44630070536411987,
0.43053086066303625,
0.41487763621158863,
0.3995916338052701,
0.38496748388568763,
0.37133962390582737,
0.35907207863452206,
0.34854064809798174,
0.3401067607924664,
0.3340841668951532,
0.3307025460460353,
0.3300750234261391,
0.33217774876476547,
0.3368475976707734,
0.34379901621896475,
0.35265546354834637,
0.36298762623902864,
0.3743506899475326,
0.3863154542371596,
0.3984911340462466,
0.41054000257653794,
0.42218522316014223,
0.4332135243878111,
0.4434741908440995,
0.4528754888258916,
0.4613793041685817,
0.46899451397729724,
0.47576946092466826,
0.48178383409587194,
0.48714025850597537,
0.4919559265941194,
0.49635463914951816,
0.5004596333879774,
0.5043875428768917,
0.5082437500628392,
0.5121192639242813,
0.5160891026200151,
0.5202120119185131,
0.5245312329179869,
0.5290759676888633,
0.5338631867372219,
0.5388994716028735,
0.5441826728375673,
0.5497032662597235,
0.555445387539002,
0.5613876006145521,
0.5675035003063089,
0.5737622624193137,
0.5801292405665265
],
[
0.4713560273739602,
0.4565275605840706,
0.44165304953378565,
0.42692969623446314,
0.41259359762283576,
0.3989188131920926,
0.38621248648029116,
0.37480468748652807,
0.36503189224279553,
0.3572138429655955,
0.35162511270387264,
0.3484648671622836,
0.3478303278469917,
0.34970009969899785,
0.35393191284960374,
0.3602757006152291,
0.3683988713549234,
0.37791800975636825,
0.3884309490193029,
0.39954470521937,
0.410896981561647,
0.4221708417662488,
0.4331033009838137,
0.44348903797776956,
0.45318043724449053,
0.4620849656827358,
0.4701606388838756,
0.4774101218464001,
0.48387386826009726,
0.4896226308979982,
0.4947496570871955,
0.4993628948492351,
0.5035775524143299,
0.5075093538303401,
0.51126879975679,
0.5149566683341229,
0.518660880964197,
0.5224547274774348,
0.5263963168998809,
0.5305290169605076,
0.5348825850181775,
0.5394746826079853,
0.5443125015090059,
0.5493942982760195,
0.554710718875912,
0.5602458775996465,
0.5659782206285833,
0.5718812462333055,
0.5779241686193132,
0.5840726043378361
],
[
0.48063079907889616,
0.4666354782088498,
0.4526340966715551,
0.4388139894071617,
0.4253966192863983,
0.41263588259770867,
0.4008128286927767,
0.3902257891117429,
0.38117522198444415,
0.3739433383511259,
0.3687698590325315,
0.36582686474650317,
0.36519708289094327,
0.3668602981875173,
0.37069131758844504,
0.3764702744853155,
0.3839030701733682,
0.39264768593755295,
0.4023416346285914,
0.4126267485197934,
0.42316907630517925,
0.43367316091218316,
0.4438910029695432,
0.4536265305664267,
0.4627365258658533,
0.47112887409729787,
0.47875883600135394,
0.485623883224633,
0.49175751556285935,
0.4972224083340091,
0.5021032098170253,
0.5064993063620319,
0.5105178770248173,
0.5142675518833583,
0.5178529546380459,
0.5213703444511898,
0.5249044774029645,
0.5285266964267424,
0.5322941479362152,
0.5362499323639676,
0.5404239392031148,
0.5448341018041677,
0.549487831051239,
0.5543834404200562,
0.5595114436554681,
0.5648556755834702,
0.5703942441623283,
0.5761003601591883,
0.5819431074081817,
0.5878882136579882
],
[
0.4897486516352887,
0.4765630144935895,
0.4634072861744915,
0.4504586682612876,
0.4379240692902562,
0.4260378418350217,
0.41505630546320293,
0.4052483197318265,
0.3968815036430029,
0.3902043729143878,
0.3854256933236381,
0.3826935445360085,
0.3820775314624616,
0.38355772892116696,
0.3870229569155443,
0.3922790306767191,
0.39906541813241864,
0.4070771251986344,
0.41598812207151215,
0.42547315441169603,
0.43522588723717726,
0.4449724895030313,
0.45448065457565745,
0.4635645689588988,
0.4720865453548691,
0.4799560392064411,
0.4871266755650483,
0.4935917985996428,
0.49937895935573123,
0.5045436934694039,
0.5091629082183503,
0.5133281870902742,
0.5171393153652921,
0.520698317287362,
0.5241042627313472,
0.5274490433129783,
0.5308142365658375,
0.5342690812278741,
0.5378694908641276,
0.5416579522382707,
0.5456641014363576,
0.549905751209515,
0.5543901566197014,
0.5591153457425482,
0.5640713967731297,
0.5692416002334464,
0.5746034946327324,
0.5801297989504561,
0.5857892829836843,
0.591547618082688
],
[
0.4986605160213318,
0.48625680905581453,
0.47391503439351007,
0.46180215587571627,
0.4501107848385661,
0.4390565136403197,
0.4288724021370327,
0.41980009698572274,
0.4120773919345504,
0.4059226207277013,
0.401517088720648,
0.39898763222079187,
0.3983920330781781,
0.3997100467782852,
0.4028420183102407,
0.40761560085577364,
0.41379944211811936,
0.42112144905424626,
0.42928875630487345,
0.4380068065547393,
0.4469957149686298,
0.456002972731764,
0.4648122825917748,
0.4732488023234864,
0.48118131079337545,
0.48852187442426986,
0.4952235566606674,
0.5012766404106658,
0.5067037613723895,
0.5115542965116383,
0.5158983201127412,
0.5198204240445337,
0.5234136887770344,
0.5267740758472849,
0.5299954815574096,
0.5331656408157442,
0.5363630001753467,
0.5396545970517932,
0.5430948987590066,
0.5467254826944679,
0.5505753882047897,
0.5546619474091642,
0.5589919069209972,
0.563562680055658,
0.5683636111942767,
0.5733771806552698,
0.5785801208468059,
0.5839444463765239,
0.5894384192588662,
0.5950274756709156
],
[
0.5073245667610109,
0.49567164309465805,
0.484108878510344,
0.4727930374500691,
0.4619028367066139,
0.4516360123585846,
0.4422038908521359,
0.4338231139307588,
0.42670447579909926,
0.4210393257067133,
0.4169846299303064,
0.4146484361827325,
0.41407791100008917,
0.41525208248000367,
0.4180807942953445,
0.4224102744504427,
0.4280344808089005,
0.434710411072677,
0.4421751298627816,
0.45016239794651963,
0.4584173120278297,
0.4667080272410544,
0.47483423422308835,
0.48263249339554254,
0.48997877577763754,
0.49678865961843444,
0.5030156392037861,
0.5086479644783692,
0.5137043811993589,
0.5182290996257263,
0.5222862914773094,
0.5259543979329753,
0.5293205188664569,
0.5324751368063048,
0.5355074007892376,
0.5385011510948716,
0.5415318060409773,
0.5446641614669305,
0.5479510806799881,
0.5514329873904849,
0.5551380253870544,
0.5590827220680075,
0.5632729897113523,
0.5677053154273708,
0.5723680217544835,
0.5772425170293406,
0.5823044905602283,
0.5875250366392604,
0.5928717104836003,
0.5983095278460805
],
[
0.5157061738008929,
0.5047703304750428,
0.4939492846650634,
0.48338976164130776,
0.4732571010715347,
0.4637321685479714,
0.45500609930869856,
0.447272655130852,
0.4407182559991368,
0.4355101615936517,
0.4317837783685512,
0.42963054291496977,
0.4290881136285425,
0.4301345266271834,
0.4326874678967345,
0.43660897191513376,
0.4417149154675803,
0.4477879177294013,
0.45459188237395354,
0.4618864613943703,
0.469440075856851,
0.47704062356937954,
0.4845034831344136,
0.4916767958692116,
0.49844424430497186,
0.5047256649253757,
0.5104758689241071,
0.5156820344116664,
0.5203600048336614,
0.5245497987772173,
0.5283106135235943,
0.5317155890474934,
0.5348465864850381,
0.5377892192152999,
0.5406283497460691,
0.5434442278486256,
0.5463093945092548,
0.5492864156197698,
0.5524264453196228,
0.5557685594733643,
0.5593397524738241,
0.5631554607663212,
0.5672204662091602,
0.5715300400696879,
0.5760712096686472,
0.5808240584011529,
0.5857629999281316,
0.5908579937133175,
0.596075688619058,
0.6013804928812003
],
[
0.5237777240743092,
0.5135234682795696,
0.5034053079397443,
0.4935601900455897,
0.4841406807457247,
0.47531180960585034,
0.46724604681062737,
0.46011629392080927,
0.45408701775428745,
0.449303998376804,
0.44588355109803296,
0.44390242790861556,
0.4433897840208047,
0.4443225005457873,
0.44662474635886507,
0.4501720131586053,
0.4547991378980297,
0.4603112364211343,
0.46649615586432985,
0.4731370477701901,
0.48002390356358177,
0.48696326086643377,
0.49378566801159907,
0.5003508081011058,
0.5065504017193414,
0.512309132481876,
0.517583893846941,
0.5223616654357964,
0.5266563151335732,
0.5305046049616298,
0.5339616622222514,
0.5370961647372609,
0.5399854779795087,
0.5427109682095886,
0.5453536947811598,
0.5479906532971487,
0.5506916984770858,
0.5535172235523821,
0.5565166164819875,
0.5597274586199555,
0.5631753851564204,
0.5668744938313076,
0.570828171767157,
0.5750302095809322,
0.5794660844357253,
0.5841143149063914,
0.5889478154280753,
0.5939352021610057,
0.5990420220985847,
0.6042318915230389
],
[
0.531518333914524,
0.5219090722402174,
0.5124541341705825,
0.5032810293785394,
0.4945302145924002,
0.48635193870359883,
0.4789014924703889,
0.47233281759547097,
0.4667906467653979,
0.46240162546570485,
0.45926516670711665,
0.4574450393515936,
0.4569628012618792,
0.4577940871534662,
0.45986842879266066,
0.463072780046467,
0.4672583646604281,
0.4722500033144901,
0.47785681401773517,
0.4838831486685868,
0.4901387891213182,
0.4964476972939534,
0.5026549108564863,
0.5086314366601726,
0.5142771876161322,
0.51952213127938,
0.5243258822764799,
0.5286759943762024,
0.5325852090290264,
0.5360879087892378,
0.5392360139993491,
0.5420945523952175,
0.5447371231473469,
0.5472414663651267,
0.549685332643773,
0.5521428218876157,
0.5546813251813205,
0.5573591589876576,
0.5602239307957136,
0.5633116245617977,
0.566646348507013,
0.5702406520509761,
0.5740962961611676,
0.5782053531713236,
0.5825515168464672,
0.5871115180332177,
0.5918565615842725,
0.5967537223252567,
0.601767258318387,
0.6068598164223595
],
[
0.5389134725123257,
0.529912120693467,
0.5210805307380917,
0.5125371767862679,
0.5044111082911298,
0.4968388471145419,
0.4899599316714166,
0.4839111169125014,
0.4788194250268657,
0.4747944682269931,
0.4719206955180776,
0.47025039378501204,
0.46979833625735695,
0.4705388703933753,
0.4724059651371718,
0.4752963409208111,
0.4790753752170924,
0.4835851147157818,
0.4886535095342913,
0.49410394236849153,
0.49976423231377565,
0.5054744934590996,
0.5110934600012822,
0.5165031033519965,
0.5216115347578679,
0.5263543016396799,
0.5306942531383193,
0.534620182636859,
0.5381444655946447,
0.541299910764251,
0.544136038901693,
0.5467149987543208,
0.5491073256109461,
0.5513877410972674,
0.5536311812998665,
0.5559092209697731,
0.5582870328930721,
0.5608209837223299,
0.563556922861124,
0.5665291733419974,
0.5697601879845648,
0.5732607953869175,
0.5770309323604565,
0.5810607443331022,
0.5853319329909343,
0.5898192390922341,
0.5944919647793058,
0.5993154601518331,
0.6042525199326988,
0.609264655138569
],
[
0.545954515248628,
0.5375240285907247,
0.5292762304462113,
0.5213210046027709,
0.513776714341979,
0.5067671885841418,
0.5004175693772752,
0.4948490678305063,
0.4901728334445424,
0.4864833241317982,
0.4838517400272157,
0.48232020998651454,
0.4818974498380133,
0.4825565147532826,
0.4842350440501243,
0.48683808281971397,
0.4902432281003069,
0.49430756263278985,
0.4988756632453861,
0.5037879254672788,
0.5088885166832157,
0.5140324184038162,
0.5190911984166774,
0.5239573273388589,
0.5285469974881282,
0.5328015059070816,
0.5366873297373728,
0.5401950589588882,
0.543337368592101,
0.546146218578455,
0.5486694709786847,
0.5509671142404189,
0.5531072838231897,
0.5551622661702565,
0.5572046664650564,
0.55930390715851,
0.5615232019222024,
0.5639171178928306,
0.5665297990697385,
0.5693938785720086,
0.5725300615671869,
0.5759473189763296,
0.5796435989797393,
0.5836069419578231,
0.5878168759457754,
0.5922459731155341,
0.596861460775259,
0.6016267995214779,
0.6065031629535571,
0.6114507747043041
],
[
0.5526382441337232,
0.544742070831844,
0.5370392695544283,
0.5296316069642726,
0.5226274844251056,
0.5161390388229524,
0.5102782926389887,
0.5051524266286329,
0.5008583810374632,
0.4974771370504051,
0.495068163196168,
0.4936645983199604,
0.49326975097332737,
0.4938554047657536,
0.4953622337377422,
0.4977023813931268,
0.5007639919647342,
0.5044172575825426,
0.5085214020638675,
0.5129319782496397,
0.5175079024326051,
0.5221177595047268,
0.526645052524994,
0.5309922108221036,
0.5350832915139286,
0.5388654012625824,
0.54230892774023,
0.545406708595831,
0.5481722868157752,
0.5506374122183603,
0.5528489547997779,
0.5548653999749559,
0.556753099443993,
0.5585824536111708,
0.560424200052932,
0.562345974803946,
0.5644092968310056,
0.5666670997032572,
0.5691618985350465,
0.5719246370827464,
0.5749742134149186,
0.578317637843552,
0.5819507388153253,
0.5858593052186315,
0.5900205392824914,
0.5944046930396498,
0.5989767713908009,
0.6036982030012307,
0.608528402894929,
0.6134261741885035
],
[
0.5589663108843227,
0.5515687719190585,
0.5443732981206004,
0.5374740271276266,
0.5309701130522179,
0.5249629585067219,
0.5195526595772996,
0.5148337542275784,
0.5108904749968133,
0.5077918225491915,
0.5055868762984228,
0.5043008165148356,
0.5039321260169499,
0.504451356537664,
0.5058016904915308,
0.5079013276348074,
0.5106475160549493,
0.513921868573118,
0.5175964899008181,
0.5215404000677469,
0.5256257703324059,
0.5297335699576552,
0.5337583312327663,
0.5376118531426216,
0.5412257647775334,
0.5445529494360831,
0.5475678876926227,
0.5502660153695864,
0.5526622155109334,
0.5547885775833081,
0.5566915667996893,
0.5584287546184686,
0.5600652692243981,
0.5616701315081729,
0.563312645717011,
0.5650590117614288,
0.5669693153394411,
0.5690950306210997,
0.5714771378510032,
0.574144916536576,
0.5771154275702609,
0.5803936498134812,
0.5839731939449855,
0.5878374836502824,
0.5919612747190233,
0.5963123772976577,
0.6008534541587662,
0.605543785423392,
0.6103409138311584,
0.6152021104640178
],
[
0.5649446764672374,
0.5580112767549755,
0.5512868781399982,
0.5448584811850419,
0.5388166878754417,
0.5332530742914033,
0.5282569180628017,
0.5239113814105736,
0.5202893417467611,
0.5174491529128448,
0.5154306938478697,
0.514252098524657,
0.5139075452797389,
0.514366408125727,
0.515573943506702,
0.5174535231219253,
0.5199102559466603,
0.5228357006167211,
0.5261132758438088,
0.529623941642046,
0.5332517444178978,
0.536888880756803,
0.5404400197623714,
0.5438257145548107,
0.5469848168364204,
0.5498758767943104,
0.5524775617978654,
0.5547881629493271,
0.5568242822780497,
0.558618809577855,
0.5602183104297709,
0.5616799584839667,
0.563068156679035,
0.5644510031930531,
0.5658967665414,
0.5674705373769482,
0.5692312189713417,
0.5712290014625897,
0.5735034356722487,
0.5760821817237332,
0.5789804592627668,
0.5822011751050423,
0.5857356568089986,
0.5895648827736404,
0.5936610751486544,
0.5979895128737328,
0.6025104277488971,
0.6071808637058792,
0.6119564043009623,
0.6167927015120603
],
[
0.5705830393042434,
0.564080715396707,
0.5577927825778173,
0.5517995911405678,
0.5461838590309481,
0.541028189207567,
0.5364120641297601,
0.5324084234995154,
0.5290800060967995,
0.5264757076489284,
0.5246272602263133,
0.523546560191442,
0.5232239501606724,
0.5236276921463032,
0.5247047604777673,
0.526382950465585,
0.5285741644259287,
0.5311786232855547,
0.5340896765874292,
0.5371988539550581,
0.5404008146079597,
0.5435978983931193,
0.5467040483523985,
0.5496479476252832,
0.5523752819706824,
0.5548500970112088,
0.5570552641382572,
0.5589921016864497,
0.5606792212371271,
0.5621506862391545,
0.5634535848269682,
0.5646451331414647,
0.5657894406216522,
0.5669540840600512,
0.5682066506123017,
0.5696114181810181,
0.5712263409521536,
0.573100495124696,
0.5752721133165192,
0.577767296347916,
0.580599441348214,
0.5837693709419344,
0.5872660964574711,
0.5910681053019599,
0.5951450339078679,
0.59945957545154,
0.6039694754815129,
0.6086294858437103,
0.6133931734904814,
0.6182145110954359
],
[
0.5758942628091822,
0.5697915727625986,
0.5639073063030997,
0.558315637999971,
0.553092037434545,
0.5483109312866251,
0.544042947686751,
0.5403518506747315,
0.5372913333444809,
0.5349018931332694,
0.5332080506329642,
0.5322161835019936,
0.531913222080942,
0.5322663918144623,
0.5332240958408032,
0.5347179223934616,
0.5366656533046769,
0.5389750590167195,
0.5415482047939163,
0.5442859679529389,
0.5470924751726387,
0.5498792048895195,
0.5525685521148523,
0.555096711350975,
0.5574157892945552,
0.5594951074117399,
0.5613216931053825,
0.562899987484564,
0.5642508198039531,
0.5654097163574605,
0.5664246278347737,
0.5673531760071768,
0.5682595389976053,
0.5692111136676045,
0.5702751115895807,
0.5715152581276846,
0.5729887681394936,
0.5747437628955209,
0.5768172686515747,
0.5792338980436896,
0.5820052642210048,
0.5851301201947363,
0.5885951596965947,
0.592376368389146,
0.5964407814495177,
0.6007484884824897,
0.6052547293518846,
0.6099119420055004,
0.6146716510552137,
0.6194861184941202
],
[
0.5808938115362897,
0.5751610726772383,
0.5696495981313126,
0.5644278435879613,
0.5595646299439364,
0.5551269472844821,
0.5511774311878505,
0.5477716183630144,
0.544955137577213,
0.5427610335908377,
0.5412074476378472,
0.5402958799636878,
0.5400102332202447,
0.5403167802510881,
0.5411651218942998,
0.5424901107828852,
0.5442146292729783,
0.5462530365659063,
0.5485150512739215,
0.5509098152434427,
0.5533498910110884,
0.5557549731707773,
0.5580551352842055,
0.5601934807368089,
0.5621281115373781,
0.5638333691877206,
0.5653003345636257,
0.5665365995025322,
0.56756534321482,
0.5684237642078722,
0.569160935665179,
0.5698351710891708,
0.5705110082870574,
0.5712559427160424,
0.5721370634009822,
0.5732177622308776,
0.5745546957552585,
0.5761951731986199,
0.5781751223584609,
0.5805177460783615,
0.583232929109141,
0.5863173944853378,
0.5897555481200434,
0.5935208984654741,
0.5975779015040963,
0.6018840637507527,
0.606392137577352,
0.6110522611127366,
0.6158139242492718,
0.6206276771855613
],
[
0.5855992039614618,
0.580208584225249,
0.5750410216434524,
0.5701596881945397,
0.565627317681275,
0.5615041468037478,
0.5578456054749084,
0.5546998608100195,
0.5521053582671359,
0.5500885345965988,
0.5486618937349323,
0.5478226328346548,
0.5475519783026983,
0.5478153420971924,
0.548563342053292,
0.5497336556615295,
0.5512536051455375,
0.5530433127835689,
0.5550192262303864,
0.5570977970693394,
0.5591991007472921,
0.5612502079965318,
0.563188150706374,
0.5649623627087772,
0.5665365128931903,
0.5678896810344142,
0.5690168542130519,
0.5699287439713407,
0.5706509428962866,
0.5712224563817259,
0.5716936632057069,
0.5721237790593491,
0.5725779209755288,
0.5731238968865643,
0.5738288706901,
0.574756075023547,
0.5759617562764618,
0.5774925341835353,
0.579383338144796,
0.5816560435592871,
0.5843188768827666,
0.5873665942327477,
0.5907813738659926,
0.5945343068532348,
0.5985873302447364,
0.6028954272301653,
0.6074089196881427,
0.6120756970896398,
0.6168432566563009,
0.6216604668119455
],
[
0.5900294887862451,
0.5849550571431927,
0.5801045511338042,
0.5755362698092139,
0.5713073824933759,
0.5674720008783859,
0.5640790658836342,
0.5611701499767088,
0.5587773064211496,
0.5569211195828,
0.5556091197095016,
0.5548347174552503,
0.5545767862469817,
0.5547999760316236,
0.5554557849419358,
0.5564843534223727,
0.557816886767505,
0.5593785644220678,
0.5610917629938633,
0.5628794067718748,
0.5646682634928022,
0.5663920206130049,
0.5679940035973075,
0.5694294278090329,
0.5706671053872393,
0.5716905553281014,
0.5724984877182485,
0.5731046520147517,
0.5735370558577224,
0.5738365772136211,
0.5740550108602164,
0.5742526120323261,
0.5744952260733509,
0.5748511222330569,
0.5753876795222791,
0.5761680982491183,
0.5772483268803386,
0.5786743946111522,
0.5804803214616486,
0.5826867388405044,
0.5853002972283539,
0.5883138706507997,
0.5917074992525834,
0.595449951427373,
0.5995007437927813,
0.6038124355948312,
0.6083330144996743,
0.6130082100497736,
0.6177836036730779,
0.6226064434325557
],
[
0.594204750630116,
0.5894224918829086,
0.5848642079040249,
0.5805837095706187,
0.5766330854437695,
0.5730608980899259,
0.5699102508290462,
0.5672168211536912,
0.5650069809326966,
0.5632961393437541,
0.5620874482444257,
0.5613709986255431,
0.5611236102531434,
0.5613092765591808,
0.561880277741846,
0.5627789230651957,
0.5639398351804217,
0.5652926507364201,
0.5667649864512867,
0.5682855095126002,
0.5697869545688837,
0.5712089437487367,
0.5725004872367335,
0.5736220660435432,
0.5745472225113585,
0.5752636057060798,
0.5757734373754347,
0.5760933800360926,
0.5762538034081789,
0.5762974608485123,
0.5762776057509905,
0.5762556007214709,
0.5762981002622017,
0.5764739196732745,
0.5768507359127121,
0.5774917954022483,
0.5784528231328337,
0.5797793307989856,
0.5815045045542352,
0.5836478139996054,
0.5862144260638337,
0.5891954375315742,
0.5925688680316143,
0.5963012919110614,
0.6003499414487521,
0.6046650905119734,
0.6091925277945953,
0.6138759489125339,
0.6186591308792272,
0.6234877938205012
],
[
0.5981456500382606,
0.5936334489970986,
0.589344541125316,
0.5853286070855397,
0.5816331003158036,
0.5783015604589556,
0.5753718443705573,
0.5728743660900101,
0.5708304552994579,
0.5692509541518403,
0.5681351719059468,
0.5674703037693762,
0.567231394754435,
0.5673818933179836,
0.5678747970686625,
0.5686543490380616,
0.5696582032491321,
0.5708199470323146,
0.5720718475414936,
0.5733476820074582,
0.5745855143555542,
0.5757302924467882,
0.5767361572342143,
0.577568374434263,
0.5782048183583586,
0.5786369547482562,
0.5788702843257751,
0.5789242218844877,
0.5788313985660202,
0.5786363894643278,
0.578393886963827,
0.5781663638512364,
0.5780212997748726,
0.5780280789304493,
0.5782547027723244,
0.5787644939373194,
0.579612989918659,
0.5808452307419,
0.5824936290010301,
0.5845765714890344,
0.5870978421526664,
0.5900468835294769,
0.5933998386395277,
0.5971212487654285,
0.6011662341168762,
0.6054829596386683,
0.6100151880515225,
0.614704743181271,
0.6194937424155883,
0.6243265003276092
],
[
0.601873001856472,
0.5976106015979054,
0.5935701565932664,
0.5897975484072993,
0.5863360043041015,
0.5832245206391221,
0.5804962436401457,
0.5781768939198304,
0.5762833344574863,
0.5748223877755886,
0.5737900044080763,
0.5731708704554699,
0.5729385175496101,
0.5730559660748369,
0.5734768955630575,
0.5741472991087401,
0.5750075456956711,
0.5759947489066789,
0.5770453246119087,
0.5780976142943002,
0.5790944535981667,
0.5799855753599504,
0.5807297501973996,
0.5812965831669682,
0.5816679000486157,
0.5818386703077109,
0.5818174254992927,
0.5816261425441315,
0.5812995724249925,
0.580884008425014,
0.5804355061309378,
0.5800175916526809,
0.5796985253697905,
0.5795482248038899,
0.5796349886226004,
0.5800221988943346,
0.5807652036583758,
0.5819085896223982,
0.5834840399791799,
0.5855089330688129,
0.5879857767373453,
0.5909024983318912,
0.5942335322641589,
0.5979415778128068,
0.6019798492972819,
0.606294614872699,
0.6108278199158222,
0.6155196127182458,
0.6203106273635194,
0.625143923502267
],
[
0.6054073951909194,
0.6013763337938794,
0.5975652958672516,
0.5940166686685903,
0.5907698273376658,
0.5878596612853166,
0.5853150914497037,
0.5831576596930068,
0.5814002810901284,
0.5800462523765736,
0.579088603810994,
0.5785098666654187,
0.5782823053035187,
0.5783686334848828,
0.5787232022962817,
0.5792936155769101,
0.5800227012907819,
0.5808507466174779,
0.581717891989212,
0.5825665749851862,
0.58334391783504,
0.5840039604236384,
0.5845096519419212,
0.5848345266268102,
0.5849640007997888,
0.5848962388071562,
0.5846425444969473,
0.5842272433956094,
0.583687030344217,
0.5830697700467964,
0.582432755855244,
0.5818404567673787,
0.5813618145302709,
0.5810671906580901,
0.5810251036476919,
0.5812989340706048,
0.5819438023461212,
0.5830038334646589,
0.584510009026029,
0.5864787675926033,
0.5889114523566451,
0.5917946282790283,
0.5951012105196981,
0.5987922744803535,
0.6028193655289786,
0.6071270996772568,
0.6116558461459336,
0.6163443051736999,
0.6211318327436276,
0.6259604100984664
],
[
0.6087688573610192,
0.6049523871977611,
0.6013534674908391,
0.5980112706069477,
0.5949616607779437,
0.5922358168378812,
0.5898588738406926,
0.5878486598396452,
0.5862146103671446,
0.5849569429255101,
0.5840661660333621,
0.5835229819782815,
0.5832986204315705,
0.583355613554393,
0.5836489949657335,
0.5841278779955206,
0.5847373457581339,
0.5854205687383371,
0.5861210557290515,
0.5867849409568269,
0.5873632130178573,
0.5878137981701013,
0.5881034197191681,
0.5882091649910325,
0.5881197004602304,
0.5878360834256656,
0.5873721254001386,
0.5867542690803758,
0.5860209490287651,
0.585221418084807,
0.5844140391297803,
0.5836640667546531,
0.5830409760950523,
0.5826154352837175,
0.582456060076684,
0.5826261284181596,
0.5831804615802006,
0.5841626893676192,
0.5856031037434598,
0.5875172658457853,
0.5899054685455913,
0.5927530784029417,
0.5960316987758931,
0.5997010226338754,
0.603711190071976,
0.6080054380282329,
0.6125228293301294,
0.6172008711339919,
0.6219778720235761,
0.6267949342678486
],
[
0.6119765634565473,
0.6083595568014138,
0.6049571312126996,
0.6018054994807697,
0.5989373255462782,
0.5963804373374016,
0.5941565817782565,
0.5922802934037839,
0.5907579516365262,
0.5895870994022013,
0.5887560867351007,
0.5882440875663109,
0.588021517150954,
0.5880508535451041,
0.588287841670568,
0.5886830353744876,
0.589183613711886,
0.5897353939510336,
0.5902849561172286,
0.590781791940056,
0.5911803938094556,
0.5914422052853162,
0.5915373622312254,
0.5914461613331217,
0.5911601996405565,
0.590683134476851,
0.5900310179642471,
0.5892321655777586,
0.5883265252696527,
0.5873645248798456,
0.586405392870119,
0.5855149724894352,
0.5847630827397179,
0.584220519606055,
0.583955834304534,
0.5840320658361404,
0.5845036352983372,
0.5854136213159998,
0.5867916234520018,
0.5886523811645207,
0.5909952525937379,
0.5938045782594318,
0.5970508715050333,
0.6006927031959718,
0.6046790937469563,
0.6089521975729033,
0.6134500646268883,
0.618109286941058,
0.6228673778531352,
0.6276647795086864
],
[
0.6150485923198673,
0.6116174367267849,
0.6083974353587228,
0.6054220741383999,
0.6027210990452536,
0.600319313248169,
0.5982354356123644,
0.5964810873580327,
0.5950599751213363,
0.5939673346227277,
0.5931896892510854,
0.5927049625618213,
0.592482964183759,
0.5924862467890392,
0.5926713098018811,
0.5929901055776045,
0.5933917876535988,
0.5938246294754672,
0.5942380360598446,
0.594584569938298,
0.594821915412838,
0.5949147102863597,
0.5948361804018304,
0.5945695183367679,
0.5941089526894467,
0.5934604583798784,
0.5926420617585619,
0.5916836982267243,
0.5906265862584644,
0.5895220922770019,
0.5884300778742629,
0.5874167459562728,
0.5865520359647436,
0.5859066589665348,
0.5855489074202347,
0.58554141579351,
0.5859380791975504,
0.5867813498347547,
0.5881001190634119,
0.589908353819394,
0.5922045927838886,
0.5949723281659579,
0.5981812152453994,
0.6017889769780881,
0.6057438160927432,
0.6099871188437392,
0.6144562340569262,
0.6190871344365908,
0.6238168070773656,
0.628585268314141
],
[
0.6180017289914225,
0.614744215582308,
0.6116940067436266,
0.6088820732699628,
0.6063354995451595,
0.6040763596211806,
0.6021206703301019,
0.6004774837607113,
0.5991481811690754,
0.5981260250744564,
0.5973960158321056,
0.5969350839665689,
0.5967126312394604,
0.596691413548427,
0.5968287392583309,
0.5970779392922809,
0.5973900516927566,
0.597715654219517,
0.5980067740039723,
0.5982188028119015,
0.5983123490839118,
0.5982549623842336,
0.5980226709514054,
0.5976012776971283,
0.5969873636482201,
0.5961889504309005,
0.5952257755441955,
0.5941291370785355,
0.5929412699684645,
0.5917142259229048,
0.5905082459327576,
0.5893896392625779,
0.5884282164715248,
0.5876943648394519,
0.5872558988656531,
0.5871748602032664,
0.5875044727525829,
0.5882864716552183,
0.5895490133353929,
0.5913053350588683,
0.5935532694861969,
0.5962756404756355,
0.5994414828814335,
0.6030079543594101,
0.6069227523200313,
0.6111268208130902,
0.6155571314454092,
0.6201493455840701,
0.62484020490524,
0.629569545409915
],
[
0.6208513128884142,
0.6177565203889015,
0.6148647917600788,
0.6122047751471839,
0.6098011260165809,
0.6076734572769324,
0.6058353790143961,
0.6042936859495076,
0.6030477490725508,
0.6020891616469993,
0.601401678989959,
0.6009614768452022,
0.6007377359995821,
0.6006935426683891,
0.600787076817158,
0.6009730455600469,
0.6012043072313936,
0.6014336242514899,
0.6016154794707297,
0.601707890704288,
0.6016741607014714,
0.6014845036885553,
0.6011174937792899,
0.6005612841019649,
0.5998145479912511,
0.5988870951090108,
0.5978001165564615,
0.5965860151812753,
0.5952877821382437,
0.5939578904106152,
0.5926566924822055,
0.5914503341668111,
0.5904082300828045,
0.5896001869321534,
0.5890933048640441,
0.5889488287424135,
0.5892191524145796,
0.5899451921683461,
0.5911543342678566,
0.5928591233431122,
0.5950567962066914,
0.5977296873749559,
0.6008464499695535,
0.604363961674323,
0.6082297309885245,
0.6123845907535778,
0.616765465024562,
0.6213080180610784,
0.6259490334673351,
0.6306284190301685
],
[
0.6236111302448859,
0.6206693073005721,
0.6179259465573973,
0.6154075484528578,
0.6131365507161479,
0.6111303480483947,
0.6094004113205779,
0.6079515603972735,
0.6067814419463652,
0.6058802566431105,
0.6052307692671561,
0.6048086210921796,
0.6045829478945418,
0.6045172903492108,
0.6045707680702816,
0.6046994754201874,
0.6048580473823538,
0.6050013376682798,
0.6050861486701685,
0.6050729532670048,
0.6049275509217639,
0.6046226039192625,
0.6041390030051709,
0.6034670143613798,
0.6026071614504553,
0.601570795943777,
0.6003803124378924,
0.5990689632466453,
0.5976802339950152,
0.596266750076411,
0.5948887002505617,
0.5936117881845008,
0.5925047558445371,
0.5916365628243279,
0.5910733492183764,
0.590875350568079,
0.591093964177197,
0.5917691789600504,
0.5929275699053711,
0.5945810208629608,
0.5967262783829558,
0.5993453625790807,
0.6024067799694481,
0.6058674105848528,
0.609674888058268,
0.6137702634134369,
0.6180907420718181,
0.6225723055897675,
0.6271520679646203,
0.6317702629192301
],
[
0.6262933486421813,
0.6234957966479461,
0.6208917735369222,
0.6185057911364219,
0.6163582611930262,
0.6144645805146923,
0.6128343232033273,
0.6114705903072755,
0.6103695636234815,
0.6095203029598902,
0.608904815280903,
0.6084984106097576,
0.608270344524723,
0.6081847319331964,
0.6082017028984174,
0.608278759762041,
0.6083722863945599,
0.6084391553744631,
0.6084383770235103,
0.6083327348864164,
0.6080903545565218,
0.6076861557460094,
0.60710314030091,
0.6063334708384878,
0.6053792955907352,
0.6042532751048992,
0.602978766444624,
0.6015896217460093,
0.6001295621479316,
0.5986510972211135,
0.5972139759691394,
0.5958831796106953,
0.5947264988734529,
0.5938117778976764,
0.5932039493770052,
0.5929620254296907,
0.5931362385651417,
0.5937655394885926,
0.5948756475592618,
0.5964778132604676,
0.5985683926993532,
0.6011292595119903,
0.6041290007501178,
0.6075247725659881,
0.6112646391884875,
0.6152901911221922,
0.6195392369466356,
0.6239483841295322,
0.6284553613123919,
0.6330009797663069
]
]
},
{
"hoverinfo": "text",
"legendgroup": "In-sample",
"marker": {
"color": "black",
"opacity": 0.5,
"symbol": 1
},
"mode": "markers",
"name": "In-sample",
"text": [
"Arm 0_0
hartmann6: -0.713682 (SEM: 0)
x1: 0.158318
x2: 0.994301
x3: 0.00661276
x4: 0.44639
x5: 0.0536959
x6: 0.150323",
"Arm 10_0
hartmann6: -0.0311327 (SEM: 0)
x1: 0.708504
x2: 0.530771
x3: 0.817851
x4: 0.780792
x5: 0.776208
x6: 0.381357",
"Arm 11_0
hartmann6: -1.50744 (SEM: 0)
x1: 0.0467629
x2: 0.0135705
x3: 0.120863
x4: 0.238268
x5: 0.175787
x6: 0.79232",
"Arm 12_0
hartmann6: -1.76967 (SEM: 0)
x1: 0.100126
x2: 0.0122214
x3: 0.0541791
x4: 0.289869
x5: 0.181718
x6: 0.692201",
"Arm 13_0
hartmann6: -1.37458 (SEM: 0)
x1: 0.0700575
x2: 0.0504284
x3: 0
x4: 0.304278
x5: 0.14712
x6: 0.600503",
"Arm 14_0
hartmann6: -2.09924 (SEM: 0)
x1: 0.178978
x2: 0
x3: 0.0585748
x4: 0.321443
x5: 0.230022
x6: 0.719518",
"Arm 15_0
hartmann6: -2.18835 (SEM: 0)
x1: 0.220643
x2: 1.5098e-14
x3: 0.0357943
x4: 0.305581
x5: 0.293355
x6: 0.756652",
"Arm 16_0
hartmann6: -1.68887 (SEM: 0)
x1: 0.230762
x2: 8.22519e-15
x3: 0.00506736
x4: 0.388356
x5: 0.268672
x6: 0.812669",
"Arm 17_0
hartmann6: -2.49132 (SEM: 0)
x1: 0.23991
x2: 1.41713e-17
x3: 0.111764
x4: 0.285156
x5: 0.292721
x6: 0.70969",
"Arm 18_0
hartmann6: -2.50973 (SEM: 0)
x1: 0.250827
x2: 6.6398e-14
x3: 0.139571
x4: 0.24707
x5: 0.336964
x6: 0.653027",
"Arm 19_0
hartmann6: -2.4155 (SEM: 0)
x1: 0.279885
x2: 3.60895e-14
x3: 0.128559
x4: 0.234804
x5: 0.266831
x6: 0.690047",
"Arm 1_0
hartmann6: -0.107445 (SEM: 0)
x1: 0.034453
x2: 0.902235
x3: 0.661968
x4: 0.362164
x5: 0.777214
x6: 0.55597",
"Arm 20_0
hartmann6: -2.48962 (SEM: 0)
x1: 0.249627
x2: 0
x3: 0.153931
x4: 0.281313
x5: 0.354939
x6: 0.703146",
"Arm 21_0
hartmann6: -2.51894 (SEM: 0)
x1: 0.25268
x2: 2.58036e-15
x3: 0.120914
x4: 0.287081
x5: 0.329575
x6: 0.640533",
"Arm 22_0
hartmann6: -2.63781 (SEM: 0)
x1: 0.239409
x2: 0.0589242
x3: 0.122601
x4: 0.268986
x5: 0.33516
x6: 0.668354",
"Arm 23_0
hartmann6: -2.50609 (SEM: 0)
x1: 0.247572
x2: 0.111135
x3: 0.108981
x4: 0.258102
x5: 0.369026
x6: 0.678249",
"Arm 24_0
hartmann6: -2.7782 (SEM: 0)
x1: 0.225916
x2: 0.0714905
x3: 0.157277
x4: 0.282234
x5: 0.310084
x6: 0.647945",
"Arm 25_0
hartmann6: -2.916 (SEM: 0)
x1: 0.21758
x2: 0.110243
x3: 0.214706
x4: 0.283422
x5: 0.300093
x6: 0.62753",
"Arm 26_0
hartmann6: -3.05858 (SEM: 0)
x1: 0.222316
x2: 0.141141
x3: 0.289462
x4: 0.282135
x5: 0.292407
x6: 0.623948",
"Arm 27_0
hartmann6: -3.23929 (SEM: 0)
x1: 0.235851
x2: 0.156952
x3: 0.403894
x4: 0.281892
x5: 0.288132
x6: 0.642747",
"Arm 28_0
hartmann6: -3.25463 (SEM: 0)
x1: 0.233661
x2: 0.151014
x3: 0.535435
x4: 0.28487
x5: 0.294516
x6: 0.66005",
"Arm 2_0
hartmann6: -0.786151 (SEM: 0)
x1: 0.661045
x2: 0.0788699
x3: 0.0444717
x4: 0.390223
x5: 0.247606
x6: 0.425364",
"Arm 3_0
hartmann6: -0.22682 (SEM: 0)
x1: 0.664458
x2: 0.149978
x3: 0.43287
x4: 0.0419878
x5: 0.0175081
x6: 0.807833",
"Arm 4_0
hartmann6: -0.0172582 (SEM: 0)
x1: 0.560551
x2: 0.96994
x3: 0.171721
x4: 0.796254
x5: 0.0594217
x6: 0.61048",
"Arm 5_0
hartmann6: -0.00156439 (SEM: 0)
x1: 0.868886
x2: 0.71822
x3: 0.922691
x4: 0.185855
x5: 0.877436
x6: 0.687419",
"Arm 6_0
hartmann6: -0.203691 (SEM: 0)
x1: 0.931849
x2: 0.0986126
x3: 0.0903938
x4: 0.156304
x5: 0.508007
x6: 0.494964",
"Arm 7_0
hartmann6: -0.282017 (SEM: 0)
x1: 0.21168
x2: 0.744526
x3: 0.70419
x4: 0.700545
x5: 0.310062
x6: 0.922949",
"Arm 8_0
hartmann6: -0.024448 (SEM: 0)
x1: 0.77736
x2: 0.9259
x3: 0.56761
x4: 0.258543
x5: 0.632847
x6: 0.586166",
"Arm 9_0
hartmann6: -0.00206716 (SEM: 0)
x1: 0.811253
x2: 0.105248
x3: 0.420551
x4: 0.945369
x5: 0.652537
x6: 0.536928"
],
"type": "scatter",
"x": [
0.1583179384469986,
0.7085037864744663,
0.04676289763301611,
0.10012610868392907,
0.07005748696153047,
0.17897766597588985,
0.22064333757480167,
0.23076221392604876,
0.23990974417863412,
0.25082735008830565,
0.279885343326587,
0.03445299342274666,
0.24962723192752367,
0.2526801102560263,
0.23940877835676572,
0.24757228283559135,
0.22591593618107783,
0.21758005991072826,
0.22231553253988634,
0.2358508292367629,
0.2336612653898288,
0.6610454507172108,
0.6644576257094741,
0.5605512699112296,
0.8688864642754197,
0.9318491294980049,
0.21167953498661518,
0.7773597110062838,
0.8112529246136546
],
"xaxis": "x",
"y": [
0.9943006038665771,
0.5307705961167812,
0.01357052568346262,
0.012221376308385243,
0.05042837644803402,
0.0,
1.5098010925172793e-14,
8.225190113039378e-15,
1.4171328756746562e-17,
6.63980023834413e-14,
3.6089510375559436e-14,
0.9022353915497661,
0.0,
2.580358532814877e-15,
0.05892423044797808,
0.11113514958349952,
0.0714904797027655,
0.11024323392242774,
0.14114134760674085,
0.15695178006228364,
0.15101387197829808,
0.07886993512511253,
0.14997832104563713,
0.96993965562433,
0.7182196760550141,
0.09861262887716293,
0.7445264449343085,
0.9259003940969706,
0.10524795297533274
],
"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.713682 (SEM: 0)
x1: 0.158318
x2: 0.994301
x3: 0.00661276
x4: 0.44639
x5: 0.0536959
x6: 0.150323",
"Arm 10_0
hartmann6: -0.0311327 (SEM: 0)
x1: 0.708504
x2: 0.530771
x3: 0.817851
x4: 0.780792
x5: 0.776208
x6: 0.381357",
"Arm 11_0
hartmann6: -1.50744 (SEM: 0)
x1: 0.0467629
x2: 0.0135705
x3: 0.120863
x4: 0.238268
x5: 0.175787
x6: 0.79232",
"Arm 12_0
hartmann6: -1.76967 (SEM: 0)
x1: 0.100126
x2: 0.0122214
x3: 0.0541791
x4: 0.289869
x5: 0.181718
x6: 0.692201",
"Arm 13_0
hartmann6: -1.37458 (SEM: 0)
x1: 0.0700575
x2: 0.0504284
x3: 0
x4: 0.304278
x5: 0.14712
x6: 0.600503",
"Arm 14_0
hartmann6: -2.09924 (SEM: 0)
x1: 0.178978
x2: 0
x3: 0.0585748
x4: 0.321443
x5: 0.230022
x6: 0.719518",
"Arm 15_0
hartmann6: -2.18835 (SEM: 0)
x1: 0.220643
x2: 1.5098e-14
x3: 0.0357943
x4: 0.305581
x5: 0.293355
x6: 0.756652",
"Arm 16_0
hartmann6: -1.68887 (SEM: 0)
x1: 0.230762
x2: 8.22519e-15
x3: 0.00506736
x4: 0.388356
x5: 0.268672
x6: 0.812669",
"Arm 17_0
hartmann6: -2.49132 (SEM: 0)
x1: 0.23991
x2: 1.41713e-17
x3: 0.111764
x4: 0.285156
x5: 0.292721
x6: 0.70969",
"Arm 18_0
hartmann6: -2.50973 (SEM: 0)
x1: 0.250827
x2: 6.6398e-14
x3: 0.139571
x4: 0.24707
x5: 0.336964
x6: 0.653027",
"Arm 19_0
hartmann6: -2.4155 (SEM: 0)
x1: 0.279885
x2: 3.60895e-14
x3: 0.128559
x4: 0.234804
x5: 0.266831
x6: 0.690047",
"Arm 1_0
hartmann6: -0.107445 (SEM: 0)
x1: 0.034453
x2: 0.902235
x3: 0.661968
x4: 0.362164
x5: 0.777214
x6: 0.55597",
"Arm 20_0
hartmann6: -2.48962 (SEM: 0)
x1: 0.249627
x2: 0
x3: 0.153931
x4: 0.281313
x5: 0.354939
x6: 0.703146",
"Arm 21_0
hartmann6: -2.51894 (SEM: 0)
x1: 0.25268
x2: 2.58036e-15
x3: 0.120914
x4: 0.287081
x5: 0.329575
x6: 0.640533",
"Arm 22_0
hartmann6: -2.63781 (SEM: 0)
x1: 0.239409
x2: 0.0589242
x3: 0.122601
x4: 0.268986
x5: 0.33516
x6: 0.668354",
"Arm 23_0
hartmann6: -2.50609 (SEM: 0)
x1: 0.247572
x2: 0.111135
x3: 0.108981
x4: 0.258102
x5: 0.369026
x6: 0.678249",
"Arm 24_0
hartmann6: -2.7782 (SEM: 0)
x1: 0.225916
x2: 0.0714905
x3: 0.157277
x4: 0.282234
x5: 0.310084
x6: 0.647945",
"Arm 25_0
hartmann6: -2.916 (SEM: 0)
x1: 0.21758
x2: 0.110243
x3: 0.214706
x4: 0.283422
x5: 0.300093
x6: 0.62753",
"Arm 26_0
hartmann6: -3.05858 (SEM: 0)
x1: 0.222316
x2: 0.141141
x3: 0.289462
x4: 0.282135
x5: 0.292407
x6: 0.623948",
"Arm 27_0
hartmann6: -3.23929 (SEM: 0)
x1: 0.235851
x2: 0.156952
x3: 0.403894
x4: 0.281892
x5: 0.288132
x6: 0.642747",
"Arm 28_0
hartmann6: -3.25463 (SEM: 0)
x1: 0.233661
x2: 0.151014
x3: 0.535435
x4: 0.28487
x5: 0.294516
x6: 0.66005",
"Arm 2_0
hartmann6: -0.786151 (SEM: 0)
x1: 0.661045
x2: 0.0788699
x3: 0.0444717
x4: 0.390223
x5: 0.247606
x6: 0.425364",
"Arm 3_0
hartmann6: -0.22682 (SEM: 0)
x1: 0.664458
x2: 0.149978
x3: 0.43287
x4: 0.0419878
x5: 0.0175081
x6: 0.807833",
"Arm 4_0
hartmann6: -0.0172582 (SEM: 0)
x1: 0.560551
x2: 0.96994
x3: 0.171721
x4: 0.796254
x5: 0.0594217
x6: 0.61048",
"Arm 5_0
hartmann6: -0.00156439 (SEM: 0)
x1: 0.868886
x2: 0.71822
x3: 0.922691
x4: 0.185855
x5: 0.877436
x6: 0.687419",
"Arm 6_0
hartmann6: -0.203691 (SEM: 0)
x1: 0.931849
x2: 0.0986126
x3: 0.0903938
x4: 0.156304
x5: 0.508007
x6: 0.494964",
"Arm 7_0
hartmann6: -0.282017 (SEM: 0)
x1: 0.21168
x2: 0.744526
x3: 0.70419
x4: 0.700545
x5: 0.310062
x6: 0.922949",
"Arm 8_0
hartmann6: -0.024448 (SEM: 0)
x1: 0.77736
x2: 0.9259
x3: 0.56761
x4: 0.258543
x5: 0.632847
x6: 0.586166",
"Arm 9_0
hartmann6: -0.00206716 (SEM: 0)
x1: 0.811253
x2: 0.105248
x3: 0.420551
x4: 0.945369
x5: 0.652537
x6: 0.536928"
],
"type": "scatter",
"x": [
0.1583179384469986,
0.7085037864744663,
0.04676289763301611,
0.10012610868392907,
0.07005748696153047,
0.17897766597588985,
0.22064333757480167,
0.23076221392604876,
0.23990974417863412,
0.25082735008830565,
0.279885343326587,
0.03445299342274666,
0.24962723192752367,
0.2526801102560263,
0.23940877835676572,
0.24757228283559135,
0.22591593618107783,
0.21758005991072826,
0.22231553253988634,
0.2358508292367629,
0.2336612653898288,
0.6610454507172108,
0.6644576257094741,
0.5605512699112296,
0.8688864642754197,
0.9318491294980049,
0.21167953498661518,
0.7773597110062838,
0.8112529246136546
],
"xaxis": "x2",
"y": [
0.9943006038665771,
0.5307705961167812,
0.01357052568346262,
0.012221376308385243,
0.05042837644803402,
0.0,
1.5098010925172793e-14,
8.225190113039378e-15,
1.4171328756746562e-17,
6.63980023834413e-14,
3.6089510375559436e-14,
0.9022353915497661,
0.0,
2.580358532814877e-15,
0.05892423044797808,
0.11113514958349952,
0.0714904797027655,
0.11024323392242774,
0.14114134760674085,
0.15695178006228364,
0.15101387197829808,
0.07886993512511253,
0.14997832104563713,
0.96993965562433,
0.7182196760550141,
0.09861262887716293,
0.7445264449343085,
0.9259003940969706,
0.10524795297533274
],
"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": [
"