{
"cells": [
{
"cell_type": "markdown",
"id": "109df1cd",
"metadata": {
"papermill": {
"duration": 0.003274,
"end_time": "2023-12-09T18:32:17.609429",
"exception": false,
"start_time": "2023-12-09T18:32:17.606155",
"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": "36b26e72",
"metadata": {
"execution": {
"iopub.execute_input": "2023-12-09T18:32:17.615802Z",
"iopub.status.busy": "2023-12-09T18:32:17.615258Z",
"iopub.status.idle": "2023-12-09T18:32:20.660487Z",
"shell.execute_reply": "2023-12-09T18:32:20.659272Z"
},
"papermill": {
"duration": 3.093027,
"end_time": "2023-12-09T18:32:20.704960",
"exception": false,
"start_time": "2023-12-09T18:32:17.611933",
"status": "completed"
},
"tags": []
},
"outputs": [
{
"data": {
"text/html": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-09 18:32:20] ax.utils.notebook.plotting: Injecting Plotly library into cell. Do not overwrite or delete cell.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-09 18:32:20] 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": "6c41369b",
"metadata": {
"papermill": {
"duration": 0.039499,
"end_time": "2023-12-09T18:32:20.782360",
"exception": false,
"start_time": "2023-12-09T18:32:20.742861",
"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": "644edc48",
"metadata": {
"execution": {
"iopub.execute_input": "2023-12-09T18:32:20.864817Z",
"iopub.status.busy": "2023-12-09T18:32:20.864121Z",
"iopub.status.idle": "2023-12-09T18:32:20.869290Z",
"shell.execute_reply": "2023-12-09T18:32:20.868648Z"
},
"papermill": {
"duration": 0.048001,
"end_time": "2023-12-09T18:32:20.870711",
"exception": false,
"start_time": "2023-12-09T18:32:20.822710",
"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": "49178867",
"metadata": {
"papermill": {
"duration": 0.042478,
"end_time": "2023-12-09T18:32:20.953312",
"exception": false,
"start_time": "2023-12-09T18:32:20.910834",
"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": "14f92022",
"metadata": {
"papermill": {
"duration": 0.040003,
"end_time": "2023-12-09T18:32:21.034386",
"exception": false,
"start_time": "2023-12-09T18:32:20.994383",
"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": "245a366d",
"metadata": {
"execution": {
"iopub.execute_input": "2023-12-09T18:32:21.116463Z",
"iopub.status.busy": "2023-12-09T18:32:21.115648Z",
"iopub.status.idle": "2023-12-09T18:34:05.755553Z",
"shell.execute_reply": "2023-12-09T18:34:05.754802Z"
},
"papermill": {
"duration": 104.683554,
"end_time": "2023-12-09T18:34:05.757727",
"exception": false,
"start_time": "2023-12-09T18:32:21.074173",
"status": "completed"
},
"tags": []
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-09 18:32:21] 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 12-09 18:32:21] 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 12-09 18:32:21] 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 12-09 18:32:21] 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 12-09 18:32:21] 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 12-09 18:32:21] 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 12-09 18:32:21] ax.modelbridge.dispatch_utils: Using Models.BOTORCH_MODULAR since there are more ordered parameters than there are categories for the unordered categorical parameters.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-09 18:32:21] 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 12-09 18:32:21] ax.modelbridge.dispatch_utils: calculated num_initialization_trials=12\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-09 18:32:21] ax.modelbridge.dispatch_utils: num_completed_initialization_trials=0 num_remaining_initialization_trials=12\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-09 18:32:21] 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 12-09 18:32:21] 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 12-09 18:32:21] ax.service.managed_loop: Started full optimization with 30 steps.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-09 18:32:21] ax.service.managed_loop: Running optimization trial 1...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-09 18:32:21] ax.service.managed_loop: Running optimization trial 2...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-09 18:32:21] ax.service.managed_loop: Running optimization trial 3...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-09 18:32:21] ax.service.managed_loop: Running optimization trial 4...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-09 18:32:21] ax.service.managed_loop: Running optimization trial 5...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-09 18:32:21] ax.service.managed_loop: Running optimization trial 6...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-09 18:32:21] ax.service.managed_loop: Running optimization trial 7...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-09 18:32:21] ax.service.managed_loop: Running optimization trial 8...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-09 18:32:21] ax.service.managed_loop: Running optimization trial 9...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-09 18:32:21] ax.service.managed_loop: Running optimization trial 10...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-09 18:32:21] ax.service.managed_loop: Running optimization trial 11...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-09 18:32:21] ax.service.managed_loop: Running optimization trial 12...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-09 18:32:21] ax.service.managed_loop: Running optimization trial 13...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-09 18:32:26] ax.service.managed_loop: Running optimization trial 14...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-09 18:32:31] ax.service.managed_loop: Running optimization trial 15...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-09 18:32:37] ax.service.managed_loop: Running optimization trial 16...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-09 18:32:44] ax.service.managed_loop: Running optimization trial 17...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-09 18:32:49] ax.service.managed_loop: Running optimization trial 18...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-09 18:32:55] ax.service.managed_loop: Running optimization trial 19...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-09 18:33:00] ax.service.managed_loop: Running optimization trial 20...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-09 18:33:08] ax.service.managed_loop: Running optimization trial 21...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-09 18:33:14] ax.service.managed_loop: Running optimization trial 22...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-09 18:33:20] ax.service.managed_loop: Running optimization trial 23...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-09 18:33:26] ax.service.managed_loop: Running optimization trial 24...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-09 18:33:31] ax.service.managed_loop: Running optimization trial 25...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-09 18:33:37] ax.service.managed_loop: Running optimization trial 26...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-09 18:33:42] ax.service.managed_loop: Running optimization trial 27...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-09 18:33:48] ax.service.managed_loop: Running optimization trial 28...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-09 18:33:53] ax.service.managed_loop: Running optimization trial 29...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 12-09 18:33:59] ax.service.managed_loop: Running optimization trial 30...\n"
]
}
],
"source": [
"best_parameters, values, experiment, model = optimize(\n",
" parameters=[\n",
" {\n",
" \"name\": \"x1\",\n",
" \"type\": \"range\",\n",
" \"bounds\": [0.0, 1.0],\n",
" \"value_type\": \"float\", # Optional, defaults to inference from type of \"bounds\".\n",
" \"log_scale\": False, # Optional, defaults to False.\n",
" },\n",
" {\n",
" \"name\": \"x2\",\n",
" \"type\": \"range\",\n",
" \"bounds\": [0.0, 1.0],\n",
" },\n",
" {\n",
" \"name\": \"x3\",\n",
" \"type\": \"range\",\n",
" \"bounds\": [0.0, 1.0],\n",
" },\n",
" {\n",
" \"name\": \"x4\",\n",
" \"type\": \"range\",\n",
" \"bounds\": [0.0, 1.0],\n",
" },\n",
" {\n",
" \"name\": \"x5\",\n",
" \"type\": \"range\",\n",
" \"bounds\": [0.0, 1.0],\n",
" },\n",
" {\n",
" \"name\": \"x6\",\n",
" \"type\": \"range\",\n",
" \"bounds\": [0.0, 1.0],\n",
" },\n",
" ],\n",
" experiment_name=\"test\",\n",
" objective_name=\"hartmann6\",\n",
" evaluation_function=hartmann_evaluation_function,\n",
" minimize=True, # Optional, defaults to False.\n",
" parameter_constraints=[\"x1 + x2 <= 20\"], # Optional.\n",
" outcome_constraints=[\"l2norm <= 1.25\"], # Optional.\n",
" total_trials=30, # Optional.\n",
")"
]
},
{
"cell_type": "markdown",
"id": "d28247c5",
"metadata": {
"papermill": {
"duration": 0.054655,
"end_time": "2023-12-09T18:34:05.881485",
"exception": false,
"start_time": "2023-12-09T18:34:05.826830",
"status": "completed"
},
"tags": []
},
"source": [
"And we can introspect optimization results:"
]
},
{
"cell_type": "code",
"execution_count": 4,
"id": "2eca4073",
"metadata": {
"execution": {
"iopub.execute_input": "2023-12-09T18:34:05.965021Z",
"iopub.status.busy": "2023-12-09T18:34:05.964510Z",
"iopub.status.idle": "2023-12-09T18:34:05.971146Z",
"shell.execute_reply": "2023-12-09T18:34:05.970470Z"
},
"papermill": {
"duration": 0.05017,
"end_time": "2023-12-09T18:34:05.972640",
"exception": false,
"start_time": "2023-12-09T18:34:05.922470",
"status": "completed"
},
"tags": []
},
"outputs": [
{
"data": {
"text/plain": [
"{'x1': 0.19001085607238735,\n",
" 'x2': 0.21481854614411267,\n",
" 'x3': 0.18557361962675936,\n",
" 'x4': 0.3118151311029633,\n",
" 'x5': 0.2988534285510756,\n",
" 'x6': 0.6469589397743876}"
]
},
"execution_count": 4,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"best_parameters"
]
},
{
"cell_type": "code",
"execution_count": 5,
"id": "8e4a17d9",
"metadata": {
"execution": {
"iopub.execute_input": "2023-12-09T18:34:06.056354Z",
"iopub.status.busy": "2023-12-09T18:34:06.056064Z",
"iopub.status.idle": "2023-12-09T18:34:06.061150Z",
"shell.execute_reply": "2023-12-09T18:34:06.060504Z"
},
"papermill": {
"duration": 0.048011,
"end_time": "2023-12-09T18:34:06.062645",
"exception": false,
"start_time": "2023-12-09T18:34:06.014634",
"status": "completed"
},
"tags": []
},
"outputs": [
{
"data": {
"text/plain": [
"{'hartmann6': -2.813116796456373, 'l2norm': 0.8495858560976961}"
]
},
"execution_count": 5,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"means, covariances = values\n",
"means"
]
},
{
"cell_type": "markdown",
"id": "beed610e",
"metadata": {
"papermill": {
"duration": 0.041348,
"end_time": "2023-12-09T18:34:06.145001",
"exception": false,
"start_time": "2023-12-09T18:34:06.103653",
"status": "completed"
},
"tags": []
},
"source": [
"For comparison, minimum of Hartmann6 is:"
]
},
{
"cell_type": "code",
"execution_count": 6,
"id": "726993db",
"metadata": {
"execution": {
"iopub.execute_input": "2023-12-09T18:34:06.229044Z",
"iopub.status.busy": "2023-12-09T18:34:06.228535Z",
"iopub.status.idle": "2023-12-09T18:34:06.233221Z",
"shell.execute_reply": "2023-12-09T18:34:06.232515Z"
},
"papermill": {
"duration": 0.048624,
"end_time": "2023-12-09T18:34:06.234923",
"exception": false,
"start_time": "2023-12-09T18:34:06.186299",
"status": "completed"
},
"tags": []
},
"outputs": [
{
"data": {
"text/plain": [
"-3.32237"
]
},
"execution_count": 6,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"hartmann6.fmin"
]
},
{
"cell_type": "markdown",
"id": "cb905bb7",
"metadata": {
"papermill": {
"duration": 0.041043,
"end_time": "2023-12-09T18:34:06.318304",
"exception": false,
"start_time": "2023-12-09T18:34:06.277261",
"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": "11267eee",
"metadata": {
"execution": {
"iopub.execute_input": "2023-12-09T18:34:06.402398Z",
"iopub.status.busy": "2023-12-09T18:34:06.401884Z",
"iopub.status.idle": "2023-12-09T18:34:07.083545Z",
"shell.execute_reply": "2023-12-09T18:34:07.082839Z"
},
"papermill": {
"duration": 0.72935,
"end_time": "2023-12-09T18:34:07.088903",
"exception": false,
"start_time": "2023-12-09T18:34:06.359553",
"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.2947610025987433,
-1.3142378949700715,
-1.3317073354300961,
-1.347005732820624,
-1.3599834043368304,
-1.3705076614648837,
-1.378465700116043,
-1.3837671847290796,
-1.3863464204429328,
-1.386164018214959,
-1.3832079749022035,
-1.377494113242697,
-1.3690658542232996,
-1.3579933248041498,
-1.3443718352253666,
-1.328319789700526,
-1.3099761197478494,
-1.2894973485918853,
-1.2670544065028126,
-1.2428293200204086,
-1.2170118930786478,
-1.189796486297189,
-1.161378983932378,
-1.1319540182559462,
-1.1017125004849613,
-1.0708394875542748,
-1.03951239628654,
-1.0078995616643058,
-0.9761591242776024,
-0.9444382235803384,
-0.9128724680577255,
-0.8815856503592747,
-0.8506896744035186,
-0.8202846619331483,
-0.7904592075599135,
-0.7612907536187011,
-0.7328460588527335,
-0.7051817378475901,
-0.6783448510520564,
-0.6523735280503604,
-0.6272976094053508,
-0.6031392948288826,
-0.5799137876309874,
-0.5576299273462902,
-0.5362908041399371,
-0.5158943500683809,
-0.49643390352965466,
-0.477898744303369,
-0.4602745974723753,
-0.44354410525676324
],
[
-1.3444862638105515,
-1.3654178846816982,
-1.3842285479649776,
-1.40073833239435,
-1.414782123375914,
-1.4262131137851637,
-1.4349060952945503,
-1.4407604104516345,
-1.4437024406606476,
-1.4436875179935238,
-1.4407011691905236,
-1.4347596275066405,
-1.4259095807786974,
-1.4142271601652314,
-1.399816210849132,
-1.382805920662571,
-1.3633479121594254,
-1.3416129255841547,
-1.3177872327301712,
-1.2920689241932493,
-1.2646642055305346,
-1.235783822893128,
-1.2056397180828415,
-1.1744419892566729,
-1.14239620911934,
-1.1097011294381367,
-1.0765467805293898,
-1.0431129578261285,
-1.0095680750168314,
-0.9760683544004428,
-0.9427573196140586,
-0.9097655531946771,
-0.8772106809332152,
-0.8451975460951135,
-0.8138185388140413,
-0.7831540488984446,
-0.7532730135971364,
-0.7242335353052971,
-0.6960835475806031,
-0.6688615110623457,
-0.6425971238705284,
-0.6173120337665627,
-0.5930205417661893,
-0.5697302890092927,
-0.5474429205227277,
-0.5261547210800867,
-0.5058572196897821,
-0.48653776035439644,
-0.4681800376654113,
-0.45076459655141354
],
[
-1.3920336770979864,
-1.4144119889151257,
-1.4345597680046056,
-1.4522803061203282,
-1.4673925678801414,
-1.4797351377930887,
-1.4891699439060062,
-1.4955856059504273,
-1.49890026175317,
-1.499063741096114,
-1.4960589807641123,
-1.4899026070603059,
-1.4806446507419684,
-1.4683674016239505,
-1.453183452938418,
-1.4352330255143686,
-1.4146806955446842,
-1.3917116742197924,
-1.3665278008597523,
-1.339343412713205,
-1.310381245066012,
-1.279868496701279,
-1.24803317088054,
-1.2151007739727568,
-1.181291425539871,
-1.146817407427596,
-1.1118811567935436,
-1.0766736898624156,
-1.041373429715662,
-1.0061454023143932,
-0.9711407596436288,
-0.9364965866440492,
-0.902335948738293,
-0.8687681385949322,
-0.8358890837333864,
-0.8037818801970343,
-0.7725174214564392,
-0.7421550956914864,
-0.7127435284620371,
-0.6843213513946493,
-0.6569179808205492,
-0.6305543932642177,
-0.605243887294839,
-0.5809928235237987,
-0.5578013364800425,
-0.5356640137478196,
-0.5145705391374851,
-0.4945062978095053,
-0.4754529422145678,
-0.4573889184759725
],
[
-1.4367198503313645,
-1.4605136345707008,
-1.4819730761220629,
-1.5008844715736938,
-1.517050606218513,
-1.5302951757528611,
-1.5404669704941036,
-1.547443644494907,
-1.551134899265664,
-1.551484930788313,
-1.5484740182874726,
-1.5421191721081942,
-1.5324738035797885,
-1.5196264288460886,
-1.5036984677412413,
-1.4848412440233896,
-1.4632323308502029,
-1.43907141206284,
-1.4125758435177822,
-1.38397609876509,
-1.3535112708518124,
-1.321424779383181,
-1.2879604025679299,
-1.2533587214528001,
-1.2178540312505983,
-1.1816717451973824,
-1.1450262914370652,
-1.1081194838336716,
-1.071139333422647,
-1.0342592579874337,
-0.9976376422412313,
-0.9614176994456978,
-0.9257275861584292,
-0.8906807244086498,
-0.8563762893209181,
-0.8228998245386376,
-0.7903239523672603,
-0.758709150093478,
-0.7281045682614347,
-0.69854887068859,
-0.6700710796212329,
-0.6426914126392653,
-0.6164221007225902,
-0.5912681793056689,
-0.5672282462002532,
-0.544295181992622,
-0.5224568299565955,
-0.5016966337025345,
-0.48199423173949507,
-0.4633260088943226
],
[
-1.4778461302273216,
-1.5029985689465406,
-1.5257205481197784,
-1.5457814592282635,
-1.5629679269356025,
-1.5770887295133387,
-1.587979467784591,
-1.5955067758727632,
-1.5995718764784326,
-1.6001133071161797,
-1.5971086802010683,
-1.59057538648114,
-1.580570204738918,
-1.567187837138472,
-1.5505584449840255,
-1.5308443097684417,
-1.5082357851915453,
-1.4829467339467417,
-1.4552096563638965,
-1.425270715991773,
-1.3933848512633662,
-1.3598111354428724,
-1.324808513018449,
-1.2886320037436458,
-1.251529429380292,
-1.2137386857067491,
-1.1754855553074568,
-1.136982035807345,
-1.0984251434959154,
-1.0599961430853617,
-1.0218601497500708,
-0.9841660485915829,
-0.9470466782948508,
-0.9106192291414634,
-0.8749858100297313,
-0.840234144184258,
-0.8064383584240384,
-0.7736598359247708,
-0.7419481071784121,
-0.7113417582161128,
-0.6818693390666044,
-0.6535502588571047,
-0.6263956569383069,
-0.6004092419561565,
-0.5755880929374642,
-0.5519234182443522,
-0.5294012697262561,
-0.5080032105981874,
-0.4877069365389468,
-0.4684868502674848
],
[
-1.5147167580785073,
-1.541143548645747,
-1.5650534229466995,
-1.586199304631433,
-1.6043519998765177,
-1.6193056342639567,
-1.6308828249331007,
-1.638939348202244,
-1.6433680751644437,
-1.6441019776784187,
-1.6411160521074257,
-1.6344280641711877,
-1.6240980807875698,
-1.6102268190734061,
-1.5929529041372692,
-1.572449181531503,
-1.54891827321563,
-1.5225875943557243,
-1.4937040602667795,
-1.4625287080832812,
-1.4293314380324633,
-1.394386047865662,
-1.3579656954763215,
-1.3203388836049468,
-1.2817660208669128,
-1.2424965781723836,
-1.2027668307542592,
-1.1627981541631658,
-1.1227958275250056,
-1.082948288305396,
-1.0434267787110405,
-1.0043853235325029,
-0.9659609816202889,
-0.9282743173619988,
-0.8914300437486008,
-0.8555177943161594,
-0.8206129870174551,
-0.7867777486369096,
-0.7540618735373681,
-0.722503795218971,
-0.6921315533363,
-0.662963742454505,
-0.6350104319498486,
-0.6082740491099826,
-0.5827502197093006,
-0.5584285621721972,
-0.5352934329399666,
-0.51332462187096,
-0.4924979974708785,
-0.47278610250895037
],
[
-1.5466596913732924,
-1.5742478714615298,
-1.5992442720381346,
-1.621386180060793,
-1.6404292935601181,
-1.6561536837325828,
-1.6683694809043832,
-1.6769220072029347,
-1.6816960947780148,
-1.6826193662352047,
-1.679664309448908,
-1.672849046275797,
-1.662236767583893,
-1.6479338795490683,
-1.630086973231095,
-1.6088787866680079,
-1.5845233724588683,
-1.5572607112268955,
-1.527351020918443,
-1.4950690037684415,
-1.460698249038348,
-1.4245259740693101,
-1.3868382435608857,
-1.3479157622077313,
-1.3080302931905552,
-1.2674417176618495,
-1.226395720103948,
-1.185122061861993,
-1.1438333899312694,
-1.1027245192758182,
-1.0619721233580546,
-1.0217347679005933,
-0.9821532260149981,
-0.9433510177284236,
-0.905435122832797,
-0.8684968222817409,
-0.8326126296490388,
-0.7978452801588736,
-0.7642447503311427,
-0.7318492862632227,
-0.7006864229586142,
-0.6707739809174638,
-0.6421210294538766,
-0.6147288089440757,
-0.5885916064897975,
-0.5636975813566809,
-0.5400295380709674,
-0.5175656462795378,
-0.49628010744407536,
-0.47614376919112
],
[
-1.573049475402399,
-1.6016571414372267,
-1.6276115648591172,
-1.650635662378018,
-1.6704711441433746,
-1.6868849973612003,
-1.6996756856579727,
-1.708678745476982,
-1.7137714813023983,
-1.714876509030426,
-1.7119639651193843,
-1.7050522798723007,
-1.6942074977641384,
-1.6795412087711552,
-1.6612072265952635,
-1.6393972084683142,
-1.6143354539725003,
-1.586273145064795,
-1.5554822954220613,
-1.5222496650333375,
-1.4868708681197602,
-1.449644862994374,
-1.4108689663615808,
-1.3708344868722235,
-1.3298230278681475,
-1.2881034703241152,
-1.2459296157905697,
-1.2035384461613745,
-1.1611489418842853,
-1.1189613917470271,
-1.0771571242841576,
-1.0358985918015575,
-0.9953297417704254,
-0.9555766158633678,
-0.9167481233742927,
-0.8789369425744115,
-0.8422205102820086,
-0.8066620662842665,
-0.7723117250779012,
-0.7392075526077779,
-0.7073766302523643,
-0.6768360922455342,
-0.6475941260726104,
-0.61965092818694,
-0.5929996097187823,
-0.5676270487510626,
-0.5435146872736563,
-0.5206392721531014,
-0.4989735404170764,
-0.47848684989537527
],
[
-1.5933312506294752,
-1.6227883584170872,
-1.6495457302020564,
-1.6733136455931268,
-1.6938213924346472,
-1.7108242515060104,
-1.7241101936108092,
-1.7335059253047365,
-1.738881945248166,
-1.7401563320971238,
-1.7372970680424071,
-1.7303227979926525,
-1.7193020216394896,
-1.7043508052104448,
-1.6856291755980606,
-1.6633364183368569,
-1.6377055408621524,
-1.6089971829273662,
-1.5774932571814708,
-1.543490586098208,
-1.507294769530899,
-1.4692144743197963,
-1.4295562886024358,
-1.3886202338033857,
-1.346695981013391,
-1.3040597786818326,
-1.2609720669181435,
-1.217675730640033,
-1.1743949287781426,
-1.1313344286166696,
-1.0886793717220038,
-1.0465953993721606,
-1.005229069669726,
-0.9647085045313666,
-0.9251442116614217,
-0.8866300338183948,
-0.8492441847406695,
-0.8130503377333549,
-0.7780987389682712,
-0.7444273229357299,
-0.7120628121898873,
-0.6810217875692546,
-0.6513117184935358,
-0.6229319457951772,
-0.5958746119009254,
-0.5701255350997321,
-0.5456650261785806,
-0.5224686469345959,
-0.5005079110303325,
-0.4797509283950978
],
[
-1.6070446341498075,
-1.637155067449626,
-1.664535455304363,
-1.6888856540461301,
-1.7099245629584576,
-1.7273975680865707,
-1.741083700914118,
-1.7508021012728763,
-1.7564174054059571,
-1.7578437517611758,
-1.755047196639226,
-1.7480464439622037,
-1.7369119037454404,
-1.721763191547363,
-1.7027652599263081,
-1.6801234102066793,
-1.6540774684319857,
-1.624895424137898,
-1.5928668259834342,
-1.558296206511585,
-1.5214967725476762,
-1.482784552186799,
-1.4424731388095435,
-1.4008691219028462,
-1.3582682477343553,
-1.314952313029999,
-1.2711867632830076,
-1.2272189445065071,
-1.183276942532851,
-1.1395689361931562,
-1.0962829884579988,
-1.053587201451883,
-1.0116301658759985,
-0.9705416417074287,
-0.9304334142456895,
-0.8914002770279386,
-0.8535211004024946,
-0.8168599513588011,
-0.7814672364012507,
-0.7473808447492724,
-0.7146272739320995,
-0.6832227239471896,
-0.6531741496144629,
-0.6244802636450356,
-0.5971324853190114,
-0.5711158315984337,
-0.546409749051902,
-0.5229888861948233,
-0.5008238068061888,
-0.4798816455151216
],
[
-1.613845844724022,
-1.644390908329676,
-1.6721925519592395,
-1.6969428901431503,
-1.718352936253634,
-1.7361604374224504,
-1.7501374327689452,
-1.7600970784072345,
-1.7658993204602809,
-1.7674550822711028,
-1.7647287482117346,
-1.7577388547097286,
-1.746557021862338,
-1.7313052638524955,
-1.7121518968617917,
-1.6893063177665688,
-1.6630129570309975,
-1.6335447174708944,
-1.6011961998099808,
-1.5662769892255428,
-1.5291052378946288,
-1.4900017310405993,
-1.4492845726785273,
-1.407264576592244,
-1.364241401778307,
-1.320500432295373,
-1.2763103705449566,
-1.2319214907266638,
-1.1875644849355895,
-1.1434498269386892,
-1.0997675766773591,
-1.056687550581608,
-1.0143597875682768,
-0.9729152470652634,
-0.9324666827186651,
-0.8931096429843052,
-0.8549235571507525,
-0.8179728722129528,
-0.782308212255354,
-0.7479675375382016,
-0.7149772852966398,
-0.6833534783853361,
-0.6531027913804002,
-0.624223566648077,
-0.5967067752730069,
-0.5705369196752739,
-0.5456928762990243,
-0.5221486779849437,
-0.49987423659745156,
-0.4788360072111326
],
[
-1.6135261389520839,
-1.6442695540157208,
-1.6722733241746022,
-1.6972249211173105,
-1.7188304103873446,
-1.7368225803455153,
-1.7509688077695815,
-1.7610781627332872,
-1.7670072993824792,
-1.7686647768750636,
-1.7660135862279693,
-1.759071801200623,
-1.7479114045627677,
-1.7326554514663277,
-1.7134738127364773,
-1.690577792180468,
-1.6642139364354311,
-1.6346573576477277,
-1.6022048725905067,
-1.567168230575654,
-1.5298676605405963,
-1.4906259190177953,
-1.4497629694839946,
-1.4075913737869332,
-1.3644124312547043,
-1.3205130630123387,
-1.276163409152791,
-1.231615084900686,
-1.1871000281455493,
-1.142829863586114,
-1.098995706873595,
-1.0557683342101956,
-1.013298647615899,
-0.9717183724857112,
-0.9311409313051167,
-0.8916624448686217,
-0.8533628196325591,
-0.8163068866558245,
-0.7805455637825747,
-0.7461170182253183,
-0.7130478115003012,
-0.6813540127740588,
-0.6510422701484387,
-0.622110832302675,
-0.5945505152916977,
-0.5683456112364829,
-0.5434747371981149,
-0.5199116237614414,
-0.4976258438185144,
-0.4765834827829951
],
[
-1.606024550901718,
-1.636718885335248,
-1.664694164287258,
-1.6896366380677423,
-1.7112507184451213,
-1.729267275590956,
-1.7434516877434276,
-1.7536111154910967,
-1.7596005220764217,
-1.7613270691884515,
-1.7587526610172217,
-1.7518945621003066,
-1.7408241548944012,
-1.7256640167049901,
-1.7065835763374753,
-1.6837936588278921,
-1.657540245966373,
-1.6280977765153761,
-1.595762288355527,
-1.560844669921151,
-1.5236642443702766,
-1.4845428609030775,
-1.4437996172803584,
-1.4017462893512844,
-1.358683500102037,
-1.3148976243332209,
-1.2706583965451483,
-1.2262171690448238,
-1.1818057540819245,
-1.1376357769221082,
-1.0938984649177668,
-1.0507647995631564,
-1.0083859630571739,
-0.9668940170567962,
-0.9264027583037042,
-0.887008703059601,
-0.8487921593788335,
-0.8118183529096319,
-0.7761385779876279,
-0.7417913511908916,
-0.7088035492447422,
-0.6771915172178766,
-0.6469621363831654,
-0.6181138439843921,
-0.5906375995183532,
-0.5645177940741727,
-0.5397331008300364,
-0.5162572660487896,
-0.4940598408890905,
-0.47310685510309525
],
[
-1.5914332625575656,
-1.6218275257209858,
-1.6495393102825862,
-1.6742572478839046,
-1.695687614338638,
-1.7135626444067622,
-1.7276486155884134,
-1.7377531572220042,
-1.7437312944340793,
-1.7454898508664412,
-1.7429899838569893,
-1.7362477835274235,
-1.7253330105719762,
-1.7103661620246116,
-1.691514133850406,
-1.6689847944881184,
-1.643020799145669,
-1.6138929669256514,
-1.5818935177957654,
-1.547329429262768,
-1.5105161278005872,
-1.471771681504373,
-1.4314116115574513,
-1.389744393908263,
-1.3470676814372298,
-1.3036652424503123,
-1.2598045843390655,
-1.2157352117127735,
-1.1716874556561758,
-1.1278718040331166,
-1.0844786607898795,
-1.041678463841874,
-0.9996220952731185,
-0.9584415233180478,
-0.918250622188556,
-0.879146122694311,
-0.8412086533805493,
-0.8045038383070269,
-0.7690834234528006,
-0.7349864089724201,
-0.7022401691238702,
-0.670861545651722,
-0.6408579037781,
-0.6122281427820029,
-0.584963655493227,
-0.5590492329508688,
-0.534463912036618,
-0.5111817651439898,
-0.48917263193530813,
-0.4684027940118496
],
[
-1.5699947572392354,
-1.5998426666477308,
-1.6270594624336958,
-1.6513397622309605,
-1.6723952666264061,
-1.6899629283834614,
-1.7038129050632869,
-1.7137557544663298,
-1.719648386487715,
-1.721398400059038,
-1.7189665833957901,
-1.7123675124053868,
-1.701668323769407,
-1.6869858518697198,
-1.6684823964802815,
-1.646360431584316,
-1.6208565794554204,
-1.5922351646113135,
-1.5607816357859572,
-1.5267961062606117,
-1.4905872184057332,
-1.4524664909860512,
-1.412743260908216,
-1.3717202872883179,
-1.3296900469867547,
-1.2869317183971807,
-1.243708824872287,
-1.2002674906733808,
-1.1568352501962242,
-1.113620344579231,
-1.0708114376068238,
-1.0285776840226049,
-0.9870690869812415,
-0.9464170865463155,
-0.9067353271925465,
-0.8681205586647449,
-0.8306536308959417,
-0.7944005497309778,
-0.7594135657754038,
-0.7257322737043845,
-0.6933847037896947,
-0.6623883912398556,
-0.6327514122296019,
-0.6044733782652558,
-0.577546382845001,
-0.5519558962826184,
-0.5276816061238256,
-0.5046982018465109,
-0.48297610354586207,
-0.4624821351037943
],
[
-1.54209104891958,
-1.5711593026446042,
-1.5976611664375648,
-1.6213006527144034,
-1.6417982803301099,
-1.658898937565632,
-1.6723795397777796,
-1.6820559638382235,
-1.6877887931717805,
-1.689487516897989,
-1.6871129691022362,
-1.6806779437138535,
-1.6702460560395802,
-1.6559290303668703,
-1.6378826683588823,
-1.6163017953804149,
-1.5914144955217677,
-1.5634759368834896,
-1.5327620628976832,
-1.4995633887484454,
-1.4641790990737733,
-1.4269115979563591,
-1.3880616178388498,
-1.3479239528244262,
-1.3067838455701493,
-1.2649140267107921,
-1.222572381908805,
-1.1800002041177167,
-1.137420976964101,
-1.0950396285157933,
-1.0530421921928663,
-1.0115958122507043,
-0.970849034239649,
-0.9309323253521684,
-0.8919587749710507,
-0.8540249315343861,
-0.8172117376667949,
-0.7815855311353378,
-0.7471990844070329,
-0.7140926603186641,
-0.6822950655764624,
-0.6518246874799702,
-0.6226905024314358,
-0.5948930474864843,
-0.5684253484689293,
-0.5432738000606958,
-0.5194189948356391,
-0.49683649947941366,
-0.47549757746883037,
-0.45536985831097543
],
[
-1.5082263116637082,
-1.5363021353582191,
-1.5618881091409276,
-1.584700665047098,
-1.6044721603186363,
-1.6209582934831537,
-1.6339453231621843,
-1.6432566114267442,
-1.6487580597597258,
-1.650362104768567,
-1.648030070502415,
-1.6417728113980168,
-1.6316497056133015,
-1.617766160385104,
-1.6002698631785846,
-1.5793460542726003,
-1.555212111231421,
-1.5281117286068957,
-1.4983089529442968,
-1.4660822991682558,
-1.4317191344021272,
-1.3955104730626195,
-1.3577462856764897,
-1.3187113855289168,
-1.2786819235186995,
-1.2379224933743254,
-1.1966838270296882,
-1.1552010433581497,
-1.113692402159529,
-1.0723585085968452,
-1.0313819103822661,
-0.9909270300855952,
-0.9511403772006279,
-0.9121509883634421,
-0.8740710487934727,
-0.8369966531635398,
-0.8010086693513918,
-0.7661736736345466,
-0.7325449306962256,
-0.7001633962131582,
-0.6690587237457432,
-0.6392502611336031,
-0.6107480246267204,
-0.5835536415812368,
-0.5576612547566491,
-0.5330583831090265,
-0.5097267355246263,
-0.48764297522121813,
-0.4667794335976867,
-0.4471047731706156
],
[
-1.4690047565364401,
-1.4959020672658716,
-1.520396290069634,
-1.5422187684463364,
-1.5611161796676505,
-1.576857396951575,
-1.5892401600622659,
-1.5980971276302727,
-1.603300923548044,
-1.6047678749578895,
-1.6024602523928175,
-1.596386943951176,
-1.5866026084802078,
-1.5732054462776297,
-1.556333793885277,
-1.5361617908725411,
-1.5128943831855999,
-1.4867619237936998,
-1.4580146119667705,
-1.4269169825438475,
-1.3937426204636554,
-1.3587692373480547,
-1.3222742089740929,
-1.2845306371882217,
-1.245803968653764,
-1.2063491766136238,
-1.166408490911115,
-1.126209645747682,
-1.0859646036687558,
-1.045868707462236,
-1.0061002083297166,
-0.966820118126865,
-0.9281723349779829,
-0.8902839945363863,
-0.8532660030649881,
-0.8172137129290674,
-0.7822077057006751,
-0.7483146526330857,
-0.7155882266103177,
-0.6840700437058784,
-0.6537906161398006,
-0.624770301679813,
-0.5970202373933314,
-0.5705432481398418,
-0.5453347223260165,
-0.5213834492623614,
-0.4986724139951374,
-0.4771795467756923,
-0.4568784254036896,
-0.4377389295709171
],
[
-1.425105594072107,
-1.4506693178835797,
-1.4739253022838936,
-1.494621671570851,
-1.5125212684918725,
-1.5274078956323083,
-1.5390923699067964,
-1.5474180205317714,
-1.5522652923840192,
-1.5535551867990425,
-1.5512513666440586,
-1.5453608561900227,
-1.5359333650703553,
-1.523059349401729,
-1.5068669861599684,
-1.4875182771933042,
-1.4652045178382989,
-1.4401413649855703,
-1.4125637246698437,
-1.3827206541551722,
-1.350870442118937,
-1.3172759964062257,
-1.2822006347237855,
-1.2459043416408666,
-1.2086405267612867,
-1.1706532947385995,
-1.132175218252288,
-1.093425590097762,
-1.0546091198439427,
-1.0159150335799336,
-0.9775165315128735,
-0.9395705569715727,
-0.9022178311176462,
-0.865583109825577,
-0.829775622300698,
-0.7948896546755775,
-0.7610052457606951,
-0.7281889660981936,
-0.6964947553170544,
-0.6659647964081484,
-0.6366304088635941,
-0.6085129456262642,
-0.5816246814642374,
-0.5559696827303405,
-0.5315446505083229,
-0.5083397309095117,
-0.486339287795142,
-0.4655226344880026,
-0.44586472212954786,
-0.427336783260332
],
[
-1.3772567101140183,
-1.4013650548460617,
-1.4232679118092872,
-1.4427314086250733,
-1.4595357391513286,
-1.4734807562944945,
-1.4843913829513995,
-1.4921225286372477,
-1.4965632240084952,
-1.497639741357659,
-1.4953175460832013,
-1.4896020101115015,
-1.4805379021439045,
-1.4682077428166531,
-1.4527291699244846,
-1.4342514973331786,
-1.412951671191034,
-1.389029830494958,
-1.36270466905925,
-1.3342087760454324,
-1.3037841059848483,
-1.2716776998360868,
-1.2381377486756038,
-1.203410063100167,
-1.1677349856882775,
-1.1313447617444332,
-1.0944613654029371,
-1.0572947640154842,
-1.0200415933538394,
-0.9828842091252427,
-0.9459900761317261,
-0.9095114545815779,
-0.8735853430683534,
-0.8383336390998097,
-0.80386348037401,
-0.7702677329186176,
-0.7376255954567181,
-0.7060032927265625,
-0.6754548338088258,
-0.6460228146966185,
-0.6177392473121969,
-0.5906263998928737,
-0.5646976361211117,
-0.5399582425607674,
-0.5164062358938725,
-0.4940331431471413,
-0.4728247495750403,
-0.4527618101479962,
-0.4338207217010225,
-0.4159741537492738
],
[
-1.3262085591855244,
-1.3487733127902546,
-1.3692400088327237,
-1.3873933867578987,
-1.4030315567678373,
-1.4159709491265406,
-1.4260510879644663,
-1.4331389304744186,
-1.437132531315788,
-1.4379638354594935,
-1.4356004635589712,
-1.4300464234230406,
-1.4213417506890123,
-1.409561144253812,
-1.3948117124817672,
-1.3772299820183465,
-1.3569783416106795,
-1.3342410997253356,
-1.3092203291477924,
-1.282131656944964,
-1.253200137126519,
-1.2226563188201844,
-1.1907325971399054,
-1.1576599090217161,
-1.1236648134470735,
-1.0889669754998315,
-1.0537770570295786,
-1.0182950034169327,
-0.9827087059133346,
-0.9471930119592171,
-0.9119090513764117,
-0.8770038439526866,
-0.8426101532552942,
-0.8088465521237979,
-0.7758176668404249,
-0.7436145691545415,
-0.7123152878972767,
-0.6819854146681208,
-0.6526787808611629,
-0.6244381860204967,
-0.5972961601022071,
-0.5712757446321287,
-0.5463912799622318,
-0.5226491878369933,
-0.5000487402877012,
-0.47858280748617144,
-0.45823857862309036,
-0.43899825114377566,
-0.4208396847903473,
-0.4037370178774681
],
[
-1.2727097269876502,
-1.2936748669799765,
-1.3126528254436174,
-1.3294470217345065,
-1.343873509255423,
-1.355765310692161,
-1.3649765859047724,
-1.3713864206452104,
-1.37490203869261,
-1.3754612731953462,
-1.373034180247577,
-1.3676237327698988,
-1.3592655891697478,
-1.3480269833831753,
-1.33400482649095,
-1.3173231425389993,
-1.2981299814612304,
-1.2765939604744376,
-1.2529005834088216,
-1.227248477228571,
-1.1998456688383814,
-1.170906005480899,
-1.1406458006663638,
-1.1092807663130224,
-1.0770232718580286,
-1.044079953351811,
-1.010649680437416,
-0.9769218768102942,
-0.9430751802019197,
-0.9092764209281504,
-0.875679893292692,
-0.8424268912926239,
-0.8096454787817763,
-0.7774504641699649,
-0.7459435505632768,
-0.7152136337184276,
-0.6853372220708025,
-0.6563789552259722,
-0.6283921995430366,
-0.6014197016863889,
-0.5754942832116761,
-0.5506395613373095,
-0.5268706830081623,
-0.504195061170394,
-0.4826131038414364,
-0.46211892807902355,
-0.4427010523330015,
-0.42434306191025173,
-0.4070242434040032,
-0.3907201849412413
],
[
-1.2174854563278725,
-1.2368244844773963,
-1.2542889652505664,
-1.2697006218095739,
-1.282893042549122,
-1.2937154475815051,
-1.3020362977676438,
-1.3077465748713155,
-1.3107625724068996,
-1.3110280619071204,
-1.3085157355449244,
-1.3032278689857004,
-1.2951961933328104,
-1.2844810077067879,
-1.2711696008499813,
-1.2553740787694476,
-1.2372287146142562,
-1.2168869466332892,
-1.1945181509921559,
-1.1703043098927801,
-1.1444366836271966,
-1.117112579771982,
-1.0885322954240106,
-1.0588962906577246,
-1.028402634385674,
-0.9972447483263005,
-0.9656094613147203,
-0.9336753749632763,
-0.9016115327172848,
-0.8695763775400813,
-0.837716978590046,
-0.8061685040564014,
-0.775053915518104,
-0.744483858502604,
-0.7145567240914995,
-0.6853588572220046,
-0.6569648885753232,
-0.6294381684714498,
-0.6028312828832143,
-0.5771866334510811,
-0.5525370651588749,
-0.5289065270752176,
-0.5063107532472746,
-0.4847579524345478,
-0.46424949688142825,
-0.44478060174289613,
-0.42634098809558085,
-0.4089155236866875,
-0.39248483669498746,
-0.37702589880295756
],
[
-1.161220081274125,
-1.1789325353222384,
-1.19488325085719,
-1.2089115375084172,
-1.2208677827102767,
-1.2306167034033022,
-1.2380404515392027,
-1.2430414356079036,
-1.2455447288348407,
-1.2454999536919746,
-1.242882559909969,
-1.2376944463301534,
-1.2299639123421042,
-1.2197449590442575,
-1.2071159908324247,
-1.1921779927838612,
-1.175052276735555,
-1.155877898983001,
-1.1348088554300029,
-1.112011156747594,
-1.087659877953779,
-1.0619362652455615,
-1.0350249693059477,
-1.007111459911318,
-0.9783796624829206,
-0.9490098440030243,
-0.919176763940245,
-0.8890480957701501,
-0.8587831164253703,
-0.8285316545213863,
-0.7984332833447632,
-0.768616741168229,
-0.7391995592558608,
-0.710287876719947,
-0.6819764209804084,
-0.654348632770739,
-0.6274769152711535,
-0.6014229878993004,
-0.5762383264478025,
-0.5519646725474455,
-0.528634596797785,
-0.5062721013012134,
-0.4848932487340806,
-0.4645068064682599,
-0.44511489560431083,
-0.4267136360815065,
-0.40929378028140795,
-0.3928413287316195,
-0.3773381226379148,
-0.36276240901899526
],
[
-1.1045438371400906,
-1.1206513969729375,
-1.1351087750373667,
-1.147771907014048,
-1.1585070154072983,
-1.167193403563354,
-1.1737261156110201,
-1.178018352041955,
-1.1800035371664783,
-1.1796369490309617,
-1.1768968432622466,
-1.1717850277253044,
-1.1643268724799725,
-1.1545707668888834,
-1.1425870606835482,
-1.1284665466168375,
-1.1123185578832604,
-1.0942687632735915,
-1.0744567471373654,
-1.0530334602268023,
-1.0301586222913626,
-1.005998148955326,
-0.9807216650416357,
-0.9545001551169829,
-0.9275037904828803,
-0.8998999607890541,
-0.8718515283653285,
-0.8435153145419972,
-0.8150408197881602,
-0.7865691734558579,
-0.7582323042015713,
-0.7301523186368837,
-0.7024410732778764,
-0.6751999232496759,
-0.6485196302946805,
-0.6224804122819971,
-0.5971521164931889,
-0.572594499360722,
-0.5488575959765555,
-0.5259821635062731,
-0.5040001835908304,
-0.4829354098585673,
-0.4628039477778184,
-0.4436148552334731,
-0.42537075339126484,
-0.4080684386036687,
-0.3916994872948203,
-0.3762508469224739,
-0.3617054072370508,
-0.3480425471268783
],
[
-1.0480240381527661,
-1.0625665663763784,
-1.075567984693858,
-1.0868997377400782,
-1.096442776895618,
-1.1040899530146935,
-1.1097482875464122,
-1.1133410339606769,
-1.1148094464762761,
-1.114114183961512,
-1.1112362926946364,
-1.1061777310912912,
-1.0989614208763496,
-1.0896308307447027,
-1.0782491186681455,
-1.0648978762862118,
-1.049675532284377,
-1.0326954807835145,
-1.014084005459229,
-0.993978070683897,
-0.9725230480336575,
-0.9498704407963319,
-0.9261756614857145,
-0.9015959086155552,
-0.876288179818609,
-0.8504074493844603,
-0.8241050298584967,
-0.7975271297730194,
-0.7708136130248134,
-0.7440969599209071,
-0.7175014254600687,
-0.6911423869213136,
-0.6651258701830387,
-0.6395482422736452,
-0.6144960563351448,
-0.5900460343537133,
-0.5662651725793922,
-0.5432109544439007,
-0.5209316559301053,
-0.4994667287038125,
-0.47884724685413727,
-0.45909640377665795,
-0.44023004655111775,
-0.4222572360922401,
-0.40518082236644115,
-0.3889980250462586,
-0.3737010110942185,
-0.35927746190355014,
-0.3457111237508571,
-0.3329823364121144
],
[
-0.9921602418082601,
-1.0051920055085655,
-1.0167882278932119,
-1.0268346602746194,
-1.035225804024869,
-1.0418669552622069,
-1.04667614031709,
-1.0495858716497841,
-1.0505446578910953,
-1.0495182099502824,
-1.0464902971296066,
-1.0414632219966369,
-1.0344578992405338,
-1.025513540615425,
-1.0146869641215324,
-1.0020515597205029,
-0.987695955310273,
-0.9717224348991942,
-0.9542451657497738,
-0.9353882928414675,
-0.9152839577008945,
-0.8940702949982805,
-0.8718894549205791,
-0.8488856928199289,
-0.8252035605639566,
-0.8009862268573438,
-0.7763739469298313,
-0.751502695652658,
-0.7265029725102263,
-0.7014987819869424,
-0.6766067888346805,
-0.6519356443209672,
-0.6275854768493039,
-0.6036475382068911,
-0.5802039950456997,
-0.5573278539640137,
-0.535083007663592,
-0.5135243890640618,
-0.4926982199262673,
-0.47264234044624853,
-0.4533866064140065,
-0.43495334087173176,
-0.41735782773905683,
-0.4006088355793139,
-0.3847091605364643,
-0.36965617844951715,
-0.3554423972172429,
-0.34205600160705196,
-0.3294813838440843,
-0.3176996544478772
],
[
-0.9373827895924226,
-0.9489690209267557,
-0.9592209767598477,
-0.9680374838107692,
-0.9753253954291725,
-0.9810013369800392,
-0.9849933539734913,
-0.9872424067469632,
-0.9877036586700104,
-0.9863475111626558,
-0.9831603479341098,
-0.9781449621420548,
-0.9713206528408037,
-0.9627229902264876,
-0.9524032618932159,
-0.9404276237672418,
-0.9268759889344846,
-0.9118406947828609,
-0.895424993545613,
-0.8777414134807762,
-0.8589100377718399,
-0.8390567461399585,
-0.8183114605528301,
-0.7968064317572802,
-0.7746745980879548,
-0.7520480424938868,
-0.7290565682840187,
-0.7058264089462538,
-0.6824790826870893,
-0.6591303981452861,
-0.6358896140730382,
-0.6128587526308951,
-0.5901320632639162,
-0.5677956318607849,
-0.5459271279915126,
-0.5245956814280439,
-0.5038618778435843,
-0.48377786254368327,
-0.4643875402977903,
-0.44572685881616125,
-0.4278241631556511,
-0.4107006083398621,
-0.3943706177370443,
-0.37884237523698294,
-0.36411833997978527,
-0.3501957732802383,
-0.33706726841996837,
-0.3247212751015741,
-0.31314261152946665,
-0.30231295825934923
],
[
-0.8840540189803993,
-0.8942678978939017,
-0.9032438757100928,
-0.9108926363754839,
-0.9171322073982601,
-0.9218894495522999,
-0.9251014606366947,
-0.926716848312032,
-0.9266968295425264,
-0.9250161190200011,
-0.9216635758875709,
-0.9166425866949969,
-0.9099711722430149,
-0.9016818161674867,
-0.8918210231147833,
-0.880448623553296,
-0.867636850142619,
-0.8534692167773554,
-0.8380392357390556,
-0.8214490107958754,
-0.8038077447004681,
-0.7852301985797177,
-0.765835138486307,
-0.7457438012230511,
-0.7250784077844922,
-0.7039607486804343,
-0.6825108612569059,
-0.6608458150942281,
-0.6390786177615491,
-0.6173172497089298,
-0.5956638339036787,
-0.5742139429565594,
-0.5530560439074158,
-0.5322710785148377,
-0.5119321747924395,
-0.49210448363884896,
-0.47284513271931217,
-0.45420328828836576,
-0.43622031442014286,
-0.4189300181653628,
-0.40235896850832087,
-0.3865268766712484,
-0.37144702531007956,
-0.35712673445293364,
-0.3435678526208046,
-0.33076726239729537,
-0.3187173907281774,
-0.30740671537560493,
-0.2968202601691563,
-0.2869400729332844
],
[
-0.8324714478080186,
-0.8413915342056985,
-0.8491648079596805,
-0.85571263515626,
-0.8609630872611955,
-0.8648522135354735,
-0.8673252380164151,
-0.8683376449674297,
-0.8678561186874818,
-0.8658593072959495,
-0.8623383854030249,
-0.8572973971485105,
-0.8507533685497188,
-0.8427361859850704,
-0.8332882454745834,
-0.8224638847472084,
-0.8103286165167614,
-0.7969581866307771,
-0.7824374846321709,
-0.7668593367246641,
-0.7503232122126169,
-0.7329338743347581,
-0.7148000052334138,
-0.6960328328302202,
-0.676744784855654,
-0.657048192422399,
-0.6370540625268954,
-0.6168709358480204,
-0.5966038432798154,
-0.5763533718338464,
-0.5562148478891324,
-0.5362776432417042,
-0.5166246069890096,
-0.49733162395525043,
-0.47846729811290956,
-0.4600927572924792,
-0.44226157342690564,
-0.42501979069787776,
-0.4084060522977544,
-0.3924518151556118,
-0.37718164095322626,
-0.3626135511143599,
-0.348759433204092,
-0.3356254863142444,
-0.3232126935034889,
-0.3115173101539185,
-0.3005313581345186,
-0.2902431168548316,
-0.2806376035783902,
-0.2716970366801378
],
[
-0.7828723010613196,
-0.7905804053569412,
-0.7972272769744458,
-0.80274385230027,
-0.8070671821104511,
-0.8101415200600917,
-0.8119193453720388,
-0.8123622906608563,
-0.8114419473977281,
-0.809140524384662,
-0.8054513386458205,
-0.8003791231576987,
-0.7939401415514409,
-0.7861621060055369,
-0.7770839006603554,
-0.7667551186930737,
-0.7552354263995771,
-0.7425937720096161,
-0.7289074603635655,
-0.7142611169406428,
-0.698745566065717,
-0.6824566485214314,
-0.6654940033883987,
-0.6479598378921174,
-0.6299577075212157,
-0.6115913268551769,
-0.5929634295336097,
-0.5741746937095247,
-0.5553227472148823,
-0.5365012645499085,
-0.5177991656827465,
-0.4992999244889337,
-0.4810809924444167,
-0.46321334089319666,
-0.4457611228450725,
-0.4287814528511016,
-0.4123243011150488,
-0.39643249571274974,
-0.3811418247068449,
-0.3664812281613319,
-0.3524730686649865,
-0.33913346802611966,
-0.3264726973313843,
-0.31449560756128947,
-0.30320208838530305,
-0.2925875435544064,
-0.2826433723871229,
-0.2733574481177554,
-0.2647145852560202,
-0.2566969895176773
],
[
-0.7354388498783824,
-0.7420183070389594,
-0.7476165278197813,
-0.7521729827668736,
-0.7556327135242673,
-0.7579472660990849,
-0.7590755670608402,
-0.7589847191828094,
-0.7576506942637733,
-0.7550589030633804,
-0.7512046253623557,
-0.7460932869778143,
-0.739740574929076,
-0.7321723866308303,
-0.7234246137403677,
-0.713542765861506,
-0.7025814434926632,
-0.6906036732256704,
-0.6776801211367537,
-0.6638882025029678,
-0.6493111074265072,
-0.6340367627075763,
-0.6181567504632428,
-0.60176520365711,
-0.5849576980014354,
-0.567830158727984,
-0.5504777995844553,
-0.5329941101560681,
-0.5154699062611043,
-0.49799245671611614,
-0.48064469817930855,
-0.4635045480151946,
-0.44664432313848246,
-0.43013027056860986,
-0.41402221296745645,
-0.3983733097917569,
-0.38322993195920385,
-0.3686316452270266,
-0.3546112949568261,
-0.34119518273219296,
-0.32840332352903934,
-0.3162497708998513,
-0.3047429969636133,
-0.2938863138865906,
-0.28367832394609915,
-0.2741133861071047,
-0.26518208820835065,
-0.2568717152409997,
-0.24916670570416388,
-0.24204908954628213
],
[
-0.6903041406201345,
-0.6958384401281268,
-0.7004659628968631,
-0.7041337598054153,
-0.7067939563636949,
-0.7084045552483125,
-0.7089301896220138,
-0.708342808165092,
-0.7066222737005261,
-0.7037568589684428,
-0.6997436254422118,
-0.6945886739776399,
-0.688307259411332,
-0.6809237648107427,
-0.672471534751091,
-0.6629925705778721,
-0.6525370939507373,
-0.6411629879257337,
-0.6289351273277303,
-0.6159246121459752,
-0.6022079191481295,
-0.5878659878849113,
-0.5729832578099243,
-0.5576466734455909,
-0.5419446744679645,
-0.525966187332225,
-0.5097996346684152,
-0.4935319781647287,
-0.4772478100131824,
-0.4610285071778233,
-0.4449514616952739,
-0.4290893988578116,
-0.4135097933968891,
-0.39827439164457035,
-0.3834388451109869,
-0.3690524580434137,
-0.3551580484475353,
-0.3417919189215355,
-0.3289839306708682,
-0.31675767142849054,
-0.305130705866392,
-0.294114895566,
-0.28371677477188073,
-0.27393796797696934,
-0.2647756358141079,
-0.256222936653997,
-0.24826949260595832,
-0.24090185015243004,
-0.23410392729634133,
-0.22785744075583603
],
[
-0.6475577945558775,
-0.6521295138881682,
-0.6558635243320687,
-0.6587135879089276,
-0.6606380897570674,
-0.6616007307048581,
-0.6615711776281501,
-0.6605256560344945,
-0.6584474700427574,
-0.6553274361913508,
-0.6511642192700179,
-0.6459645605581974,
-0.639743391370076,
-0.6325238275379328,
-0.6243370432859313,
-0.6152220257324491,
-0.6052252138975128,
-0.5944000284904664,
-0.5828063008462901,
-0.5705096111331576,
-0.557580547365658,
-0.544093897852519,
-0.5301277905305416,
-0.5157627932443687,
-0.5010809894822766,
-0.48616504441652864,
-0.47109727634603904,
-0.45595874879149345,
-0.4408283985052709,
-0.4257822144552934,
-0.4108924823222475,
-0.39622710810575934,
-0.3818490329715787,
-0.36781574943204365,
-0.35417892633935777,
-0.34098414706208335,
-0.32827076176289094,
-0.31607185111370495,
-0.3044142953224295,
-0.2933189392518166,
-0.2828008418982666,
-0.2728695967142343,
-0.2635297082697452,
-0.25478101054192204,
-0.2466191126133329,
-0.23903585861747068,
-0.23201979023622588,
-0.22555660176896852,
-0.21962957961023233,
-0.2142200197724501
],
[
-0.6072516489621563,
-0.6109416386015404,
-0.6138578154976542,
-0.6159598675105028,
-0.6172116965145239,
-0.6175820185155461,
-0.6170449277548775,
-0.6155804120434428,
-0.6131748071082971,
-0.609821178675386,
-0.6055196223259929,
-0.6002774727997775,
-0.5941094163062128,
-0.587037501467667,
-0.5790910466638036,
-0.5703064436918956,
-0.5607268597225245,
-0.5504018414513806,
-0.5393868270822758,
-0.5277425733032213,
-0.5155345057395644,
-0.50283200250929,
-0.4897076215039978,
-0.4762362829208402,
-0.46249441941805924,
-0.4485591070877657,
-0.4345071912374484,
-0.42041442171374666,
-0.4063546131173562,
-0.3923988456359574,
-0.37861472222403647,
-0.3650656973347034,
-0.35181049122603847,
-0.33890260193702204,
-0.3263899243458266,
-0.31431448237158355,
-0.30271227654422805,
-0.291613245111066,
-0.28104133288601507,
-0.2710146584903502,
-0.2615457677474734,
-0.252641958960797,
-0.24430566470083537,
-0.23653487453136712,
-0.2293235837055827,
-0.22266225409556495,
-0.21653827529050163,
-0.21093641572075073,
-0.20583925566797878,
-0.20122759597200623
],
[
-0.5694050855702159,
-0.5722918572314301,
-0.5744638154005932,
-0.5758858694784913,
-0.5765267732422602,
-0.5763596471925121,
-0.5753624703501882,
-0.5735185309838183,
-0.570816826134293,
-0.5672524004894766,
-0.5628266161238539,
-0.5575473458228545,
-0.551429084109638,
-0.5444929716275504,
-0.5367667301435223,
-0.5282845070676054,
-0.519086629978626,
-0.5092192731651503,
-0.4987340396089678,
-0.4876874631472812,
-0.4761404367606995,
-0.46415757407265135,
-0.451806512249995,
-0.4391571656049861,
-0.4262809403515747,
-0.4132499221817326,
-0.4001360495900489,
-0.38701028713689756,
-0.37394181400555937,
-0.36099724413476186,
-0.3482398947159212,
-0.33572911974001773,
-0.32351972438513543,
-0.31166147422991153,
-0.30019871053133795,
-0.28917007920824245,
-0.2786083769395842,
-0.2685405132411076,
-0.2589875829061259,
-0.24996503916931856,
-0.2414829546990106,
-0.2335463552604342,
-0.2261556097064178,
-0.2193068598041762,
-0.21299247415635625,
-0.20720151191635738,
-0.20192018390257593,
-0.19713230086187494,
-0.1928197008292588,
-0.18896264963237874
],
[
-0.5340099522363518,
-0.5361692274786579,
-0.5376681030078083,
-0.5384760821612968,
-0.5385661793333928,
-0.5379153768194751,
-0.5365050558920486,
-0.5343213933828412,
-0.5313557153061411,
-0.5276047995404238,
-0.5230711202724494,
-0.5177630277755284,
-0.5116948581072627,
-0.5048869684336625,
-0.49736569487473403,
-0.4891632309827223,
-0.48031742617507933,
-0.47087150462642746,
-0.4608737062665994,
-0.450376852639243,
-0.4394378414653941,
-0.4281170748608888,
-0.41647782731449656,
-0.4045855607873873,
-0.3925071956772369,
-0.38031034791633,
-0.3680625441242449,
-0.35583042844906443,
-0.34367897639017875,
-0.33167073232871613,
-0.3198650884812104,
-0.308317623297351,
-0.29707951671900057,
-0.2861970580409099,
-0.2757112593107216,
-0.26565758336787504,
-0.2560657909947577,
-0.24695990661691936,
-0.23835829699754207,
-0.23027385288183055,
-0.22271425994251015,
-0.2156823429097987,
-0.20917646553107294,
-0.20319096893805866,
-0.1977166319264283,
-0.19274113832612094,
-0.18824953879121709,
-0.18422469671234187,
-0.180647710342283,
-0.17749830547020606
],
[
-0.5010350297368584,
-0.5025394124634596,
-0.5034335561215737,
-0.5036910018483662,
-0.503288501644062,
-0.5022064199196852,
-0.5004291134367064,
-0.4979452823550472,
-0.49474828526388304,
-0.4908364113898036,
-0.48621310364748727,
-0.4808871268008227,
-0.474872675715047,
-0.4681894194757037,
-0.4608624780023952,
-0.45292232866958937,
-0.44440464134499014,
-0.43535004115782294,
-0.425803799216384,
-0.4158154524191924,
-0.4054383544736011,
-0.3947291612865511,
-0.38374725506855534,
-0.3725541128380926,
-0.36121262656523045,
-0.34978638396424444,
-0.3383389209141495,
-0.32693295858218807,
-0.3156296404166019,
-0.30448778606405913,
-0.2935631807007212,
-0.2829079189590431,
-0.2725698223106131,
-0.26259194722203827,
-0.2530121985541638,
-0.2438630586141316,
-0.235171437269574,
-0.22695864302938074,
-0.2192404695145903,
-0.21202738681809763,
-0.20532482332581647,
-0.19913352092927827,
-0.1934499452965056,
-0.188266732903006,
-0.1835731576426044,
-0.17935560174767795,
-0.1755980181406278,
-0.17228237393102774,
-0.16938906733679804,
-0.1668973126799389
],
[
-0.4704300295758116,
-0.47134877242680695,
-0.4717035236700924,
-0.4714713718066925,
-0.4706323459997931,
-0.46916977078713107,
-0.46707060278033274,
-0.46432574323003895,
-0.4609303204102675,
-0.4568839359670591,
-0.45219086967638134,
-0.4468602374520083,
-0.44090609792000457,
-0.43434750341546025,
-0.4272084918430489,
-0.4195180164623086,
-0.41130981130370625,
-0.4026221905929541,
-0.39349778126830914,
-0.38398318844092594,
-0.374128594503942,
-0.3639872935847315,
-0.35361516420559347,
-0.3430700844193926,
-0.3324112953575392,
-0.32169872108396314,
-0.3109922548695371,
-0.30035102441032313,
-0.2898326509672752,
-0.27949251968653355,
-0.26938308018427204,
-0.2595531975217056,
-0.2500475736360088,
-0.24090625788102804,
-0.2321642624584147,
-0.22385129426915806,
-0.21599160938682294,
-0.20860399043340205,
-0.20170184122372814,
-0.19529338773708682,
-0.18938197027252268,
-0.1839664088615084,
-0.1790414227446976,
-0.17459808486360018,
-0.17062429362079157,
-0.16710524629157342,
-0.16402390108082177,
-0.161361417603184,
-0.15909756827918486,
-0.15721111561629697
],
[
-0.4421291326536786,
-0.4425279735503165,
-0.44240549367882676,
-0.4417418981395166,
-0.4405200894823066,
-0.4387259825755795,
-0.43634880454497527,
-0.43338137460035886,
-0.4298203585763808,
-0.42566649310194127,
-0.42092477447964227,
-0.4156046075900408,
-0.40971991042625333,
-0.4032891702025696,
-0.39633544735690374,
-0.38888632417613034,
-0.38097379521597785,
-0.3726340971710177,
-0.36390747639289034,
-0.35483789288376477,
-0.3454726603459063,
-0.3358620227941883,
-0.3260586693900469,
-0.316117190585147,
-0.30609348041345286,
-0.29604409186061065,
-0.28602555464896307,
-0.2760936674271457,
-0.26630277909377487,
-0.2567050765821818,
-0.247349898578211,
-0.23828309597744157,
-0.22954646005357537,
-0.2211772380209336,
-0.21320775279478454,
-0.20566513936224962,
-0.1985712045920962,
-0.19194241106243415,
-0.18578997922585494,
-0.1801200966222546,
-0.1749342184337841,
-0.17022944079164504,
-0.16599892698621044,
-0.16223236697494914,
-0.1589164520418297,
-0.1560353487716326,
-0.15357115928881038,
-0.15150435764480918,
-0.14981419506665827,
-0.14847906933155208
],
[
-0.4160540944963482,
-0.4159951453119507,
-0.4154542939482774,
-0.41441448492225563,
-0.4128611411408952,
-0.4107824446871624,
-0.4081696052964847,
-0.4050171121028522,
-0.4013229641868621,
-0.3970888754674613,
-0.39232044954035283,
-0.3870273201732358,
-0.3812232533150076,
-0.37492620665748455,
-0.3681583430007873,
-0.3609459939180226,
-0.35331957049764506,
-0.3453134182768084,
-0.33696561388855517,
-0.3283177014628902,
-0.3194143674890556,
-0.31030305371490263,
-0.30103350878600743,
-0.29165728076745645,
-0.28222715449023916,
-0.27279653984333585,
-0.2634188196718108,
-0.2541466687613424,
-0.2450313583340984,
-0.23612206330581798,
-0.22746519193387393,
-0.21910375903862667,
-0.21107682432126407,
-0.2034190161182493,
-0.1961601580709108,
-0.18932501172159177,
-0.18293314230572655,
-0.1769989085499345,
-0.17153157080375991,
-0.1665355060279563,
-0.16201051361002972,
-0.15795219303169583,
-0.1543523731668336,
-0.1511995733026309,
-0.14847947754339108,
-0.1461754066869766,
-0.14426877456464804,
-0.14273951886488734,
-0.14156649936030508,
-0.14072785905205099
],
[
-0.3921169522112894,
-0.3916586265566727,
-0.390754870505306,
-0.3893910383988304,
-0.38755476541704015,
-0.38523621901450833,
-0.38242834025277794,
-0.3791270712243071,
-0.375331564675089,
-0.3710443718794425,
-0.3662716048006105,
-0.361023068580287,
-0.35531236043636927,
-0.3491569311092385,
-0.3425781050835105,
-0.3356010559299135,
-0.3282547332715602,
-0.3205717380983626,
-0.3125881434598644,
-0.3043432579960692,
-0.2958793303641576,
-0.2872411934393997,
-0.2784758482701545,
-0.269631989206087,
-0.26075947344208505,
-0.25190874044893574,
-0.24313018937584807,
-0.2344735254279232,
-0.22598708928412647,
-0.2177171865785661,
-0.20970743698569927,
-0.2019981641350196,
-0.19462584803561767,
-0.1876226605907757,
-0.18101610196363005,
-0.1748287510866321,
-0.16907813782515113,
-0.1637767377789896,
-0.1589320841457793,
-0.1545469851957756,
-0.15061983130697187,
-0.14714497254321668,
-0.14411314652017326,
-0.14151193664799577,
-0.13932624244925929,
-0.13753874612701789,
-0.13613036250021604,
-0.1350806624851555,
-0.13436826322026796,
-0.13397118053489387
],
[
-0.3702223729157409,
-0.3694193442376412,
-0.3682046918542654,
-0.36656589216388635,
-0.36449252391083165,
-0.36197649415472444,
-0.35901225596803044,
-0.3555970145598607,
-0.35173091840128823,
-0.34741723182576845,
-0.3426624854962921,
-0.33747660106613486,
-0.3318729863123534,
-0.325868596991188,
-0.3194839616567101,
-0.31274316570676963,
-0.30567379098805014,
-0.29830680742613613,
-0.2906764133766542,
-0.2828198217583646,
-0.27477698957603947,
-0.2665902892246328,
-0.25830412104545064,
-0.24996446803598737,
-0.2416183954425012,
-0.23331350020792696,
-0.22509731788451315,
-0.21701669756746111,
-0.20911715850078616,
-0.2014422449991652,
-0.19403289888502206,
-0.18692687036725908,
-0.1801581887910101,
-0.17375671364533174,
-0.16774778346462316,
-0.16215197587005603,
-0.1569849863001116,
-0.1522576265388914,
-0.14797593767003225,
-0.14414140627351735,
-0.14075126812598038,
-0.13779888071997182,
-0.1352741446796445,
-0.13316395447680285,
-0.1314526604314462,
-0.13012252642138566,
-0.12915417063016443,
-0.12852697968799753,
-0.1282194894465717,
-0.12820972820393917
],
[
-0.35026968434525196,
-0.3491728689048891,
-0.3476958263146278,
-0.34582790364498905,
-0.3435603886313783,
-0.34088671335490994,
-0.33780265115341235,
-0.33430650386911576,
-0.3303992763914775,
-0.3260848353157568,
-0.32137004840938466,
-0.3162649014585589,
-0.3107825889577319,
-0.3049395750083058,
-0.2987556207165296,
-0.29225377433516253,
-0.285460320396429,
-0.2784046841582787,
-0.2711192878639368,
-0.26363935563611307,
-0.25600266433978613,
-0.24824923850560976,
-0.24042098846665028,
-0.23256129227803035,
-0.22471452380319645,
-0.21692553157667793,
-0.20923907566512012,
-0.20169923265871526,
-0.19434878197190142,
-0.18722858956777422,
-0.18037700771927467,
-0.17382931110356503,
-0.16761719001609043,
-0.16176832048285417,
-0.15630602839303198,
-0.15124906054065756,
-0.14661146997437635,
-0.14240261684766198,
-0.1386272797107303,
-0.13528586656810515,
-0.13237471060188621,
-0.12988643257704469,
-0.12781035069921232,
-0.12613291895863654,
-0.12483817647466289,
-0.12390819267996367,
-0.12332349597344239,
-0.12306347639337312,
-0.12310675566419471,
-0.1234315204815335
],
[
-0.3321546267699744,
-0.3308111886015641,
-0.32911673645522554,
-0.3270622680431523,
-0.32464057482039477,
-0.3218464259805003,
-0.31867674689144465,
-0.3151307894119353,
-0.3112102913618413,
-0.3069196222562185,
-0.30226591225072574,
-0.29725916108710326,
-0.29191232367428177,
-0.28624136879810125,
-0.2802653073295024,
-0.2740061862104697,
-0.2674890444576439,
-0.26074182746089114,
-0.2537952560006791,
-0.24668264670426676,
-0.23943968115366354,
-0.2321041216003331,
-0.22471547228662558,
-0.21731458677064308,
-0.2099432234351295,
-0.20264355354017838,
-0.19545762872203576,
-0.1884268176552678,
-0.1815912245218979,
-0.17498910472910167,
-0.16865629567692342,
-0.1626256819450872,
-0.15692671469518105,
-0.15158500409506293,
-0.14662200103652667,
-0.1420547804097071,
-0.13789593302109981,
-0.13415356739746165,
-0.13083141682613098,
-0.12792904167074548,
-0.12544211278943407,
-0.1233627590980555,
-0.12167996106463996,
-0.12037997208469564,
-0.11944675100963442,
-0.11886239124109466,
-0.11860753441015692,
-0.1186617594198851,
-0.11900394029848949,
-0.11961256872240389
],
[
-0.3157708621091021,
-0.3142242388008242,
-0.3123538297928482,
-0.31015209020668066,
-0.3076131348872999,
-0.304732904849385,
-0.3015093291194867,
-0.2979424796879315,
-0.2940347171054307,
-0.2897908240775824,
-0.2852181242260615,
-0.28032658300037816,
-0.2751288875425888,
-0.2696405021355127,
-0.26387969571341885,
-0.25786753779705496,
-0.25162785915266495,
-0.2451871734930844,
-0.23857455667162264,
-0.2318214801050611,
-0.22496159564697682,
-0.2180304698650838,
-0.21106526670599524,
-0.20410437889981947,
-0.19718701019340645,
-0.19035271260530362,
-0.18364088532878953,
-0.17709024457821665,
-0.17073827642009387,
-0.1646206872263143,
-0.1587708685454452,
-0.15321939458750955,
-0.14799357084829312,
-0.1431170514216219,
-0.13860954015731086,
-0.13448658709675887,
-0.1307594868363241,
-0.12743528008284832,
-0.12451685423229586,
-0.12200313388301165,
-0.11988934825918252,
-0.11816735986903293,
-0.11682603745959397,
-0.1158516563717702,
-0.11522831052298588,
-0.11493832214959676,
-0.11496263781015847,
-0.11528120169673062,
-0.11587329979517991,
-0.11671787071580675
],
[
-0.3010112719655794,
-0.299301221137658,
-0.2972927993103882,
-0.2949797485426394,
-0.29235734783753997,
-0.2894225637998049,
-0.28617419742595296,
-0.2826130249673481,
-0.2787419306201169,
-0.2745660286037117,
-0.27009277199237336,
-0.26533204546388856,
-0.26029623893282394,
-0.25500029884856956,
-0.2494617537732755,
-0.24370071072686517,
-0.23773981871649608,
-0.23160419588251702,
-0.22532131682452639,
-0.21892085695765828,
-0.21243449123320102,
-0.20589564528396165,
-0.19933919806614764,
-0.19280113640141094,
-0.18631816349400132,
-0.17992726550126403,
-0.17366524252614768,
-0.16756821288225232,
-0.16167110200320178,
-0.15600712971706443,
-0.15060731152320284,
-0.14549999070972697,
-0.14071041836796394,
-0.1362603973968004,
-0.13216800436548704,
-0.12844739969888752,
-0.12510873231514574,
-0.12215813998022695,
-0.11959784173088739,
-0.11742631424756578,
-0.11563854044336375,
-0.11422631604723787,
-0.11317859870152325,
-0.11248188400818182,
-0.11212059386226092,
-0.11207746404955854,
-0.11233392018141952,
-0.11287043333575908,
-0.11366684905870006,
-0.114702685501898
],
[
-0.2877690717777568,
-0.28593173856124054,
-0.28381978160106736,
-0.2814280786833755,
-0.278752931529906,
-0.2757922021301319,
-0.27254544575853556,
-0.26901403880597463,
-0.26520129936574277,
-0.2611125983183923,
-0.25675545845651637,
-0.25213963898512415,
-0.24727720253093588,
-0.24218256160328033,
-0.2368725012827314,
-0.23136617478710497,
-0.22568506849916115,
-0.2198529330621758,
-0.21389567728971748,
-0.20784122193005228,
-0.20171931081244954,
-0.1955612776219171,
-0.1893997675363983,
-0.18326841424358475,
-0.1772014744435534,
-0.17123342382336548,
-0.16539852060998206,
-0.15973034507387973,
-0.15426132562315908,
-0.14902226420462095,
-0.1440418753844952,
-0.1393463544737582,
-0.13495899016879553,
-0.13089983623761725,
-0.12718545474084753,
-0.12382874021463586,
-0.12083883038153376,
-0.11822110463630109,
-0.11597726718892076,
-0.11410550775333106,
-0.112600729401934,
-0.11145483090296282,
-0.11065702962085111,
-0.11019421085439807,
-0.11005129017097581,
-0.11021157665717807,
-0.11065712681221873,
-0.11136908083536423,
-0.11232797511242865,
-0.11351402664545174
],
[
-0.2759387638384132,
-0.27400676960946546,
-0.2718223550374783,
-0.26938139872694145,
-0.2666810987012159,
-0.2637200956424083,
-0.26049859321631985,
-0.25701847377179565,
-0.2532834075170739,
-0.2492989530803179,
-0.2450726471597645,
-0.24061408076530155,
-0.23593495935428066,
-0.23104914397924248,
-0.22597267040663038,
-0.2207237430498582,
-0.21532270050798608,
-0.2097919495377839,
-0.20415586444123446,
-0.19844064915536086,
-0.1926741598208772,
-0.1868856863143502,
-0.18110569218429795,
-0.17536551365383224,
-0.16969701984361496,
-0.1641322381071526,
-0.1587029503018459,
-0.1534402678520369,
-0.14837419546081132,
-0.14353319512486573,
-0.13894376350269588,
-0.13463003647736616,
-0.13061343475990417,
-0.12691236347496893,
-0.12354197682271906,
-0.12051401619689717,
-0.1178367267507987,
-0.11551485362713865,
-0.1135497152485343,
-0.11193934754969792,
-0.11067871011894326,
-0.1097599431131655,
-0.10917266261303893,
-0.10890428177840028,
-0.10894034564096367,
-0.10926486846529193,
-0.10986066412511497,
-0.1107096616892067,
-0.11179320022174188,
-0.11309229854468716
],
[
-0.2654169478730737,
-0.26341950010585635,
-0.2611903956257715,
-0.25872639280242415,
-0.25602547230752215,
-0.2530869483198642,
-0.24991157709321676,
-0.24650166131518847,
-0.24286114850364082,
-0.23899572149730708,
-0.23491287890205625,
-0.2306220031586348,
-0.2261344137086384,
-0.22146340256283037,
-0.21662424943210712,
-0.21163421348306422,
-0.2065124987466782,
-0.20128019026399124,
-0.1959601582233399,
-0.1905769276588909,
-0.18515651176952996,
-0.17972620760811053,
-0.17431435380574944,
-0.16895005114556816,
-0.16366284818061827,
-0.15848239567446654,
-0.15343807537551235,
-0.1485586104295985,
-0.1438716664702956,
-0.1394034539523663,
-0.13517834344475554,
-0.13121850620777264,
-0.1275435923017536,
-0.1241704576194842,
-0.1211129495837946,
-0.11838175887763858,
-0.11598434163903004,
-0.11392491329553245,
-0.11220451191375447,
-0.11082112588350879,
-0.10976987819129658,
-0.10904325764042389,
-0.10863138623459934,
-0.10852231155769698,
-0.1087023132782532,
-0.10915621375387663,
-0.10986768395164748,
-0.11081953737644734,
-0.11199400626574274,
-0.11337299584909077
]
],
"zauto": true,
"zmax": 1.7686647768750636,
"zmin": -1.7686647768750636
},
{
"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.3793283530962988,
0.3763803344730785,
0.3737300669792836,
0.37137257528554696,
0.3693028039407252,
0.3675168159462678,
0.3660128765717018,
0.3647923327501277,
0.3638602121789466,
0.3632254856740953,
0.36290095993134275,
0.3629027942605482,
0.36324966273454673,
0.3639616110302321,
0.3650586831584963,
0.3665594149406245,
0.3684793058392356,
0.3708293860675997,
0.37361499002837445,
0.3768348297425165,
0.3804804345284656,
0.3845359890874957,
0.38897856590315494,
0.39377871435937634,
0.39890134241744923,
0.40430680976302524,
0.4099521448724441,
0.4157923015414108,
0.42178138090594447,
0.4278737601094418,
0.43402508579807747,
0.44019310729143774,
0.44633833899126496,
0.45242455347928595,
0.45841911553495573,
0.4642931731258182,
0.4700217246958343,
0.47558358332289735,
0.4809612580687709,
0.48614077158319385,
0.49111143114621436,
0.49586556814574956,
0.5003982587131759,
0.5047070360290918,
0.508791602758305,
0.5126535502292945,
0.5162960893606221,
0.519723796956645,
0.5229423798364142,
0.5259584583046186
],
[
0.3637972216885419,
0.36078407940810014,
0.3581112010387403,
0.3557685924609233,
0.3537459566827996,
0.3520342802923855,
0.350627274506849,
0.3495225520275405,
0.3487224414628408,
0.34823436849309464,
0.34807076483449645,
0.348248500476752,
0.3487878700397754,
0.3497111988049003,
0.3510411659401334,
0.3527989688491122,
0.3550024700541817,
0.3576644732541658,
0.3607912658692088,
0.3643815411811132,
0.3684257763636498,
0.372906098013928,
0.37779662058284935,
0.38306420190117474,
0.3886695290920099,
0.39456843053674107,
0.400713305570257,
0.4070545713048524,
0.4135420420677997,
0.4201261775617248,
0.426759157532998,
0.43339576080856484,
0.4399940433873889,
0.44651582312662547,
0.452926987432011,
0.45919764568870186,
0.4653021506206294,
0.47121901306641795,
0.4769307334780353,
0.4824235713464488,
0.4876872711728747,
0.49271476085112265,
0.49750183562027045,
0.5020468382207738,
0.5063503436146178,
0.5104148546424794,
0.5142445132916446,
0.5178448308237841,
0.5212224388383602,
0.5243848623976062
],
[
0.3475715290018171,
0.34452898629143425,
0.34187649732623643,
0.3395975655947141,
0.3376750618105893,
0.33609331608892645,
0.3348400204145722,
0.33390778390469045,
0.3332952149615218,
0.33300744392630344,
0.33305604330891586,
0.3334583473565315,
0.33423621693059236,
0.33541433793956055,
0.3370181798751939,
0.33907177213253453,
0.34159547556287184,
0.3446039308109957,
0.3481043504425466,
0.35209528846133686,
0.35656597192993145,
0.36149622175103596,
0.3668569318986501,
0.37261102703544174,
0.37871478390527186,
0.38511938513137245,
0.39177257447960356,
0.39862029685975864,
0.4056082294445439,
0.41268313723766337,
0.4197940129978621,
0.4268929847203703,
0.4339359923554327,
0.4408832487031791,
0.4476995078413388,
0.4543541688215024,
0.4608212436661299,
0.46707921783432954,
0.47311082908897056,
0.4789027877100887,
0.48444545771111325,
0.489732515431158,
0.49476059878923456,
0.49952895770045447,
0.5040391137161432,
0.50829453486668,
0.5123003299412532,
0.5160629650032553,
0.5195900037784714,
0.5228898726290947
],
[
0.33074943096010434,
0.3277216132228551,
0.32514215942858155,
0.32298622703140134,
0.3212278746482664,
0.31984281671045967,
0.3188109217188487,
0.31811824505805525,
0.3177584371797265,
0.3177334260517101,
0.31805333247274553,
0.31873563441386255,
0.31980365050448034,
0.3212844624828684,
0.32320644040829916,
0.32559656937343284,
0.3284777973034613,
0.33186662470333744,
0.33577113514368434,
0.34018961989483104,
0.3451098863685301,
0.3505092672087216,
0.35635527649609866,
0.36260680233969794,
0.36921568843913233,
0.376128543501763,
0.3832886245289005,
0.3906376625470208,
0.39811753064218847,
0.40567168784985114,
0.4132463637443446,
0.420791474531878,
0.4282612808764021,
0.4356148106661515,
0.4428160773248204,
0.4498341272913477,
0.45664295017587003,
0.46322128294181797,
0.469552336139813,
0.475623466371771,
0.4814258152328453,
0.48695393124036124,
0.49220538786721274,
0.49718040782244943,
0.5018815011792117,
0.5063131228217609,
0.5104813529331245,
0.5143936028289143,
0.51805834731551,
0.5214848838684545
],
[
0.3134723369230639,
0.3105126464651413,
0.3080694389879353,
0.3061072335552042,
0.3045888197206297,
0.3034788848147021,
0.30274728101774073,
0.30237165464333327,
0.30233924032355153,
0.30264770950319775,
0.3033050449284276,
0.30432848577912935,
0.3057426514750128,
0.30757700741439364,
0.30986288314719895,
0.31263028984092306,
0.31590480349735883,
0.31970477636344663,
0.3240391066628348,
0.3289057366117697,
0.3342909676619671,
0.34016959251711215,
0.3465057604660048,
0.3532544289166692,
0.3603632175158093,
0.36777447321481554,
0.3754273707244769,
0.38325990517508374,
0.39121067382215957,
0.3992203838818375,
0.40723305891127254,
0.4151969438973564,
0.4230651287382681,
0.4307959218052319,
0.438353011159914,
0.44570545237686393,
0.4528275202664077,
0.4596984583323992,
0.4663021554466243,
0.472626774610827,
0.47866435421130454,
0.4844103980803074,
0.4898634670731324,
0.495024781781267,
0.49989784341432,
0.5044880777549042,
0.5088025053677889,
0.5128494398713597,
0.5166382150018917,
0.5201789403703858
],
[
0.29593647414394847,
0.2931081740845446,
0.2908754644402273,
0.2891893807844448,
0.2879984149035546,
0.2872532972407996,
0.2869112534173873,
0.2869393671334716,
0.2873168126156203,
0.2880358502949204,
0.2891015922047133,
0.2905306332931387,
0.2923487145670753,
0.29458763967816615,
0.2972817118396378,
0.30046399121795586,
0.30416268759959236,
0.30839799071984114,
0.3131795953804587,
0.31850510138139226,
0.3243593687693536,
0.3307148030117191,
0.3375324505507562,
0.34476371759727054,
0.3523524916218984,
0.3602374452109179,
0.3683543286644858,
0.376638100527971,
0.3850247937264907,
0.3934530608954596,
0.4018653807711268,
0.41020893599543523,
0.41843619147875705,
0.4265052129382351,
0.43437976931306,
0.4420292623897759,
0.44942852381773896,
0.45655751504514486,
0.46340096047179263,
0.4699479388895701,
0.4761914534155717,
0.4821279957931671,
0.487757117207189,
0.4930810146250121,
0.4981041390917018,
0.5028328303126299,
0.5072749801836669,
0.5114397266120196,
0.5153371779503302,
0.5189781675905117
],
[
0.2784065808638103,
0.2757827192390112,
0.2738453243321075,
0.27252844647881913,
0.27176260323058626,
0.2714810933881727,
0.27162551666738,
0.2721500163159797,
0.27302397604510986,
0.2742330984842931,
0.27577894398457226,
0.27767711271609247,
0.27995432074464094,
0.2826446668564686,
0.2857854211129936,
0.28941268925379526,
0.29355731186644424,
0.2982413332164766,
0.3034753145922879,
0.30925667246282146,
0.31556910460075044,
0.32238304714874333,
0.329657003470047,
0.3373395175106157,
0.3453715369949049,
0.3536889220269694,
0.36222489254825874,
0.3709122608123747,
0.37968535076066473,
0.3884815563504066,
0.3972425307903268,
0.40591502688268266,
0.4144514261128278,
0.42281000278896735,
0.43095497177663833,
0.4388563663793536,
0.44648978845946014,
0.4538360672713598,
0.46088085756770625,
0.4676142018746867,
0.4740300767060611,
0.4801259380227124,
0.4859022774671579,
0.49136219777369866,
0.49651101320826707,
0.5013558788502828,
0.5059054509148266,
0.5101695790557962,
0.5141590306264169,
0.5178852461485418
],
[
0.26123103657683155,
0.25889306880463303,
0.25734409957794213,
0.2564969792819158,
0.2562599318612639,
0.2565448866984737,
0.2572745803777084,
0.2583878087995282,
0.2598425570625891,
0.2616170227536036,
0.26370874326393084,
0.2661321457464252,
0.2689148871890049,
0.2720933718100752,
0.27570784283797706,
0.27979744974120696,
0.28439568170443846,
0.2895265202976632,
0.29520158964545345,
0.30141847254065884,
0.30816022986816766,
0.3153960308162246,
0.3230826957873803,
0.3311668889244627,
0.33958767785658334,
0.34827919897879267,
0.3571732146735376,
0.36620140973234605,
0.37529733524504605,
0.3843979609219911,
0.3934448371126268,
0.40238489506715047,
0.4111709298099888,
0.4197618168843666,
0.4281225148506265,
0.43622390210446854,
0.4440424911280468,
0.4515600569685724,
0.4587632103756876,
0.4656429400972435,
0.47219414357028905,
0.4784151607319772,
0.4843073219029996,
0.48987451760380996,
0.49512279566925677,
0.5000599890430876,
0.5046953760769981,
0.5090393739548247,
0.5131032649466286,
0.5168989545152644
],
[
0.24485609529389318,
0.2428901773221896,
0.24182568649098496,
0.24154944767118422,
0.24194264114720407,
0.2428917370106356,
0.24429750350695528,
0.24608133054547696,
0.24818865758733719,
0.25058970167219974,
0.25327791184558657,
0.2562666630142144,
0.2595847040767828,
0.26327084530518263,
0.26736833963354706,
0.27191938841138497,
0.2769601731555555,
0.28251676340471943,
0.28860216472663675,
0.2952146510826639,
0.30233738721371345,
0.30993921351327197,
0.3179763619744949,
0.3263948129088935,
0.33513299157628035,
0.34412453377500507,
0.3533009053657818,
0.3625937270168706,
0.3719367194148613,
0.3812672377444808,
0.3905274039906512,
0.3996648716056599,
0.4086332713770672,
0.4173923927792682,
0.42590815451757036,
0.4341524137519143,
0.44210265740242416,
0.4497416122141359,
0.45705680365801243,
0.4640400876961614,
0.47068717413714395,
0.47699715580392815,
0.4829720540002733,
0.4886163877168679,
0.49393677157548793,
0.49894154557559106,
0.5036404381973069,
0.5080442632521144,
0.5121646499928558,
0.5160138053440112
],
[
0.2298336552730446,
0.22832319340261653,
0.22783212880293602,
0.2282162912840094,
0.22932525765200482,
0.23101649213297284,
0.23316649654739616,
0.2356781199321999,
0.23848400173549236,
0.2415466555689816,
0.24485593388824198,
0.2484246353734444,
0.2522829338521577,
0.2564722029040883,
0.26103872608884277,
0.2660277251084014,
0.2714780904445119,
0.2774181376505879,
0.28386262126938905,
0.29081111639039453,
0.2982477400487888,
0.30614205517863236,
0.3144509022657014,
0.32312085276039115,
0.3320909755678214,
0.3412956443624,
0.3506671738884142,
0.3601381420894601,
0.36964331948777335,
0.37912118025600416,
0.38851500804777644,
0.39777363436234686,
0.40685186034166637,
0.4157106174091824,
0.4243169209081551,
0.4326436662288141,
0.44066931056359465,
0.44837747656964466,
0.455756507568486,
0.46279899786658873,
0.46950131651022353,
0.47586313832902927,
0.4818869924337529,
0.4875778353349656,
0.4929426534478292,
0.49799009785010456,
0.5027301526809078,
0.507173837431134,
0.5113329425190427,
0.5152197969128663
],
[
0.21681186597400745,
0.21582495489923184,
0.21597319714555444,
0.2170774194651297,
0.21895245601069752,
0.22142492379836376,
0.22434650987037902,
0.22760196041492975,
0.23111211133351287,
0.2348329246788845,
0.23875166742099396,
0.24288126803967983,
0.24725368245898385,
0.2519129039593551,
0.2569081085175131,
0.262287337179772,
0.26809205503584527,
0.27435286146580473,
0.2810865377796555,
0.28829450282382024,
0.29596261808137025,
0.3040621641832326,
0.3125517228147589,
0.3213796550185661,
0.3304868698662848,
0.33980961701756524,
0.3492820979839805,
0.3588387589512948,
0.3684161911639332,
0.3779546162855521,
0.38739897135101475,
0.3966996315656769,
0.4058128216354214,
0.4147007704400959,
0.4233316624571018,
0.431679434663903,
0.43972346136801943,
0.4474481626569778,
0.4548425656212569,
0.4618998415577683,
0.4686168371757974,
0.47499361343592833,
0.48103300201509963,
0.4867401864305057,
0.49212231248109845,
0.4971881307875362,
0.5019476727462647,
0.506411960087762,
0.5105927473803151,
0.5145022961966487
],
[
0.20649263777471144,
0.2060644287989985,
0.20687389124749453,
0.20870566979942945,
0.21133992125960435,
0.21457368622189743,
0.21823593206029634,
0.22219570897261193,
0.22636430688244785,
0.23069293219830253,
0.23516745557423466,
0.23980151291673404,
0.2446289010268113,
0.24969592135287538,
0.2550541304548347,
0.26075384157711556,
0.26683865234995735,
0.27334121166631037,
0.2802803595040728,
0.2876596710471216,
0.2954673221770471,
0.3036770879106602,
0.312250208833347,
0.3211378250213053,
0.33028368316278356,
0.3396268619512017,
0.34910431977958617,
0.35865313359205175,
0.36821235780277756,
0.377724481171362,
0.3871364951302123,
0.39640060986829584,
0.40547466664549964,
0.41432229905001383,
0.42291289480592226,
0.43122140542804926,
0.4392280450994621,
0.4469179137011592,
0.4542805726317505,
0.4613095962953827,
0.46800211708259176,
0.4743583773661916,
0.48038129845305144,
0.48607607350494797,
0.4914497890846317,
0.4965110781122652,
0.5012698055534175,
0.5057367870326298,
0.5099235397156753,
0.5138420641779247
],
[
0.19954162007551107,
0.19965539104708394,
0.20108383046193573,
0.2035791910902402,
0.20689188952722695,
0.21079473334359938,
0.2150989847886572,
0.21966214598335584,
0.22438897202280397,
0.2292277559948089,
0.2341637765953,
0.23921136044291222,
0.2444055523380936,
0.24979402950260413,
0.25542966568852726,
0.2613640223340175,
0.26764197251045013,
0.2742976076311588,
0.28135150985925117,
0.2888093870175966,
0.296661970207582,
0.30488598491494184,
0.3134459417508668,
0.3222964638417106,
0.3313848752614621,
0.3406538115416965,
0.35004366748732973,
0.3594947572216574,
0.36894911706792205,
0.3783519277587675,
0.38765256629172373,
0.3968053198542995,
0.4057698064503692,
0.4145111515610492,
0.4229999697123878,
0.4312121961766435,
0.43912880870724424,
0.4467354732483884,
0.4540221416405385,
0.46098262385165983,
0.46761415239300685,
0.4739169523920917,
0.47989382728246416,
0.48554976717713405,
0.4908915846486045,
0.49592758076763915,
0.50066724278219,
0.5051209736813644,
0.5092998530291092,
0.5132154278188985
],
[
0.1964556091818395,
0.19703125963293175,
0.1989633613027558,
0.20198159306826405,
0.20581677740071538,
0.21022658783126588,
0.21501178994272777,
0.2200233625272139,
0.22516248600975972,
0.23037578685927287,
0.23564791808686547,
0.24099300191476342,
0.24644593262493217,
0.25205414393614395,
0.25787019723549776,
0.26394541035081187,
0.2703246738197814,
0.27704255069845674,
0.28412069982564364,
0.29156659196944346,
0.2993734092754876,
0.3075209450495975,
0.31597726780944757,
0.3247008899676987,
0.33364318877573673,
0.342750859595019,
0.3519682295519211,
0.36123931297938566,
0.37050954046833845,
0.3797271355870049,
0.3888441451136784,
0.39781714999337314,
0.40660769658260354,
0.4151824930957674,
0.4235134165609291,
0.43157737281577174,
0.43935604752147517,
0.44683558084562713,
0.4540061930298545,
0.4608617829166627,
0.4673995168783562,
0.473619421558461,
0.47952399041397065,
0.48511781120124875,
0.4904072192233144,
0.4953999792868697,
0.5001049978390442,
0.5045320656058848,
0.508691630182893,
0.5125945973848759
],
[
0.19743051919219873,
0.1983301904915632,
0.20058943431284146,
0.2039298149900335,
0.20807615331138393,
0.21278210624750662,
0.2178459217269145,
0.22311696896979713,
0.22849519690297027,
0.23392598498280268,
0.23939248451844003,
0.2449069675154166,
0.25050216211422055,
0.25622315563308623,
0.26212019335386216,
0.2682425586741934,
0.2746336431385758,
0.281327264185246,
0.28834523890493174,
0.29569616392720055,
0.3033752878396125,
0.31136530373315585,
0.31963784698951564,
0.3281554648127659,
0.3368738306758836,
0.34574400460519594,
0.35471458148696866,
0.36373361603404913,
0.3727502576884603,
0.38171606688658816,
0.3905860135442038,
0.39931917905337994,
0.407879195508443,
0.41623446188974517,
0.42435817825679906,
0.4322282371979599,
0.4398270081178631,
0.44714104535783256,
0.4541607462879088,
0.4608799807959129,
0.46729570926736047,
0.47340760231655427,
0.47921767223044165,
0.48472992331109865,
0.4899500260114428,
0.49488501790085687,
0.49954303301788283,
0.5039330600123243,
0.5080647285991541,
0.5119481231967375
],
[
0.20229925041638044,
0.20335173140070706,
0.20573181529623655,
0.20916848250830025,
0.21339443724658594,
0.21817016417977986,
0.22329879488187843,
0.2286323347473572,
0.23407122173726824,
0.23955949659212367,
0.2450775512954426,
0.25063390098991384,
0.25625692955199353,
0.2619871828123702,
0.2678705352382043,
0.2739524080247153,
0.28027313142271565,
0.2868644886415398,
0.2937474306413491,
0.30093090083993407,
0.3084116568882961,
0.3161749300528922,
0.3241957295341999,
0.332440584876669,
0.34086952569906354,
0.34943812125430956,
0.3580994370368892,
0.3668058052302333,
0.375510344483263,
0.38416819829586535,
0.39273748805474784,
0.40117999598474774,
0.40946160556655176,
0.4175525335179314,
0.42542738963390353,
0.43306509995395814,
0.440448725987131,
0.4475652089414138,
0.4544050636934729,
0.46096204301376703,
0.46723278858761197,
0.4732164817857966,
0.47891450400120983,
0.4843301136918476,
0.48946814503624725,
0.4943347312787009,
0.498937054374902,
0.5032831213981971,
0.5073815672878162,
0.5112414828717065
],
[
0.21058046536858047,
0.21161390848597944,
0.21391602204182492,
0.21723608526444332,
0.22132600669035762,
0.22596190082021778,
0.23095781373597665,
0.2361718824698448,
0.2415064802785497,
0.24690426042026856,
0.2523418240016204,
0.2578223342476562,
0.2633679856330478,
0.269012902755252,
0.27479680968891834,
0.2807596599737169,
0.28693732324636967,
0.2933583613033718,
0.30004187603212434,
0.3069963652049279,
0.31421947843782616,
0.3216985283828952,
0.32941158656436137,
0.33732898287107677,
0.3454150333248047,
0.3536298400849736,
0.3619310363957561,
0.3702753822886929,
0.3786201497598354,
0.38692426548562775,
0.3951492029974617,
0.40325963395179454,
0.41122385999801075,
0.41901405360212773,
0.4266063391051576,
0.4339807453594529,
0.4411210594467178,
0.4480146080057591,
0.4546519891635117,
0.4610267743754892,
0.46713519590853,
0.4729758324007222,
0.4785493019960332,
0.4838579700078819,
0.48890567591673,
0.49369748273135516,
0.498239450310124,
0.5025384331102194,
0.506601901970658,
0.5104377889010688
],
[
0.22160952203298828,
0.22247804632785603,
0.2245385875638291,
0.22756895275295708,
0.23134760145447045,
0.23567223998224066,
0.24037219886040156,
0.24531456041688696,
0.25040508996573957,
0.25558543510855497,
0.26082801238888864,
0.2661297377230138,
0.2715054443965092,
0.2769815567105687,
0.2825903773520901,
0.28836519925088694,
0.29433635235985084,
0.30052822519288697,
0.306957246770504,
0.31363076932565587,
0.32054675350589124,
0.3276941271914627,
0.33505366902571315,
0.34259926024711757,
0.35029935355577957,
0.35811852370733954,
0.36601898804845556,
0.37396201248284355,
0.3819091458513554,
0.389823250711572,
0.3976693193358433,
0.4054150797122538,
0.4130314074898357,
0.42049256670509677,
0.4277763055517967,
0.43486383425674313,
0.44173971108614996,
0.4483916602920205,
0.4548103429362792,
0.4609890983862732,
0.4669236711263917,
0.47261193455132827,
0.47805362070091445,
0.48325006251772346,
0.4882039531748625,
0.49291912532742316,
0.4974003517671216,
0.5016531678773207,
0.5056837154620788,
0.5094986069236005
],
[
0.23468089599182834,
0.2352777018201482,
0.23698015424260113,
0.239598131822932,
0.24294004748023384,
0.2468283361957324,
0.25111031700964137,
0.25566414858398856,
0.26040048072296273,
0.26526082714757343,
0.27021375355867344,
0.2752498421267237,
0.28037618399535275,
0.2856109411218078,
0.29097834182462806,
0.29650433828493344,
0.30221305353833294,
0.30812407081923554,
0.3142505609982801,
0.3205981987196926,
0.3271647822392065,
0.33394044567520725,
0.34090833616858585,
0.34804562282072965,
0.3553247087842388,
0.3627145308932955,
0.37018185023439065,
0.37769245920922107,
0.38521225323988834,
0.392708136178897,
0.40014874631135655,
0.407505003894378,
0.41475049137999864,
0.42186168413353686,
0.4288180531408502,
0.43560206253389033,
0.44219908437912714,
0.4485972516206762,
0.4547872678040506,
0.4607621895799986,
0.4665171952599969,
0.47204935004589726,
0.4773573761031802,
0.4824414334593642,
0.48730291582001195,
0.49194426381280215,
0.4963687968861725,
0.5005805640825396,
0.5045842131493411,
0.5083848769127185
],
[
0.24914902199738573,
0.24940752189272883,
0.2506814878398338,
0.25281282251013326,
0.2556401873160928,
0.259011534235132,
0.2627933662095622,
0.2668763112468213,
0.2711772731726799,
0.275638812856525,
0.28022655026758125,
0.28492534423001825,
0.2897348870080967,
0.2946652048165536,
0.2997324165555391,
0.30495498533931686,
0.3103506030287705,
0.3159337741295364,
0.3217141079751353,
0.32769528368045675,
0.33387461885352354,
0.34024314955633284,
0.3467861151339534,
0.353483736853976,
0.36031218290371614,
0.36724462265764063,
0.3742522882563578,
0.3813054792562475,
0.38837446438036083,
0.39543025157687045,
0.40244521253270776,
0.40939355987864323,
0.4162516843857604,
0.42299836564886895,
0.42961487344280286,
0.4360849785847176,
0.4423948922203372,
0.44853315142255734,
0.4544904672336414,
0.4602595491122606,
0.4658349174075002,
0.4712127131529743,
0.4763905122801636,
0.4813671493713995,
0.48614255435503634,
0.4907176041072748,
0.495093989765955,
0.49927409966677316,
0.503260917157598,
0.5070579321020761
],
[
0.2644756851063283,
0.26436385606780477,
0.265177391676072,
0.266787908388982,
0.26906254017261855,
0.27187383328032566,
0.2751074227220367,
0.2786670417498421,
0.2824769089325842,
0.28648186715904145,
0.2906458094953081,
0.2949489563104868,
0.29938449633542386,
0.30395501382619894,
0.3086690233863642,
0.3135378390736198,
0.3185729220346486,
0.3237837827960976,
0.32917645984174787,
0.33475255385289543,
0.3405087656647043,
0.34643686454681966,
0.3525240009653843,
0.3587532735886861,
0.3651044627996111,
0.37155485093857954,
0.3780800612829174,
0.38465486169152313,
0.3912538933609556,
0.3978522989832925,
0.4044262368584729,
0.4109532776558857,
0.4174126883321779,
0.42378561324170183,
0.4300551659445875,
0.4362064469463071,
0.4422265029513007,
0.4481042425363865,
0.4538303217695549,
0.45939701149215595,
0.46479805597155627,
0.47002853059057187,
0.47508470429650235,
0.4799639107731233,
0.48466443077639715,
0.48918538681430335,
0.493526650356962,
0.49768876102299225,
0.5016728566784107,
0.5054806130749083
],
[
0.2802378583726434,
0.2797502746438856,
0.280100348180606,
0.28118593064570196,
0.282899679951789,
0.28513671355873443,
0.287800811295783,
0.29080875100087766,
0.29409270306078417,
0.29760086839893096,
0.30129669828221395,
0.30515709478082625,
0.30916998351446395,
0.3133316024717978,
0.3176437838412654,
0.3221114345397299,
0.326740354011874,
0.3315354691729952,
0.3364995177383441,
0.34163217284872205,
0.34692957338922,
0.3523842049127606,
0.35798506466736263,
0.3637180398041544,
0.36956642920487753,
0.3755115451991253,
0.3815333403807266,
0.3876110154568238,
0.39372357538380276,
0.39985031198456816,
0.4059712010810219,
0.4120672104569505,
0.41812052147299167,
0.42411467186643864,
0.43003463030786454,
0.4358668148703463,
0.44159906796005294,
0.44722059973750966,
0.4527219108943057,
0.45809470408071085,
0.46333179151015935,
0.4684270044617682,
0.4733751086873787,
0.4781717281930921,
0.48281327856178785,
0.4872969099390435,
0.4916204590235681,
0.4957824088704131,
0.4997818550040374,
0.5036184762143449
],
[
0.296114674815234,
0.29526469456000903,
0.2951682804362519,
0.2957456208878756,
0.2969114329190817,
0.2985807801514773,
0.3006739743219884,
0.30312020777709375,
0.3058597938216986,
0.3088450827750479,
0.3120402522243151,
0.3154202385601689,
0.3189690941263582,
0.3226780355273223,
0.326543408534592,
0.3305647453210762,
0.33474303862654153,
0.33907931006088304,
0.343573508929739,
0.34822374498055064,
0.353025833551656,
0.357973114365936,
0.3630564948731283,
0.36826466462554797,
0.3735844275698342,
0.3790011032077261,
0.38449895419413693,
0.39006160604787243,
0.39567243332259094,
0.40131489506171864,
0.4069728100674499,
0.41263056906719586,
0.4182732860541842,
0.4238868948560053,
0.42945819940760266,
0.43497488741969387,
0.44042551733850843,
0.445799487912086,
0.4510869985393588,
0.4562790070947277,
0.4613671902815582,
0.4663439099294429,
0.4712021871327785,
0.47593568481657644,
0.48053869825982587,
0.48500615232742805,
0.4893336036543411,
0.49351724576689787,
0.4975539150803207,
0.5014410958351565
],
[
0.3118671614707834,
0.31068024684294143,
0.3101669490164867,
0.31026592884649634,
0.31091041216561005,
0.3120325494546796,
0.3135672171952064,
0.31545498129466304,
0.3176440916414159,
0.320091511447693,
0.3227630871759385,
0.3256330281599832,
0.32868289216497787,
0.33190027164528957,
0.3352773544342166,
0.3388095004603406,
0.34249393960124536,
0.3463286598301634,
0.3503115225328487,
0.35443961502075033,
0.3587088295475709,
0.3631136435266224,
0.3676470666523133,
0.372300716480366,
0.37706498381107495,
0.3819292520015063,
0.38688213918730074,
0.391911738479174,
0.39700583777814424,
0.4021521073216944,
0.4073382489660865,
0.41255210620526805,
0.4177817378359488,
0.4230154609325763,
0.4282418704264435,
0.43344984319907737,
0.4386285343653024,
0.4437673725321389,
0.44885605948383595,
0.45388457816270256,
0.45884321117137034,
0.4637225704654203,
0.46851363754979275,
0.47320781241300985,
0.4777969686674754,
0.48227351191641327,
0.486630438216255,
0.4908613896060452,
0.494960703979712,
0.4989234570250393
],
[
0.3273182038820797,
0.3258265946274328,
0.3249329106042221,
0.3245907032384682,
0.32474833121412267,
0.3253521895788257,
0.3263496144057279,
0.32769125127346416,
0.3293327697504511,
0.33123589730512537,
0.33336882110614086,
0.3357060581833902,
0.3382279224273169,
0.340919723961336,
0.3437708276121949,
0.3467736780746883,
0.34992287494838686,
0.3532143551376201,
0.35664471603346404,
0.36021069225215474,
0.36390878241079183,
0.3677350107215847,
0.371684800849011,
0.375752935971337,
0.3799335786307199,
0.38422032599784595,
0.3886062798808685,
0.39308411549235267,
0.39764613805259896,
0.4022843212530892,
0.40699032603847557,
0.41175550180987147,
0.41657087483684707,
0.421427130325037,
0.4263145952480493,
0.43122322882146574,
0.4361426265369589,
0.441062042187229,
0.44597043051433244,
0.4508565112163085,
0.4557088532375623,
0.4605159766979226,
0.46526646858918913,
0.4699491075441658,
0.4745529925745773,
0.47906767065560163,
0.4834832583519554,
0.48779055326113363,
0.4919811318129743,
0.49604743083123704
],
[
0.34233591912193223,
0.3405745881539371,
0.3393396484516928,
0.3385963613155925,
0.33830515840957054,
0.3384240130002241,
0.33891063620691103,
0.3397243434683915,
0.3408274944538955,
0.34218646946323333,
0.3437721978095339,
0.34556029308899844,
0.347530874516464,
0.34966816339692636,
0.3519599418779408,
0.3543969507708233,
0.3569722878810422,
0.35968085096354074,
0.3625188524621309,
0.3654834182197951,
0.36857227030072426,
0.37178348533019195,
0.37511531430144573,
0.3785660473022359,
0.38213390658952373,
0.38581695331918636,
0.38961299642830444,
0.3935194961041839,
0.39753345844130034,
0.4016513218406599,
0.4058688390869072,
0.4101809615843576,
0.4145817337846175,
0.41906420634154384,
0.42362037603043645,
0.42824115910299976,
0.4329164027224495,
0.43763493668316084,
0.4423846650310763,
0.44715269471660973,
0.4519254962457269,
0.45668908960667143,
0.46142924763418813,
0.4661317084593511,
0.47078238875173684,
0.4753675900161627,
0.47987419115212687,
0.48428982169931123,
0.48860301155537705,
0.49280331435188707
],
[
0.3568212273328563,
0.3548249646092531,
0.3532875240657975,
0.35218313807804247,
0.3514816320859938,
0.3511501573344363,
0.3511548425238955,
0.35146225427155986,
0.35204059135824806,
0.3528605757764159,
0.35389603870043074,
0.35512422753390893,
0.35652587907130867,
0.3580851133217746,
0.3597892038266578,
0.3616282752908864,
0.3635949702500014,
0.36568411540948065,
0.3678924069784873,
0.3702181240834289,
0.3726608710316427,
0.37522134323141665,
0.3779011080549569,
0.38070239070010725,
0.3836278558395055,
0.3866803781129013,
0.38986279783623606,
0.39317766217032485,
0.3966269559275342,
0.40021182975274167,
0.4039323362180298,
0.4077871861334978,
0.41177353792663146,
0.4158868322340266,
0.4201206819662709,
0.4244668252526069,
0.4289151451440064,
0.43345375610590164,
0.4380691535331421,
0.442746419108154,
0.4474694720705278,
0.452221354552649,
0.45698453814031026,
0.46174123872083095,
0.4664737273843982,
0.4711646264898849,
0.47579718180613123,
0.48035550369941077,
0.484824772477647,
0.4891914050706138
],
[
0.37069927064931857,
0.36850072886165397,
0.36669719427388936,
0.3652695691456169,
0.36419478972120606,
0.36344709226833555,
0.36299925620868395,
0.3628237477425911,
0.36289370805998106,
0.3631837536725613,
0.3636705789458385,
0.36433336975798525,
0.3651540507178205,
0.36611739603039484,
0.3672110363300638,
0.3684253916521217,
0.36975355553365,
0.37119114841176826,
0.3727361512675622,
0.37438872384104405,
0.37615100642025684,
0.3780269006065689,
0.3800218227485708,
0.38214242388335207,
0.38439627182858915,
0.38679149420957015,
0.38933638526695724,
0.39203898379465046,
0.3949066339898747,
0.39794554484946915,
0.4011603665528335,
0.40455380366185345,
0.4081262847091007,
0.41187570578002103,
0.4157972621555942,
0.41988337728297676,
0.4241237327407385,
0.4285053970045655,
0.43301304525233536,
0.43762925766723454,
0.44233488007716776,
0.44710942852495067,
0.45193151854769814,
0.4567793004562906,
0.46163088353179493,
0.4664647345087246,
0.47126003868224403,
0.4759970151579279,
0.4806571808999734,
0.4852235611264529
],
[
0.383913885992552,
0.3815424239800978,
0.3795057208550733,
0.3777894560241096,
0.37637577554767626,
0.37524422299005583,
0.3743726829796655,
0.3737382851843848,
0.37331822820751737,
0.37309049682389644,
0.37303445980358096,
0.3731313475234998,
0.3733646174807937,
0.3737202212055612,
0.3741867880296844,
0.3747557402442886,
0.3754213511700273,
0.37618075346227703,
0.37703390043263635,
0.37798347902542345,
0.3790347699182342,
0.3801954484187324,
0.38147531963356596,
0.38288598285548775,
0.38444042316499705,
0.38615253264120786,
0.38803656895248184,
0.3901065649532064,
0.3923757086503828,
0.39485571786709567,
0.39755623747375635,
0.4004842886286264,
0.40364379869284034,
0.4070352372428101,
0.41065537807310165,
0.41449719973813626,
0.4185499287325171,
0.42279922070698583,
0.42722746702283715,
0.43181420721293784,
0.43653662308198593,
0.4413700875146482,
0.4462887405669663,
0.4512660668580611,
0.4562754512533098,
0.4612906938482707,
0.4662864698262021,
0.4712387244228262,
0.4761249976304575,
0.48092467715575976
],
[
0.3964242587086138,
0.39390542319527944,
0.3916645205407913,
0.38969048148344637,
0.3879691118731422,
0.38648378697508745,
0.3852161800332371,
0.38414699002340763,
0.38325663990139147,
0.3825259244791897,
0.3819365950467962,
0.38147187489708745,
0.38111690524234887,
0.38085912425509516,
0.38068858310898895,
0.3805982022123905,
0.38058396878476575,
0.38064507409045834,
0.38078398560186727,
0.3810064466673542,
0.38132139439256385,
0.38174078580325926,
0.382279323237013,
0.38295407248601426,
0.38378397152045635,
0.38478923353141703,
0.38599065522016063,
0.38740884919364826,
0.389063427268934,
0.39097216855287603,
0.3931502113973055,
0.39560931085411033,
0.39835720241780725,
0.4013971083669143,
0.40472741509339516,
0.4083415391240471,
0.4122279871807454,
0.4163706029330562,
0.4207489814277202,
0.4253390227021895,
0.4301135896065157,
0.4350432317190418,
0.440096937346695,
0.4452428784830513,
0.4504491185521026,
0.4556842589932405,
0.460918007474146,
0.46612165710381515,
0.4712684719765924,
0.4763339794074794
],
[
0.4082029785659854,
0.40555847224892283,
0.40313839984290056,
0.40093373843172475,
0.3989327156423287,
0.397121339981067,
0.39548397828316045,
0.39400395722970555,
0.39266416899463874,
0.3914476651043766,
0.39033822677353586,
0.3893209036627665,
0.38838251570964005,
0.38751211414888165,
0.38670139801730513,
0.38594508146784895,
0.3852412053692842,
0.38459138430596596,
0.3840009776282768,
0.38347917107329993,
0.383038954112808,
0.38269697801327696,
0.38247328099619465,
0.38239087018450796,
0.38247515541366317,
0.38275323749293116,
0.38325306288998284,
0.38400246752736245,
0.38502814352586423,
0.386354573095337,
0.3880029819475696,
0.3899903691791616,
0.3923286703982982,
0.39502410533504134,
0.3980767504066256,
0.401480361645318,
0.4052224556828434,
0.4092846382068383,
0.41364315260935847,
0.41826960826216,
0.42313183918740466,
0.42819484029381377,
0.43342172953128405,
0.4387746894260237,
0.4442158493073295,
0.4497080788558278,
0.4552156732372544,
0.4607049191255336,
0.4661445387500299,
0.4715060153977026
],
[
0.419234882996064,
0.4164828790112577,
0.413905089145062,
0.4114936068671328,
0.40923811456422,
0.40712630230757185,
0.4051443412322717,
0.40327739680991365,
0.40151016847435517,
0.3998274437550364,
0.39821465685074947,
0.39665844305050985,
0.39514718128272736,
0.393671517173732,
0.3922248582698636,
0.390803831584396,
0.3894086915270557,
0.38804366379349725,
0.38671720823459266,
0.38544218145150316,
0.3842358782914236,
0.38311993102340164,
0.38212004626250556,
0.38126556318950905,
0.38058882271421873,
0.38012434620844554,
0.37990783423623525,
0.3799750098381566,
0.38036034634280186,
0.38109573478047926,
0.382209158715127,
0.38372345247581824,
0.3856552203909634,
0.38801398846171503,
0.3908016458417355,
0.3940122127317934,
0.39763194627946746,
0.4016397700176852,
0.40600798865587756,
0.4107032315125386,
0.4156875563743779,
0.4209196416472613,
0.4263559977024568,
0.4319521368211288,
0.4376636531605442,
0.4434471777393782,
0.44926118688280287,
0.4550666546511369,
0.4608275497636915,
0.46651118512697826
],
[
0.4295162465533728,
0.4266719258710883,
0.4239548717451588,
0.42135759642832665,
0.4188705015912519,
0.41648222262036005,
0.4141800317193444,
0.41195029085496404,
0.4097789456646084,
0.4076520517651615,
0.4055563252198907,
0.40347970900171104,
0.4014119469527724,
0.3993451558588917,
0.3972743847770121,
0.39519814868502656,
0.3931189209414399,
0.3910435660898306,
0.3889836914374507,
0.3869558928859501,
0.384981868109691,
0.3830883688985125,
0.38130696496012295,
0.3796735944501675,
0.3782278827078961,
0.3770122207302596,
0.3760706090923802,
0.3754472910233244,
0.3751852190864721,
0.3753244213890157,
0.37590035260098553,
0.3769423289364304,
0.3784721513829879,
0.3805030155124162,
0.38303878848280404,
0.3860737057960447,
0.389592505501167,
0.39357098074560315,
0.3979768981297211,
0.40277120366288477,
0.4079094230016729,
0.4133431587472181,
0.41902159366590547,
0.4248929222419444,
0.4309056508776939,
0.43700972635605223,
0.443157470484118,
0.4493043145594731,
0.455409339637904,
0.46143563737450816
],
[
0.4390540306185577,
0.4361302383975853,
0.43329006305959344,
0.4305259322943295,
0.42782842722231756,
0.42518657795522297,
0.4225882200832234,
0.4200204071320206,
0.41746987351956494,
0.41492354209964377,
0.4123690698574741,
0.4097954245782355,
0.40719348421823537,
0.40455664917209766,
0.40188145558106664,
0.399168175235396,
0.3964213844979083,
0.3936504810816544,
0.39087012359532936,
0.3881005647783496,
0.38536784568390475,
0.382703815319411,
0.3801459392164051,
0.3777368620729062,
0.37552369511652034,
0.37355700927132646,
0.37188953137335345,
0.37057456270417755,
0.36966416607011415,
0.36920719722657663,
0.3692472848508852,
0.3698208856042709,
0.3709555519368143,
0.3726685460228333,
0.37496591176524185,
0.37784207967133004,
0.3812800314722519,
0.38525199999140647,
0.3897206330480905,
0.39464051496474556,
0.3999599196336536,
0.4056226658424315,
0.4115699564239589,
0.4177421036252883,
0.4240800690741509,
0.43052677349293106,
0.4370281556050157,
0.4435339795536738,
0.4499984048612956,
0.456380342639637
],
[
0.4478650311850315,
0.4448729684937707,
0.44192421981808766,
0.43901078611689404,
0.43612305222250963,
0.43325005112400355,
0.4303797899750707,
0.427499635674406,
0.42459675707983136,
0.4216586200929126,
0.418673530894744,
0.41563122142840775,
0.41252346971321374,
0.40934474564829026,
0.4060928705336763,
0.4027696755327828,
0.3993816406701184,
0.395940491693105,
0.3924637272900703,
0.3889750439299581,
0.38550462033235683,
0.382089218893595,
0.378772058197435,
0.37560241027822,
0.37263488013449536,
0.3699283348164446,
0.3675444667676094,
0.36554600185595654,
0.3639945962328497,
0.36294850541304585,
0.36246014906395346,
0.3625737291370079,
0.36332307936893704,
0.3647299239033275,
0.3668026980414186,
0.36953603607656854,
0.37291096639767896,
0.3768957833427916,
0.38144750085678736,
0.3865137452502858,
0.39203491931468265,
0.3979464684526796,
0.40418109747323394,
0.4106708176596947,
0.4173487403939187,
0.424150569783674,
0.4310157781017906,
0.43788847219033544,
0.4447179758285977,
0.4514591630918946
],
[
0.4559748534613113,
0.4529247403426522,
0.4498810477035122,
0.446835140522443,
0.4437769684994156,
0.44069531064154643,
0.43757808148979505,
0.4344126988203564,
0.43118651178390055,
0.42788728747709553,
0.42450375280869873,
0.421026187151751,
0.41744705957877337,
0.41376170236242465,
0.409969009783443,
0.40607214800762664,
0.40207925776426173,
0.39800412669399937,
0.3938668025089643,
0.3896941116109705,
0.3855200408267341,
0.38138593301352963,
0.377340441434675,
0.3734391844615726,
0.3697440433067876,
0.36632205352143904,
0.36324385837174983,
0.360581720870151,
0.3584071316354054,
0.3567880998232831,
0.355786268657418,
0.3554540466822727,
0.35583197955032686,
0.35694659407086005,
0.3588089193955023,
0.3614138296943578,
0.3647402669972596,
0.3687523073877283,
0.3734009464356416,
0.3786264160550487,
0.38436081360180196,
0.3905308255217543,
0.39706035588369226,
0.40387291453819124,
0.4108936698455149,
0.4180511183525588,
0.4252783630689655,
0.432514020808593,
0.43970279751339025,
0.44679578007970155
],
[
0.46341670377427335,
0.46031836732605813,
0.4571930335526705,
0.4540313310836955,
0.4508226491744363,
0.4475553701032282,
0.44421716251619703,
0.4407953369675427,
0.4372772640589822,
0.43365085460991476,
0.4299051001393233,
0.42603067054614907,
0.4220205641539094,
0.417870803133413,
0.41358116460671823,
0.4091559343155247,
0.40460466544269935,
0.39994291984537966,
0.39519296247064956,
0.39038437205825977,
0.3855545225573248,
0.3807488804787455,
0.37602105462662383,
0.3714325278892459,
0.36705199836700053,
0.3629542621517428,
0.3592185860804312,
0.35592654904395327,
0.3531593767697368,
0.3509948562132639,
0.3495039860222262,
0.34874758794256,
0.3487731552752988,
0.3496122324953375,
0.35127859323126026,
0.35376740997090705,
0.3570554985074004,
0.36110259436576686,
0.3658535029096382,
0.37124088170194736,
0.3771883752482464,
0.3836138285813568,
0.39043234739164995,
0.397559033657081,
0.4049112921235609,
0.4124106632140119,
0.4199841855365619,
0.42756532406658143,
0.435094519331779,
0.4425194212020966
],
[
0.4702300277946819,
0.46709338431751213,
0.4638998620262199,
0.4606393411198658,
0.4573006183608478,
0.45387163206364656,
0.4503397469001359,
0.4466921007741267,
0.4429160152568233,
0.4389994701759539,
0.4349316418707138,
0.4307035033010985,
0.426308482549603,
0.42174317416286977,
0.41700809510431747,
0.41210847364407954,
0.4070550550858955,
0.40186490259103763,
0.39656216429128,
0.39117876924521233,
0.3857550046158807,
0.38033991508193543,
0.37499145380552773,
0.3697763038890445,
0.36476928276163145,
0.3600522430381532,
0.3557123966874516,
0.3518400196353067,
0.3485255447936214,
0.34585612318835024,
0.34391181985922364,
0.3427617006859722,
0.34246013869182934,
0.3430437013903256,
0.3445289565228031,
0.3469114466765233,
0.3501659457350414,
0.35424794963996475,
0.3590962056344465,
0.36463597868727404,
0.3707827078183964,
0.37744571792749765,
0.3845317100312103,
0.3919478336789248,
0.3996042298115094,
0.40741600612652495,
0.4153046627629951,
0.42319902237764845,
0.4310357378146148,
0.4387594566550725
],
[
0.4764590454665033,
0.4732944587902147,
0.4700466934139683,
0.46670493936115587,
0.46325744415202996,
0.45969173339633623,
0.45599488975144536,
0.4521538931988315,
0.44815602493695406,
0.4439893363962109,
0.43964318391119667,
0.4351088283772172,
0.43038009768592306,
0.42545410775949244,
0.4203320354237031,
0.4150199329712174,
0.40952956981482025,
0.40387928082675434,
0.3980947935050423,
0.39220999674635587,
0.38626760262682697,
0.3803196393889974,
0.37442769953163674,
0.3686628530643416,
0.36310512535709955,
0.3578424357478399,
0.3529689027198543,
0.3485824503358134,
0.3447817042282333,
0.34166224589262306,
0.33931239669422847,
0.33780881382337313,
0.3372122757471263,
0.3375640855643855,
0.3388835020098772,
0.34116650966951895,
0.3443860750970299,
0.3484938386473164,
0.35342300859138603,
0.3590920948242207,
0.36540906589457606,
0.3722755336102571,
0.379590644356985,
0.3872544579398781,
0.3951706977961626,
0.40324884350205137,
0.41140559963101,
0.4195658137170375,
0.4276629342755524,
0.43563910316458065
],
[
0.48215124236347734,
0.47896975141692255,
0.47568238448834627,
0.4722777540058668,
0.46874366044023785,
0.4650673104047831,
0.4612355914333281,
0.45723540685436626,
0.45305407363146116,
0.44867978535884007,
0.4441021417482744,
0.43931274485912747,
0.43430586092039386,
0.42907914474755526,
0.42363442129863854,
0.41797851562012506,
0.4121241180241188,
0.4060906654800855,
0.39990521253195177,
0.3936032552157498,
0.3872294592184161,
0.38083822892544383,
0.37449403762518957,
0.36827142242599276,
0.36225453316184714,
0.35653611717281103,
0.3512158276306024,
0.3463977696359054,
0.3421872529587662,
0.33868680707324866,
0.3359916297206,
0.3341847700282729,
0.3333324642052593,
0.33348011094695484,
0.3346493625986516,
0.3368367016541434,
0.34001368315544506,
0.3441287929499497,
0.3491106554142233,
0.35487217227318035,
0.36131511333298244,
0.3683347078632985,
0.37582387697582487,
0.3836768684762488,
0.39179217564693825,
0.4000747202025935,
0.4084373489089693,
0.4168017336465995,
0.425098781565542,
0.43326866250799373
],
[
0.487355878465175,
0.4841692962614244,
0.4808577320259436,
0.4774093728968814,
0.4738117181776352,
0.4700517961569096,
0.46611643574215306,
0.46199259660228903,
0.4576677610602697,
0.45313039039294767,
0.4483704474462254,
0.44337998649756877,
0.43815381000705905,
0.4326901901655835,
0.4269916507998881,
0.4210658019968177,
0.4149262154665113,
0.40859332281595384,
0.4020953111412745,
0.39546898025623217,
0.3887605131288953,
0.38202609562277196,
0.37533230387216726,
0.368756158903292,
0.36238473116686387,
0.35631416707482827,
0.35064801217101654,
0.345494729707803,
0.34096436783135237,
0.3371644189655272,
0.3341950392916058,
0.33214393989088553,
0.3310813949886706,
0.33105589714530254,
0.3320909859688938,
0.3341836660836442,
0.33730462379991344,
0.34140019558447177,
0.3463957989537493,
0.3522003659530247,
0.35871125221340533,
0.36581912779750836,
0.3734124604657616,
0.3813813381490222,
0.38962051042339874,
0.398031636469933,
0.4065248007805401,
0.4150193992205525,
0.4234445137770067,
0.4317388926504168
],
[
0.49212257133107884,
0.4889434650023104,
0.4856238114036707,
0.48215155090602296,
0.4785140568054731,
0.4746983516207569,
0.47069137619953527,
0.46648031545185037,
0.46205298414470125,
0.45739827568265495,
0.45250667612595685,
0.44737084479908407,
0.44198626162944155,
0.4363519397001309,
0.4304711992259999,
0.42435249603309033,
0.4180102933356046,
0.41146595979030615,
0.40474866903873663,
0.3978962657801045,
0.390956050481472,
0.38398541898984273,
0.377052274926211,
0.37023511307336393,
0.36362265368481156,
0.35731289535933325,
0.3514114547487317,
0.3460290837917439,
0.34127830876621074,
0.3372692268081347,
0.33410462350255915,
0.3318747255023653,
0.3306520449551619,
0.3304868659611906,
0.3314039259131546,
0.33340073350457716,
0.33644775144984684,
0.34049040267839026,
0.34545260198559474,
0.3512413335650391,
0.3577517227369773,
0.3648720849210092,
0.37248854536296927,
0.38048896704185436,
0.3887660642795544,
0.397219692340324,
0.4057583798689892,
0.4143002132443179,
0.4227731972619014,
0.4311152138620897
],
[
0.49650000323196064,
0.493341570664928,
0.49003047218288404,
0.4865545936125828,
0.48290137308915754,
0.4790580172362449,
0.47501176802621736,
0.47075022412841877,
0.4662617202144675,
0.46153576722538847,
0.4565635559744074,
0.45133852559966203,
0.4458569972024539,
0.44011887138103734,
0.43412838612188925,
0.4278949284068391,
0.42143388863662584,
0.4147675411935803,
0.4079259267479126,
0.4009477018184183,
0.3938809082653418,
0.3867835996865896,
0.3797242434663811,
0.37278179772584225,
0.3660453442710894,
0.3596131463680642,
0.35359100059181053,
0.3480897738742812,
0.34322206948519224,
0.33909805561531386,
0.33582061653101253,
0.33348013516887864,
0.3321493582423203,
0.3318788891672807,
0.3326938591489732,
0.3345922192722073,
0.33754488633753477,
0.3414977083509039,
0.34637495919656985,
0.35208388882305186,
0.35851978026666437,
0.3655709965342658,
0.3731236085529807,
0.3810653381849184,
0.38928869033087876,
0.3976932615284526,
0.40618728991186537,
0.41468855450772985,
0.4231247478759452,
0.431433443875402
],
[
0.5005347922227926,
0.49741065522620254,
0.4941250398752738,
0.49066597193249395,
0.48702114831916027,
0.4831781532531086,
0.4791247228091271,
0.4748490615831492,
0.47034021482154853,
0.4655884989270027,
0.4605859926292701,
0.45532709024939483,
0.44980911729831813,
0.44403300700887866,
0.4380040341320655,
0.4317325992087112,
0.42523505227108593,
0.4185345391901101,
0.4116618462735519,
0.40465620884614806,
0.397566037094934,
0.39044949737196627,
0.38337486983159835,
0.37642058501452474,
0.369674825367265,
0.36323456708482926,
0.3572039395215032,
0.3516918018905154,
0.34680848851128415,
0.34266176019466527,
0.33935211904680157,
0.3369677837265968,
0.33557975457705985,
0.33523748495690203,
0.33596567876672123,
0.33776263334851203,
0.3406003507403484,
0.34442639058826546,
0.3491671965145384,
0.3547324526131086,
0.36101995145795135,
0.36792047973718484,
0.37532232565937734,
0.3831151452402214,
0.3911930573441919,
0.39945694674449084,
0.40781603076547474,
0.4161887889100879,
0.42450337258583387,
0.4326976117266551
],
[
0.5042705562900527,
0.5011944930312298,
0.4979512589268743,
0.49452920625362795,
0.4909164765142085,
0.4871012162596101,
0.48307183892884914,
0.4788173361569358,
0.4743276416762428,
0.4695940504728659,
0.4646096952127986,
0.4593700810580331,
0.4538736787594065,
0.4481225742172769,
0.4421231703783911,
0.43588693417551594,
0.4294311769526402,
0.42277985114306066,
0.41596433854296994,
0.4090241960291102,
0.4020078127902675,
0.3949729191182611,
0.3879868710618616,
0.3811266191267925,
0.3744782552532286,
0.36813602464192763,
0.3622006934750088,
0.3567771873346896,
0.3519714652147088,
0.3478866747090587,
0.34461874292714634,
0.3422516822340852,
0.3408530054826939,
0.34046971894715755,
0.3411253607355602,
0.34281846068366884,
0.3455226230895782,
0.349188212228346,
0.35374540521741826,
0.35910821781336977,
0.36517903606684704,
0.3718532023317874,
0.3790232863945764,
0.38658278886125463,
0.39442914344391466,
0.40246598597924554,
0.4106047309409278,
0.41876554020214307,
0.42687778868516396,
0.4348801341593512
],
[
0.5077471882770885,
0.5047328289269868,
0.5015484970981842,
0.49818304165929495,
0.4946252167992581,
0.4908638968928265,
0.48688833480518323,
0.4826884667644595,
0.47825526657842454,
0.4735811514710905,
0.4686604411196953,
0.46348987051744023,
0.45806915598363124,
0.45240161187216904,
0.44649481313819134,
0.4403612957185747,
0.4340192824335765,
0.4274934165624241,
0.42081547811671066,
0.41402504890562547,
0.4071700816588777,
0.40030731591897833,
0.393502469783159,
0.3868301232645759,
0.38037319850484286,
0.3742219380579496,
0.36847229004027987,
0.3632236339707538,
0.35857582896931567,
0.3546256391978036,
0.3514626867575648,
0.3491651879064776,
0.3477958234066667,
0.3473981510737577,
0.34799396304871894,
0.34958190915394144,
0.35213755878486913,
0.3556148866147048,
0.3599489845255654,
0.3650596644789734,
0.3708555497445776,
0.37723825822582446,
0.3841063456847886,
0.39135877269408553,
0.3988977614475948,
0.4066309982993113,
0.41447320529061166,
0.4223471470180938,
0.43018416106291196,
0.4379243061496839
],
[
0.5110003479136263,
0.508060857066996,
0.504951216643557,
0.501660918901969,
0.4981794736552022,
0.49449662117328613,
0.4906025857515651,
0.4864883726735769,
0.48214611090222387,
0.4775694432791844,
0.4727539652532258,
0.4676977121293098,
0.46240169344745446,
0.45687047125354496,
0.45111277657586696,
0.4451421552041777,
0.43897762969068604,
0.43264435915034016,
0.42617427174266975,
0.41960663654666897,
0.4129885319207445,
0.40637515667415103,
0.3998299192158318,
0.39342422970234325,
0.3872369133594444,
0.38135316287517673,
0.37586295820873783,
0.37085890781403646,
0.366433509783215,
0.36267589573437803,
0.3596682004748927,
0.35748178602009417,
0.35617362226811233,
0.355783167671843,
0.35633008314336684,
0.357813042653816,
0.36020978165259704,
0.36347837253615295,
0.3675595675084476,
0.3723799347129187,
0.3778554536445497,
0.38389523447534174,
0.3904050722998634,
0.3972906223243765,
0.404460065572402,
0.4118262110339666,
0.41930804023960366,
0.42683174108280636,
0.4343313007840209,
0.44174873687393296
],
[
0.5140611665510892,
0.5112089341682926,
0.5081887038340452,
0.504990729941908,
0.5016053905241372,
0.4980233968609722,
0.494236040778001,
0.49023548190028443,
0.4860150766841505,
0.4815697504329065,
0.4768964126747482,
0.47199441517917384,
0.46686605043432217,
0.4615170865043881,
0.45595733171577907,
0.4502012194468157,
0.4442683992716365,
0.43818431569308114,
0.431980749585813,
0.42569629023902283,
0.41937669767784624,
0.41307510616122994,
0.4068520112102495,
0.40077497557271874,
0.39491798620451884,
0.389360397359943,
0.384185407438979,
0.37947804249626643,
0.3753226594013047,
0.3718000362677137,
0.3689841827672398,
0.366939069304821,
0.3657155283496281,
0.3653486081780255,
0.365855646113065,
0.36723526994800154,
0.3694674387852025,
0.3725145152878951,
0.37632324419549745,
0.3808274200149124,
0.385950975472782,
0.3916112155966061,
0.39772195349039224,
0.4041963596219793,
0.410949401793669,
0.41789981543542903,
0.4249715954379879,
0.4320950380323297,
0.43920738436367096,
0.4462531286412146
],
[
0.5169561506957321,
0.5142025102767791,
0.5112850362364458,
0.5081948330928462,
0.504923226555146,
0.5014619682628305,
0.4978034750435211,
0.49394110445747935,
0.4898694678946663,
0.4855847818158332,
0.48108525683884396,
0.4763715232099815,
0.47144708969893506,
0.4663188310333973,
0.46099749655024463,
0.455498229682925,
0.44984108412902374,
0.4440515179687404,
0.43816084160544344,
0.43220658924099636,
0.4262327769090102,
0.42029000333961075,
0.4144353439292175,
0.4087319840748908,
0.40324853781473624,
0.39805800322105034,
0.39323631963289735,
0.3888605155997877,
0.38500647128075594,
0.381746363916091,
0.3791459158454781,
0.37726161404793396,
0.3761381082951313,
0.3758060109888948,
0.37628030722715117,
0.3775595359391078,
0.37962582718260107,
0.3824457894858445,
0.38597215136568624,
0.3901459893052165,
0.3948993318716287,
0.40015791996603856,
0.40584392259758023,
0.4118784471814179,
0.4181837325537115,
0.42468496219873636,
0.4313116779378895,
0.4379988071006307,
0.4446873382630383,
0.45132469309150675
],
[
0.5197072626160315,
0.5170622513908883,
0.5142592574489949,
0.5112902919632202,
0.5081476741265808,
0.5048242293084033,
0.5013135184023175,
0.4976100996170921,
0.4937098234093993,
0.4896101605330693,
0.4853105622428847,
0.48081285049461425,
0.47612163447010547,
0.4712447478622644,
0.46619369901032875,
0.460984123113163,
0.45563622231267065,
0.4501751754075248,
0.4446314943651741,
0.4390412997813837,
0.43344648227368543,
0.4278947119776371,
0.42243925459862186,
0.41713855092011465,
0.41205551864498086,
0.4072565425164079,
0.40281013236855406,
0.39878525020531097,
0.3952493367258439,
0.39226610342961304,
0.3898931949730139,
0.3881798620947853,
0.387164810954635,
0.38687440288419933,
0.38732136411486845,
0.38850412688673974,
0.3904068655628294,
0.39300022291653447,
0.39624265434077505,
0.40008226274226016,
0.4044589624627718,
0.4093067998201676,
0.4145562688186707,
0.42013648758823413,
0.4259771369180182,
0.4320100999394561,
0.43817077631975776,
0.44439907210294777,
0.45064008640885483,
0.45684452885671656
]
]
},
{
"hoverinfo": "text",
"legendgroup": "In-sample",
"marker": {
"color": "black",
"opacity": 0.5,
"symbol": 1
},
"mode": "markers",
"name": "In-sample",
"text": [
"Arm 0_0
hartmann6: -0.822692 (SEM: 0)
x1: 0.316451
x2: 0.149428
x3: 0.114303
x4: 0.0805905
x5: 0.516601
x6: 0.693677",
"Arm 1_0
hartmann6: -0.286084 (SEM: 0)
x1: 0.37441
x2: 0.442714
x3: 0.135161
x4: 0.363334
x5: 0.776313
x6: 0.201591",
"Arm 2_0
hartmann6: -0.0110468 (SEM: 0)
x1: 0.570724
x2: 0.198575
x3: 0.286542
x4: 0.664402
x5: 0.906834
x6: 0.572681",
"Arm 3_0
hartmann6: -0.0809057 (SEM: 0)
x1: 0.852269
x2: 0.88281
x3: 0.907894
x4: 0.531854
x5: 0.20234
x6: 0.193553",
"Arm 4_0
hartmann6: -0.121356 (SEM: 0)
x1: 0.239701
x2: 0.921285
x3: 0.810957
x4: 0.0414941
x5: 0.543241
x6: 0.0587494",
"Arm 5_0
hartmann6: -0.0939744 (SEM: 0)
x1: 0.533726
x2: 0.387662
x3: 0.497679
x4: 0.117921
x5: 0.895153
x6: 0.293872",
"Arm 6_0
hartmann6: -0.0590371 (SEM: 0)
x1: 0.656153
x2: 0.0923082
x3: 0.602217
x4: 0.0695913
x5: 0.944078
x6: 0.570852",
"Arm 7_0
hartmann6: -0.0191462 (SEM: 0)
x1: 0.79257
x2: 0.157652
x3: 0.958681
x4: 0.402387
x5: 0.21266
x6: 0.0154242",
"Arm 8_0
hartmann6: -0.0591634 (SEM: 0)
x1: 0.684883
x2: 0.840706
x3: 0.204664
x4: 0.146336
x5: 0.577856
x6: 0.401511",
"Arm 9_0
hartmann6: -0.0573447 (SEM: 0)
x1: 0.626005
x2: 0.408091
x3: 0.502807
x4: 0.832246
x5: 0.536136
x6: 0.947667",
"Arm 10_0
hartmann6: -0.198287 (SEM: 0)
x1: 0.653834
x2: 0.842746
x3: 0.473278
x4: 0.516509
x5: 0.317128
x6: 0.593699",
"Arm 11_0
hartmann6: -0.296929 (SEM: 0)
x1: 0.576266
x2: 0.945124
x3: 0.00712254
x4: 0.148975
x5: 0.461934
x6: 0.0315063",
"Arm 12_0
hartmann6: -0.915207 (SEM: 0)
x1: 0.25553
x2: 0.133713
x3: 0.0530358
x4: 0.0550128
x5: 0.475854
x6: 0.673728",
"Arm 13_0
hartmann6: -0.727209 (SEM: 0)
x1: 0.224241
x2: 0.0807553
x3: 0.021627
x4: 0.00333784
x5: 0.44506
x6: 0.762087",
"Arm 14_0
hartmann6: -0.987869 (SEM: 0)
x1: 0.239013
x2: 0.161116
x3: 0.0374571
x4: 0.0766432
x5: 0.470266
x6: 0.599055",
"Arm 15_0
hartmann6: -0.676615 (SEM: 0)
x1: 0.275914
x2: 0.129449
x3: 2.48927e-19
x4: 0.0490488
x5: 0.483069
x6: 0.521786",
"Arm 16_0
hartmann6: -1.33001 (SEM: 0)
x1: 0.184315
x2: 0.211031
x3: 0.0594297
x4: 0.115845
x5: 0.44633
x6: 0.622325",
"Arm 17_0
hartmann6: -1.60561 (SEM: 0)
x1: 0.140906
x2: 0.253886
x3: 0.0914017
x4: 0.14958
x5: 0.428197
x6: 0.671256",
"Arm 18_0
hartmann6: -1.76386 (SEM: 0)
x1: 0.0896008
x2: 0.304073
x3: 0.123439
x4: 0.188224
x5: 0.407941
x6: 0.717202",
"Arm 19_0
hartmann6: -1.5536 (SEM: 0)
x1: 0.0148316
x2: 0.289235
x3: 0.159948
x4: 0.203994
x5: 0.442376
x6: 0.695368",
"Arm 20_0
hartmann6: -1.84588 (SEM: 0)
x1: 0.119303
x2: 0.360762
x3: 0.110603
x4: 0.206889
x5: 0.361712
x6: 0.758564",
"Arm 21_0
hartmann6: -2.22278 (SEM: 0)
x1: 0.11955
x2: 0.320049
x3: 0.141488
x4: 0.221824
x5: 0.28845
x6: 0.734522",
"Arm 22_0
hartmann6: -2.23903 (SEM: 0)
x1: 0.115688
x2: 0.277489
x3: 0.167678
x4: 0.229369
x5: 0.231536
x6: 0.713233",
"Arm 23_0
hartmann6: -2.36629 (SEM: 0)
x1: 0.122913
x2: 0.27965
x3: 0.129635
x4: 0.27527
x5: 0.264989
x6: 0.727145",
"Arm 24_0
hartmann6: -2.5104 (SEM: 0)
x1: 0.166848
x2: 0.262753
x3: 0.155373
x4: 0.328573
x5: 0.277808
x6: 0.726777",
"Arm 25_0
hartmann6: -2.52059 (SEM: 0)
x1: 0.168962
x2: 0.257518
x3: 0.195431
x4: 0.379746
x5: 0.285148
x6: 0.668355",
"Arm 26_0
hartmann6: -2.33019 (SEM: 0)
x1: 0.160156
x2: 0.240888
x3: 0.207109
x4: 0.383638
x5: 0.285181
x6: 0.768736",
"Arm 27_0
hartmann6: -2.56809 (SEM: 0)
x1: 0.205434
x2: 0.263273
x3: 0.155462
x4: 0.346142
x5: 0.280125
x6: 0.643126",
"Arm 28_0
hartmann6: -2.34257 (SEM: 0)
x1: 0.198649
x2: 0.306126
x3: 0.158112
x4: 0.372546
x5: 0.264859
x6: 0.662364"
],
"type": "scatter",
"x": [
0.3164505660533905,
0.3744103331118822,
0.5707237385213375,
0.8522693542763591,
0.23970097675919533,
0.533725768327713,
0.656153054907918,
0.7925700517371297,
0.6848829137161374,
0.6260054940357804,
0.6538338540121913,
0.5762657662853599,
0.2555300051736963,
0.22424099978970785,
0.23901284530054723,
0.27591377348077883,
0.18431452381391072,
0.14090605308743132,
0.08960081129473564,
0.014831612428323595,
0.11930327057556554,
0.11955048477135306,
0.11568758939771974,
0.12291295059693222,
0.16684763693786783,
0.1689620076674959,
0.16015588847925527,
0.2054341048545113,
0.19864922134020918
],
"xaxis": "x",
"y": [
0.14942821860313416,
0.4427136303856969,
0.19857491180300713,
0.8828099090605974,
0.9212851906195283,
0.38766172528266907,
0.0923081748187542,
0.15765169076621532,
0.8407056108117104,
0.40809117164462805,
0.8427464766427875,
0.9451236603781581,
0.13371267466941694,
0.08075527211396237,
0.16111554166996456,
0.12944931083950437,
0.21103102354412728,
0.25388583034409157,
0.30407298269339145,
0.2892352073644894,
0.3607616410989104,
0.3200491069686905,
0.2774894787120219,
0.2796500917265489,
0.26275314788863396,
0.257517978426618,
0.24088846934159222,
0.26327279294845835,
0.3061255215644335
],
"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.822692 (SEM: 0)
x1: 0.316451
x2: 0.149428
x3: 0.114303
x4: 0.0805905
x5: 0.516601
x6: 0.693677",
"Arm 1_0
hartmann6: -0.286084 (SEM: 0)
x1: 0.37441
x2: 0.442714
x3: 0.135161
x4: 0.363334
x5: 0.776313
x6: 0.201591",
"Arm 2_0
hartmann6: -0.0110468 (SEM: 0)
x1: 0.570724
x2: 0.198575
x3: 0.286542
x4: 0.664402
x5: 0.906834
x6: 0.572681",
"Arm 3_0
hartmann6: -0.0809057 (SEM: 0)
x1: 0.852269
x2: 0.88281
x3: 0.907894
x4: 0.531854
x5: 0.20234
x6: 0.193553",
"Arm 4_0
hartmann6: -0.121356 (SEM: 0)
x1: 0.239701
x2: 0.921285
x3: 0.810957
x4: 0.0414941
x5: 0.543241
x6: 0.0587494",
"Arm 5_0
hartmann6: -0.0939744 (SEM: 0)
x1: 0.533726
x2: 0.387662
x3: 0.497679
x4: 0.117921
x5: 0.895153
x6: 0.293872",
"Arm 6_0
hartmann6: -0.0590371 (SEM: 0)
x1: 0.656153
x2: 0.0923082
x3: 0.602217
x4: 0.0695913
x5: 0.944078
x6: 0.570852",
"Arm 7_0
hartmann6: -0.0191462 (SEM: 0)
x1: 0.79257
x2: 0.157652
x3: 0.958681
x4: 0.402387
x5: 0.21266
x6: 0.0154242",
"Arm 8_0
hartmann6: -0.0591634 (SEM: 0)
x1: 0.684883
x2: 0.840706
x3: 0.204664
x4: 0.146336
x5: 0.577856
x6: 0.401511",
"Arm 9_0
hartmann6: -0.0573447 (SEM: 0)
x1: 0.626005
x2: 0.408091
x3: 0.502807
x4: 0.832246
x5: 0.536136
x6: 0.947667",
"Arm 10_0
hartmann6: -0.198287 (SEM: 0)
x1: 0.653834
x2: 0.842746
x3: 0.473278
x4: 0.516509
x5: 0.317128
x6: 0.593699",
"Arm 11_0
hartmann6: -0.296929 (SEM: 0)
x1: 0.576266
x2: 0.945124
x3: 0.00712254
x4: 0.148975
x5: 0.461934
x6: 0.0315063",
"Arm 12_0
hartmann6: -0.915207 (SEM: 0)
x1: 0.25553
x2: 0.133713
x3: 0.0530358
x4: 0.0550128
x5: 0.475854
x6: 0.673728",
"Arm 13_0
hartmann6: -0.727209 (SEM: 0)
x1: 0.224241
x2: 0.0807553
x3: 0.021627
x4: 0.00333784
x5: 0.44506
x6: 0.762087",
"Arm 14_0
hartmann6: -0.987869 (SEM: 0)
x1: 0.239013
x2: 0.161116
x3: 0.0374571
x4: 0.0766432
x5: 0.470266
x6: 0.599055",
"Arm 15_0
hartmann6: -0.676615 (SEM: 0)
x1: 0.275914
x2: 0.129449
x3: 2.48927e-19
x4: 0.0490488
x5: 0.483069
x6: 0.521786",
"Arm 16_0
hartmann6: -1.33001 (SEM: 0)
x1: 0.184315
x2: 0.211031
x3: 0.0594297
x4: 0.115845
x5: 0.44633
x6: 0.622325",
"Arm 17_0
hartmann6: -1.60561 (SEM: 0)
x1: 0.140906
x2: 0.253886
x3: 0.0914017
x4: 0.14958
x5: 0.428197
x6: 0.671256",
"Arm 18_0
hartmann6: -1.76386 (SEM: 0)
x1: 0.0896008
x2: 0.304073
x3: 0.123439
x4: 0.188224
x5: 0.407941
x6: 0.717202",
"Arm 19_0
hartmann6: -1.5536 (SEM: 0)
x1: 0.0148316
x2: 0.289235
x3: 0.159948
x4: 0.203994
x5: 0.442376
x6: 0.695368",
"Arm 20_0
hartmann6: -1.84588 (SEM: 0)
x1: 0.119303
x2: 0.360762
x3: 0.110603
x4: 0.206889
x5: 0.361712
x6: 0.758564",
"Arm 21_0
hartmann6: -2.22278 (SEM: 0)
x1: 0.11955
x2: 0.320049
x3: 0.141488
x4: 0.221824
x5: 0.28845
x6: 0.734522",
"Arm 22_0
hartmann6: -2.23903 (SEM: 0)
x1: 0.115688
x2: 0.277489
x3: 0.167678
x4: 0.229369
x5: 0.231536
x6: 0.713233",
"Arm 23_0
hartmann6: -2.36629 (SEM: 0)
x1: 0.122913
x2: 0.27965
x3: 0.129635
x4: 0.27527
x5: 0.264989
x6: 0.727145",
"Arm 24_0
hartmann6: -2.5104 (SEM: 0)
x1: 0.166848
x2: 0.262753
x3: 0.155373
x4: 0.328573
x5: 0.277808
x6: 0.726777",
"Arm 25_0
hartmann6: -2.52059 (SEM: 0)
x1: 0.168962
x2: 0.257518
x3: 0.195431
x4: 0.379746
x5: 0.285148
x6: 0.668355",
"Arm 26_0
hartmann6: -2.33019 (SEM: 0)
x1: 0.160156
x2: 0.240888
x3: 0.207109
x4: 0.383638
x5: 0.285181
x6: 0.768736",
"Arm 27_0
hartmann6: -2.56809 (SEM: 0)
x1: 0.205434
x2: 0.263273
x3: 0.155462
x4: 0.346142
x5: 0.280125
x6: 0.643126",
"Arm 28_0
hartmann6: -2.34257 (SEM: 0)
x1: 0.198649
x2: 0.306126
x3: 0.158112
x4: 0.372546
x5: 0.264859
x6: 0.662364"
],
"type": "scatter",
"x": [
0.3164505660533905,
0.3744103331118822,
0.5707237385213375,
0.8522693542763591,
0.23970097675919533,
0.533725768327713,
0.656153054907918,
0.7925700517371297,
0.6848829137161374,
0.6260054940357804,
0.6538338540121913,
0.5762657662853599,
0.2555300051736963,
0.22424099978970785,
0.23901284530054723,
0.27591377348077883,
0.18431452381391072,
0.14090605308743132,
0.08960081129473564,
0.014831612428323595,
0.11930327057556554,
0.11955048477135306,
0.11568758939771974,
0.12291295059693222,
0.16684763693786783,
0.1689620076674959,
0.16015588847925527,
0.2054341048545113,
0.19864922134020918
],
"xaxis": "x2",
"y": [
0.14942821860313416,
0.4427136303856969,
0.19857491180300713,
0.8828099090605974,
0.9212851906195283,
0.38766172528266907,
0.0923081748187542,
0.15765169076621532,
0.8407056108117104,
0.40809117164462805,
0.8427464766427875,
0.9451236603781581,
0.13371267466941694,
0.08075527211396237,
0.16111554166996456,
0.12944931083950437,
0.21103102354412728,
0.25388583034409157,
0.30407298269339145,
0.2892352073644894,
0.3607616410989104,
0.3200491069686905,
0.2774894787120219,
0.2796500917265489,
0.26275314788863396,
0.257517978426618,
0.24088846934159222,
0.26327279294845835,
0.3061255215644335
],
"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": [
"