{
"cells": [
{
"cell_type": "markdown",
"id": "7afa667a",
"metadata": {
"papermill": {
"duration": 0.002552,
"end_time": "2025-01-31T05:10:06.660694",
"exception": false,
"start_time": "2025-01-31T05:10:06.658142",
"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": "1e1badad",
"metadata": {
"execution": {
"iopub.execute_input": "2025-01-31T05:10:06.666539Z",
"iopub.status.busy": "2025-01-31T05:10:06.666271Z",
"iopub.status.idle": "2025-01-31T05:10:09.435122Z",
"shell.execute_reply": "2025-01-31T05:10:09.434244Z"
},
"papermill": {
"duration": 2.792354,
"end_time": "2025-01-31T05:10:09.455286",
"exception": false,
"start_time": "2025-01-31T05:10:06.662932",
"status": "completed"
},
"tags": []
},
"outputs": [
{
"data": {
"text/html": [
""
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 01-31 05:10:09] ax.utils.notebook.plotting: Injecting Plotly library into cell. Do not overwrite or delete cell.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 01-31 05:10:09] 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",
" \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": "492dab27",
"metadata": {
"papermill": {
"duration": 0.039738,
"end_time": "2025-01-31T05:10:09.535378",
"exception": false,
"start_time": "2025-01-31T05:10:09.495640",
"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": "195f698e",
"metadata": {
"execution": {
"iopub.execute_input": "2025-01-31T05:10:09.616832Z",
"iopub.status.busy": "2025-01-31T05:10:09.616156Z",
"iopub.status.idle": "2025-01-31T05:10:09.620573Z",
"shell.execute_reply": "2025-01-31T05:10:09.619962Z"
},
"papermill": {
"duration": 0.047015,
"end_time": "2025-01-31T05:10:09.621881",
"exception": false,
"start_time": "2025-01-31T05:10:09.574866",
"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": "b75ecc05",
"metadata": {
"papermill": {
"duration": 0.039645,
"end_time": "2025-01-31T05:10:09.701404",
"exception": false,
"start_time": "2025-01-31T05:10:09.661759",
"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": "d8112efb",
"metadata": {
"papermill": {
"duration": 0.039965,
"end_time": "2025-01-31T05:10:09.780908",
"exception": false,
"start_time": "2025-01-31T05:10:09.740943",
"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": "ba4295d2",
"metadata": {
"execution": {
"iopub.execute_input": "2025-01-31T05:10:09.862246Z",
"iopub.status.busy": "2025-01-31T05:10:09.861787Z",
"iopub.status.idle": "2025-01-31T05:12:32.544698Z",
"shell.execute_reply": "2025-01-31T05:12:32.543326Z"
},
"papermill": {
"duration": 142.726024,
"end_time": "2025-01-31T05:12:32.547006",
"exception": false,
"start_time": "2025-01-31T05:10:09.820982",
"status": "completed"
},
"tags": []
},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 01-31 05:10:09] 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 01-31 05:10:09] 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 01-31 05:10:09] 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 01-31 05:10:09] 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 01-31 05:10:09] 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 01-31 05:10:09] 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 01-31 05:10:09] ax.modelbridge.dispatch_utils: Using Models.BOTORCH_MODULAR since there is at least one ordered parameter and there are no unordered categorical parameters.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 01-31 05:10:09] 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 01-31 05:10:09] ax.modelbridge.dispatch_utils: calculated num_initialization_trials=12\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 01-31 05:10:09] ax.modelbridge.dispatch_utils: num_completed_initialization_trials=0 num_remaining_initialization_trials=12\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 01-31 05:10:09] 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 01-31 05:10:09] 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 01-31 05:10:09] ax.service.managed_loop: Started full optimization with 30 steps.\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 01-31 05:10:09] ax.service.managed_loop: Running optimization trial 1...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.8SPGnWMU26/Ax-main/ax/modelbridge/cross_validation.py:439: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 01-31 05:10:09] ax.service.managed_loop: Running optimization trial 2...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.8SPGnWMU26/Ax-main/ax/modelbridge/cross_validation.py:439: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 01-31 05:10:09] ax.service.managed_loop: Running optimization trial 3...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.8SPGnWMU26/Ax-main/ax/modelbridge/cross_validation.py:439: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 01-31 05:10:09] ax.service.managed_loop: Running optimization trial 4...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.8SPGnWMU26/Ax-main/ax/modelbridge/cross_validation.py:439: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 01-31 05:10:09] ax.service.managed_loop: Running optimization trial 5...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.8SPGnWMU26/Ax-main/ax/modelbridge/cross_validation.py:439: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 01-31 05:10:09] ax.service.managed_loop: Running optimization trial 6...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.8SPGnWMU26/Ax-main/ax/modelbridge/cross_validation.py:439: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 01-31 05:10:09] ax.service.managed_loop: Running optimization trial 7...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.8SPGnWMU26/Ax-main/ax/modelbridge/cross_validation.py:439: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 01-31 05:10:09] ax.service.managed_loop: Running optimization trial 8...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.8SPGnWMU26/Ax-main/ax/modelbridge/cross_validation.py:439: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 01-31 05:10:10] ax.service.managed_loop: Running optimization trial 9...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.8SPGnWMU26/Ax-main/ax/modelbridge/cross_validation.py:439: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 01-31 05:10:10] ax.service.managed_loop: Running optimization trial 10...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.8SPGnWMU26/Ax-main/ax/modelbridge/cross_validation.py:439: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n",
"[INFO 01-31 05:10:10] ax.service.managed_loop: Running optimization trial 11...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.8SPGnWMU26/Ax-main/ax/modelbridge/cross_validation.py:439: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 01-31 05:10:10] ax.service.managed_loop: Running optimization trial 12...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"/tmp/tmp.8SPGnWMU26/Ax-main/ax/modelbridge/cross_validation.py:439: UserWarning:\n",
"\n",
"Encountered exception in computing model fit quality: RandomModelBridge does not support prediction.\n",
"\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 01-31 05:10:10] ax.service.managed_loop: Running optimization trial 13...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 01-31 05:10:15] ax.service.managed_loop: Running optimization trial 14...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 01-31 05:10:21] ax.service.managed_loop: Running optimization trial 15...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 01-31 05:10:28] ax.service.managed_loop: Running optimization trial 16...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 01-31 05:10:36] ax.service.managed_loop: Running optimization trial 17...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 01-31 05:10:48] ax.service.managed_loop: Running optimization trial 18...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 01-31 05:10:54] ax.service.managed_loop: Running optimization trial 19...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 01-31 05:11:01] ax.service.managed_loop: Running optimization trial 20...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 01-31 05:11:09] ax.service.managed_loop: Running optimization trial 21...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 01-31 05:11:19] ax.service.managed_loop: Running optimization trial 22...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 01-31 05:11:25] ax.service.managed_loop: Running optimization trial 23...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 01-31 05:11:33] ax.service.managed_loop: Running optimization trial 24...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 01-31 05:11:41] ax.service.managed_loop: Running optimization trial 25...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 01-31 05:11:47] ax.service.managed_loop: Running optimization trial 26...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 01-31 05:11:57] ax.service.managed_loop: Running optimization trial 27...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 01-31 05:12:04] ax.service.managed_loop: Running optimization trial 28...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 01-31 05:12:10] ax.service.managed_loop: Running optimization trial 29...\n"
]
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[INFO 01-31 05:12:22] 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": "427b7564",
"metadata": {
"papermill": {
"duration": 0.056526,
"end_time": "2025-01-31T05:12:32.673736",
"exception": false,
"start_time": "2025-01-31T05:12:32.617210",
"status": "completed"
},
"tags": []
},
"source": [
"And we can introspect optimization results:"
]
},
{
"cell_type": "code",
"execution_count": 4,
"id": "11b86fdd",
"metadata": {
"execution": {
"iopub.execute_input": "2025-01-31T05:12:32.761694Z",
"iopub.status.busy": "2025-01-31T05:12:32.761026Z",
"iopub.status.idle": "2025-01-31T05:12:32.767687Z",
"shell.execute_reply": "2025-01-31T05:12:32.767051Z"
},
"papermill": {
"duration": 0.05166,
"end_time": "2025-01-31T05:12:32.769020",
"exception": false,
"start_time": "2025-01-31T05:12:32.717360",
"status": "completed"
},
"tags": []
},
"outputs": [
{
"data": {
"text/plain": [
"{'x1': 0.21210469693083644,\n",
" 'x2': 0.1366575022175512,\n",
" 'x3': 0.4652547123629328,\n",
" 'x4': 0.2683114775883736,\n",
" 'x5': 0.3179263329142604,\n",
" 'x6': 0.6554217712752815}"
]
},
"execution_count": 4,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"best_parameters"
]
},
{
"cell_type": "code",
"execution_count": 5,
"id": "fe62b6b5",
"metadata": {
"execution": {
"iopub.execute_input": "2025-01-31T05:12:32.854870Z",
"iopub.status.busy": "2025-01-31T05:12:32.854357Z",
"iopub.status.idle": "2025-01-31T05:12:32.859293Z",
"shell.execute_reply": "2025-01-31T05:12:32.858750Z"
},
"papermill": {
"duration": 0.049568,
"end_time": "2025-01-31T05:12:32.860567",
"exception": false,
"start_time": "2025-01-31T05:12:32.810999",
"status": "completed"
},
"tags": []
},
"outputs": [
{
"data": {
"text/plain": [
"{'l2norm': 0.9395218616825999, 'hartmann6': -3.314126920575254}"
]
},
"execution_count": 5,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"means, covariances = values\n",
"means"
]
},
{
"cell_type": "markdown",
"id": "af9a6bf7",
"metadata": {
"papermill": {
"duration": 0.042005,
"end_time": "2025-01-31T05:12:32.944901",
"exception": false,
"start_time": "2025-01-31T05:12:32.902896",
"status": "completed"
},
"tags": []
},
"source": [
"For comparison, minimum of Hartmann6 is:"
]
},
{
"cell_type": "code",
"execution_count": 6,
"id": "f830cd3f",
"metadata": {
"execution": {
"iopub.execute_input": "2025-01-31T05:12:33.031246Z",
"iopub.status.busy": "2025-01-31T05:12:33.030943Z",
"iopub.status.idle": "2025-01-31T05:12:33.035397Z",
"shell.execute_reply": "2025-01-31T05:12:33.034749Z"
},
"papermill": {
"duration": 0.049207,
"end_time": "2025-01-31T05:12:33.036736",
"exception": false,
"start_time": "2025-01-31T05:12:32.987529",
"status": "completed"
},
"tags": []
},
"outputs": [
{
"data": {
"text/plain": [
"-3.32237"
]
},
"execution_count": 6,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"hartmann6.fmin"
]
},
{
"cell_type": "markdown",
"id": "c6834f88",
"metadata": {
"papermill": {
"duration": 0.046773,
"end_time": "2025-01-31T05:12:33.125825",
"exception": false,
"start_time": "2025-01-31T05:12:33.079052",
"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": "86a89d32",
"metadata": {
"execution": {
"iopub.execute_input": "2025-01-31T05:12:33.216644Z",
"iopub.status.busy": "2025-01-31T05:12:33.216161Z",
"iopub.status.idle": "2025-01-31T05:12:33.777628Z",
"shell.execute_reply": "2025-01-31T05:12:33.776495Z"
},
"papermill": {
"duration": 0.629476,
"end_time": "2025-01-31T05:12:33.801085",
"exception": false,
"start_time": "2025-01-31T05:12:33.171609",
"status": "completed"
},
"tags": []
},
"outputs": [
{
"data": {
"application/vnd.plotly.v1+json": {
"config": {
"linkText": "Export to plot.ly",
"plotlyServerURL": "https://plot.ly",
"showLink": false
},
"data": [
{
"autocolorscale": false,
"autocontour": true,
"colorbar": {
"tickfont": {
"size": 8
},
"ticksuffix": "",
"x": 0.45,
"y": 0.5
},
"colorscale": [
[
0.0,
"rgb(247,252,253)"
],
[
0.125,
"rgb(229,245,249)"
],
[
0.25,
"rgb(204,236,230)"
],
[
0.375,
"rgb(153,216,201)"
],
[
0.5,
"rgb(102,194,164)"
],
[
0.625,
"rgb(65,174,118)"
],
[
0.75,
"rgb(35,139,69)"
],
[
0.875,
"rgb(0,109,44)"
],
[
1.0,
"rgb(0,68,27)"
]
],
"contours": {
"coloring": "heatmap"
},
"hoverinfo": "x+y+z",
"ncontours": 25,
"type": "contour",
"x": [
0.0,
0.02040816326530612,
0.04081632653061224,
0.061224489795918366,
0.08163265306122448,
0.1020408163265306,
0.12244897959183673,
0.14285714285714285,
0.16326530612244897,
0.18367346938775508,
0.2040816326530612,
0.22448979591836732,
0.24489795918367346,
0.26530612244897955,
0.2857142857142857,
0.3061224489795918,
0.32653061224489793,
0.3469387755102041,
0.36734693877551017,
0.3877551020408163,
0.4081632653061224,
0.42857142857142855,
0.44897959183673464,
0.4693877551020408,
0.4897959183673469,
0.5102040816326531,
0.5306122448979591,
0.5510204081632653,
0.5714285714285714,
0.5918367346938775,
0.6122448979591836,
0.6326530612244897,
0.6530612244897959,
0.673469387755102,
0.6938775510204082,
0.7142857142857142,
0.7346938775510203,
0.7551020408163265,
0.7755102040816326,
0.7959183673469387,
0.8163265306122448,
0.836734693877551,
0.8571428571428571,
0.8775510204081632,
0.8979591836734693,
0.9183673469387754,
0.9387755102040816,
0.9591836734693877,
0.9795918367346939,
1.0
],
"xaxis": "x",
"y": [
0.0,
0.02040816326530612,
0.04081632653061224,
0.061224489795918366,
0.08163265306122448,
0.1020408163265306,
0.12244897959183673,
0.14285714285714285,
0.16326530612244897,
0.18367346938775508,
0.2040816326530612,
0.22448979591836732,
0.24489795918367346,
0.26530612244897955,
0.2857142857142857,
0.3061224489795918,
0.32653061224489793,
0.3469387755102041,
0.36734693877551017,
0.3877551020408163,
0.4081632653061224,
0.42857142857142855,
0.44897959183673464,
0.4693877551020408,
0.4897959183673469,
0.5102040816326531,
0.5306122448979591,
0.5510204081632653,
0.5714285714285714,
0.5918367346938775,
0.6122448979591836,
0.6326530612244897,
0.6530612244897959,
0.673469387755102,
0.6938775510204082,
0.7142857142857142,
0.7346938775510203,
0.7551020408163265,
0.7755102040816326,
0.7959183673469387,
0.8163265306122448,
0.836734693877551,
0.8571428571428571,
0.8775510204081632,
0.8979591836734693,
0.9183673469387754,
0.9387755102040816,
0.9591836734693877,
0.9795918367346939,
1.0
],
"yaxis": "y",
"z": [
[
-2.355747566852176,
-2.4138587723562543,
-2.4671432023204796,
-2.515261499495276,
-2.5579035280912756,
-2.5947915267732045,
-2.6256829625511418,
-2.650373046045502,
-2.6686968729676677,
-2.680531161638412,
-2.685795561877933,
-2.684453516550936,
-2.676512663333883,
-2.6620247707793823,
-2.641085209368817,
-2.6138319648518813,
-2.5804442076522567,
-2.541140438358047,
-2.4961762352039925,
-2.445841634886753,
-2.3904581829430867,
-2.3303756941806233,
-2.26596876721527,
-2.197633099982576,
-2.1257816551151385,
-2.050840725290617,
-1.9732459490491143,
-1.8934383271632447,
-1.8118602884447679,
-1.7289518519265394,
-1.6451469297217716,
-1.5608698115980977,
-1.4765318684875304,
-1.3925285078684178,
-1.3092364092923487,
-1.2270110633817743,
-1.1461846324897713,
-1.0670641459888632,
-0.9899300379355924,
-0.9150350297330582,
-0.8426033554703977,
-0.7728303229341699,
-0.7058821989323534,
-0.6418964036069139,
-0.580981994886213,
-0.5232204211826308,
-0.46866651790206815,
-0.4173497213167445,
-0.36927547186748333,
-0.3244267780012571
],
[
-2.395324714814136,
-2.4539505154346886,
-2.5076654091544484,
-2.5561267520283764,
-2.599021627983012,
-2.636070033600357,
-2.667027758800499,
-2.691688923494528,
-2.7098881347137014,
-2.721502233776558,
-2.7264516086478423,
-2.7247010526770303,
-2.7162601572743483,
-2.7011832326774874,
-2.6795687576649385,
-2.6515583657637194,
-2.61733538206055,
-2.5771229310405044,
-2.531181641834503,
-2.4798069827527254,
-2.423326261922364,
-2.36209533515116,
-2.296495065735333,
-2.2269275837662637,
-2.1538123945260317,
-2.0775823867748113,
-1.9986797921164492,
-1.9175521461920368,
-1.83464830122053,
-1.7504145374200197,
-1.6652908181576338,
-1.5797072303555049,
-1.4940806478015973,
-1.4088116506620354,
-1.3242817297576206,
-1.240850799146961,
-1.1588550353503373,
-1.0786050562501177,
-1.000384447411304,
-0.9244486383720617,
-0.8510241264453171,
-0.7803080408280493,
-0.7124680354056663,
-0.6476424946257137,
-0.5859410332487212,
-0.5274452677040885,
-0.4722098342132208,
-0.420263626808012,
-0.3716112268758873,
-0.3262344948981051
],
[
-2.4289657453232203,
-2.487966325858635,
-2.5419829332282555,
-2.590670406492346,
-2.633713755494796,
-2.670831370558462,
-2.701777923710165,
-2.72634692118547,
-2.744372871458424,
-2.7557330381620253,
-2.760348752926628,
-2.7581862692691437,
-2.749257145109901,
-2.733618148162738,
-2.7113706852198036,
-2.682659763114939,
-2.647672495777849,
-2.606636178168812,
-2.5598159538975684,
-2.5075121088760817,
-2.4500570283380148,
-2.3878118588954593,
-2.321162920925581,
-2.250517919431656,
-2.176302003565697,
-2.098953726209697,
-2.018920955384328,
-1.9366567887964128,
-1.8526155215767057,
-1.7672487152372722,
-1.6810014131484075,
-1.5943085444647809,
-1.5075915544971301,
-1.421255295115185,
-1.335685203971897,
-1.2512447962559616,
-1.1682734874075067,
-1.0870847598706255,
-1.0079646816027115,
-0.9311707788082393,
-0.8569312603005709,
-0.7854445861002417,
-0.7168793684230834,
-0.6513745891583812,
-0.5890401143367899,
-0.5299574829801067,
-0.4741809451382287,
-0.4217387218700277,
-0.3726344584198491,
-0.3268488408751522
],
[
-2.45639674821457,
-2.515628708022036,
-2.5698152347023444,
-2.618609441023924,
-2.661694986826557,
-2.6987893065570043,
-2.729646524624254,
-2.7540600180897448,
-2.771864590753529,
-2.7829382278724806,
-2.7872034064652857,
-2.784627942323796,
-2.7752253613542903,
-2.759054789600679,
-2.736220363136476,
-2.7068701658306216,
-2.6711947096743565,
-2.6294249787823922,
-2.5818300642396266,
-2.528714422548913,
-2.470414795450279,
-2.407296833244363,
-2.3397514673924116,
-2.268191081026847,
-2.1930455280512176,
-2.1147580527125327,
-2.0337811618878865,
-1.9505725018494533,
-1.8655907899854156,
-1.7792918498991086,
-1.692124795540986,
-1.6045284066146903,
-1.5169277335185574,
-1.429730965623183,
-1.3433265918388289,
-1.2580808772904017,
-1.1743356745929658,
-1.0924065828076421,
-1.012581461753741,
-0.9351193040529491,
-0.8602494621727353,
-0.788171222900412,
-0.7190537171879243,
-0.6530361492227964,
-0.590228324954067,
-0.5307114571734327,
-0.474539221649794,
-0.42173903675692004,
-0.37231353752443797,
-0.32624221407690457
],
[
-2.477385897373814,
-2.5367032109787386,
-2.5909257046279666,
-2.6397055714055195,
-2.682725858417326,
-2.7197037049474773,
-2.7503932654091745,
-2.7745882764592684,
-2.792124232231446,
-2.8028801368617327,
-2.8067798092435403,
-2.8037927211604328,
-2.793934356494474,
-2.7772660859823333,
-2.7538945588696455,
-2.723970619674466,
-2.6876877649913355,
-2.6452801617286874,
-2.5970202542613015,
-2.5432159935897927,
-2.484207726634711,
-2.4203647881707484,
-2.352081841555162,
-2.2797750172699507,
-2.20387790033926,
-2.1248374188796255,
-2.0431096863849723,
-1.959155849851533,
-1.8734379945363768,
-1.786415154059466,
-1.6985394717584494,
-1.6102525557562546,
-1.52198206618273,
-1.4341385684908028,
-1.3471126819189467,
-1.2612725469739243,
-1.176961630441448,
-1.0944968809788094,
-1.0141672429007336,
-0.9362325304332269,
-0.8609226595680287,
-0.7884372297842339,
-0.7189454433857432,
-0.6525863460961897,
-0.5894693689079585,
-0.5296751480396081,
-0.4732565972443802,
-0.4202402046489824,
-0.37062752479146566,
-0.32439683556474486
],
[
-2.491746340074396,
-2.551001355177992,
-2.605124623628572,
-2.6537682360327395,
-2.6966153723623614,
-2.7333835434092064,
-2.7638275147166755,
-2.7877418723000034,
-2.804963194083541,
-2.815371796234313,
-2.818893029366958,
-2.8154981058384343,
-2.805204445932495,
-2.7880755375386093,
-2.7642203108376284,
-2.7337920363933415,
-2.696986761793867,
-2.654041308469317,
-2.6052308564183404,
-2.5508661502004335,
-2.491290364596262,
-2.426875672721539,
-2.358019563030164,
-2.2851409545046053,
-2.208676161366167,
-2.129074759822929,
-2.0467954097020216,
-1.9623016832976505,
-1.8760579524329208,
-1.7885253826250418,
-1.7001580804158773,
-1.6113994364517832,
-1.5226787028478124,
-1.4344078388396586,
-1.3469786538068567,
-1.2607602715421518,
-1.176096934245672,
-1.0933061592398516,
-1.0126772559318118,
-0.9344702051879129,
-0.8589148981211998,
-0.7862107264064667,
-0.7165265117033552,
-0.6500007576474081,
-0.5867422042139335,
-0.5268306611103731,
-0.47031809423785165,
-0.4172299371987014,
-0.36756659831931837,
-0.3213051327010845
],
[
-2.499338598986163,
-2.5583830611351477,
-2.6122716126142818,
-2.660657063902708,
-2.7032234767793164,
-2.739689401699141,
-2.769810796053326,
-2.79338358265675,
-2.810245812445435,
-2.820279400636451,
-2.8234114114188213,
-2.8196148725054595,
-2.808909107475287,
-2.791359580654973,
-2.7670772562107935,
-2.736217480019966,
-2.6989783996444974,
-2.65559894421998,
-2.6063563921819606,
-2.5515635603781,
-2.491565653158329,
-2.4267368144143147,
-2.3574764291827908,
-2.2842052242802824,
-2.2073612194595107,
-2.1273955817487433,
-2.0447684359483556,
-1.9599446837258283,
-1.8733898823977206,
-1.7855662323587076,
-1.6969287192688949,
-1.6079214536114483,
-1.5189742461621019,
-1.430499453359235,
-1.3428891216231673,
-1.2565124544446211,
-1.1717136206482215,
-1.0888099167371657,
-1.008090290740854,
-0.9298142296124475,
-0.8542110070480031,
-0.7814792837042902,
-0.7117870472514752,
-0.6452718755722219,
-0.5820415027618708,
-0.5221746644354571,
-0.4657221962350364,
-0.41270835737135836,
-0.3631323495330099,
-0.3169700005477085
],
[
-2.500072446918253,
-2.5587585395994354,
-2.612277534663477,
-2.6602837844045215,
-2.7024629796305777,
-2.738535375578576,
-2.7682586978563295,
-2.7914306878782966,
-2.8078912519105463,
-2.817524183119313,
-2.820258431839828,
-2.816068905548378,
-2.804976786622154,
-2.787049362792154,
-2.762399372113989,
-2.73118387117633,
-2.6936026420149872,
-2.6498961596819592,
-2.600343148519853,
-2.5452577608063014,
-2.4849864164643654,
-2.419904346900174,
-2.3504118896573543,
-2.2769305834146776,
-2.199899114860001,
-2.119769170127536,
-2.0370012437818055,
-1.9520604577815854,
-1.865412441488434,
-1.7775193216400467,
-1.688835868344936,
-1.5998058396420558,
-1.510858563085695,
-1.4224057882521761,
-1.3348388391146802,
-1.2485260899962405,
-1.1638107833899234,
-1.0810092024311548,
-1.000409205319631,
-0.9222691236123496,
-0.8468170211343524,
-0.7742503053614541,
-0.7047356785918688,
-0.6384094121042727,
-0.5753779228491402,
-0.515718629079158,
-0.4594810587205941,
-0.4066881822376147,
-0.35733794025076615,
-0.31140493523291224
],
[
-2.493908222201719,
-2.5520896107888964,
-2.6051058153657864,
-2.6526135459929114,
-2.6943008629323613,
-2.729890383761262,
-2.7591421703994996,
-2.7818562557317303,
-2.7978747741513548,
-2.8070836656299774,
-2.809413928731505,
-2.8048424042471227,
-2.7933920777163728,
-2.7751318959061226,
-2.750176099221169,
-2.7186830788964658,
-2.6808537745482726,
-2.6369296341208477,
-2.587190164343436,
-2.5319501054026654,
-2.4715562685433974,
-2.4063840796523275,
-2.3368338754841043,
-2.263327002004402,
-2.1863017663099793,
-2.1062092947204984,
-2.0235093499152836,
-1.9386661594229062,
-1.8521443063890777,
-1.7644047313929725,
-1.6759008912097857,
-1.5870751168982258,
-1.4983552095046822,
-1.410151307110763,
-1.3228530520018895,
-1.23682708150171,
-1.1524148606015703,
-1.0699308690177447,
-0.9896611498307966,
-0.9118622214961247,
-0.8367603498520104,
-0.7645511718720436,
-0.6953996583854074,
-0.6294403988833835,
-0.5667781878946079,
-0.5074888892851477,
-0.45162055225031783,
-0.3991947507294644,
-0.35020811649782413,
-0.3046340352647552
],
[
-2.4808575611264256,
-2.5383904289450214,
-2.590773157763187,
-2.637665619811728,
-2.678758973394831,
-2.71377884395254,
-2.742488185672019,
-2.7646897836292883,
-2.7802283610797263,
-2.788992261776262,
-2.790914682990193,
-2.7859744411431158,
-2.774196258520905,
-2.7556505663167896,
-2.7304528261206666,
-2.6987623788134796,
-2.6607808365170307,
-2.6167500396729073,
-2.5669496073655425,
-2.5116941145589218,
-2.4513299348896216,
-2.386231791966724,
-2.3167990657037505,
-2.2434519029938444,
-2.1666271839999682,
-2.086774396444334,
-2.0043514705418004,
-1.919820626641962,
-1.8336442862520381,
-1.746281094950877,
-1.658182102829794,
-1.569787144578228,
-1.4815214572507338,
-1.3937925691955453,
-1.3069874886877968,
-1.221470215592781,
-1.1375795939862714,
-1.0556275181822927,
-0.9758974991613895,
-0.8986435930500383,
-0.8240896881624162,
-0.7524291422602697,
-0.683824757187158,
-0.6184090739519437,
-0.5562849677233129,
-0.49752651909271106,
-0.4421801353943271,
-0.3902658938541739,
-0.34177907688039477,
-0.2966918688974338
],
[
-2.4609835328606726,
-2.5177275976524838,
-2.5693496373810794,
-2.6155134738366916,
-2.655914075170026,
-2.6902807037935434,
-2.7183797462107515,
-2.7400171851439317,
-2.755040678945988,
-2.7633412185155297,
-2.764854337697646,
-2.7595608593492917,
-2.7474871657689537,
-2.72870498892165,
-2.703330722712674,
-2.671524266355889,
-2.6334874145236458,
-2.5894618163379133,
-2.539726531254148,
-2.4845952153957525,
-2.4244129768240743,
-2.359552942494681,
-2.2904125831857542,
-2.217409845436828,
-2.1409791414662362,
-2.061567249124435,
-1.9796291741816865,
-1.8956240266555546,
-1.8100109614838704,
-1.7232452316851903,
-1.6357743992783351,
-1.5480347457240058,
-1.4604479195843896,
-1.3734178545589382,
-1.2873279861405935,
-1.2025387899450346,
-1.1193856593968112,
-1.0381771350109994,
-0.9591934920851888,
-0.882685688308534,
-0.8088746676899611,
-0.7379510123869558,
-0.6700749295507612,
-0.6053765562550849,
-0.5439565619934669,
-0.4858870251548215,
-0.4312125573442922,
-0.3799516474237943,
-0.33209819570716426,
-0.2876232078530103
],
[
-2.4344001716284884,
-2.4902196708945783,
-2.540958172530816,
-2.5862842129425703,
-2.625897260349287,
-2.659530822600112,
-2.686955239034117,
-2.7079801172292615,
-2.722456380067844,
-2.730277893740489,
-2.7313826530289766,
-2.7257535063535645,
-2.7134184095352634,
-2.6944502038954514,
-2.6689659210749572,
-2.6371256236828864,
-2.5991307974619753,
-2.555222316965592,
-2.5056780126704155,
-2.45080987289544,
-2.390960918768515,
-2.326501794695637,
-2.2578271202769584,
-2.185351652325408,
-2.1095063075404723,
-2.030734097451676,
-1.9494860274685522,
-1.8662170112690006,
-1.7813818503540828,
-1.6954313264367378,
-1.6088084514716552,
-1.521944916642119,
-1.4352577775754218,
-1.3491464085496485,
-1.2639897535741478,
-1.1801438970720919,
-1.0979399715658638,
-1.0176824143642853,
-0.9396475798720118,
-0.864082708879434,
-0.7912052511327601,
-0.7212025327084491,
-0.6542317552945215,
-0.590420310473945,
-0.5298663885625058,
-0.4726398585134234,
-0.41878339289091526,
-0.3683138099501011,
-0.32122360344532197,
-0.2774826299167543
],
[
-2.4012714104141204,
-2.4560360444877665,
-2.5057733748983564,
-2.5501573902775494,
-2.5888927229554666,
-2.6217177099969735,
-2.648407141124318,
-2.668774654926113,
-2.682674749294619,
-2.690004377176978,
-2.6907041043866156,
-2.6847588123017734,
-2.67219793467315,
-2.6530952243606043,
-2.627568052501226,
-2.5957762492610006,
-2.5579205018194764,
-2.5142403314677377,
-2.465011677553412,
-2.410544121381445,
-2.3511777879834765,
-2.287279967821567,
-2.219241503927602,
-2.1474729926450946,
-2.0724008479996874,
-1.9944632807574667,
-1.91410624343328,
-1.8317793918959322,
-1.7479321128121474,
-1.6630096640186762,
-1.5774494720681453,
-1.4916776277272534,
-1.4061056161937358,
-1.3211273143280606,
-1.2371162823594892,
-1.1544233724210327,
-1.073374670992701,
-0.9942697869857575,
-0.9173804918790527,
-0.8429497131135113,
-0.7711908769493461,
-0.7022875922705549,
-0.6363936624528661,
-0.5736334084544549,
-0.5141022827924073,
-0.4578677510702045,
-0.40497041524906274,
-0.355425350923569,
-0.30922362947398696,
-0.26633399511713973
],
[
-2.361809429921138,
-2.4153952521677424,
-2.4640197952188374,
-2.507363205250816,
-2.545135912218667,
-2.5770816376928924,
-2.6029800931323983,
-2.622649330628553,
-2.635947712645479,
-2.642775472363879,
-2.6430758418262164,
-2.6368357310841692,
-2.6240859478612157,
-2.6049009537525096,
-2.579398159576,
-2.5477367690454775,
-2.510116186341393,
-2.4667740092949604,
-2.417983635667257,
-2.3640515152972923,
-2.3053140856202248,
-2.242134432141178,
-2.174898718824359,
-2.104012435971596,
-2.02989651498265,
-1.9529833603917783,
-1.8737128497583768,
-1.7925283513653858,
-1.7098728082764176,
-1.6261849351624276,
-1.5418955714878557,
-1.457424231210995,
-1.3731758851816354,
-1.2895380079966068,
-1.2068779162917966,
-1.1255404204038215,
-1.0458458061230655,
-0.9680881579796174,
-0.8925340302498795,
-0.8194214667352243,
-0.7489593654297929,
-0.6813271795402225,
-0.6166749420142871,
-0.5551235968371526,
-0.49676561691180565,
-0.4416658853911779,
-0.3898628148999592,
-0.34136967718828015,
-0.2961761144017574,
-0.25424980232530703
],
[
-2.3162724457467467,
-2.368562689995848,
-2.4159695883795695,
-2.45818011311208,
-2.4949110907096803,
-2.5259121505220845,
-2.5509683679354582,
-2.5699025649931415,
-2.582577235607944,
-2.5888960675498254,
-2.588805038901538,
-2.5822930725877584,
-2.569392238798673,
-2.5501775015365564,
-2.524766012001139,
-2.49331595798005,
-2.456024984710191,
-2.4131282087123815,
-2.3648958517686154,
-2.3116305274099385,
-2.2536642169246504,
-2.191354975902615,
-2.1250834156392706,
-2.0552490062802233,
-1.9822662503611854,
-1.9065607763676435,
-1.8285654021021138,
-1.7487162170155703,
-1.667448731261952,
-1.5851941371120768,
-1.5023757255707688,
-1.419405497645124,
-1.336681005789082,
-1.254582456683994,
-1.1734701017973346,
-1.0936819371863638,
-1.0155317288765353,
-0.9393073749416978,
-0.8652696102382754,
-0.7936510546880339,
-0.7246556011476243,
-0.658458134323796,
-0.5952045679588096,
-0.5350121836792062,
-0.4779702515199187,
-0.4241409092416353,
-0.37356027517761503,
-0.3262397674910844,
-0.28216760139951447,
-0.24131043512053663
],
[
-2.264961965558495,
-2.3158478017317243,
-2.361939631406795,
-2.402931880333832,
-2.4385483322393324,
-2.468545012296177,
-2.4927127701614715,
-2.510879526109922,
-2.522912148147395,
-2.5287179329166825,
-2.528245668622959,
-2.5214862640173537,
-2.5084729335833935,
-2.48928093536408,
-2.4640268642370398,
-2.4328675097766648,
-2.395998294023844,
-2.3536513104049037,
-2.306092990598569,
-2.253621431244526,
-2.196563416933931,
-2.1352711798436035,
-2.070118939609247,
-2.0014992695297527,
-1.9298193369201428,
-1.8554970663667216,
-1.7789572747813498,
-1.7006278265150656,
-1.6209358554018893,
-1.5403040985027314,
-1.4591473835614388,
-1.3778693088353808,
-1.2968591500968683,
-1.2164890253024803,
-1.1371113427836894,
-1.059056553916965,
-0.9826312261793541,
-0.9081164473807508,
-0.8357665667783156,
-0.7658082738101296,
-0.69844001041609,
-0.6338317084190563,
-0.5721248392848729,
-0.5134327598227918,
-0.45784133407471483,
-0.405409808808054,
-0.3561719176980511,
-0.31013718747462904,
-0.26729241801967096,
-0.22760330762596093
],
[
-2.2082195563070637,
-2.2576007662004938,
-2.3022881362948335,
-2.341984128616564,
-2.3764200031319906,
-2.4053586307849164,
-2.4285970116280726,
-2.4459684624244615,
-2.45734444237183,
-2.4626359904384834,
-2.461794753109948,
-2.4548135870437466,
-2.4417267271144385,
-2.422609516497872,
-2.3975777016829647,
-2.366786301499965,
-2.3304280653058447,
-2.288731541262587,
-2.2419587810798527,
-2.190402712576157,
-2.134384215855284,
-2.0742489427243926,
-2.010363922134102,
-1.9431139968521738,
-1.8728981382569654,
-1.8001256870376323,
-1.725212567711591,
-1.6485775242290752,
-1.5706384225566332,
-1.4918086640566977,
-1.4124937507625983,
-1.3330880403516072,
-1.2539717248172342,
-1.1755080626172063,
-1.0980408895129132,
-1.0218924285107294,
-0.9473614143581163,
-0.8747215430302977,
-0.8042202516568175,
-0.7360778294675805,
-0.6704868556654053,
-0.6076119557301858,
-0.5475898635932037,
-0.4905297734447167,
-0.4365139616989706,
-0.3855986568732903,
-0.33781513286603126,
-0.29317099935503643,
-0.25165166178732434,
-0.21322192268442075
],
[
-2.146423169014447,
-2.1942087353063,
-2.2374108073649888,
-2.275740418156645,
-2.3089367783772565,
-2.3367700141011984,
-2.3590436156453265,
-2.375596562934689,
-2.3863050968453416,
-2.3910841107324314,
-2.3898881415491466,
-2.3827119455357995,
-2.3695906493106684,
-2.3505994732231184,
-2.3258530299273903,
-2.2955042071937,
-2.259742649884198,
-2.2187928616795825,
-2.1729119524476137,
-2.1223870620053527,
-2.067532495358526,
-2.00868660823209,
-1.9462084847753864,
-1.8804744516866725,
-1.81187447462328,
-1.7408084836277111,
-1.6676826744040474,
-1.5929058316362008,
-1.5168857191756768,
-1.440025579882338,
-1.3627207852293792,
-1.2853556715463983,
-1.208300596044821,
-1.1319092416278307,
-1.0565161950180886,
-0.9824348180297349,
-0.9099554269578823,
-0.8393437901486819,
-0.7708399489350646,
-0.7046573623612188,
-0.6409823715515262,
-0.5799739752788811,
-0.5217639043160069,
-0.46645697856643387,
-0.4141317278128547,
-0.3648412542242585,
-0.31861431255235706,
-0.27545658223583214,
-0.23535210442010768,
-0.1982648561838014
],
[
-2.0799830752970814,
-2.1260916780630286,
-2.167736599646773,
-2.204637927696163,
-2.2365432511048033,
-2.2632303177550117,
-2.2845094101560472,
-2.3002254052305164,
-2.310259488594942,
-2.314530498302857,
-2.312995878092549,
-2.3056522256211336,
-2.2925354268762423,
-2.273720373836891,
-2.2493202684006652,
-2.219485521499909,
-2.1844022620895345,
-2.144290476200541,
-2.0994018014198907,
-2.0500170068874684,
-1.9964431931144055,
-1.9390107495526159,
-1.8780701108250828,
-1.8139883548146556,
-1.7471456873748206,
-1.6779318592523869,
-1.6067425608971948,
-1.5339758401900478,
-1.4600285867737663,
-1.3852931246624083,
-1.3101539521819743,
-1.234984665124267,
-1.1601450953444619,
-1.0859786929812507,
-1.012810176109096,
-0.9409434670329384,
-0.8706599296947242,
-0.8022169178671744,
-0.7358466390491254,
-0.6717553343308817,
-0.6101227700439923,
-0.5511020328174898,
-0.49481961579382794,
-0.44137578026509505,
-0.39084517391695317,
-0.343277684246837,
-0.2986995035772262,
-0.25711438042638135,
-0.21850503083048545,
-0.18283468252530422
],
[
-2.009337475394909,
-2.0536978917008404,
-2.0937231405286947,
-2.12914279468441,
-2.1597131996827814,
-2.185220047530019,
-2.2054806755988317,
-2.2203460578664886,
-2.2297024597763393,
-2.233472732486798,
-2.2316172272135653,
-2.224134315666813,
-2.2110605081425203,
-2.192470166548845,
-2.1684748154321447,
-2.139222059810352,
-2.1048941242208423,
-2.065706032746478,
-2.0219034548020813,
-1.973760246056615,
-1.9215757179548318,
-1.8656716728174332,
-1.8063892443844534,
-1.7440855858781674,
-1.6791304491701806,
-1.6119026994252001,
-1.5427868096605768,
-1.4721693790179402,
-1.4004357172165762,
-1.3279665356869423,
-1.2551347833164026,
-1.1823026616385774,
-1.1098188507320337,
-1.0380159731393137,
-0.9672083188555973,
-0.8976898499518862,
-0.8297324987775361,
-0.7635847690169161,
-0.699470644238879,
-0.637588804055638,
-0.578112143674338,
-0.5211875885475559,
-0.46693619206884496,
-0.4154535008670195,
-0.36681016927007737,
-0.32105280196880437,
-0.2782050018324487,
-0.23826859822687196,
-0.20122503006101966,
-0.16703685713340266
],
[
-1.9349478419772772,
-1.9774992454614462,
-2.015851881525491,
-2.0497451835175635,
-2.078944581404903,
-2.103243988020222,
-2.1224680180718156,
-2.1364739082506707,
-2.145153110648164,
-2.1484325360752647,
-2.1462754286760073,
-2.1386818583718443,
-2.125688823070247,
-2.1073699581251235,
-2.0838348561496893,
-2.0552280058542176,
-2.021727364011972,
-1.9835425798497726,
-1.9409128960235984,
-1.894104754788263,
-1.8434091419284013,
-1.7891387044178333,
-1.7316246805621538,
-1.6712136835119802,
-1.6082643804829664,
-1.5431441107679316,
-1.476225485674804,
-1.4078830128837305,
-1.3384897864129748,
-1.268414281453666,
-1.1980172908271374,
-1.1276490367943897,
-1.0576464884725736,
-0.9883309112624652,
-0.9200056705433274,
-0.852954307529483,
-0.787438900690945,
-0.7236987216015708,
-0.6619491895744957,
-0.6023811250533238,
-0.5451602975214165,
-0.49042725973646073,
-0.4382974564514521,
-0.3888615924961798,
-0.3421862422055204,
-0.2983146797233056,
-0.2572679077043123,
-0.21904586039332918,
-0.18362875598116535,
-0.15097857251574687
],
[
-1.8572940673095069,
-1.8979862260379408,
-1.9346230503756712,
-1.9669541532070185,
-1.9947543251259843,
-2.0178259300623216,
-2.036001041770674,
-2.049143290618471,
-2.057149393872484,
-2.0599503469287606,
-2.0575122575850995,
-2.049836810439841,
-2.0369613537287363,
-2.018958606290537,
-1.9959359877864995,
-1.9680345806916955,
-1.9354277378309503,
-1.8983193542550625,
-1.8569418269554074,
-1.811553730214209,
-1.7624372382096904,
-1.709895329776372,
-1.6542488129067658,
-1.5958332086321765,
-1.5349955353080504,
-1.472091035039325,
-1.4074798840122034,
-1.341523927862469,
-1.2745834819319293,
-1.207014234380278,
-1.1391642876775228,
-1.0713713710589896,
-1.0039602531470089,
-0.9372403802018832,
-0.8715037614377852,
-0.8070231186058265,
-0.7440503126892068,
-0.6828150561544849,
-0.6235239148379325,
-0.5663595992917861,
-0.5114805413423884,
-0.4590207477840922,
-0.40908991960632135,
-0.361773821973677,
-0.31713488739011453,
-0.275213032107432,
-0.2360266639058548,
-0.19957385789130067,
-0.16583367592148446,
-0.13476760468419346
],
[
-1.7768694834386398,
-1.8156628556962269,
-1.8505504757662488,
-1.8812923979076963,
-1.9076729972795519,
-1.929503272362005,
-1.946622896720839,
-1.958901990686428,
-1.9662425871616207,
-1.9685797698792364,
-1.965882466930498,
-1.9581538872048143,
-1.9454315924331862,
-1.9277872027246516,
-1.9053257387339906,
-1.8781846088060148,
-1.846532254514055,
-1.810566472856836,
-1.7705124379133814,
-1.726620448899957,
-1.6791634352550453,
-1.628434252536278,
-1.5747428054953865,
-1.5184130366651993,
-1.4597798201186651,
-1.3991858007304903,
-1.336978219286258,
-1.273505763153138,
-1.2091154809754487,
-1.1441497980222923,
-1.078943666440284,
-1.0138218818068807,
-0.9490965941031833,
-0.8850650375986668,
-0.8220075002391138,
-0.760185549030468,
-0.6998405236941629,
-0.6411923066126674,
-0.584438372863061,
-0.5297531200252659,
-0.47728747351679945,
-0.4271687595101705,
-0.37950083408602464,
-0.33436445421142813,
-0.29181787344587384,
-0.251897642996336,
-0.21461959688619459,
-0.17997999858156444,
-0.14795682543373645,
-0.11851116674087825
],
[
-1.6941758258710429,
-1.731041554911619,
-1.7641563577584498,
-1.793290934492529,
-1.8182394164420712,
-1.8388215733174773,
-1.8548847785015263,
-1.8663057042290774,
-1.8729917219078562,
-1.8748819867943998,
-1.8719481905811162,
-1.8641949700975147,
-1.851659965199366,
-1.834413523928341,
-1.8125580580822738,
-1.786227057351759,
-1.7555837750630565,
-1.720819603232486,
-1.6821521590012132,
-1.6398231085047466,
-1.5940957577699695,
-1.5452524432643586,
-1.4935917571982378,
-1.439425644563787,
-1.3830764101581312,
-1.324873674468938,
-1.2651513172993971,
-1.2042444473858145,
-1.1424864350398833,
-1.0802060430630667,
-1.0177246888772562,
-0.9553538680482107,
-0.8933927662069948,
-0.8321260828681155,
-0.7718220868723857,
-0.712730919223907,
-0.6550831550187473,
-0.5990886320549181,
-0.5449355496418741,
-0.4927898371635908,
-0.44279478815775186,
-0.3950709521137079,
-0.3497162729164214,
-0.306806459916678,
-0.2663955750260829,
-0.2285168170457157,
-0.19318348265856788,
-0.16039008215776018,
-0.1301135870459167,
-0.10231478611896949
],
[
-1.60971821077266,
-1.644638020871702,
-1.6759660564649717,
-1.703483810795582,
-1.726995291004372,
-1.74632912839957,
-1.7613404559756423,
-1.7719125260999706,
-1.7779580446733876,
-1.7794202018851566,
-1.7762733838613607,
-1.7685235539761326,
-1.756208297279605,
-1.739396526312323,
-1.7181878514369928,
-1.6927116236380781,
-1.6631256624313502,
-1.6296146860052123,
-1.592388464903806,
-1.551679724385192,
-1.5077418239797598,
-1.4608462456780058,
-1.4112799245449799,
-1.3593424573556114,
-1.3053432260459805,
-1.249598473367509,
-1.1924283681143204,
-1.1341540966790713,
-1.075095016503191,
-1.0155659052564292,
-0.9558743373517657,
-0.8963182167267881,
-0.8371834917609972,
-0.7787420748152748,
-0.7212499852443587,
-0.6649457309181763,
-0.6100489393661273,
-0.5567592457033753,
-0.5052554405803245,
-0.45569487758366867,
-0.40821313587233576,
-0.3629239304113481,
-0.3199192590215907,
-0.2792697726361333,
-0.24102535267896896,
-0.2052158773860595,
-0.17185215718877678,
-0.14092701798566876,
-0.11241651024053811,
-0.08628122135633243
],
[
-1.5240001940555936,
-1.556966191467045,
-1.5865029697394002,
-1.6124029062979517,
-1.6344799526067801,
-1.652571646490911,
-1.666540901033357,
-1.676277544165396,
-1.681699586322575,
-1.6827541972021796,
-1.679418376668781,
-1.6716993091448158,
-1.6596343953172124,
-1.6432909596100416,
-1.62276563653431,
-1.5981834436456201,
-1.5696965533362812,
-1.5374827799791289,
-1.5017438029503343,
-1.4627031497169243,
-1.420603966418176,
-1.375706606144232,
-1.3282860673745338,
-1.2786293167490832,
-1.2270325314832125,
-1.1737982972900294,
-1.1192327976434906,
-1.0636430296104096,
-1.0073340803236204,
-0.9506064964937909,
-0.8937537772050446,
-0.8370600176606888,
-0.7807977285960769,
-0.7252258528193247,
-0.6705879968437896,
-0.617110891908496,
-0.5650030949143682,
-0.5144539360055935,
-0.4656327157643789,
-0.4186881513290055,
-0.37374806724947107,
-0.3309193236169399,
-0.29028797099090253,
-0.25191961894217485,
-0.2158600026638693,
-0.1821357301012212,
-0.15075519043140595,
-0.12170960349471427,
-0.09497418893948817,
-0.07050943338789106
],
[
-1.4375189778803912,
-1.468533361474156,
-1.496283567642315,
-1.5205728939602863,
-1.5412252548545042,
-1.5580870953822015,
-1.5710290910933535,
-1.579947609302146,
-1.584765910213915,
-1.5854350698624056,
-1.581934610653129,
-1.5742728294154327,
-1.5624868171670245,
-1.546642169213669,
-1.5268323886649822,
-1.5031779908645984,
-1.4758253205299723,
-1.444945097496973,
-1.4107307107941303,
-1.3733962842631815,
-1.3331745400365005,
-1.290314488825153,
-1.2450789781213891,
-1.1977421310426517,
-1.1485867096194404,
-1.097901436844493,
-1.0459783117563748,
-0.9931099512372803,
-0.9395869910839446,
-0.8856955772937446,
-0.8317149764348764,
-0.7779153314885782,
-0.7245555867175799,
-0.6718816019878091,
-0.6201244736151801,
-0.5694990752914193,
-0.52020282903085,
-0.4724147124405619,
-0.4262945050147591,
-0.3819822726524238,
-0.3395980862535197,
-0.2992419671149944,
-0.2609940489698839,
-0.22491494393008904,
-0.19104629733720335,
-0.15941151462014647,
-0.1300166417190336,
-0.10285137946970613,
-0.07789021155315212,
-0.055093625191627194
],
[
-1.3507608261823527,
-1.3798355136128315,
-1.405812647331113,
-1.428506427699201,
-1.447750702541276,
-1.4634007822602466,
-1.4753350506754064,
-1.4834563481212795,
-1.4876931063289138,
-1.488000217963494,
-1.4843596273608752,
-1.4767806329275637,
-1.4652998957741326,
-1.449981153369783,
-1.430914641258858,
-1.4082162300935734,
-1.3820262893339146,
-1.352508292873443,
-1.3198471854977527,
-1.2842475324070532,
-1.2459314769776575,
-1.2051365344494351,
-1.1621132512665837,
-1.1171227613359602,
-1.0704342714800654,
-1.0223225088396275,
-0.9730651629239628,
-0.9229403544267774,
-0.8722241618407125,
-0.8211882353466832,
-0.7700975254615919,
-0.7192081515474571,
-0.6687654325678255,
-0.619002099482305,
-0.5701367054577156,
-0.5223722467087912,
-0.47589500332749124,
-0.4308736059812446,
-0.38745833092012427,
-0.34578062238955365,
-0.3059528383542913,
-0.2680682124508429,
-0.23220102234284812,
-0.19840695219513083,
-0.16672363483616692,
-0.13717135736921282,
-0.10975391253342526,
-0.0844595770160721,
-0.061262197175033783,
-0.04012236224100274
],
[
-1.2641967459247379,
-1.2913529221376334,
-1.315578866888802,
-1.3366996147718082,
-1.3545588712834862,
-1.3690207296132273,
-1.379971192874936,
-1.3873194795329529,
-1.3909990926150868,
-1.3909686365016272,
-1.3872123685745013,
-1.3797404767461554,
-1.3685890777973377,
-1.3538199354675782,
-1.3355199012901253,
-1.3138000851711844,
-1.288794766609829,
-1.260660061169577,
-1.2295723602791382,
-1.1957265655971254,
-1.159334141968426,
-1.1206210153814813,
-1.0798253442667431,
-1.0371951939277306,
-0.9929861448471275,
-0.9474588660519533,
-0.9008766846538632,
-0.8535031821136736,
-0.8055998467330301,
-0.7574238103794007,
-0.709225695540681,
-0.6612475965262294,
-0.6137212160328431,
-0.5668661754318873,
-0.5208885140661291,
-0.4759793896327913,
-0.4323139884344853,
-0.3900506509632924,
-0.3493302150047688,
-0.31027557526462446,
-0.2729914554835533,
-0.23756438616302655,
-0.20406287841809245,
-0.1725377821381846,
-0.14302281460165323,
-0.11553524397586878,
-0.09007671075631696,
-0.06663416916188902,
-0.045180929809830905,
-0.025677784635586676
],
[
-1.178278485013347,
-1.2035460807243188,
-1.226050610586624,
-1.2456278262007678,
-1.2621311712342336,
-1.2754334006556172,
-1.2854280151683501,
-1.2920304897987664,
-1.295179278296421,
-1.2948365780420152,
-1.2909888434802828,
-1.2836470396439292,
-1.2728466310478894,
-1.2586473050451938,
-1.2411324325782136,
-1.2204082730622954,
-1.1966029338353488,
-1.1698650981288077,
-1.1403625388011398,
-1.1082804380652913,
-1.073819536085066,
-1.0371941335666546,
-0.998629975294731,
-0.9583620429281764,
-0.9166322862614744,
-0.87368732256364,
-0.8297761335285829,
-0.7851477888185755,
-0.7400492241752429,
-0.6947231006377788,
-0.649405769581061,
-0.6043253661095823,
-0.5597000508639258,
-0.5157364175680387,
-0.4726280807231278,
-0.4305544547959992,
-0.3896797331144244,
-0.3501520715282085,
-0.31210297877840465,
-0.2756469124923282,
-0.24088107683849924,
-0.20788541517868486,
-0.17672278858298585,
-0.14743932886242805,
-0.1200649528483062,
-0.09461402302886768,
-0.07108613835524547,
-0.049467038055786006,
-0.029729600651426713,
-0.011834920037496088
],
[
-1.0934348913115302,
-1.1168519997757118,
-1.1376722313087129,
-1.1557418914862303,
-1.1709240015529132,
-1.1830998212864006,
-1.1921701968067466,
-1.1980567134776337,
-1.200702636609465,
-1.200073625554736,
-1.1961582099347396,
-1.188968020099383,
-1.1785377674395314,
-1.1649249737815488,
-1.1482094527315445,
-1.1284925494367384,
-1.1058961487284948,
-1.0805614649427548,
-1.0526476298191243,
-1.0223300977050693,
-0.9897988897866425,
-0.9552567011903614,
-0.9189168965164214,
-0.88100142064607,
-0.8417386524971773,
-0.8013612297738226,
-0.7601038726686622,
-0.7182012339402082,
-0.675885801819925,
-0.6333858808316866,
-0.5909236738629875,
-0.5487134867533123,
-0.5069600743055316,
-0.46585714403155576,
-0.425586031166413,
-0.38631455558058936,
-0.348196068244913,
-0.3113686919101477,
-0.2759547577090784,
-0.2420604365228256,
-0.20977556122247742,
-0.17917363334517722,
-0.15031200542726775,
-0.12323222812825274,
-0.09796054946323673,
-0.07450855193721373,
-0.052873912154434155,
-0.03304126656611084,
-0.014983166419276994,
0.0013388953274557913
],
[
-1.010068670120285,
-1.031680911048793,
-1.0508607085072896,
-1.0674647163665347,
-1.0813653347100476,
-1.0924521378996657,
-1.1006331372772535,
-1.105835859823578,
-1.1080082265205338,
-1.1071192168868864,
-1.1031593091340803,
-1.0961406885671359,
-1.0860972201789942,
-1.07308418479704,
-1.057177781575586,
-1.0384744030265725,
-1.0170896920806203,
-0.9931573938129069,
-0.9668280173960161,
-0.9382673265036934,
-0.9076546787384122,
-0.8751812366517494,
-0.8410480745374039,
-0.8054642063769221,
-0.7686445610917682,
-0.7308079315941404,
-0.6921749240337373,
-0.6529659331179237,
-0.6133991684556256,
-0.5736887555661716,
-0.5340429335349945,
-0.49466236932683494,
-0.4557386065271223,
-0.4174526638208462,
-0.3799737958858773,
-0.3434584266265239,
-0.3080492618557915,
-0.27387458570386003,
-0.24104774223645475,
-0.20966680105793012,
-0.17981440309519803,
-0.15155778034992817,
-0.12494894120339084,
-0.10002501089069638,
-0.07680871505271325,
-0.05530899284269264,
-0.035521724921920406,
-0.017430560830020925,
-0.0010078296602726855,
0.013784482297706235
],
[
-0.9285535699907687,
-0.9484134098543278,
-0.9660027522658912,
-0.9811883544713216,
-0.9938517616748426,
-1.0038906422358376,
-1.0112199670957567,
-1.0157730159093337,
-1.0175021946424136,
-1.0163796519677057,
-1.0123976845963127,
-1.0055689246785666,
-0.9959263055397547,
-0.9835228052288725,
-0.9684309705938001,
-0.9507422277958024,
-0.9305659882820786,
-0.9080285621908751,
-0.8832718939166722,
-0.8564521370639766,
-0.8277380882232507,
-0.7973095008747043,
-0.7653553022330825,
-0.7320717369669115,
-0.6976604624429978,
-0.6623266204541125,
-0.6262769102855955,
-0.5897176874743536,
-0.5528531117273585,
-0.5158833662208703,
-0.4790029689259462,
-0.44239919473703426,
-0.40625062505893905,
-0.37072583917867896,
-0.33598225925980385,
-0.3021651581970801,
-0.2694068369091809,
-0.23782597497517144,
-0.20752715588545034,
-0.178600565624492,
-0.1511218608737186,
-0.1251522008556576,
-0.10073843476892064,
-0.07791343491517377,
-0.05669656401684975,
-0.03709426388419179,
-0.019100751523482007,
-0.0026988079893943695,
0.012139355226897575,
0.025451167722432277
],
[
-0.8492320189756736,
-0.8673980571654185,
-0.8834523759918143,
-0.8972715555264857,
-0.9087460207355962,
-0.9177812860654219,
-0.9242990537159199,
-0.9282381492041919,
-0.9295552799727484,
-0.9282256052137038,
-0.9242431077191888,
-0.9176207613843063,
-0.9083904909324547,
-0.8966029234511615,
-0.8823269343652655,
-0.8656489934785573,
-0.8466723196298597,
-0.8255158552828492,
-0.8023130749501666,
-0.777210643695856,
-0.7503669440248394,
-0.7219504912182801,
-0.6921382585810775,
-0.661113935109775,
-0.6290661387523165,
-0.5961866087079263,
-0.5626684001074377,
-0.5287041039300263,
-0.49448411416715476,
-0.4601949630615878,
-0.42601774375698875,
-0.39212663792615876,
-0.3586875639420941,
-0.32585695895804334,
-0.29378070591545313,
-0.2625932140487701,
-0.2324166589502743,
-0.2033603857432873,
-0.1755204764331577,
-0.14897948010512807,
-0.12380630235629031,
-0.1000562482207874,
-0.07777121090471417,
-0.05697999691581157,
-0.0376987766743524,
-0.01993164844068751,
-0.0036713024020966767,
0.011100228968996761,
0.024410748642367253,
0.03629701541328578
],
[
-0.7724132255623409,
-0.7889494559549656,
-0.8035289521029196,
-0.8160378044887195,
-0.8263750243103517,
-0.8344537000092169,
-0.8402020167713714,
-0.8435641237025441,
-0.8445008353976388,
-0.8429901568918208,
-0.8390276234550802,
-0.8326264493322324,
-0.8238174822888436,
-0.8126489636518206,
-0.7991860963796354,
-0.7835104265100797,
-0.7657190460621832,
-0.7459236280631681,
-0.7242493067853069,
-0.7008334184671834,
-0.675824119721369,
-0.6493789024625084,
-0.6216630254991732,
-0.5928478838997246,
-0.5631093378529076,
-0.5326260229922436,
-0.501577664040462,
-0.470143413164279,
-0.43850023362611124,
-0.40682134819878835,
-0.37527477039932755,
-0.34402193493078426,
-0.31321644183280783,
-0.2830029267726377,
-0.253516067700265,
-0.22487973578854525,
-0.197206296225227,
-0.17059606206296674,
-0.1451369020076303,
-0.12090400077497332,
-0.09795976850779997,
-0.07635389375393076,
-0.05612353268853787,
-0.03729362564738947,
-0.019877330639957558,
-0.0038765623473426825,
0.010717375811034158,
0.023923079632214073,
0.03576826562430013,
0.04628893974732362
],
[
-0.6983717507199546,
-0.7133468081230729,
-0.7265157569800577,
-0.7377738577724916,
-0.74702838978368,
-0.754199722385778,
-0.7592222583793444,
-0.7620452351520475,
-0.7626333713133815,
-0.7609673485822536,
-0.7570441210184549,
-0.7508770461570887,
-0.7424958351833112,
-0.7319463219271768,
-0.7192900531170138,
-0.7046037049564959,
-0.6879783336372235,
-0.6695184698193241,
-0.6493410693631454,
-0.6275743346356075,
-0.6043564225088575,
-0.5798340566861143,
-0.5541610632044871,
-0.5274968488583319,
-0.5000048428471199,
-0.47185092217289537,
-0.44320184119576567,
-0.4142236853090553,
-0.3850803679329151,
-0.3559321889667857,
-0.32693447151227506,
-0.29823629210936375,
-0.2699793179544372,
-0.24229676262592026,
-0.21531246977197593,
-0.18914013205567404,
-0.16388265044789563,
-0.13963163674776302,
-0.11646706003446128,
-0.09445703565030672,
-0.07365775331771096,
-0.05411353913344841,
-0.035857044489613354,
-0.01890955346497747,
-0.003281398930899293,
0.011027523463566169,
0.024027155114374477,
0.035736600399605356,
0.04618339142681149,
0.05540270445020856
],
[
-0.6273465498856148,
-0.6408329506269457,
-0.6526590035793396,
-0.6627287747405344,
-0.6709574723136612,
-0.6772724358000699,
-0.6816140059871997,
-0.6839362626290209,
-0.6842076183801283,
-0.6824112595217051,
-0.678545426175599,
-0.6726235270033131,
-0.6646740857896614,
-0.654740519772812,
-0.6428807520586906,
-0.6291666629035108,
-0.6136833870184627,
-0.5965284663025076,
-0.5778108695017119,
-0.5576498921892387,
-0.5361739521254258,
-0.5135192964634491,
-0.4898286383899948,
-0.46524974161389265,
-0.43993397162803016,
-0.414034832865545,
-0.3877065107517479,
-0.3611024372257241,
-0.33437389758363634,
-0.3076686954983343,
-0.2811298918207972,
-0.25489463129691226,
-0.22909306966987764,
-0.20384741181930832,
-0.17927106965021133,
-0.15546794642624517,
-0.1325318521814598,
-0.11054605278084528,
-0.08958295316975051,
-0.06970391339069026,
-0.050959194085368864,
-0.0333880264694717,
-0.017018800192742267,
-0.001869361098983724,
0.012052590303793576,
0.024749009851028347,
0.036230941179573595,
0.04651787917588113,
0.05563707730611056,
0.06362281086108323
],
[
-0.5595404764488623,
-0.5716138620284982,
-0.5821673525822493,
-0.5911134350067753,
-0.5983748898384263,
-0.6038857013942923,
-0.6075918573871391,
-0.6094520258047796,
-0.6094380984847683,
-0.6075355926543741,
-0.603743903711703,
-0.5980764046626028,
-0.5905603898607094,
-0.5812368629853235,
-0.5701601714914527,
-0.5573974920371405,
-0.5430281735927541,
-0.5271429470258144,
-0.5098430118947032,
-0.49123901294054917,
-0.47144992030758803,
-0.4506018288217083,
-0.42882669269292517,
-0.4062610127641135,
-0.3830444938948796,
-0.35931869024122354,
-0.3352256560702134,
-0.3109066193409713,
-0.2865006946016557,
-0.2621436508147881,
-0.2379667485521022,
-0.2140956596224446,
-0.19064948064141052,
-0.167739850352556,
-0.14547017870164147,
-0.12393499378325101,
-0.10321941085944841,
-0.08339872572855755,
-0.06453813283329812,
-0.046692566673740554,
-0.029906663362399888,
-0.014214837552918524,
0.00035853148593067985,
0.013798812173186903,
0.026100739930448036,
0.03726795306320385,
0.04731245548363994,
0.056254017067338014,
0.06411952275250132,
0.07094228161036731
],
[
-0.4951202314970641,
-0.5058586237578405,
-0.5152118859358447,
-0.5231005249788026,
-0.5294545233071174,
-0.5342141734081032,
-0.5373308101952166,
-0.5387674298758496,
-0.538499185592639,
-0.5365137518082171,
-0.5328115512630556,
-0.5274058403178377,
-0.5203226505606903,
-0.5116005866780698,
-0.5012904827176866,
-0.48945492097366505,
-0.47616761975941213,
-0.4615126982654516,
-0.44558382849228617,
-0.42848328587001316,
-0.4103209115980033,
-0.3912130009348642,
-0.37128113262118423,
-0.35065095530987045,
-0.3294509473022389,
-0.3078111660374663,
-0.28586200366052705,
-0.2637329646055604,
-0.24155148048984687,
-0.21944177673475074,
-0.1975238042350569,
-0.17591224811209183,
-0.15471562413653195,
-0.13403547182465148,
-0.11396565152904836,
-0.09459175109487816,
-0.07599060586913664,
-0.05822993406646515,
-0.041368087742668536,
-0.025453917936566484,
-0.010526750940276886,
0.003383528827602955,
0.016256295220429928,
0.028079903101875914,
0.038851325517148316,
0.04857571423472451,
0.0572658932548733,
0.06494179535110645,
0.0716298519934373,
0.07736234710240497
],
[
-0.43421673836630337,
-0.4436998140660464,
-0.45192652021489177,
-0.4588249705622841,
-0.46433196858288983,
-0.4683937700582158,
-0.47096675140605126,
-0.4720179734125328,
-0.47152563142846105,
-0.4694793846673998,
-0.4658805589617586,
-0.46074221916416913,
-0.45408910929241897,
-0.4459574604726009,
-0.43639466870105803,
-0.4254588463853539,
-0.4132182535020048,
-0.39975061598972217,
-0.3851423406488268,
-0.3694876373104339,
-0.352887560346391,
-0.3354489826899014,
-0.31728351640895336,
-0.298506394506288,
-0.27923532900174597,
-0.25958936048195724,
-0.2396877141793956,
-0.21964867727460824,
-0.19958851151256862,
-0.17962041440256304,
-0.15985354124998996,
-0.14039209907125816,
-0.12133452209550266,
-0.10277273708741164,
-0.08479152516416066,
-0.06746798515692731,
-0.050871101915243466,
-0.035061421300882856,
-0.020090831997182867,
-0.006002452697278393,
0.007169378243060187,
0.019399014972588446,
0.030669323658888636,
0.0409714159748753,
0.050304304122920085,
0.058674485734919735,
0.0660954675867147,
0.07258723748991236,
0.07817569397525581,
0.0828920434635616
],
[
-0.376925914997156,
-0.385234307003393,
-0.39240883151827854,
-0.39838478715848713,
-0.40310541061338956,
-0.4065225708453253,
-0.4085973766947506,
-0.4093006884134469,
-0.4086135249454952,
-0.40652736022786096,
-0.4030443033658391,
-0.39817715922510244,
-0.3919493677417729,
-0.3843948220530349,
-0.37555756735999957,
-0.36549138421895155,
-0.35425926168372945,
-0.34193276735875555,
-0.32859132293964377,
-0.31432139518831326,
-0.2992156134879813,
-0.2833718261290943,
-0.26689210827348364,
-0.24988173511783374,
-0.2324481341213247,
-0.21469983027225203,
-0.1967453982461902,
-0.1786924349596941,
-0.1606465654589544,
-0.142710494316711,
-0.12498311376140858,
-0.1075586786511269,
-0.09052605715574336,
-0.07396806464998495,
-0.05796088687554657,
-0.04257359693054519,
-0.027867769118414376,
-0.013897191164168765,
-0.0007076748110812492,
0.011663036628526857,
0.02318526655508757,
0.033837313242671474,
0.04360527306627748,
0.052482784989275055,
0.06047070336462079,
0.06757670680823469,
0.0738148514472512,
0.07920507722798886,
0.08377267618979212,
0.08754773167597585
],
[
-0.3233098122969771,
-0.3305244438852508,
-0.33672125867065716,
-0.3418423130861994,
-0.34583688541548385,
-0.3486621053086387,
-0.35028350402043285,
-0.3506754767181759,
-0.34982164939784766,
-0.3477151442809059,
-0.34435873901806,
-0.33976491657477714,
-0.333955804288546,
-0.32696300224055497,
-0.3188273027442774,
-0.3095983043897932,
-0.2993339256653307,
-0.2880998246770514,
-0.2759687328773279,
-0.263019711964823,
-0.24933734421471976,
-0.23501086741458077,
-0.22013326630556573,
-0.20480033294821487,
-0.18910970873958055,
-0.17315992090121002,
-0.15704942613627382,
-0.14087567382543442,
-0.12473420060347773,
-0.10871776744654116,
-0.09291554951939074,
-0.0774123880034776,
-0.062288111971869675,
-0.04761693712073445,
-0.03346694683447993,
-0.019899659679393444,
-0.0069696860150387785,
0.005275524989682312,
0.01679584802317713,
0.02755855538998153,
0.037538304519300514,
0.04671704303542734,
0.055083836246024864,
0.0626346228236716,
0.06937190523953585,
0.07530438214816959,
0.08044653041408845,
0.0848181448128782,
0.08844384363318092,
0.09135254845553198
],
[
-0.27339808271525357,
-0.279599540653078,
-0.2848926473931168,
-0.2892257884078182,
-0.2925538912329124,
-0.2948389940319842,
-0.29605074184999913,
-0.29616680268296025,
-0.29517319658143526,
-0.2930645322266878,
-0.28984414674883285,
-0.28552414597348763,
-0.2801253437610518,
-0.2736771006143608,
-0.26621706324817995,
-0.25779080830957257,
-0.2484513948841538,
-0.2382588317925174,
-0.22727946694860046,
-0.21558530719427438,
-0.2032532780212175,
-0.19036443342485043,
-0.1770031267913461,
-0.16325615418715578,
-0.1492118816944159,
-0.13495936851236867,
-0.12058749742590735,
-0.10618412393276033,
-0.09183525482957222,
-0.0776242663968445,
-0.06363117150855135,
-0.049931944042983956,
-0.03659790790716655,
-0.023695196830590515,
-0.011284289858493057,
0.0005803737951706189,
0.011850698165236428,
0.02248515113987959,
0.03244890242810139,
0.041713880276405435,
0.05025874946241382,
0.058068814147552716,
0.06513585012298839,
0.07145787181970897,
0.07703884016493268,
0.08188831794604967,
0.08602107978546791,
0.08945668413426522,
0.0922190148603812,
0.09433580004281694
],
[
-0.22718974008182236,
-0.23245769133819394,
-0.23692009487029275,
-0.2405312378723301,
-0.24325130693451147,
-0.24504689939712487,
-0.2458914690018159,
-0.2457656987021184,
-0.2446577944902153,
-0.24256369521093823,
-0.23948719454761935,
-0.23543997265682393,
-0.2304415362761545,
-0.22451906750735495,
-0.2177071828598247,
-0.21004760550213453,
-0.20158875498558726,
-0.1923852599499596,
-0.18249740047404095,
-0.17199048777156034,
-0.16093418983733065,
-0.14940181240349104,
-0.1374695451580885,
-0.12521568359892377,
-0.1127198371381577,
-0.10006213413574994,
-0.08732243442313647,
-0.07457955958821971,
-0.06191055083640906,
-0.04938996363195125,
-0.03708920757342016,
-0.025075939083627485,
-0.013413513516515208,
-0.002160502222099403,
0.008629721012980207,
0.018909320895104997,
0.028636266850055048,
0.0377745236487963,
0.04629416668560271,
0.05417142326591784,
0.061388642301591245,
0.06793419577089477,
0.07380231616577859,
0.07899287490749773,
0.08351110735505385,
0.08736729055230819,
0.0905763802555255,
0.09315761405244771,
0.09513408752821895,
0.0965323104564948
],
[
-0.18465516945488836,
-0.18906782550716072,
-0.19277105179067577,
-0.1957246143206519,
-0.19789357334181656,
-0.19924874119439417,
-0.19976708072215255,
-0.19943203777458862,
-0.19823380225994724,
-0.19616949321817145,
-0.19324326448617346,
-0.18946632870204927,
-0.184856898619018,
-0.17944004595149643,
-0.17324747923146377,
-0.16631724339004483,
-0.1586933449736534,
-0.15042530803390108,
-0.14156766677475385,
-0.132179401979875,
-0.12232332906058785,
-0.11206544624585124,
-0.10147425196844195,
-0.09062004087758235,
-0.07957418812193584,
-0.06840843159652632,
-0.05719416173369929,
-0.046001728146507936,
-0.03489977201033634,
-0.023954592505941452,
-0.013229554957360223,
-0.002784547496874623,
0.007324507806346858,
0.01704608438831401,
0.026333417264191583,
0.03514480285734023,
0.043443830783687076,
0.05119954686327377,
0.058386547678009215,
0.06498500799889206,
0.07098064335076537,
0.0763646108530458,
0.08113335225793405,
0.0852883837930003,
0.08883603799432382,
0.09178716318394642,
0.09415678659800641,
0.09596374740867719,
0.09723030600543936,
0.09798173591300574
],
[
-0.14573834427416932,
-0.14937197610580655,
-0.15238563746876888,
-0.1547441574273989,
-0.1564170917033716,
-0.15737913073305898,
-0.1576104541463681,
-0.1570970258647888,
-0.15583082483553845,
-0.15381000733565053,
-0.15103899777883,
-0.14752850602112044,
-0.14329547026950995,
-0.13836292583041487,
-0.13275980107109264,
-0.12652064308559163,
-0.11968527663651796,
-0.112298400964713,
-0.10440913000154994,
-0.09607048236581628,
-0.08733882826312489,
-0.07827330101781849,
-0.06893518144441835,
-0.059387263600228835,
-0.049693210647935304,
-0.03991690959505889,
-0.03012183356741227,
-0.02037042002002898,
-0.010723472899157205,
-0.001239596251726427,
0.008025333853098449,
0.017018652958380676,
0.025691342095529146,
0.033998407473214476,
0.041899202485304876,
0.049357689510487024,
0.05634263995513544,
0.0628277719642345,
0.06879182617493362,
0.07421858079731902,
0.07909680816184816,
0.0834201756592663,
0.08718709470501307,
0.09040052197669324,
0.09306771769260114,
0.09519996611669779,
0.09681226378767449,
0.09792298117646525,
0.09855350357902504,
0.09872785705296883
],
[
-0.11035920749252082,
-0.11328771350298528,
-0.11567912304912809,
-0.11750292205407464,
-0.1187327929456028,
-0.11934697651926052,
-0.11932858573750948,
-0.11866586626434428,
-0.11735239927385588,
-0.11538724289832647,
-0.11277500958259656,
-0.10952587757036047,
-0.10565553574735254,
-0.10118506208763178,
-0.09614073697324566,
-0.09055379366526961,
-0.08446010917655333,
-0.07789983971513892,
-0.07091700571500259,
-0.06355903223172987,
-0.05587625114089256,
-0.04792137212449643,
-0.039748929856310955,
-0.031414715093076584,
-0.022975197541599268,
-0.014486948399489386,
-0.006006070361556315,
0.0024123573518337604,
0.010714811747161823,
0.018849829867253254,
0.026768477511105004,
0.0344247773851718,
0.041776091951021055,
0.048783457038931166,
0.05541186314588731,
0.06163048221255463,
0.0674128385606283,
0.07273692355243555,
0.07758525439315678,
0.0819448783174761,
0.08580732417300929,
0.08916850412062183,
0.09202856880593724,
0.09439171990867656,
0.0962659844401268,
0.09766295552968596,
0.09859750471643403,
0.09908747094068593,
0.09915333151481232,
0.09881786034570572
],
[
-0.07841617353057284,
-0.08071070172636108,
-0.08254453800451667,
-0.08389143072201644,
-0.08472883158490241,
-0.08503821484649032,
-0.08480535359413821,
-0.0840205484828569,
-0.0826788049378846,
-0.08077995559142992,
-0.07832872552841375,
-0.0753347387773633,
-0.07181246538025432,
-0.06778110929214987,
-0.0632644382807559,
-0.05829055790045046,
-0.05289163248735007,
-0.047103556945477854,
-0.04096558385323679,
-0.034519911100113765,
-0.0278112358531879,
-0.02088628114084634,
-0.01379330171874571,
-0.006581576144079282,
0.000699107875204108,
0.007998967770424859,
0.015268733057313355,
0.022460138170447674,
0.029526394750584162,
0.03642263738078122,
0.04310633729243096,
0.04953767916868079,
0.055679896847357746,
0.06149956445403881,
0.06696684026366606,
0.07205566138070463,
0.07674388812804356,
0.0810133978286105,
0.08485012843660655,
0.08824407321382433,
0.09118922833847032,
0.09368349596806302,
0.09572854584529877,
0.0973296390281928,
0.09849541773778725,
0.09923766564406522,
0.09957104315137388,
0.09951280239826121,
0.09908248675468156,
0.09830161958498862
],
[
-0.04978870881067832,
-0.05151733382793933,
-0.052855356118623575,
-0.053780405723806046,
-0.05427335922717447,
-0.05431861971479646,
-0.05390435861920584,
-0.05302271532302294,
-0.051669950991007685,
-0.04984655376424496,
-0.04755729317426538,
-0.04481122240555746,
-0.04162162783761869,
-0.038005926117856914,
-0.03398550983846649,
-0.029585543698567696,
-0.024834713811873854,
-0.01976493355509823,
-0.014411010029337978,
-0.008810275813049717,
-0.0030021912094222447,
0.00297207737625671,
0.009070096960161367,
0.015248619206668312,
0.02146403703991706,
0.027672840310624336,
0.033832064285400865,
0.03989972492763516,
0.045835235240080374,
0.051599797332671615,
0.05715676535536107,
0.062471974984620315,
0.06751403576162684,
0.07225458323757872,
0.07666848857323139,
0.08073402395231644,
0.0844329828878061,
0.08775075521273434,
0.09067635724039036,
0.09320241824019782,
0.09532512499408496,
0.09704412676423746,
0.09836240350799974,
0.09928610061285648,
0.09982433378845212,
0.09998896804012247,
0.09979437485749987,
0.09925717188229344,
0.0983959493727149,
0.09723098776100914
],
[
-0.02433995021507962,
-0.02556740495116072,
-0.026468218821415368,
-0.027023538110878986,
-0.027217334339126875,
-0.027036648289816556,
-0.02647180037071295,
-0.02551656365569488,
-0.024168296488851437,
-0.022428032122609576,
-0.020300523506770585,
-0.01779424203156066,
-0.014921329742541456,
-0.011697505275460873,
-0.008141924490516761,
-0.004276997504583324,
-0.00012816451260500017,
0.004276366557496747,
0.008905916911035483,
0.01372766409090831,
0.01870699487304117,
0.023807878824028572,
0.028993257198941302,
0.03422544165814312,
0.03946651717951166,
0.04467874353781598,
0.04982494981503005,
0.05486891659103876,
0.05977574073861591,
0.06451217810305776,
0.06904695977731423,
0.07335107817827002,
0.07739803967832315,
0.08116408113720097,
0.08462834829980448,
0.0877730346646064,
0.09058348007115136,
0.0930482288925476,
0.09515904833786837,
0.09691090795906976,
0.09830192200770194,
0.09933325678943583,
0.10000900561179571,
0.10033603430646942,
0.10032380062752533,
0.09998415107777481,
0.09933109889580116,
0.09838058704577746,
0.09715024009249107,
0.0956591088176244
]
],
"zauto": true,
"zmax": 2.8234114114188213,
"zmin": -2.8234114114188213
},
{
"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.30183494512527903,
0.2869965213272594,
0.27333064994180106,
0.2608544968193779,
0.24959661436916272,
0.23960245495155486,
0.2309387989733679,
0.2236960154849432,
0.2179869566478488,
0.21394143872224755,
0.21169586819758657,
0.2113787193558312,
0.21309404672045085,
0.2169064100981627,
0.22283072847709035,
0.23082930558612957,
0.2408160789001303,
0.25266612991193155,
0.26622755604766646,
0.28133307706311417,
0.29780972182594256,
0.3154859830331966,
0.3341965615838366,
0.35378517780102947,
0.37410600213804174,
0.39502418568524555,
0.416415849371272,
0.4381677737571156,
0.46017693934671766,
0.48235000307331943,
0.5046027554332174,
0.5268595783216373,
0.5490529103860363,
0.5711227204344393,
0.5930159872167435,
0.6146861838536197,
0.6360927661595601,
0.6572006654103406,
0.6779797873629739,
0.6984045203584675,
0.7184532560483,
0.7381079266743324,
0.7573535629249307,
0.7761778762320108,
0.7945708690161909,
0.812524475882444,
0.8300322381651483,
0.8470890135619445,
0.8636907219159826,
0.879834127534493
],
[
0.2856381679129334,
0.26959226370065364,
0.25468742680791945,
0.24095507196523952,
0.22844269468246603,
0.21722061076648258,
0.20738753563757578,
0.19907338473411246,
0.19243725027870615,
0.18765852911438635,
0.18492017566378172,
0.18438539473618953,
0.18617229094680335,
0.19033333675004419,
0.1968459329231724,
0.20561640389015678,
0.2164947229188816,
0.22929418494398376,
0.24381038923987197,
0.2598361353645002,
0.2771713007684703,
0.2956283515020695,
0.31503472468789456,
0.33523327683869547,
0.35608169646583243,
0.3774514616278792,
0.3992266740690727,
0.42130293538170627,
0.44358633141996673,
0.46599253779323047,
0.48844603410231135,
0.5108794054636839,
0.5332327091330449,
0.5554528871914663,
0.5774932108001063,
0.599312746165114,
0.6208758364664392,
0.6421515973504943,
0.6631134261212677,
0.6837385265389134,
0.704007452244725,
0.7239036723874765,
0.7434131631400763,
0.7625240285722409,
0.7812261538788923,
0.7995108933377926,
0.8173707946528757,
0.8347993605885567,
0.8517908480592097,
0.8683401041394714
],
[
0.2718543066194762,
0.2545939380126468,
0.23842049996576883,
0.2233769478722044,
0.20952819008122714,
0.19697020006658827,
0.185838322350279,
0.17631235237787968,
0.1686147096601869,
0.16299730790255418,
0.15971408437405404,
0.15898115602229465,
0.1609344438521554,
0.16560014488747582,
0.17289014854580892,
0.1826226655525272,
0.194556943183107,
0.20842814769023485,
0.22397355726608245,
0.24094796409842187,
0.25913034506120647,
0.27832500734342425,
0.2983599050306411,
0.3190838773156174,
0.3403637574863854,
0.3620817782450355,
0.38413340690822323,
0.40642560231096647,
0.4288754283859615,
0.45140894563194384,
0.4739603073669715,
0.4964710004999996,
0.5188891846611371,
0.5411690963773973,
0.5632704956910763,
0.5851581410772948,
0.6068012849240121,
0.6281731864931936,
0.6492506424959428,
0.6700135374712054,
0.6904444173045288,
0.7105280896713814,
0.7302512551177752,
0.7496021720499861,
0.7685703582209631,
0.7871463304774577,
0.8053213836524054,
0.8230874086167345,
0.84043674869144,
0.8573620928970049
],
[
0.26064493403204037,
0.2422001924151811,
0.22476726079148515,
0.20839541433739805,
0.193161863729934,
0.17918460862637928,
0.16663593787339137,
0.15575342464108896,
0.14684214777382507,
0.14025850652007263,
0.13636619673589684,
0.13546500210733298,
0.13771398242450605,
0.1430864658839841,
0.15138191076201768,
0.1622840390585945,
0.17543073137209955,
0.1904673866808548,
0.2070754744476748,
0.22498163977442898,
0.24395594056105951,
0.2638057081639119,
0.2843686258226994,
0.3055065757193942,
0.327100703929051,
0.3490476636450059,
0.3712568282736838,
0.3936482408281263,
0.4161510950921191,
0.43870258708209375,
0.461247016479881,
0.48373505191192634,
0.5061231006066575,
0.5283727430085922,
0.5504502076497765,
0.5723258721673611,
0.5939737837871583,
0.6153711976280288,
0.6364981344037689,
0.6573369609549217,
0.6778719978793035,
0.6980891586209959,
0.71797562394274,
0.7375195549239562,
0.7567098466408896,
0.7755359236120992,
0.7939875770226621,
0.8120548427416292,
0.8297279182664337,
0.8469971159938938
],
[
0.25211662802154367,
0.23255926257979653,
0.21392400915962578,
0.1962597988305794,
0.1796479014383594,
0.1642193772507887,
0.15017636146728994,
0.1378144355385579,
0.12753734644485548,
0.11984522720161088,
0.11526975543642756,
0.11424524606942536,
0.11696034233172226,
0.12328606002761547,
0.13283464133671996,
0.1450966715457643,
0.15956397110281767,
0.17579488655376405,
0.19343108727681077,
0.21218973864636295,
0.23184814788199204,
0.2522288744906108,
0.27318783358559645,
0.29460556150919,
0.31638106256256104,
0.3384275565003919,
0.3606695543935352,
0.38304083378375753,
0.40548300831928913,
0.4279444816792841,
0.4503796438398969,
0.47274821577892884,
0.4950146821746357,
0.5171477748212271,
0.5391199854238656,
0.5609070972753663,
0.5824877325186729,
0.6038429162763476,
0.6249556615951298,
0.6458105804267342,
0.6663935261312653,
0.686691272545137,
0.7066912337367314,
0.7263812273702979,
0.7457492832641662,
0.7647834973842428,
0.7834719302499755,
0.8018025476135644,
0.8197632003461641,
0.8373416397481953
],
[
0.2463035353663341,
0.22574494101744713,
0.20601498425117748,
0.1871565327297351,
0.16924621179498145,
0.152415954028395,
0.136883061130188,
0.1229889661404175,
0.11123885130571202,
0.10231287498177954,
0.0969869259756787,
0.09590680733346221,
0.09929477832281562,
0.1068335409074284,
0.11784462578911603,
0.13157211555300288,
0.14736215175994447,
0.16471209502339368,
0.1832529955269026,
0.2027154926178199,
0.22289951132873564,
0.24365214192491458,
0.2648526974393126,
0.28640294411510514,
0.3082207901290317,
0.3302362107911675,
0.35238859562777275,
0.374624988340682,
0.39689887963834064,
0.4191693356313394,
0.4414003239860979,
0.46356015184450367,
0.48562096356015716,
0.5075582688022088,
0.5293504864421313,
0.5509784993379039,
0.5724252212522367,
0.5936751807351165,
0.6147141285816043,
0.635528675953839,
0.6561059698123561,
0.676433411232476,
0.6964984207241417,
0.7162882530211183,
0.7357898621133502,
0.7549898156861029,
0.7738742566917521,
0.7924289085754131,
0.8106391197380088,
0.82848994216006
],
[
0.24315702024029143,
0.22173829502719147,
0.2010636372946081,
0.18116779977747613,
0.16211785773771967,
0.14403705810182435,
0.12714186872961572,
0.11179783762139017,
0.09859380728185774,
0.0884026563366682,
0.08231548426565334,
0.08127936277518304,
0.08554041334583855,
0.09447111635129643,
0.10700366187266236,
0.12212719862439342,
0.13908346025199791,
0.157353234896398,
0.17658762928195426,
0.19654787836785179,
0.21706453767050848,
0.23801202962017273,
0.25929318038885085,
0.28082986236853863,
0.3025572986112685,
0.32442055591753177,
0.3463723451446536,
0.3683715986447332,
0.3903825034791305,
0.4123737947510861,
0.434318190524849,
0.4561918980732652,
0.4779741519337269,
0.49964676403331637,
0.5211936788577365,
0.5426005346395459,
0.5638542362962814,
0.5849425483101813,
0.6058537165572654,
0.6265761277339486,
0.6470980138533342,
0.6674072075791764,
0.6874909521699606,
0.707335767714294,
0.7269273733096506,
0.7462506629913781,
0.7652897316446117,
0.7840279458819415,
0.8024480539673741,
0.8205323283090894
],
[
0.24254672986799453,
0.22042238588088475,
0.19897707743696935,
0.1782403688100422,
0.15827182753511626,
0.13918544428622345,
0.12119048219274879,
0.10465997000602133,
0.09023784983717914,
0.07896317179348634,
0.07225248582710153,
0.07138939467281986,
0.07660188421233985,
0.08685887838596776,
0.10069661237739246,
0.1169167461688875,
0.13472171146731252,
0.15361226820832852,
0.1732737904069376,
0.19350043317008397,
0.21415060398449248,
0.23512161137764376,
0.2563352049350311,
0.277729220080316,
0.2992526688512557,
0.32086279672759344,
0.3425232679585582,
0.36420299602526307,
0.3858753358083692,
0.40751747014230505,
0.4291098928766096,
0.4506359332368262,
0.47208129306720337,
0.4934335855378557,
0.5146818746120532,
0.5358162210697204,
0.5568272444531169,
0.5777057117737496,
0.5984421637775956,
0.6190265884434912,
0.6394481495343572,
0.6596949757218139,
0.6797540133056341,
0.699610943054076,
0.7192501593632621,
0.738654807896472,
0.7578068762009242,
0.7766873305545843,
0.7952762914790238,
0.8135532399469654
],
[
0.2442741135114516,
0.2215937573270253,
0.19955222610633705,
0.17818066630208942,
0.15753949159561492,
0.1377430010937859,
0.11900216806209085,
0.10170028308502992,
0.08652066942166683,
0.07461531542418247,
0.0676258758912108,
0.06705125374946114,
0.0730329911926887,
0.08420354604458423,
0.09885081404023142,
0.11569692265786007,
0.13394756706820546,
0.15312847741228053,
0.17295034730780587,
0.19322836291737433,
0.21383784159143923,
0.2346899537047408,
0.2557182314984114,
0.27687090873306724,
0.29810646753109743,
0.31939097759580615,
0.34069644477049593,
0.3619997246631298,
0.38328174471628823,
0.40452688573598805,
0.42572243777334035,
0.44685808433379653,
0.4679253933369829,
0.48891730867056443,
0.5098276457580282,
0.5306506001689557,
0.5513802811042602,
0.5720102823574948,
0.5925333026409416,
0.6129408254028932,
0.6332228658091973,
0.6533677897244421,
0.6733622065701069,
0.6931909350783136,
0.7128370383751188,
0.7322819226431677,
0.7515054919091044,
0.770486350310637,
0.7892020425161226,
0.8076293227583807
],
[
0.24809527766706532,
0.2249883147210268,
0.20250383154412663,
0.18068237753586122,
0.15959581514335,
0.13937281967158105,
0.12024343452163827,
0.10261800448289035,
0.08721977096733637,
0.07525484812554349,
0.06840929097459082,
0.06815000461025984,
0.07449605138737561,
0.08597697693798448,
0.10085015969364254,
0.1178411822940368,
0.13616402329473173,
0.15535078560575044,
0.1751168505769342,
0.1952813936321642,
0.2157236660114142,
0.23635903597412433,
0.2571256239084473,
0.2779766634222721,
0.2988760134484386,
0.3197954322211411,
0.3407128437677404,
0.3616111602770409,
0.38247740837208394,
0.4033020135203426,
0.4240781600515579,
0.44480118306792216,
0.4654679728646454,
0.48607638780770757,
0.5066246810503997,
0.5271109518505446,
0.5475326347269928,
0.5678860400446024,
0.5881659584172926,
0.6083653390320146,
0.6284750490175162,
0.6484837176541011,
0.6683776658400157,
0.6881409180415432,
0.7077552911469925,
0.727200552351526,
0.7464546364950078,
0.7654939121809511,
0.7842934854981634,
0.8028275301895547
],
[
0.25374735814624255,
0.23031411099024876,
0.20750529517624758,
0.18537711158969708,
0.16402136079482724,
0.14359231797720792,
0.12435267335959993,
0.10675179906738823,
0.09154814075407496,
0.07994153424260232,
0.07350048903333115,
0.07347650766799169,
0.07979316955778397,
0.0910867670636716,
0.10573782937382857,
0.12252071460378215,
0.14065180874671124,
0.15965132199433849,
0.17922194589848567,
0.1991731335149666,
0.21937779513418784,
0.23974786507672483,
0.260220342173287,
0.28074913269969914,
0.3013001468780462,
0.3218482429910265,
0.34237522754847194,
0.362868456673591,
0.3833197737705577,
0.40372462913148355,
0.42408129366320724,
0.4443901200729621,
0.46465283080307224,
0.4848718283955929,
0.5050495340323204,
0.5251877656621959,
0.5452871696181631,
0.5653467197792748,
0.585363296786397,
0.605331357093394,
0.6252426981812443,
0.6450863224749468,
0.6648483987207647,
0.684512316081315,
0.7040588231969838,
0.723466242083114,
0.7427107450535665,
0.7617666818915011,
0.7806069441848572,
0.7992033540261227
],
[
0.26097258888358393,
0.2372824568532098,
0.2142295761759684,
0.1918892470224815,
0.17037748638341868,
0.14987893909898076,
0.13069266180529437,
0.11330504738530438,
0.09849103114893676,
0.08739296957678046,
0.08138478453995633,
0.0814655955709845,
0.08751287105480858,
0.09835080402958113,
0.11253924875782553,
0.12892295873609586,
0.14672119503336065,
0.16543483271871812,
0.18474516191656393,
0.20444420769565314,
0.22439228516290266,
0.24449295007620978,
0.2646781802233896,
0.2848994569016468,
0.30512225506992063,
0.32532251645255233,
0.3454842810839053,
0.36559799381838726,
0.38565919963992734,
0.4056674587894041,
0.4256253842881019,
0.4455377492320672,
0.46541063972861085,
0.48525064745776403,
0.5050641070010082,
0.5248563893594534,
0.5446312658135444,
0.5643903563856083,
0.5841326753698662,
0.6038542832877319,
0.6235480507289789,
0.6432035353074578,
0.6628069687824402,
0.6823413475878494,
0.7017866168032664,
0.7211199351403107,
0.7403160068720778,
0.7593474657963935,
0.7781852962325945,
0.7967992766015085
],
[
0.2695363399577482,
0.24563145221595706,
0.22238058295740945,
0.19987892379919392,
0.17826707810752163,
0.1577591001707336,
0.1386861343072713,
0.12156034878672387,
0.1071510032291988,
0.09651518989880774,
0.09082940732404034,
0.09088516684439123,
0.09655112120828131,
0.10683628272556642,
0.12047616201629914,
0.13639147608384386,
0.15380863232281175,
0.17220933145920173,
0.19125116468621456,
0.2107055950555141,
0.2304171959732801,
0.2502782933515852,
0.27021335800628393,
0.2901693060139117,
0.31010933759805687,
0.3300088937838798,
0.3498528811503253,
0.3696336537322005,
0.3893494435657024,
0.409003054580775,
0.4286007112107554,
0.4481510017913277,
0.46766388816113974,
0.4871497729820506,
0.5066186287844788,
0.5260791998269753,
0.5455382909801978,
0.5650001580254612,
0.5844660117953904,
0.6039336451523809,
0.6233971874928028,
0.642846986802569,
0.6622696147175924,
0.6816479859169579,
0.7009615797560843,
0.7201867494906761,
0.7392971028141091,
0.7582639367126961,
0.7770567097516548,
0.7956435357108679
],
[
0.2792380074847594,
0.2551399905964398,
0.2317115814871214,
0.20906683438375215,
0.18736882947730316,
0.1668568845601145,
0.147886539183763,
0.1309830093573447,
0.11689402266258209,
0.10658619482009786,
0.10106991663838377,
0.10098895066639203,
0.10622450882016524,
0.11594132817295946,
0.12902574907066292,
0.14447023253674499,
0.16151157223162285,
0.17961482302307347,
0.19841438771216888,
0.21766034945623672,
0.2371801052748071,
0.2568531154836877,
0.27659470681794224,
0.29634567553884555,
0.3160655046518884,
0.3357278109049969,
0.3553171614147848,
0.3748267278014803,
0.3942564493317342,
0.413611504017226,
0.43290096763485,
0.4521365929675392,
0.47133167570106405,
0.49049999556902346,
0.5096548352573456,
0.5288080875887193,
0.5479694651417802,
0.5671458268234917,
0.586340633880178,
0.6055535441506131,
0.6247801486973883,
0.6440118498885499,
0.6632358750424124,
0.6824354152962435,
0.7015898757039524,
0.7206752198838448,
0.7396643908908308,
0.7585277893503878,
0.7772337901628976,
0.795749280115966
],
[
0.28991554259169194,
0.26563327380875285,
0.24203200276455136,
0.21924269689889478,
0.19744774653218092,
0.1769066518903969,
0.15799162868212566,
0.14123090656340634,
0.1273428867897222,
0.11721133569685642,
0.1117179804106897,
0.11140801827940648,
0.11618642655398681,
0.125344823453845,
0.13789429558092275,
0.1528912373270359,
0.16958408983814627,
0.18742365048361975,
0.20602230640051025,
0.2251087496890992,
0.24449247201619548,
0.2640389836202813,
0.28365323822415783,
0.3032686487831544,
0.32283973745336403,
0.34233709983817956,
0.36174382781123327,
0.3810528450021405,
0.40026480980909185,
0.41938637043915716,
0.43842864083127303,
0.4574058218047771,
0.4763339285143166,
0.49522960945883965,
0.5141090576890349,
0.532987023887343,
0.5518759452637146,
0.5707852048874724,
0.5897205340971952,
0.6086835668069709,
0.6276715495857924,
0.6466772059773547,
0.6656887482086911,
0.684690024657234,
0.7036607875319161,
0.7225770623711835,
0.741411599243162,
0.7601343849190781,
0.7787131956666804,
0.7971141715069118
],
[
0.3014452584790552,
0.27698217704991707,
0.25320609717847453,
0.23026269791489337,
0.20835040749341718,
0.1877441776112468,
0.16882661182394268,
0.152122352802939,
0.138318336647883,
0.12822737980767568,
0.12263450250055044,
0.12202100039849292,
0.12632122424180134,
0.1349317176753458,
0.14696771744557416,
0.16154225783560167,
0.17791581651169458,
0.19552683760894068,
0.21396683158971744,
0.23294325547687186,
0.2522471782793003,
0.27172926834289757,
0.2912830324935097,
0.31083335254631017,
0.3303286257529502,
0.3497352774567901,
0.3690338084753848,
0.38821582473278904,
0.40728169085988364,
0.4262385792785939,
0.4450987729085988,
0.46387813773330056,
0.4825947205463366,
0.5012674532889195,
0.5199149622776561,
0.5385544907548551,
0.5572009482218743,
0.5758661011546748,
0.5945579179313302,
0.613280076981251,
0.6320316420733285,
0.6508069029978005,
0.6695953742745612,
0.6883819394351438,
0.7071471242399668,
0.7258674791304703,
0.7445160493669691,
0.7630629106402111,
0.7814757483487378,
0.7997204600246577
],
[
0.31373861097066297,
0.2890988423177727,
0.26514685870798704,
0.24204098712188568,
0.21999279320127857,
0.1992887858413097,
0.1803173102750798,
0.1635954843024702,
0.1497794739519488,
0.1396225784510566,
0.13383686131141712,
0.1328623242352562,
0.13666498996994542,
0.14473092921385666,
0.15626527648754857,
0.17043281337999094,
0.186506863551328,
0.20391544647144288,
0.22223037852679878,
0.24113811535255056,
0.260410866249911,
0.27988363396380656,
0.2994374576923972,
0.3189875794279863,
0.33847513382514327,
0.3578612410690617,
0.37712269736189763,
0.39624871152094543,
0.4152383200174591,
0.43409824062875696,
0.45284101261753024,
0.4714833314485394,
0.4900445271739973,
0.50854516349868,
0.5270057529003018,
0.5454455944765888,
0.5638817470946634,
0.5823281521711244,
0.6007949190214642,
0.6192877820725669,
0.637807734144235,
0.6563508342171249,
0.6749081822682796,
0.6934660484104774,
0.7120061391207934,
0.7305059800433811,
0.7489393928145854,
0.7672770425713525,
0.7854870331519505,
0.8035355282967096
],
[
0.3267373174176452,
0.30193034192927193,
0.27780774608527986,
0.2545387523062816,
0.23234568935840041,
0.21152360134688328,
0.19246326349275186,
0.175671973931679,
0.16177671915436453,
0.1514803632517087,
0.14543820910043498,
0.14406266176856847,
0.14735135946054229,
0.1548690701001861,
0.1659017270631609,
0.17966378266724328,
0.19544347047819394,
0.212660963237386,
0.23086996670519258,
0.24973642202339907,
0.26901339483407816,
0.2885194876349727,
0.30812230267264606,
0.3277263639477001,
0.3472644247169345,
0.3666911767053115,
0.38597860366072123,
0.405112437640172,
0.4240893455974361,
0.4429145972719647,
0.46160005286942657,
0.4801623703678348,
0.4986213750392492,
0.516998563250476,
0.5353157323787955,
0.553593741161282,
0.5718514116651688,
0.5901045865706336,
0.6083653546145303,
0.6266414537528384,
0.6449358566900509,
0.6632465376606622,
0.6815664134149937,
0.6998834458331223,
0.718180888906699,
0.736437659280748,
0.7546288072793669,
0.7727260643595474,
0.7906984431456525,
0.8085128674147616
],
[
0.3404077636713395,
0.31545163102419244,
0.2911737714011054,
0.2677528950881189,
0.24542022237272978,
0.22447702559146507,
0.2053141152711775,
0.188427518982237,
0.17441650297004735,
0.16393987989758765,
0.15760640598843284,
0.15580825036321158,
0.15857267030100475,
0.16553490328006895,
0.1760560385015561,
0.18940052444297456,
0.2048751196005657,
0.2218958269538327,
0.24000060768377934,
0.2588358979243624,
0.27813566165651227,
0.2977015602784157,
0.3173869028203032,
0.33708448435531724,
0.3567176005686547,
0.37623342115129316,
0.395598032089543,
0.4147926265143684,
0.433810473142775,
0.45265440730330375,
0.47133467502968396,
0.48986702231169893,
0.5082709654331874,
0.5265682090983186,
0.5447812000889172,
0.5629318178314752,
0.5810402111300227,
0.5991237936776279,
0.6171964108056269,
0.6352676871593635,
0.6533425604298511,
0.6714210006945284,
0.6894979090262958,
0.7075631834176999,
0.7256019352081535,
0.7435948354234414,
0.7615185679158383,
0.7793463649694311,
0.7970486010312984,
0.8145934212821221
],
[
0.3547352974060375,
0.3296585134853437,
0.3052528216697148,
0.28170531132934346,
0.259254618752465,
0.23820644114788883,
0.21894978082982997,
0.2019682777321188,
0.18783439780059907,
0.1771669288840475,
0.17053394647558978,
0.1683103934126598,
0.17054952931787504,
0.17694994464509256,
0.18694405854138504,
0.1998481879829676,
0.2149926061064035,
0.2317940904428573,
0.2497782823329668,
0.26857390847950763,
0.28789640735133193,
0.30753030186380914,
0.3273139671540895,
0.34712759481598376,
0.36688403683070864,
0.3865219112606364,
0.40600037048977267,
0.42529504742556407,
0.4443948185495878,
0.46329912740665397,
0.482015693363665,
0.5005584910241406,
0.5189459298514656,
0.5371991951899435,
0.5553407339483206,
0.5733928828928456,
0.591376646366376,
0.6093106345097393,
0.6272101736975109,
0.6450865987847424,
0.6629467327044534,
0.6807925537198338,
0.6986210449202063,
0.7164242149674529,
0.7341892741451789,
0.7518989457943648,
0.7695318904497958,
0.7870632184951787,
0.8044650668852383,
0.8217072163012156
],
[
0.3697187588884852,
0.3445610204530498,
0.32006765101976226,
0.296433222280448,
0.2739025708673213,
0.2527843151844315,
0.2334640822079931,
0.21641205963341617,
0.20217423553366734,
0.19133162854518843,
0.18441459428399282,
0.18178107616658598,
0.1835055148969192,
0.18934292524264942,
0.19879370876359403,
0.21122843583469708,
0.22600671017052695,
0.24255214883419784,
0.26038264841099845,
0.279111993834119,
0.2984384018823312,
0.3181295670385671,
0.33800863162691147,
0.3579425382140035,
0.3778328658766811,
0.39760876416269036,
0.4172215021427714,
0.43664020115777025,
0.4558484108020832,
0.4748412766750026,
0.4936231226334455,
0.512205328089901,
0.5306044243777039,
0.5488403661018068,
0.5669349561483782,
0.5849104185594722,
0.6027881232516619,
0.620587471708693,
0.6383249542503208,
0.6560133881078462,
0.6736613421002094,
0.6912727489401089,
0.7088467007938063,
0.7263774182822378,
0.7438543781530506,
0.7612625807563109,
0.7785829354668089,
0.7957927404237028,
0.8128662323928192,
0.829775183089915
],
[
0.3853654458200792,
0.36017741162998057,
0.3356487544620775,
0.31198074151294725,
0.28942331767541046,
0.26828664704139354,
0.24895150369330316,
0.2318734844825773,
0.21757193805846478,
0.2065912122356736,
0.19942518308539384,
0.1964134932303153,
0.1976462744378957,
0.20292783403507486,
0.211822777565452,
0.22375783966367663,
0.23812782107319913,
0.25436992551253684,
0.27199989315179307,
0.29062035666431196,
0.30991447303506064,
0.32963407110429144,
0.34958723305535705,
0.3696273409737507,
0.38964410976983355,
0.40955647747598267,
0.4293070124736612,
0.44885747867619014,
0.4681852517438305,
0.4872803479073426,
0.5061428909189739,
0.5247808956558428,
0.5432082884021898,
0.5614431151954206,
0.5795059125641004,
0.5974182310724964,
0.6152013125925593,
0.6328749281870459,
0.6504563857818132,
0.6679597162139201,
0.685395043498569,
0.7027681409619752,
0.7200801698986935,
0.7373275922288135,
0.7545022437633738,
0.7715915505346719,
0.7885788674856433,
0.8054439167844926,
0.8221633021634649,
0.8387110759005315
],
[
0.4016866198160344,
0.37652890851419707,
0.35202822456448757,
0.3283917542446247,
0.3058734640687805,
0.28478368856925346,
0.265496850804388,
0.24845271779631062,
0.23414353478261116,
0.2230774594019143,
0.21571231711465957,
0.2123675882698736,
0.21314351570443646,
0.21788638890996193,
0.22622037370230846,
0.23762906448269167,
0.25154756296077113,
0.26743344934015634,
0.28480654693563606,
0.30326302378594616,
0.32247401997285047,
0.34217720424490483,
0.36216635066277836,
0.382281404623023,
0.40239994903721227,
0.42243020982162427,
0.4423054231310747,
0.46197929653513403,
0.48142230468883185,
0.5006186035896587,
0.5195633978387271,
0.5382606412174225,
0.5567209888943963,
0.5749599494146143,
0.5929962071217662,
0.6108501019012428,
0.6285422641172226,
0.6460924092409897,
0.663518299707914,
0.6808348817098094,
0.698053602602777,
0.7151819110395947,
0.7322229374418607,
0.7491753475846763,
0.7660333573773406,
0.7827868927940504,
0.7994218756330259,
0.815920613536875,
0.8322622715532277,
0.8484234024153255
],
[
0.4186936124983013,
0.3936352154436505,
0.3692346384288825,
0.34570413725389365,
0.3233005313463919,
0.30233287209294324,
0.28316766884464606,
0.26622755709034207,
0.2519771050011664,
0.24088856514972526,
0.23338396840782574,
0.22976089196866126,
0.23012453205919198,
0.23435594274612115,
0.24213332958210218,
0.252996253962247,
0.26642380459981874,
0.2819000792665671,
0.29895535274546153,
0.31718461888651656,
0.336250813401843,
0.3558798953370074,
0.375852719432731,
0.39599642959581965,
0.41617660791840067,
0.43629057664601234,
0.4562618493255886,
0.4760355696709782,
0.4955747394645997,
0.514857052083461,
0.5338721819164419,
0.5526194164005875,
0.5711055502664957,
0.5893429887772377,
0.6073480280480578,
0.6251392964165257,
0.642736351964277,
0.6601584383564629,
0.6774234048148261,
0.6945467968961067,
0.711541123412865,
0.7284153019010978,
0.7451742810825999,
0.7618188343301918,
0.7783455137041162,
0.7947467500922354,
0.8110110816619079,
0.8271234904178039,
0.8430658252513831,
0.8588172894620312
],
[
0.4363945601141197,
0.4115108524819139,
0.38728898811853474,
0.36394531189456236,
0.34173819602551037,
0.3209738485435986,
0.30200924895745934,
0.28524861276884844,
0.2711283208173005,
0.2600851047729251,
0.2525056770848686,
0.24866449717335568,
0.24866734030049395,
0.2524232459656344,
0.2596583397949636,
0.26996567627661494,
0.282870238539011,
0.29788755382544224,
0.31456427664726233,
0.33249970316366423,
0.3513529064530927,
0.37084122880143316,
0.39073461592150177,
0.41084858718277883,
0.4310373031153425,
0.4511873523988445,
0.47121242548796116,
0.4910488281147737,
0.5106517072731078,
0.5299918480027039,
0.549052914181568,
0.5678290315628906,
0.5863226374333079,
0.6045425446596552,
0.6225021871734582,
0.6402180288944359,
0.6577081289688913,
0.6749908634262134,
0.6920838074256469,
0.7090027836842236,
0.725761081963541,
0.7423688521709085,
0.7588326702182968,
0.7751552717785365,
0.7913354449388993,
0.807368068870447,
0.8232442823181823,
0.8389517631895643,
0.8544750988978335,
0.8697962264315802
],
[
0.4547917753959874,
0.4301622994046724,
0.40620163658354114,
0.38312908286342484,
0.3612031223377304,
0.3407254699785567,
0.32204195778562295,
0.3055371986161893,
0.2916190752016063,
0.28068945704393017,
0.27310062544578567,
0.26910340542853556,
0.2688007388045435,
0.27212359971554434,
0.2788397175884121,
0.2885918817070765,
0.3009510683165229,
0.31546756707455725,
0.3317094113110245,
0.3492854103174816,
0.36785531706040386,
0.3871313950914136,
0.4068752173471682,
0.42689236828856547,
0.4470266227153408,
0.4671543939914907,
0.4871797715816178,
0.507030215020843,
0.5266528539287554,
0.5460113011766846,
0.565082881687213,
0.583856191622786,
0.6023289208496915,
0.6205058900864214,
0.6383972705911566,
0.6560169676600244,
0.6733811593831897,
0.6905069891736939,
0.7074114148395108,
0.7241102187869702,
0.7406171837422257,
0.7569434366015293,
0.7730969601267215,
0.7890822686386444,
0.8049002400505058,
0.8205480928993842,
0.8360194937841376,
0.8513047780290349,
0.8663912646053932,
0.8812636454153852
],
[
0.4738797481506859,
0.44958592659897495,
0.42597024898176383,
0.40325367146202845,
0.3816932346885488,
0.36158447308903907,
0.34326052716100824,
0.327085419975176,
0.313438515366421,
0.30268782979189485,
0.2951525542192728,
0.29106006097781384,
0.2905080235809327,
0.2934441980334615,
0.29967179272212024,
0.30887873362992735,
0.32068051976941575,
0.33466387710681456,
0.3504219716958294,
0.3675776776974874,
0.3857958201437215,
0.4047873087600353,
0.4243082422004652,
0.4441563830340867,
0.4641665740560896,
0.4842059917861559,
0.504169678136693,
0.5239765205513128,
0.5435657067995265,
0.5628936139758443,
0.5819310680852775,
0.6006609097881686,
0.6190758112242847,
0.6371763016791003,
0.6549689727565309,
0.6724648450338289,
0.6896778872069286,
0.7066236853033864,
0.7233182637248625,
0.7397770619055243,
0.7560140705439926,
0.7720411300428455,
0.7878673913578325,
0.8034989363137284,
0.8189385509670102,
0.8341856421357807,
0.8492362840705526,
0.8640833796351963,
0.87871691846032,
0.8931243134004611
],
[
0.49364374976368447,
0.46976666591688554,
0.4465786182470475,
0.4243008112604875,
0.40318722528260226,
0.3835255605252097,
0.3656348758652823,
0.3498578843424756,
0.33654574348617633,
0.326033976928205,
0.31861042729508826,
0.3144797905737628,
0.313732916606427,
0.316330131857554,
0.32210448131767183,
0.3307840483660347,
0.34202621032552355,
0.3554542944688253,
0.3706889989046955,
0.3873708883779592,
0.40517379496704037,
0.4238109162210885,
0.4430359339623783,
0.46264118895268763,
0.4824543812459356,
0.5023347252288191,
0.5221690809836504,
0.5418683161744691,
0.5613639944099356,
0.5806054015862918,
0.5995568826961364,
0.6181954484758438,
0.6365086117367497,
0.6544924199622956,
0.6721496596094871,
0.689488216291565,
0.7065195825101586,
0.7232575103492876,
0.7397168103971559,
0.7559123001881981,
0.7718579058452977,
0.7875659196161584,
0.8030464139514506,
0.818306810001716,
0.8333515952522756,
0.8481821817881428,
0.8627968936631383,
0.8771910692646157,
0.891357262579546,
0.9052855259743369
],
[
0.5140590015765758,
0.49067735414791513,
0.46799627796167137,
0.4462357438570469,
0.4256450607394551,
0.40650255080377956,
0.38911202468647,
0.37379447562115775,
0.3608735018596329,
0.3506537965693516,
0.34339389608234744,
0.33927704102069794,
0.33838642380781697,
0.3406916172664023,
0.3460505120050655,
0.3542263717589248,
0.36491506755906583,
0.37777547934395833,
0.3924569548600228,
0.40862033411504706,
0.4259517189094804,
0.4441699178886585,
0.4630292054870174,
0.48231902756415157,
0.5018619529143304,
0.5215107703386056,
0.5411452906277078,
0.5606691666792624,
0.5800068852657334,
0.5991009893110487,
0.6179095386857031,
0.6364037939481377,
0.6545660996931585,
0.6723879448399334,
0.6898681817855069,
0.7070113922126746,
0.7238263929838266,
0.7403248801928984,
0.7565202127303197,
0.7724263385451778,
0.7880568672316494,
0.8034242917936928,
0.8185393606901149,
0.8334105988062382,
0.8480439731281337,
0.8624426958934576,
0.8766071551164876,
0.8905349598499784,
0.904221085516723,
0.9176581032249778
],
[
0.5350903539891225,
0.512278665949652,
0.49017877847582486,
0.4690079373135888,
0.4490092443570124,
0.4304502773797225,
0.413618704416915,
0.3988137126998853,
0.3863322907674092,
0.3764501901482427,
0.3693988672195247,
0.36534161743118915,
0.36435369018374314,
0.3664113560717394,
0.37139307205401095,
0.37909257830759435,
0.3892405038666678,
0.40152936818602375,
0.41563720034865925,
0.4312466812279083,
0.44805866701071706,
0.46580041406764944,
0.4842295724070107,
0.5031351883672723,
0.5223368068851728,
0.5416824959111525,
0.5610463505920131,
0.5803258227518443,
0.5994390710513454,
0.6183224300534474,
0.6369280384892932,
0.655221635589635,
0.6731805196238067,
0.6907916579059706,
0.7080499379599423,
0.7249565524231568,
0.741517513884508,
0.7577422991853004,
0.7736426252285006,
0.7892313597972652,
0.8045215712304876,
0.8195257201187657,
0.8342549946301553,
0.8487187888648139,
0.8629243210116129,
0.8768763852835094,
0.8905772288737726,
0.9040265427039574,
0.9172215526872969,
0.9301571967192556
],
[
0.5566924132489036,
0.5345195432940201,
0.5130684952652573,
0.4925523503354904,
0.4732066054262149,
0.4552869552353505,
0.43906432680341007,
0.4248163245338017,
0.4128145260173446,
0.4033077722934162,
0.3965027418620048,
0.39254444742535455,
0.3915002971596934,
0.3933513519026486,
0.39799304984103656,
0.4052453363521971,
0.4148698135267638,
0.42659019543727306,
0.440112391001848,
0.455141587872862,
0.4713950974704594,
0.48861088382656154,
0.506552399669698,
0.5250106207645001,
0.5438041503791707,
0.5627781091318718,
0.5818023344946268,
0.6007692428002899,
0.6195915740931367,
0.6382001472840306,
0.6565416928274748,
0.6745767938830216,
0.6922779469878376,
0.7096277437397569,
0.7266171716636718,
0.7432440324676849,
0.7595114774474371,
0.775426661719519,
0.7909995205797545,
0.8062416722259882,
0.821165451206135,
0.835783076243031,
0.8501059546377538,
0.8641441234165487,
0.877905824955081,
0.8913972121948383,
0.9046221759644302,
0.9175822845179891,
0.930276823356896,
0.9427029218222264
],
[
0.5788100468908891,
0.5573380251467845,
0.5365958411610852,
0.5167910786502726,
0.4981504171460797,
0.4809167867453712,
0.4653440707767649,
0.45168878860730893,
0.4401984913078163,
0.4310972030091292,
0.4245691122352702,
0.42074265532672084,
0.41967775442062905,
0.4213588611844369,
0.4256954404250074,
0.43252987406406945,
0.4416511093785986,
0.45281135468725425,
0.4657430197492123,
0.4801737362921039,
0.49583825604326764,
0.5124869156540566,
0.5298909685187236,
0.5478453838670583,
0.5661697783989185,
0.5847080749807986,
0.6033273576125278,
0.6219162621558024,
0.6403831321397312,
0.6586540854566657,
0.6766710794109723,
0.6943900235089011,
0.7117789661861453,
0.7288163686727225,
0.7454894727575735,
0.7617927667058585,
0.7777265531835632,
0.7932956235524846,
0.8085080435501706,
0.8233740557112318,
0.8379051036839026,
0.852112982767097,
0.8660091195639946,
0.8796039817169907,
0.8929066164011344,
0.9059243137788973,
0.9186623891340624,
0.9311240750723003,
0.9433105131430626,
0.9552208326121407
],
[
0.6013791967672676,
0.5806623835721507,
0.5606807642762363,
0.5416352419243955,
0.5237426824804432,
0.5072326357881506,
0.4923419146546202,
0.4793066785602923,
0.4683519576306131,
0.4596790469100017,
0.4534518513099198,
0.449783902998732,
0.4487281431207539,
0.4502714048184433,
0.4543347710735064,
0.4607798019011935,
0.4694194415302439,
0.48003164266165077,
0.4923735843486055,
0.5061947350029644,
0.5212476670797535,
0.5372961961117882,
0.554120922793881,
0.5715225506754222,
0.5893234632293369,
0.6073680342071481,
0.6255220735250185,
0.6436717198063083,
0.6617220043597442,
0.6795952404097405,
0.6972293381667578,
0.7145761090758388,
0.7315995980558961,
0.7482744673616751,
0.7645844469530934,
0.7805208616654581,
0.7960812433625356,
0.8112680354445976,
0.8260873967826041,
0.8405481118525743,
0.8546606132569877,
0.8684361218026977,
0.8818859078284017,
0.8950206755891956,
0.9078500703140833,
0.9203823051890719,
0.9326239031315731,
0.9445795459564684,
0.956252021520698,
0.9676422577766279
],
[
0.624327930139732,
0.6044124794253379,
0.5852344284706525,
0.566986995324551,
0.5498764659798958,
0.5341186515107255,
0.519933510124051,
0.5075377416363872,
0.4971354228911455,
0.4889071486225351,
0.4829986193783264,
0.4795100496943545,
0.4784879794568418,
0.47992090609374666,
0.4837395803355434,
0.4898219619202939,
0.4980019820375428,
0.5080806775012785,
0.5198380915958362,
0.5330445478687064,
0.5474703424294315,
0.5628933876124474,
0.5791047444231249,
0.5959122467890346,
0.6131425509393807,
0.6306419726279149,
0.6482764439279574,
0.665930863155403,
0.6835080479629253,
0.7009274445431145,
0.7181236998657733,
0.73504516950652,
0.7516524094504834,
0.7679166841365228,
0.7838185128049427,
0.7993462700877159,
0.8144948532834196,
0.8292644268073134,
0.8436592531303684,
0.8576866185993394,
0.8713558615358098,
0.8846775087645464,
0.8976625251493993,
0.9103216788277303,
0.9226650226979444,
0.9347014904315586,
0.9464386029727723,
0.9578822792800368,
0.9690367430723374,
0.9799045156659872
],
[
0.6475776636261538,
0.6285012606639089,
0.6101609903627604,
0.5927415756537658,
0.5764381845032711,
0.5614527661641636,
0.5479888423923809,
0.5362446771993117,
0.5264049739738378,
0.5186315587126371,
0.513053852760635,
0.5097602238328242,
0.5087914133910845,
0.510137080682747,
0.513736069496667,
0.5194803916719498,
0.5272223083539307,
0.5367834537887547,
0.5479647881536,
0.5605562777572861,
0.574345491630524,
0.5891246544486084,
0.6046960107485037,
0.6208755833779549,
0.637495540688427,
0.654405438641169,
0.6714726016456232,
0.68858187403062,
0.7056349307349566,
0.7225492923791147,
0.7392571520908066,
0.755704091349726,
0.771847739618378,
0.787656416558845,
0.8031077847953322,
0.818187534098894,
0.832888113366423,
0.8472075239043143,
0.8611481856037314,
0.8747158861069827,
0.8879188216769016,
0.9007667369897246,
0.913270169376243,
0.9254398011140625,
0.937285921261044,
0.948817996290919,
0.9600443465441896,
0.9709719233469544,
0.9816061796803581,
0.9919510255939649
],
[
0.6710445009976401,
0.6528363375395544,
0.6353594040349982,
0.6187893152895544,
0.6033097984818889,
0.5891090236424168,
0.5763746537620764,
0.565287617894346,
0.5560147985909715,
0.5487010629030659,
0.5434613116427285,
0.5403734065679718,
0.5394728832785253,
0.5407502158595673,
0.5441510702418231,
0.5495795373430548,
0.5569038918067652,
0.5659640951331448,
0.576580123750659,
0.5885602553381134,
0.6017086366165728,
0.6158317054891423,
0.6307432809259867,
0.6462683227510694,
0.662245485925246,
0.6785286555771368,
0.6949876652182686,
0.7115083882854433,
0.7279923665762806,
0.7443561081859272,
0.7605301580935505,
0.7764580194271563,
0.7920949835206876,
0.8074069119207568,
0.8223690027343706,
0.8369645662079896,
0.8511838293034756,
0.8650227855250074,
0.8784821037439398,
0.8915661078079803,
0.9042818369836728,
0.9166381955572923,
0.9286451980917992,
0.9403133148627484,
0.9516529198856684,
0.9626738417529778,
0.9733850152966084,
0.9837942299721308,
0.9939079689112348,
1.003731330893367
],
[
0.6946406330395946,
0.6773215802788436,
0.6607252002234668,
0.6450175765790277,
0.6303708672421949,
0.6169597175712144,
0.6049566279276904,
0.5945263305395654,
0.585819383537325,
0.5789653696584862,
0.5740662595743552,
0.5711906167913506,
0.5703693332835144,
0.5715934622605413,
0.5748144642462236,
0.579946855267266,
0.5868729202317876,
0.5954489088731315,
0.6055120151242369,
0.6168874594703183,
0.6293951162050448,
0.6428553034174946,
0.657093534476582,
0.6719441820508602,
0.687253113875779,
0.7028794229637801,
0.7186964018409623,
0.734591911839477,
0.7504682849837636,
0.7662418757144612,
0.7818423580177624,
0.7972118435715647,
0.8123038796989346,
0.8270823725748366,
0.8415204710035084,
0.85559943863474,
0.869307537103945,
0.8826389386818925,
0.895592684108181,
0.9081716989627122,
0.9203818799078839,
0.9322312602095192,
0.9437292619945302,
0.9548860406714095,
0.9657119248208665,
0.9762169526917972,
0.9864105042716943,
0.9963010258144046,
1.0058958417795865,
1.0152010474403748
],
[
0.7182757551959481,
0.701858695457094,
0.6861522001374101,
0.6713125745512211,
0.657500447471707,
0.6448773318597284,
0.6336013429719702,
0.6238221596245824,
0.6156754360201322,
0.6092770052984191,
0.6047173355154272,
0.6020567703985755,
0.601322079444405,
0.6025047381305904,
0.6055611680168842,
0.610414924290066,
0.6169605781966129,
0.6250688564979101,
0.6345925039179575,
0.6453723343573661,
0.657243014202538,
0.6700382439886601,
0.6835951392670475,
0.6977577320204557,
0.7123796061984451,
0.7273257412827997,
0.7424736697147721,
0.757714064369744,
0.7729508684481388,
0.7881010684955672,
0.8030941964245969,
0.817871631382688,
0.8323857587528656,
0.8465990321942991,
0.8604829755388836,
0.8740171543353461,
0.8871881415024441,
0.8999884975092117,
0.9124157823616483,
0.9244716141189627,
0.9361607864358166,
0.9474904555475473,
0.9584694050655791,
0.9691073948687122,
0.9794145982474475,
0.9894011293034909,
0.9990766604708682,
1.0084501279698157,
1.017529521096878,
1.0263217495595511
],
[
0.7418584659794735,
0.7263487466193368,
0.7115341348835919,
0.6975610670884542,
0.6845788242994448,
0.6727362846803684,
0.6621780055228693,
0.6530397364173292,
0.6454435602051593,
0.639492956704999,
0.6352681659058852,
0.632822269163741,
0.6321783889997438,
0.6333283217173599,
0.636232770673593,
0.6408231674323027,
0.647004889615285,
0.6546615438159783,
0.6636599035282094,
0.6738550820500248,
0.6850955683775232,
0.6972278393761672,
0.7101003607613943,
0.7235668833978767,
0.737489018075851,
0.7517381264543573,
0.7661965989773405,
0.7807586061122109,
0.7953304121800656,
0.8098303360451953,
0.8241884337902805,
0.8383459679010464,
0.8522547170969289,
0.8658761716688286,
0.8791806513743712,
0.8921463766083172,
0.9047585185372404,
0.9170082499078098,
0.9288918150361278,
0.9404096348135144,
0.9515654602161859,
0.9623655856265634,
0.9728181311566351,
0.9829324010493024,
0.9927183231019019,
1.002185971919301,
1.0113451766977506,
1.020205212216013,
1.0287745698252464,
1.0370608035416131
],
[
0.7652976158214332,
0.7506935926173113,
0.736766149906524,
0.7236518996969525,
0.7114890709488715,
0.7004144808325675,
0.6905599793320447,
0.6820484739835844,
0.6749897149718137,
0.6694760923157794,
0.6655787518400866,
0.663344359231167,
0.6627928192833108,
0.6639161863072296,
0.6666788889965348,
0.6710192573377569,
0.6768522055084182,
0.6840728176445963,
0.6925605198484232,
0.7021835073327676,
0.7128031244001809,
0.7242779536575487,
0.7364674435371868,
0.749234975689898,
0.7624503363266693,
0.7759916032032269,
0.7897464918416142,
0.8036132226127729,
0.8175009775839385,
0.8313300159048512,
0.845031511900782,
0.8585471732167842,
0.8718286888708687,
0.8848370498735684,
0.8975417786472125,
0.9099200980035334,
0.9219560658902386,
0.9336396983668576,
0.9449661001445504,
0.9559346193466786,
0.9665480407593946,
0.9768118296186569,
0.9867334358327432,
0.9963216664145363,
1.0055861317754802,
1.0145367694207212,
1.023183446511354,
1.0315356407681036,
1.03960219733185,
1.0473911575218713
],
[
0.7885035819882555,
0.7747972236391176,
0.7617461802386968,
0.7494773974831596,
0.7381184366995944,
0.7277946789421719,
0.7186261204416139,
0.7107238647345022,
0.7041864727863457,
0.6990963838670659,
0.6955166562221429,
0.6934882870343839,
0.6930283481247588,
0.6941291156721799,
0.696758285097799,
0.7008602595048334,
0.7063583991455372,
0.7131580372629727,
0.7211500163717244,
0.7302144831135315,
0.74022469617274,
0.7510506418039125,
0.7625623044207714,
0.7746324951455282,
0.7871391914807117,
0.799967381833564,
0.8130104379405583,
0.8261710568985615,
0.8393618243262669,
0.8525054534183851,
0.8655347534978137,
0.8783923779350543,
0.8910303963444618,
0.9034097306950525,
0.9154994899334229,
0.9272762331775779,
0.9387231875862692,
0.94982944360769,
0.9605891473727125,
0.9710007074075835,
0.981066030487688,
0.9907897992431121,
1.0001788019882247,
1.009241323138342,
1.0179866004798508,
1.0264243534821842,
1.0345643848053263,
1.0424162552028309,
1.0499890301924115,
1.0572910952107053
],
[
0.8113894503756659,
0.7985669801655974,
0.7863761871058589,
0.7749346005907638,
0.7643595649424068,
0.7547656800953321,
0.7462619292933491,
0.7389485934917552,
0.7329140944129882,
0.7282319448297627,
0.724958008031697,
0.7231282714235502,
0.7227573171620492,
0.7238376253755667,
0.7263397778043711,
0.7302135513091571,
0.7353898138699557,
0.7417830722876597,
0.7492944794166548,
0.7578150930257305,
0.7672291867769343,
0.7774174408672314,
0.788259878175336,
0.7996384538858241,
0.8114392465426709,
0.8235542324226794,
0.8358826512084065,
0.848331989032409,
0.8608186159867733,
0.8732681205950387,
0.8856153850850748,
0.8978044439848294,
0.9097881657135338,
0.9215277932776338,
0.9329923764433005,
0.9441581241611807,
0.9550077027140392,
0.965529502083436,
0.9757168903602076,
0.9855674735946959,
0.9950823762259661,
1.0042655550797879,
1.0131231578325852,
1.021662934771553,
1.0298937106283783,
1.0378249212326194,
1.0454662177435052,
1.0528271393096054,
1.0599168532150585,
1.066743959941258
],
[
0.8338720894482085,
0.8219146443113736,
0.8105632499661332,
0.7999263417879927,
0.7901115441657599,
0.7812233440771899,
0.7733605283038733,
0.7666134760321905,
0.7610614301968052,
0.7567698967187414,
0.7537883353622203,
0.7521483045344758,
0.7518622022304358,
0.7529227068516049,
0.7553029687562072,
0.7589575431512886,
0.7638239959872543,
0.7698250652238232,
0.7768712264068051,
0.7848634968004731,
0.7936963157108159,
0.8032603566432581,
0.8134451545173043,
0.8241414629961802,
0.8352432885259632,
0.8466495756834946,
0.8582655411161866,
0.8700036701755917,
0.8817844016472175,
0.8935365326235079,
0.9051973786173594,
0.9167127245127514,
0.9280366007940213,
0.9391309173850885,
0.9499649848631884,
0.9605149501118805,
0.9707631708305672,
0.9806975508078414,
0.9903108555132997,
0.999600025348459,
1.0085655017862982,
1.0172105795823188,
1.025540796226388,
1.0335633678048262,
1.0412866784516472,
1.0487198285963089,
1.0558722452850886,
1.0627533559959923,
1.069372325620369,
1.0757378546873315
],
[
0.8558731054150643,
0.8447573964244875,
0.8342205107401105,
0.8243621665820552,
0.8152807952819247,
0.8070714388589693,
0.7998234719498566,
0.7936182308501141,
0.7885266558851308,
0.7846070712820669,
0.7819032353478005,
0.7804427899398187,
0.7802362203691944,
0.781276405652694,
0.7835387975332535,
0.7869822200498479,
0.7915502358508879,
0.7971729868677485,
0.8037693899021114,
0.8112495543920977,
0.8195172899430194,
0.8284725829542056,
0.8380139414167687,
0.8480405309026815,
0.858454049479603,
0.8691603121531601,
0.8800705348245743,
0.8911023229353401,
0.9021803809408278,
0.913236965962326,
0.924212113097482,
0.9350536616663319,
0.9457171118225921,
0.9561653400399619,
0.9663682004274949,
0.9763020369432621,
0.9859491295581413,
0.995297095383161,
1.0043382637656117,
1.0130690423939295,
1.0214892895209513,
1.0296017055035716,
1.0374112549495043,
1.0449246288512823,
1.0521497541762939,
1.0590953564829013,
1.0657705792694794,
1.072184661966232,
1.0783466767842143,
1.0842653230787604
],
[
0.8773196710278788,
0.8670186326317189,
0.8572679691003248,
0.8481590975123151,
0.8397817991154867,
0.832222328616006,
0.8255613954317671,
0.8198720904704507,
0.8152178492770654,
0.8116505547194831,
0.8092088870721212,
0.8079170243668732,
0.8077837803465077,
0.8088022420135014,
0.8109499360297684,
0.8141895168637271,
0.8184699340607533,
0.8237280056167393,
0.8298903024614611,
0.836875237279962,
0.8445952494073299,
0.8529589849646759,
0.8618733854396848,
0.8712456158503639,
0.8809847828977404,
0.8910034120346186,
0.9012186687307564,
0.9115533226340771,
0.9219364635962848,
0.9323039858255191,
0.9425988611569185,
0.9527712251011519,
0.9627783004496817,
0.9725841832351927,
0.9821595151321691,
0.9914810652108488,
1.0005312425186983,
1.0092975593794322,
1.0177720636404786,
1.0259507564000903,
1.0338330100175495,
1.0414209994561936,
1.0487191582289375,
1.0557336684125997,
1.062471992380019,
1.0689424520847424,
1.0751538599464525,
1.0811152036565246,
1.0868353855861703,
1.0923230159693074
],
[
0.8981452232554715,
0.8886286413953629,
0.8796331294454186,
0.8712422453576442,
0.863537668324547,
0.8565975054821534,
0.850494507534906,
0.8452942579750095,
0.8410534132135509,
0.8378180792566865,
0.8356224126844729,
0.8344875282922368,
0.8344207824049493,
0.8354154802851808,
0.8374510300959138,
0.8404935373397925,
0.8444968058165482,
0.849403687031592,
0.8551477020874273,
0.8616548497830433,
0.8688455121495924,
0.8766363731320128,
0.8849422760166422,
0.8936779585834007,
0.9027596199181377,
0.9121062877276668,
0.9216409686574282,
0.9312915757842353,
0.9409916368240382,
0.9506807936573655,
0.9603051087453062,
0.9698171972118578,
0.9791762051645906,
0.9883476555580046,
0.9973031828679337,
1.0060201772761934,
1.0144813581372027,
1.022674295334228,
1.0305908958110763,
1.0382268711332103,
1.0455812004174594,
1.052655601387383,
1.0594540206730518,
1.0659821527913405,
1.0722469955313116,
1.0782564477496726,
1.0840189538796594,
1.0895431978035515,
1.0948378471672862,
1.0999113477588935
],
[
0.9182900276216256,
0.9095251392191175,
0.9012515017316597,
0.8935452710189186,
0.8864805685966983,
0.8801279704783732,
0.8745529333309671,
0.869814214337724,
0.8659623503440851,
0.8630382673508908,
0.8610720919138771,
0.8600822306579397,
0.8600747727411148,
0.8610432533477326,
0.862968795600706,
0.8658206257327451,
0.8695569343190995,
0.874126037129856,
0.8794677745217448,
0.8855150793460668,
0.8921956403643374,
0.8994335906434515,
0.9071511572915172,
0.9152702188319739,
0.9237137280832157,
0.9324069703493999,
0.9412786380461764,
0.9502617129157459,
0.9592941553700063,
0.9683194071336216,
0.9772867183188548,
0.986151313541383,
0.9948744139239148,
1.0034231330828398,
1.0117702656821377,
1.019893987062087,
1.0277774819606762,
1.035408519556623,
1.042778991054766,
1.049884424861746,
1.0567234930985043,
1.0632975217914233,
1.0696100155956823,
1.0756662063513664,
1.081472633175773,
1.087036760178128,
1.0923666362733422,
1.0974706000001615,
1.1023570307486332,
1.1070341464045372
],
[
0.9377016092540384,
0.9296536674947297,
0.9220669597614829,
0.9150107028720843,
0.9085519946829763,
0.9027544695663525,
0.8976769127750334,
0.8933718825618987,
0.8898843955424905,
0.8872507342976187,
0.8854974357125692,
0.8846405134994881,
0.8846849587157322,
0.8856245484279238,
0.8874419760992397,
0.8901092993465931,
0.8935886831780284,
0.8978334013639596,
0.9027890465805833,
0.9083948922452514,
0.9145853458135305,
0.9212914344479015,
0.9284422686920789,
0.9359664371292968,
0.9437932939239756,
0.9518541106699399,
0.9600830732914142,
0.9684181132824964,
0.9768015699679368,
0.9851806865611188,
0.9935079475746742,
1.0017412686989686,
1.009844052755982,
1.0177851269356997,
1.025538577401038,
1.03308349765933,
1.0404036669716674,
1.0474871746070231,
1.0543260050223688,
1.060915598119069,
1.0672543976306446,
1.073343399468815,
1.0791857105192293,
1.084786126959612,
1.0901507396956522,
1.0952865730006036,
1.1002012609321967,
1.1049027646162322,
1.1093991320620333,
1.1136983008423609
],
[
0.9563350527331471,
0.9489678541727093,
0.9420319618820373,
0.9355901154521592,
0.9297029076882942,
0.9244275915138036,
0.9198168619524881,
0.9159176553374738,
0.9127700126287501,
0.9104060558604183,
0.9088491256654319,
0.908113123203379,
0.9082020916880095,
0.9091100615435638,
0.9108211698797345,
0.9133100506307303,
0.9165424776598358,
0.9204762306434772,
0.9250621436486678,
0.9302452896792764,
0.9359662513484768,
0.9421624280939932,
0.9487693335210331,
0.955721841855294,
0.962955349347171,
0.9704068240418983,
0.9780157249742959,
0.985724779063945,
0.9934806104407895,
1.0012342224357467,
1.0089413369624554,
1.0165625995216214,
1.0240636606632672,
1.0314151465590191,
1.0385925324897172,
1.0455759336605606,
1.0523498279204306,
1.0589027247703184,
1.0652267945670737,
1.0713174711171911,
1.0771730399534662,
1.082794223529384,
1.0881837733815898,
1.09334607802715,
1.0982867940069831,
1.1030125060883513,
1.1075304212276431,
1.1118480995011013,
1.1159732238671471,
1.119913409360231
],
[
0.9741531746790999,
0.9674295454992201,
0.9611076403424353,
0.95524417641633,
0.9498937409882533,
0.9451077351469165,
0.9409333046190878,
0.93741229386755,
0.9345802630475122,
0.9324656086020646,
0.931088826908627,
0.9304619562431415,
0.9305882254864251,
0.9314619288457157,
0.9330685350766411,
0.9353850281495353,
0.9383804649887406,
0.94201672576904,
0.9462494240655551,
0.9510289384562515,
0.956301524205099,
0.9620104633498177,
0.9680972135746102,
0.9745025201873644,
0.9811674607788134,
0.9880343981486993,
0.9950478233284434,
1.0021550765949359,
1.0093069399529477,
1.0164580994732584,
1.0235674800161219,
1.0305984582275949,
1.0375189623053975,
1.0443014689594203,
1.0509229093232573,
1.0573644963931856,
1.0636114869607283,
1.0696528910353724,
1.0754811414855001,
1.081091736107955,
1.0864828636113084,
1.0916550241000065,
1.096610653607396,
1.1013537610746493,
1.1058895849388692,
1.110224275206898,
1.1143646055820269,
1.1183177189101068,
1.1220909079504435,
1.1256914322851506
]
]
},
{
"hoverinfo": "text",
"legendgroup": "In-sample",
"marker": {
"color": "black",
"opacity": 0.5,
"symbol": 1
},
"mode": "markers",
"name": "In-sample",
"text": [
"Arm 0_0
hartmann6: -0.298539 (SEM: 0)
x1: 0.705081
x2: 0.498923
x3: 0.285351
x4: 0.411926
x5: 0.236553
x6: 0.266599",
"Arm 10_0
hartmann6: -1.19642 (SEM: 0)
x1: 0.164658
x2: 0.399565
x3: 0.999721
x4: 0.260179
x5: 0.365281
x6: 0.77874",
"Arm 11_0
hartmann6: -0.00483557 (SEM: 0)
x1: 0.913499
x2: 0.78212
x3: 0.48507
x4: 0.835334
x5: 0.61879
x6: 0.364737",
"Arm 12_0
hartmann6: -0.39065 (SEM: 0)
x1: 6.61078e-15
x2: 0.144692
x3: 1
x4: 0
x5: 0.116906
x6: 0.675539",
"Arm 13_0
hartmann6: -0.933401 (SEM: 0)
x1: 0.0992452
x2: 0.535423
x3: 0.525477
x4: 0.273995
x5: 0.088508
x6: 0.739896",
"Arm 14_0
hartmann6: -2.49462 (SEM: 0)
x1: 0.206521
x2: 0.359337
x3: 0.651527
x4: 0.265737
x5: 0.368923
x6: 0.65741",
"Arm 15_0
hartmann6: -2.66951 (SEM: 0)
x1: 0.114444
x2: 0.223341
x3: 0.603657
x4: 0.1894
x5: 0.378021
x6: 0.700528",
"Arm 16_0
hartmann6: -0.926424 (SEM: 0)
x1: 4.66363e-17
x2: 0.547938
x3: 0.58312
x4: 0.00734268
x5: 0.395898
x6: 0.624606",
"Arm 17_0
hartmann6: -2.34028 (SEM: 0)
x1: 0.0428148
x2: 0.0772581
x3: 0.573762
x4: 0.237931
x5: 0.410639
x6: 0.745959",
"Arm 18_0
hartmann6: -2.88122 (SEM: 0)
x1: 0.239366
x2: 0.208031
x3: 0.566588
x4: 0.251335
x5: 0.364124
x6: 0.745589",
"Arm 19_0
hartmann6: -1.40465 (SEM: 0)
x1: 0.231448
x2: 0.169424
x3: 0.581724
x4: 0.433365
x5: 0.340042
x6: 0.386524",
"Arm 1_0
hartmann6: -0.000929956 (SEM: 0)
x1: 0.466739
x2: 0.819481
x3: 0.79219
x4: 0.992929
x5: 0.997639
x6: 0.868091",
"Arm 20_0
hartmann6: -2.06896 (SEM: 0)
x1: 0.414961
x2: 0.226812
x3: 0.549333
x4: 0.203675
x5: 0.402669
x6: 0.770999",
"Arm 21_0
hartmann6: -2.23665 (SEM: 0)
x1: 0.215843
x2: 0.134775
x3: 0.566613
x4: 0.0736216
x5: 0.329948
x6: 0.723956",
"Arm 22_0
hartmann6: -1.66888 (SEM: 0)
x1: 0.209111
x2: 0.129212
x3: 0.502776
x4: 0.221008
x5: 0.365751
x6: 0.938014",
"Arm 23_0
hartmann6: -3.12961 (SEM: 0)
x1: 0.204412
x2: 0.177078
x3: 0.530801
x4: 0.323482
x5: 0.347161
x6: 0.690332",
"Arm 24_0
hartmann6: -2.84528 (SEM: 0)
x1: 0.17764
x2: 0.214336
x3: 0.458648
x4: 0.387122
x5: 0.322559
x6: 0.712061",
"Arm 25_0
hartmann6: -3.01878 (SEM: 0)
x1: 0.234215
x2: 0.11416
x3: 0.584072
x4: 0.320887
x5: 0.267669
x6: 0.668836",
"Arm 26_0
hartmann6: -2.36395 (SEM: 0)
x1: 0.225177
x2: 0.137175
x3: 0.540939
x4: 0.301405
x5: 0.463517
x6: 0.658319",
"Arm 27_0
hartmann6: -3.31416 (SEM: 0)
x1: 0.212105
x2: 0.136658
x3: 0.465255
x4: 0.268311
x5: 0.317926
x6: 0.655422",
"Arm 28_0
hartmann6: -3.17009 (SEM: 0)
x1: 0.285306
x2: 0.10115
x3: 0.388179
x4: 0.284548
x5: 0.318776
x6: 0.662453",
"Arm 2_0
hartmann6: -0.949098 (SEM: 0)
x1: 0.0530491
x2: 0.020073
x3: 0.0366354
x4: 0.225606
x5: 0.519191
x6: 0.624623",
"Arm 3_0
hartmann6: -0.129369 (SEM: 0)
x1: 0.806284
x2: 0.669242
x3: 0.541517
x4: 0.681674
x5: 0.277379
x6: 0.0230054",
"Arm 4_0
hartmann6: -0.0627015 (SEM: 0)
x1: 0.977593
x2: 0.236893
x3: 0.899005
x4: 0.592799
x5: 0.480273
x6: 0.469512",
"Arm 5_0
hartmann6: -0.204014 (SEM: 0)
x1: 0.225579
x2: 0.573577
x3: 0.398026
x4: 0.0019963
x5: 0.723035
x6: 0.883623",
"Arm 6_0
hartmann6: -0.0968974 (SEM: 0)
x1: 0.263049
x2: 0.274412
x3: 0.649553
x4: 0.7791
x5: 0.760074
x6: 0.64028",
"Arm 7_0
hartmann6: -0.825015 (SEM: 0)
x1: 0.502612
x2: 0.907456
x3: 0.146624
x4: 0.31324
x5: 0.0058557
x6: 0.22628",
"Arm 8_0
hartmann6: -0.0131546 (SEM: 0)
x1: 0.575007
x2: 0.112595
x3: 0.748071
x4: 0.0709495
x5: 0.898011
x6: 0.111376",
"Arm 9_0
hartmann6: -0.406945 (SEM: 0)
x1: 0.315668
x2: 0.697814
x3: 0.235376
x4: 0.521162
x5: 0.148681
x6: 0.525512"
],
"type": "scatter",
"x": [
0.7050811648368835,
0.16465811152011156,
0.9134986093267798,
6.610784868850124e-15,
0.09924515168527911,
0.20652080427075026,
0.1144438511450537,
4.6636300211109217e-17,
0.04281479896478467,
0.23936550453463132,
0.23144766339619133,
0.4667387865483761,
0.41496096303464797,
0.21584328197799588,
0.20911114821343021,
0.20441188402027688,
0.1776397708387647,
0.23421469645588353,
0.22517742184194386,
0.21210469693083644,
0.28530593701284984,
0.05304907541722059,
0.8062837133184075,
0.9775928882881999,
0.225578592158854,
0.2630487959831953,
0.5026117376983166,
0.575006827712059,
0.31566846556961536
],
"xaxis": "x",
"y": [
0.49892258644104004,
0.39956475514918566,
0.7821204252541065,
0.14469201244901667,
0.5354225206578843,
0.35933661500130765,
0.22334124784534187,
0.5479378874349394,
0.07725808470858174,
0.2080313107536036,
0.16942358170023816,
0.8194814072921872,
0.22681184330923695,
0.13477494962505673,
0.12921186341977747,
0.17707817019179636,
0.21433596884849432,
0.11416048021955004,
0.13717483564594038,
0.1366575022175512,
0.10115041315680225,
0.020073040388524532,
0.6692415978759527,
0.23689312115311623,
0.5735767157748342,
0.2744124745950103,
0.9074562918394804,
0.11259475164115429,
0.6978135770186782
],
"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.298539 (SEM: 0)
x1: 0.705081
x2: 0.498923
x3: 0.285351
x4: 0.411926
x5: 0.236553
x6: 0.266599",
"Arm 10_0
hartmann6: -1.19642 (SEM: 0)
x1: 0.164658
x2: 0.399565
x3: 0.999721
x4: 0.260179
x5: 0.365281
x6: 0.77874",
"Arm 11_0
hartmann6: -0.00483557 (SEM: 0)
x1: 0.913499
x2: 0.78212
x3: 0.48507
x4: 0.835334
x5: 0.61879
x6: 0.364737",
"Arm 12_0
hartmann6: -0.39065 (SEM: 0)
x1: 6.61078e-15
x2: 0.144692
x3: 1
x4: 0
x5: 0.116906
x6: 0.675539",
"Arm 13_0
hartmann6: -0.933401 (SEM: 0)
x1: 0.0992452
x2: 0.535423
x3: 0.525477
x4: 0.273995
x5: 0.088508
x6: 0.739896",
"Arm 14_0
hartmann6: -2.49462 (SEM: 0)
x1: 0.206521
x2: 0.359337
x3: 0.651527
x4: 0.265737
x5: 0.368923
x6: 0.65741",
"Arm 15_0
hartmann6: -2.66951 (SEM: 0)
x1: 0.114444
x2: 0.223341
x3: 0.603657
x4: 0.1894
x5: 0.378021
x6: 0.700528",
"Arm 16_0
hartmann6: -0.926424 (SEM: 0)
x1: 4.66363e-17
x2: 0.547938
x3: 0.58312
x4: 0.00734268
x5: 0.395898
x6: 0.624606",
"Arm 17_0
hartmann6: -2.34028 (SEM: 0)
x1: 0.0428148
x2: 0.0772581
x3: 0.573762
x4: 0.237931
x5: 0.410639
x6: 0.745959",
"Arm 18_0
hartmann6: -2.88122 (SEM: 0)
x1: 0.239366
x2: 0.208031
x3: 0.566588
x4: 0.251335
x5: 0.364124
x6: 0.745589",
"Arm 19_0
hartmann6: -1.40465 (SEM: 0)
x1: 0.231448
x2: 0.169424
x3: 0.581724
x4: 0.433365
x5: 0.340042
x6: 0.386524",
"Arm 1_0
hartmann6: -0.000929956 (SEM: 0)
x1: 0.466739
x2: 0.819481
x3: 0.79219
x4: 0.992929
x5: 0.997639
x6: 0.868091",
"Arm 20_0
hartmann6: -2.06896 (SEM: 0)
x1: 0.414961
x2: 0.226812
x3: 0.549333
x4: 0.203675
x5: 0.402669
x6: 0.770999",
"Arm 21_0
hartmann6: -2.23665 (SEM: 0)
x1: 0.215843
x2: 0.134775
x3: 0.566613
x4: 0.0736216
x5: 0.329948
x6: 0.723956",
"Arm 22_0
hartmann6: -1.66888 (SEM: 0)
x1: 0.209111
x2: 0.129212
x3: 0.502776
x4: 0.221008
x5: 0.365751
x6: 0.938014",
"Arm 23_0
hartmann6: -3.12961 (SEM: 0)
x1: 0.204412
x2: 0.177078
x3: 0.530801
x4: 0.323482
x5: 0.347161
x6: 0.690332",
"Arm 24_0
hartmann6: -2.84528 (SEM: 0)
x1: 0.17764
x2: 0.214336
x3: 0.458648
x4: 0.387122
x5: 0.322559
x6: 0.712061",
"Arm 25_0
hartmann6: -3.01878 (SEM: 0)
x1: 0.234215
x2: 0.11416
x3: 0.584072
x4: 0.320887
x5: 0.267669
x6: 0.668836",
"Arm 26_0
hartmann6: -2.36395 (SEM: 0)
x1: 0.225177
x2: 0.137175
x3: 0.540939
x4: 0.301405
x5: 0.463517
x6: 0.658319",
"Arm 27_0
hartmann6: -3.31416 (SEM: 0)
x1: 0.212105
x2: 0.136658
x3: 0.465255
x4: 0.268311
x5: 0.317926
x6: 0.655422",
"Arm 28_0
hartmann6: -3.17009 (SEM: 0)
x1: 0.285306
x2: 0.10115
x3: 0.388179
x4: 0.284548
x5: 0.318776
x6: 0.662453",
"Arm 2_0
hartmann6: -0.949098 (SEM: 0)
x1: 0.0530491
x2: 0.020073
x3: 0.0366354
x4: 0.225606
x5: 0.519191
x6: 0.624623",
"Arm 3_0
hartmann6: -0.129369 (SEM: 0)
x1: 0.806284
x2: 0.669242
x3: 0.541517
x4: 0.681674
x5: 0.277379
x6: 0.0230054",
"Arm 4_0
hartmann6: -0.0627015 (SEM: 0)
x1: 0.977593
x2: 0.236893
x3: 0.899005
x4: 0.592799
x5: 0.480273
x6: 0.469512",
"Arm 5_0
hartmann6: -0.204014 (SEM: 0)
x1: 0.225579
x2: 0.573577
x3: 0.398026
x4: 0.0019963
x5: 0.723035
x6: 0.883623",
"Arm 6_0
hartmann6: -0.0968974 (SEM: 0)
x1: 0.263049
x2: 0.274412
x3: 0.649553
x4: 0.7791
x5: 0.760074
x6: 0.64028",
"Arm 7_0
hartmann6: -0.825015 (SEM: 0)
x1: 0.502612
x2: 0.907456
x3: 0.146624
x4: 0.31324
x5: 0.0058557
x6: 0.22628",
"Arm 8_0
hartmann6: -0.0131546 (SEM: 0)
x1: 0.575007
x2: 0.112595
x3: 0.748071
x4: 0.0709495
x5: 0.898011
x6: 0.111376",
"Arm 9_0
hartmann6: -0.406945 (SEM: 0)
x1: 0.315668
x2: 0.697814
x3: 0.235376
x4: 0.521162
x5: 0.148681
x6: 0.525512"
],
"type": "scatter",
"x": [
0.7050811648368835,
0.16465811152011156,
0.9134986093267798,
6.610784868850124e-15,
0.09924515168527911,
0.20652080427075026,
0.1144438511450537,
4.6636300211109217e-17,
0.04281479896478467,
0.23936550453463132,
0.23144766339619133,
0.4667387865483761,
0.41496096303464797,
0.21584328197799588,
0.20911114821343021,
0.20441188402027688,
0.1776397708387647,
0.23421469645588353,
0.22517742184194386,
0.21210469693083644,
0.28530593701284984,
0.05304907541722059,
0.8062837133184075,
0.9775928882881999,
0.225578592158854,
0.2630487959831953,
0.5026117376983166,
0.575006827712059,
0.31566846556961536
],
"xaxis": "x2",
"y": [
0.49892258644104004,
0.39956475514918566,
0.7821204252541065,
0.14469201244901667,
0.5354225206578843,
0.35933661500130765,
0.22334124784534187,
0.5479378874349394,
0.07725808470858174,
0.2080313107536036,
0.16942358170023816,
0.8194814072921872,
0.22681184330923695,
0.13477494962505673,
0.12921186341977747,
0.17707817019179636,
0.21433596884849432,
0.11416048021955004,
0.13717483564594038,
0.1366575022175512,
0.10115041315680225,
0.020073040388524532,
0.6692415978759527,
0.23689312115311623,
0.5735767157748342,
0.2744124745950103,
0.9074562918394804,
0.11259475164115429,
0.6978135770186782
],
"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"
}
],
"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"
}
],
"scattermap": [
{
"marker": {
"colorbar": {
"outlinewidth": 0,
"ticks": ""
}
},
"type": "scattermap"
}
],
"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": [
"